:root{
      --bg0:#ffffff;
      --bg1:#f6f8ff;
      --bg2:#f4f1ff;
      --card:#ffffff;
      --text:#16181d;
      --muted:#5b6372;
      --muted2:#7b8598;
      --line:rgba(17,24,39,.10);
      --shadow:0 18px 60px rgba(20,26,46,.10);
      --shadow2:0 10px 30px rgba(20,26,46,.10);
      --radius:18px;
      --radius2:24px;
      --brand:#6d5cff;
      --brand2:#22d3ee;
      --brand3:#ff4fd8;
      --ok:#16a34a;
      --warn:#f59e0b;
      --danger:#ef4444;
      --focus:rgba(109,92,255,.35);
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 15% 0%, rgba(109,92,255,.14), transparent 55%),
        radial-gradient(900px 520px at 90% 10%, rgba(34,211,238,.14), transparent 55%),
        radial-gradient(900px 600px at 40% 115%, rgba(255,79,216,.10), transparent 60%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 35%, #ffffff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:14px; top:14px; z-index:1000;
      width:auto; height:auto; padding:10px 12px;
      background:#0b1220; color:#fff; border-radius:12px;
      outline:none; box-shadow:0 0 0 4px rgba(255,255,255,.15);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(246,248,255,.72);
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .brand img{
      width:42px; height:42px; border-radius:14px;
      background:rgba(255,255,255,.7);
      box-shadow:0 10px 25px rgba(109,92,255,.18);
      border:1px solid rgba(109,92,255,.18);
      object-fit:contain;
    }
    .brand-title{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand-title strong{
      font-size:14px; letter-spacing:.3px;
    }
    .brand-title span{
      font-size:12px; color:var(--muted2);
      margin-top:4px;
    }

    nav ul{
      list-style:none; padding:0; margin:0;
      display:flex; gap:16px; align-items:center;
      flex-wrap:nowrap;
    }
    nav a.nav-link{
      font-size:13px; color:rgba(22,24,29,.84);
      padding:8px 10px; border-radius:12px;
      transition:background .2s ease, transform .2s ease, color .2s ease;
      white-space:nowrap;
    }
    nav a.nav-link:hover{
      background:rgba(109,92,255,.10);
      color:rgba(22,24,29,1);
      transform:translateY(-1px);
    }

    .nav-actions{
      display:flex; align-items:center; gap:10px;
      min-width:260px; justify-content:flex-end;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:#fff;
      color:rgba(22,24,29,.92);
      font-weight:650;
      font-size:13px;
      box-shadow:0 8px 25px rgba(20,26,46,.06);
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus), 0 10px 30px rgba(20,26,46,.10)}
    .btn:hover{transform:translateY(-1px); box-shadow:0 12px 40px rgba(20,26,46,.12); border-color:rgba(109,92,255,.25)}
    .btn-primary{
      border-color:rgba(109,92,255,.20);
      background:linear-gradient(135deg, rgba(109,92,255,.96), rgba(34,211,238,.92));
      color:#fff;
      box-shadow:0 14px 44px rgba(109,92,255,.18);
      position:relative;
      overflow:hidden;
    }
    .btn-primary::after{
      content:"";
      position:absolute; inset:-60% -40%;
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
      transform:rotate(20deg) translateX(-140%);
      transition:transform .7s ease;
    }
    .btn-primary:hover::after{transform:rotate(20deg) translateX(140%)}
    .btn-ghost{
      background:rgba(255,255,255,.70);
      border-color:rgba(17,24,39,.10);
    }
    .icon-dot{
      width:10px; height:10px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.4) 30%, transparent 31%),
        linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 0 0 6px rgba(109,92,255,.12);
      flex:none;
    }

    .menu-btn{
      display:none;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:#fff;
      box-shadow:0 8px 25px rgba(20,26,46,.06);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .menu-btn:hover{transform:translateY(-1px); box-shadow:0 12px 40px rgba(20,26,46,.12)}
    .menu-btn svg{opacity:.85}

    .mobile-panel{
      display:none;
      padding:10px 0 16px;
    }
    .mobile-panel .row{
      display:flex; flex-direction:column; gap:8px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.85);
      border-radius:18px;
      padding:12px;
      box-shadow:0 18px 60px rgba(20,26,46,.10);
    }
    .mobile-panel a.nav-link{
      padding:10px 10px; border-radius:14px;
      font-size:14px;
      color:rgba(22,24,29,.92);
      border:1px solid transparent;
      background:transparent;
      transition:background .2s ease, border-color .2s ease, transform .2s ease;
    }
    .mobile-panel a.nav-link:hover{
      background:rgba(109,92,255,.10);
      border-color:rgba(109,92,255,.20);
      transform:translateY(-1px);
    }

    main{padding-bottom:18px}
    .section{
      padding:56px 0;
    }
    .section-tight{padding:44px 0}
    .title{
      font-size:34px; letter-spacing:-.6px;
      margin:0;
    }
    .lead{
      margin:12px 0 0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
      max-width:68ch;
    }
    .eyebrow{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(109,92,255,.18);
      background:linear-gradient(180deg, rgba(109,92,255,.10), rgba(34,211,238,.08));
      color:rgba(22,24,29,.92);
      font-weight:650;
      font-size:13px;
    }
    .eyebrow .spark{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 0 0 6px rgba(109,92,255,.12);
      flex:none;
    }

    .hero{
      padding:36px 0 22px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-card{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:
        radial-gradient(1000px 520px at 10% 0%, rgba(109,92,255,.22), transparent 56%),
        radial-gradient(1000px 520px at 95% 15%, rgba(34,211,238,.18), transparent 54%),
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.60));
      box-shadow:var(--shadow);
      padding:26px;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:360px;
    }
    .hero-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(120deg, rgba(109,92,255,.25), rgba(34,211,238,.22), rgba(255,79,216,.10));
      filter: blur(24px);
      opacity:.55;
      pointer-events:none;
    }
    .hero-inner{
      position:relative; z-index:1;
      display:flex; flex-direction:column;
      gap:14px;
      height:100%;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:14px;
      align-items:center;
    }
    .hero-badges{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:6px;
    }
    .badge{
      padding:8px 11px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.7);
      color:rgba(22,24,29,.9);
      font-size:13px;
      font-weight:650;
      display:flex; align-items:center; gap:9px;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .badge:hover{transform:translateY(-1px); box-shadow:0 14px 40px rgba(20,26,46,.12)}
    .badge i{
      width:18px; height:18px; border-radius:8px;
      background:linear-gradient(135deg, rgba(109,92,255,.95), rgba(34,211,238,.85));
      box-shadow:0 0 0 6px rgba(109,92,255,.10);
      display:inline-block;
    }

    .hero-aside{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.55));
      box-shadow:var(--shadow2);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:12px;
      position:relative;
      overflow:hidden;
      min-height:360px;
    }
    .hero-aside::after{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(800px 420px at 30% 0%, rgba(255,79,216,.14), transparent 55%),
        radial-gradient(700px 380px at 90% 40%, rgba(34,211,238,.12), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .aside-inner{position:relative; z-index:1; display:flex; flex-direction:column; gap:12px; height:100%}
    .aside-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .aside-top h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .aside-top p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .pulse-pill{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(109,92,255,.18);
      background:rgba(255,255,255,.7);
      height:fit-content;
      user-select:none;
      white-space:nowrap;
    }
    .pulse{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 0 0 6px rgba(109,92,255,.12);
      position:relative;
    }
    .pulse::after{
      content:"";
      position:absolute; inset:-10px;
      border-radius:50%;
      border:1px solid rgba(109,92,255,.35);
      animation:pulse 2.2s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{transform:scale(.6); opacity:.0}
      18%{opacity:.55}
      60%{transform:scale(1.2); opacity:.0}
      100%{opacity:0}
    }
    .mini-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:2px;
    }
    .stat{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.65);
      padding:12px 12px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .stat:hover{
      transform:translateY(-1px);
      box-shadow:0 18px 60px rgba(20,26,46,.10);
      border-color:rgba(109,92,255,.22);
    }
    .stat strong{
      display:block;
      font-size:18px;
      letter-spacing:-.3px;
    }
    .stat span{
      display:block;
      margin-top:6px;
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.35;
    }

    .aside-list{
      display:flex; flex-direction:column; gap:8px;
      margin-top:auto;
    }
    .aside-item{
      display:flex; gap:10px; align-items:flex-start;
      border-radius:16px;
      border:1px dashed rgba(17,24,39,.14);
      background:rgba(255,255,255,.52);
      padding:10px 12px;
    }
    .aside-item b{font-size:13px}
    .aside-item em{
      font-style:normal;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.45;
      margin-top:2px;
      display:block;
    }
    .check{
      width:18px; height:18px;
      border-radius:8px;
      flex:none;
      background:rgba(22,163,74,.10);
      border:1px solid rgba(22,163,74,.22);
      position:relative;
      margin-top:1px;
    }
    .check::after{
      content:"";
      position:absolute;
      width:8px; height:4px;
      border-left:2px solid rgba(22,163,74,.9);
      border-bottom:2px solid rgba(22,163,74,.9);
      transform:rotate(-45deg);
      left:4px; top:6px;
    }

    .grid-2{
      display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start;
    }
    .grid-3{
      display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;
    }
    .grid-4{
      display:grid; grid-template-columns:repeat(4, 1fr); gap:12px;
    }
    .card{
      border-radius:var(--radius);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.72);
      box-shadow:0 14px 44px rgba(20,26,46,.06);
      padding:18px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{
      transform:translateY(-2px);
      box-shadow:0 22px 70px rgba(20,26,46,.12);
      border-color:rgba(109,92,255,.20);
    }
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:10px 0 0;
      color:var(--muted);
      line-height:1.7;
      font-size:13.5px;
    }
    .card .meta{
      margin-top:14px;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .chip{
      font-size:12.5px;
      color:rgba(22,24,29,.88);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.55);
      padding:7px 10px;
      border-radius:999px;
      user-select:none;
    }
    .chip.brand{
      border-color:rgba(109,92,255,.18);
      background:linear-gradient(180deg, rgba(109,92,255,.10), rgba(34,211,238,.06));
    }

    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom:18px;
    }
    .section-head .right{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .small-note{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.4;
    }

    .process{
      display:grid; grid-template-columns: 1.15fr .85fr; gap:18px;
      align-items:start;
    }
    .steps{
      display:flex; flex-direction:column; gap:10px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      padding:14px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step:hover{
      transform:translateY(-1px);
      border-color:rgba(109,92,255,.22);
      box-shadow:0 18px 60px rgba(20,26,46,.10);
    }
    .step-num{
      width:36px; height:36px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(109,92,255,.95), rgba(34,211,238,.85));
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      font-weight:850;
      box-shadow:0 18px 45px rgba(109,92,255,.22);
      flex:none;
    }
    .step b{font-size:14.5px}
    .step span{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.65;
    }

    .comparison{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      box-shadow:0 18px 60px rgba(20,26,46,.08);
      overflow:hidden;
    }
    .comparison-top{
      padding:16px 16px 0;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .rating{
      display:flex; align-items:center; gap:12px;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.62);
    }
    .stars{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      background:conic-gradient(from 200deg, var(--brand2), var(--brand), var(--brand3));
      clip-path: polygon(50% 0%, 62% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 38% 35%);
      box-shadow:0 10px 30px rgba(109,92,255,.18);
    }
    .rating strong{
      font-size:16px;
      letter-spacing:-.2px;
    }
    .rating span{
      display:block;
      color:var(--muted2);
      font-size:12.5px;
      margin-top:4px;
    }
    .comparison-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      margin-top:12px;
      overflow:auto;
    }
    .comparison-table-wrapper{
      overflow:auto;
      border-top:1px solid rgba(17,24,39,.08);
    }
    table{
      width:100%;
      min-width:720px;
      background:transparent;
    }
    th, td{
      padding:14px 14px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:top;
      text-align:left;
      font-size:13.5px;
      line-height:1.55;
    }
    th{
      background:linear-gradient(180deg, rgba(109,92,255,.10), rgba(34,211,238,.06));
      color:rgba(22,24,29,.94);
      font-weight:800;
      position:sticky;
      top:0;
      z-index:1;
    }
    tr:last-child td{border-bottom:none}
    .td-strong{font-weight:850}
    .pos{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .tag{
      font-size:12.5px;
      border-radius:999px;
      padding:7px 10px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.58);
      color:rgba(22,24,29,.88);
      user-select:none;
      white-space:nowrap;
    }
    .tag.ok{
      border-color:rgba(22,163,74,.22);
      background:rgba(22,163,74,.10);
    }
    .tag.brand{
      border-color:rgba(109,92,255,.22);
      background:rgba(109,92,255,.10);
    }
    .tag.warn{
      border-color:rgba(245,158,11,.25);
      background:rgba(245,158,11,.12);
    }

    .timeline{
      display:grid; grid-template-columns: 1fr; gap:10px;
    }
    .timeline-item{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      padding:14px 14px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .timeline-dot{
      width:16px; height:16px;
      border-radius:6px;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 0 0 7px rgba(109,92,255,.10);
      flex:none;
      margin-top:3px;
    }
    .timeline-item b{font-size:14.5px}
    .timeline-item span{display:block; margin-top:6px; color:var(--muted); font-size:13.2px; line-height:1.65}

    .accordion{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      box-shadow:0 18px 60px rgba(20,26,46,.08);
      overflow:hidden;
    }
    .acc-item{
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .acc-item:last-child{border-bottom:none}
    .acc-btn{
      width:100%;
      background:transparent;
      border:0;
      padding:16px 16px;
      text-align:left;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      cursor:pointer;
      font-weight:800;
      font-size:14px;
      color:rgba(22,24,29,.96);
    }
    .acc-btn:focus{outline:none; box-shadow:inset 0 0 0 3px var(--focus)}
    .acc-btn .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.60);
      display:flex; align-items:center; justify-content:center;
      flex:none;
      transition:transform .22s ease, border-color .22s ease;
    }
    .acc-item[aria-expanded="true"] .acc-btn .chev{
      transform:rotate(180deg);
      border-color:rgba(109,92,255,.25);
    }
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
    }
    .acc-inner{
      padding:0 16px 16px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

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

    .testimonials{
      display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;
    }
    .quote{
      position:relative;
      overflow:hidden;
    }
    .quote::after{
      content:"";
      position:absolute;
      right:-40px; top:-40px;
      width:140px; height:140px;
      background:radial-gradient(circle at 30% 30%, rgba(109,92,255,.22), transparent 55%),
        radial-gradient(circle at 60% 70%, rgba(34,211,238,.18), transparent 55%);
      filter: blur(0px);
      opacity:.9;
      pointer-events:none;
    }
    .quote .topline{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      position:relative;
      z-index:1;
    }
    .avatar{
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:linear-gradient(135deg, rgba(109,92,255,.18), rgba(34,211,238,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:rgba(22,24,29,.92);
      flex:none;
    }
    .quote h3{margin:12px 0 0; font-size:15px; position:relative; z-index:1}
    .quote p{position:relative; z-index:1}
    .person{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
      position:relative; z-index:1;
    }
    .person span{
      color:var(--muted2);
      font-size:12.5px;
    }

    .cards-list{
      display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;
    }
    .mini-card{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow:0 14px 44px rgba(20,26,46,.06);
      display:flex; flex-direction:column;
      gap:10px;
    }
    .mini-card:hover{
      transform:translateY(-2px);
      box-shadow:0 22px 70px rgba(20,26,46,.12);
      border-color:rgba(109,92,255,.20);
    }
    .mini-card .kicker{
      display:flex; align-items:center; gap:10px;
      color:rgba(22,24,29,.92);
      font-weight:850;
      font-size:13px;
    }
    .mini-card .kicker .dot{
      width:12px; height:12px; border-radius:5px;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 0 0 6px rgba(109,92,255,.10);
    }
    .mini-card b{font-size:15px}
    .mini-card p{
      margin:0;
      color:var(--muted);
      font-size:13.4px;
      line-height:1.7;
    }
    .mini-card .links{
      margin-top:auto;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .link-pill{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      color:rgba(22,24,29,.9);
      font-size:13px; font-weight:700;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      display:inline-flex; align-items:center; gap:8px;
    }
    .link-pill:hover{
      transform:translateY(-1px);
      border-color:rgba(109,92,255,.24);
      background:rgba(109,92,255,.08);
      box-shadow:0 16px 50px rgba(20,26,46,.12);
    }
    .arrow{
      width:18px; height:18px;
      border-radius:8px;
      background:rgba(109,92,255,.12);
      border:1px solid rgba(109,92,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:none;
    }

    .form{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      margin-top:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-size:13px; font-weight:750; color:rgba(22,24,29,.92);
    }
    .input, select.input, textarea.input{
      width:100%;
      border-radius:14px;
      padding:12px 12px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.78);
      color:rgba(22,24,29,.95);
      font-size:14px;
      outline:none;
      transition:box-shadow .18s ease, border-color .18s ease, transform .18s ease;
      box-shadow:0 10px 30px rgba(20,26,46,.05);
    }
    textarea.input{min-height:118px; resize:vertical}
    .input:focus{
      border-color:rgba(109,92,255,.35);
      box-shadow:0 0 0 4px var(--focus), 0 12px 40px rgba(20,26,46,.10);
    }
    .form .full{grid-column:1 / -1;}
    .form-actions{
      grid-column:1 / -1;
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-top:6px;
    }
    .help-inline{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.5;
      max-width:60ch;
    }

    footer{
      padding:26px 0 34px;
      border-top:1px solid rgba(17,24,39,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(246,248,255,.95));
    }
    .footer-top{
      display:grid; grid-template-columns: 1.2fr .8fr; gap:16px;
      align-items:start;
    }
    .footer-brand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footer-brand img{
      width:46px; height:46px; border-radius:18px;
      background:rgba(255,255,255,.7);
      border:1px solid rgba(109,92,255,.18);
      box-shadow:0 12px 40px rgba(109,92,255,.18);
      object-fit:contain;
      flex:none;
    }
    .footer-brand strong{
      display:block; font-size:15px; letter-spacing:-.2px;
    }
    .footer-brand p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.3px; line-height:1.7;
      max-width:62ch;
    }
    .footer-links{
      display:flex; gap:12px; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .footer-links a{
      font-size:13px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      color:rgba(22,24,29,.9);
      transition:transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
    }
    .footer-links a:hover{
      transform:translateY(-1px);
      border-color:rgba(109,92,255,.24);
      background:rgba(109,92,255,.08);
      box-shadow:0 16px 50px rgba(20,26,46,.12);
    }
    .footer-bottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-top:18px;
      flex-wrap:wrap;
    }
    .copyright{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.6;
    }
    .footer-right{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .tiny-link{
      font-size:12.5px; color:rgba(22,24,29,.86);
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
    }

    .float-kefu{
      position:fixed;
      right:16px; bottom:16px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-card{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 60px rgba(20,26,46,.18);
      padding:12px;
      width:210px;
      transform-origin: 100% 100%;
      animation:floatIn .5s ease both;
    }
    @keyframes floatIn{
      from{opacity:0; transform:translateY(10px) scale(.98)}
      to{opacity:1; transform:translateY(0) scale(1)}
    }
    .float-card .head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .float-card .head strong{font-size:13.5px}
    .close-float{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.70);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition:transform .18s ease;
    }
    .close-float:hover{transform:translateY(-1px)}
    .float-card .kefu{
      display:flex; align-items:center; gap:12px;
    }
    .qr{
      width:66px; height:66px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
      object-fit:cover;
      flex:none;
    }
    .float-card p{
      margin:0;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.5;
    }
    .float-main{
      width:52px; height:52px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.12);
      background:linear-gradient(135deg, rgba(109,92,255,.96), rgba(34,211,238,.92));
      box-shadow:0 20px 70px rgba(109,92,255,.25);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .float-main:hover{transform:translateY(-2px); box-shadow:0 26px 85px rgba(109,92,255,.30)}
    .float-main svg{filter: drop-shadow(0 10px 20px rgba(0,0,0,.10))}
    .float-tip{
      font-size:12.5px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.76);
      box-shadow:0 18px 60px rgba(20,26,46,.14);
      max-width:210px;
      color:rgba(22,24,29,.88);
      display:none;
    }

    .to-top{
      position:fixed;
      left:16px; bottom:16px;
      z-index:79;
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 60px rgba(20,26,46,.14);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, opacity .18s ease;
      opacity:0; pointer-events:none;
    }
    .to-top.show{
      opacity:1; pointer-events:auto;
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      .hero-card,.hero-aside{min-height:unset}
      .process{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .grid-3{grid-template-columns:1fr}
      .grid-4{grid-template-columns:1fr 1fr}
      .cards-list{grid-template-columns:1fr}
      .testimonials{grid-template-columns:1fr}
      .float-card{display:none}
      .footer-top{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
      .cards-row{grid-template-columns:1fr}
      table{min-width:620px}
    }
    @media (max-width: 860px){
      nav ul{display:none}
      .menu-btn{display:flex}
      .mobile-panel{display:block}
      .nav-actions{min-width:auto}
    }