:root{
      --bg0:#ffffff;
      --bg1:#fff6f0;
      --bg2:#f6f7fb;
      --text:#111827;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(17,24,39,.10);
      --card:rgba(255,255,255,.86);
      --shadow:0 14px 38px rgba(17,24,39,.10);
      --shadow2:0 10px 26px rgba(17,24,39,.08);
      --primary:#ff3b6a;
      --primary2:#7c3aed;
      --accent:#06b6d4;
      --ok:#10b981;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:24px;
      --container:1160px;
    }
    *{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", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(1000px 700px at 10% -10%, rgba(255,59,106,.14), transparent 55%),
        radial-gradient(900px 680px at 100% 0%, rgba(124,58,237,.14), transparent 50%),
        linear-gradient(180deg, #fff 0%, #fff 35%, var(--bg2) 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:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
      background:#fff; color:#000;
    }
    .skip-link:focus{
      left:14px; top:14px; width:auto; height:auto; padding:10px 14px; border-radius:12px; z-index:9999;
      border:1px solid var(--line); box-shadow:var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between; gap:16px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:210px;
    }
    .logo{
      width:40px; height:40px; border-radius:14px;
      background: linear-gradient(135deg, rgba(255,59,106,.16), rgba(124,58,237,.14));
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      box-shadow:0 10px 24px rgba(17,24,39,.06);
    }
    .brand .logo img{width:100%; height:100%; object-fit:contain}
    .brand-title{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand-title strong{
      font-size:14px; letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px; color:var(--muted2);
    }
    nav ul{
      list-style:none; margin:0; padding:0; display:flex; align-items:center; gap:14px;
    }
    nav a.nav-link{
      font-size:13px; color:var(--muted);
      padding:10px 10px; border-radius:999px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      display:inline-flex; align-items:center; gap:8px;
      white-space:nowrap;
    }
    nav a.nav-link:hover{
      background: rgba(255,59,106,.10);
      color: #111827;
      transform: translateY(-1px);
    }
    .nav-actions{
      display:flex; align-items:center; gap:10px;
      min-width:210px; justify-content:flex-end;
    }
    .btn{
      border:1px solid rgba(17,24,39,.12);
      background: #fff;
      color: #111827;
      padding:10px 14px;
      border-radius:14px;
      font-weight:700;
      font-size:13px;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      user-select:none;
    }
    .btn:focus{outline: 3px solid rgba(6,182,212,.20); outline-offset:2px}
    .btn:hover{transform: translateY(-1px); box-shadow:0 14px 26px rgba(17,24,39,.10); border-color:rgba(17,24,39,.18)}
    .btn.primary{
      border-color: transparent;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      color:#fff;
      box-shadow: 0 16px 38px rgba(255,59,106,.22);
    }
    .btn.primary:hover{box-shadow: 0 18px 46px rgba(124,58,237,.22)}
    .btn.ghost{
      background: rgba(255,255,255,.55);
    }
    .icon-dot{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 45%), linear-gradient(135deg, var(--accent), var(--primary2));
      box-shadow: 0 10px 22px rgba(6,182,212,.20);
    }

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

    .mobile-panel{
      display:none;
      padding: 0 0 14px 0;
    }
    .mobile-panel .mobile-links{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:12px 0 0 0;
    }
    .mobile-panel a.nav-link{
      background: rgba(255,255,255,.7);
      border:1px solid rgba(17,24,39,.10);
      padding:10px 12px;
      border-radius:14px;
      font-size:13px;
      color: var(--muted);
    }
    .mobile-panel a.nav-link:hover{
      color:#111827; background: rgba(255,59,106,.09)
    }

    .hero{
      position:relative;
      padding: 34px 0 6px 0;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-card{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.74)),
        radial-gradient(600px 300px at 0% 0%, rgba(255,59,106,.16), transparent 55%),
        radial-gradient(540px 260px at 100% 15%, rgba(124,58,237,.18), transparent 60%);
      box-shadow: var(--shadow2);
      padding:22px;
      overflow:hidden;
      position:relative;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(400px 220px at 20% 10%, rgba(6,182,212,.16), transparent 60%),
        radial-gradient(380px 210px at 85% 0%, rgba(255,59,106,.12), transparent 55%);
      pointer-events:none;
    }
    .hero-inner{position:relative; z-index:1}
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px; border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      color: var(--muted);
      font-size:13px; font-weight:700;
    }
    .kicker b{color:#111827}
    .hero h1{
      margin:14px 0 10px 0;
      font-size:30px;
      letter-spacing:-.6px;
      line-height:1.15;
    }
    .lead{
      color: var(--muted);
      font-size:15px;
      line-height:1.7;
      margin:0 0 16px 0;
      max-width: 62ch;
    }
    .hero-cta{
      display:flex; flex-wrap:wrap; gap:12px; align-items:center;
      margin-bottom:16px;
    }
    .trust-row{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:6px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      border-radius:999px;
      padding:10px 12px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(17,24,39,.10);
      color: var(--muted);
      font-weight:700;
      font-size:13px;
    }
    .pill i{
      width:26px; height:26px; border-radius:10px;
      display:inline-flex; align-items:center; justify-content:center;
      background: rgba(255,59,106,.12);
      border:1px solid rgba(255,59,106,.20);
    }
    .pill:nth-child(2) i{background: rgba(124,58,237,.12); border-color: rgba(124,58,237,.20)}
    .pill:nth-child(3) i{background: rgba(6,182,212,.12); border-color: rgba(6,182,212,.20)}
    .hero-side{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.70));
      box-shadow: var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .hero-side:after{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(135deg, rgba(255,59,106,.16), transparent 35%),
        linear-gradient(315deg, rgba(124,58,237,.14), transparent 42%);
      pointer-events:none;
      opacity:.9;
    }
    .side-inner{position:relative; z-index:1}
    .side-title{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .side-title h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.7);
      color: var(--muted);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }
    .badge .spark{
      width:10px; height:10px; border-radius:50%;
      background: conic-gradient(from 180deg, var(--primary), var(--accent), var(--primary2), var(--primary));
      box-shadow: 0 10px 26px rgba(255,59,106,.18);
    }
    .metrics{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .metric{
      background: rgba(255,255,255,.76);
      border:1px solid rgba(17,24,39,.10);
      border-radius:16px;
      padding:14px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .metric:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(180px 120px at 10% 10%, rgba(255,59,106,.16), transparent 60%);
      opacity:.7;
      pointer-events:none;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow:0 18px 34px rgba(17,24,39,.10);
      border-color: rgba(17,24,39,.18);
    }
    .metric .num{
      font-size:18px; font-weight:900; letter-spacing:-.4px;
      margin-bottom:6px; position:relative; z-index:1;
    }
    .metric .label{
      color:var(--muted2);
      font-size:12.5px; line-height:1.4;
      position:relative; z-index:1;
      font-weight:700;
    }
    .side-actions{
      margin-top:14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .side-mini{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      padding:12px;
      background: rgba(255,255,255,.72);
    }
    .side-mini .row{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .side-mini h3{
      margin:0; font-size:13.5px;
    }
    .side-mini p{
      margin:6px 0 0 0; color:var(--muted); font-size:12.8px; line-height:1.6;
    }
    .chips{
      display:flex; flex-wrap:wrap; gap:8px; margin-top:10px;
    }
    .chip{
      font-size:12px; font-weight:800;
      padding:7px 10px; border-radius:999px;
      background: rgba(255,59,106,.09);
      border:1px solid rgba(255,59,106,.16);
      color:#111827;
      transition: transform .18s ease;
      white-space:nowrap;
    }
    .chip:nth-child(2){background: rgba(124,58,237,.09); border-color: rgba(124,58,237,.16)}
    .chip:nth-child(3){background: rgba(6,182,212,.09); border-color: rgba(6,182,212,.16)}
    .chip:nth-child(4){background: rgba(16,185,129,.10); border-color: rgba(16,185,129,.18)}
    .chip:hover{transform: translateY(-1px)}

    section{padding: 28px 0}
    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:16px;
    }
    .section-title h2{
      margin:0;
      font-size:20px;
      letter-spacing:-.35px;
    }
    .section-title p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.6;
      max-width: 56ch;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:14px;
    }
    .card{
      background: var(--card);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius);
      box-shadow: 0 10px 24px rgba(17,24,39,.05);
      padding:16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(17,24,39,.10);
      border-color: rgba(17,24,39,.18);
    }
    .card .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .card h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card .desc{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .mini-icon{
      width:38px; height:38px; border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(255,59,106,.12), rgba(124,58,237,.12));
      flex: 0 0 auto;
    }
    .mini-icon svg{width:18px; height:18px}
    .tag-row{
      display:flex; flex-wrap:wrap; gap:8px; margin-top:12px;
    }
    .tag{
      font-size:12px; font-weight:800;
      padding:7px 10px; border-radius:999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(17,24,39,.10);
      color: var(--muted);
    }

    .process{
      display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:14px;
    }
    .step{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow:0 10px 22px rgba(17,24,39,.05);
      position:relative;
      overflow:hidden;
    }
    .step:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(250px 140px at 20% 0%, rgba(255,59,106,.14), transparent 60%),
        radial-gradient(220px 140px at 100% 30%, rgba(124,58,237,.12), transparent 60%);
      opacity:.85;
      pointer-events:none;
    }
    .step .in{position:relative; z-index:1}
    .step .num{
      display:inline-flex; align-items:center; justify-content:center;
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.75);
      font-weight:950;
      letter-spacing:-.3px;
      margin-bottom:10px;
    }
    .step h3{margin:0 0 6px 0; font-size:15px}
    .step p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.7}

    .comparison-wrap{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.60));
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow2);
      padding:16px;
      overflow:hidden;
    }
    .comparison-head{
      display:flex; flex-wrap:wrap; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:14px;
    }
    .rating{
      display:flex; gap:12px; align-items:flex-start;
    }
    .rating .stars{
      width:120px;
      height:84px;
      border-radius:20px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(240px 120px at 30% 10%, rgba(255,59,106,.18), transparent 60%),
        radial-gradient(220px 120px at 100% 30%, rgba(124,58,237,.14), transparent 60%),
        rgba(255,255,255,.76);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 12px 28px rgba(17,24,39,.08);
      padding:10px;
    }
    .stars svg{width:64px; height:38px}
    .rating .score{
      padding-top:6px;
    }
    .rating .score .top{
      display:flex; align-items:baseline; gap:10px; margin:0;
    }
    .rating .score .top strong{
      font-size:28px; letter-spacing:-.6px;
    }
    .rating .score .top span{
      color:var(--muted);
      font-weight:900;
      font-size:13px;
    }
    .rating .score p{
      margin:8px 0 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.6;
      max-width: 52ch;
    }
    .table-wrap{
      overflow:auto;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 720px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:top;
      font-size:13.5px;
      line-height:1.5;
      color: var(--muted);
    }
    th{
      color:#111827;
      font-size:13px;
      font-weight:950;
      background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.72));
      position:sticky;
      top:0;
      z-index:1;
      border-bottom:1px solid rgba(17,24,39,.10);
    }
    td strong{color:#111827}
    .mark{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900;
      color:#111827;
    }
    .mark .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 10px 22px rgba(255,59,106,.20);
    }

    .h2-split{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:16px;
    }
    .section-actions{
      display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end;
    }

    .accordions{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
    }
    details.faq{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius);
      box-shadow:0 10px 24px rgba(17,24,39,.05);
      padding: 12px 14px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    details.faq[open]{
      border-color: rgba(255,59,106,.26);
      box-shadow:0 18px 40px rgba(255,59,106,.12);
      transform: translateY(-2px);
    }
    details.faq summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:950;
      color:#111827;
      font-size:14.3px;
      padding: 6px 2px;
    }
    details.faq summary::-webkit-details-marker{display:none}
    .faq-icon{
      width:28px; height:28px;
      border-radius:12px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.7);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease;
    }
    details.faq[open] .faq-icon{transform: rotate(45deg)}
    details.faq .answer{
      margin-top:10px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
      padding: 0 2px 2px 2px;
    }

    .reviews{
      display:grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .review{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow:0 10px 24px rgba(17,24,39,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .review:hover{
      transform: translateY(-2px);
      border-color: rgba(17,24,39,.18);
      box-shadow:0 18px 40px rgba(17,24,39,.10);
    }
    .review .head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .avatar{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(255,59,106,.12), rgba(6,182,212,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      letter-spacing:-.3px;
      color:#111827;
    }
    .review .role{
      font-size:13px; font-weight:950; margin:0;
      color:#111827;
    }
    .review .meta{
      margin:6px 0 0 0; color:var(--muted2);
      font-size:12.3px; font-weight:800;
    }
    .review p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    .list-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .bullets{
      margin:0; padding-left:18px;
      color:var(--muted);
      font-size:13.7px;
      line-height:1.85;
    }
    .bullets li{margin:6px 0}
    .service-net{
      display:flex; flex-wrap:wrap; gap:10px; margin-top:10px;
    }
    .net-pill{
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.76);
      border:1px solid rgba(17,24,39,.10);
      color:var(--muted);
      font-weight:900;
      font-size:12.8px;
    }

    .steps-vertical{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .process-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .process-item:hover{
      transform: translateY(-2px);
      border-color: rgba(17,24,39,.18);
      box-shadow:0 18px 40px rgba(17,24,39,.10);
    }
    .process-item .left{
      width:46px; height:46px; border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(255,59,106,.12), rgba(124,58,237,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; letter-spacing:-.4px;
      flex: 0 0 auto;
    }
    .process-item h3{margin:0; font-size:15px}
    .process-item p{margin:6px 0 0 0; color:var(--muted); font-size:13.5px; line-height:1.7}

    .case-grid{
      display:grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .case{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow:0 10px 24px rgba(17,24,39,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column;
      gap:10px;
      min-height: 205px;
    }
    .case:hover{
      transform: translateY(-2px);
      border-color: rgba(17,24,39,.18);
      box-shadow:0 18px 40px rgba(17,24,39,.10);
    }
    .case .k{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .case .k strong{font-size:14px}
    .case .k span{
      font-size:12px; font-weight:950;
      color:#111827;
      background: rgba(255,59,106,.10);
      border:1px solid rgba(255,59,106,.18);
      padding:7px 10px; border-radius:999px;
      white-space:nowrap;
    }
    .case .m{
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      margin:0;
      flex:1;
    }
    .case .b{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .case .b a{
      font-size:12.5px; font-weight:950;
      color:#111827;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      padding:9px 10px;
      border-radius:14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .case .b a:hover{transform: translateY(-1px); box-shadow:0 16px 30px rgba(17,24,39,.10); border-color: rgba(17,24,39,.18)}

    .articles{
      display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:start;
    }
    .article-list{
      display:flex; flex-direction:column; gap:10px;
    }
    .article-item{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .article-item:hover{transform: translateY(-2px); border-color: rgba(17,24,39,.18); box-shadow:0 18px 40px rgba(17,24,39,.10)}
    .article-item h3{margin:0; font-size:14.5px}
    .article-item p{margin:6px 0 0 0; color:var(--muted); font-size:13.2px; line-height:1.7}
    .article-item a{
      flex:0 0 auto;
      font-size:12.5px; font-weight:1000;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      padding:9px 10px;
      border-radius:14px;
      color:#111827;
      white-space:nowrap;
    }
    .article-item a:hover{border-color: rgba(255,59,106,.24); background: rgba(255,59,106,.08)}
    .side-links{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow:0 10px 24px rgba(17,24,39,.05);
    }
    .side-links h3{margin:0 0 10px 0; font-size:15px}
    .side-links .grid-links{
      display:grid; grid-template-columns: 1fr 1fr; gap:10px;
    }
    .side-links a{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      padding:11px 10px; border-radius:16px;
      font-size:12.7px; font-weight:950; color:#111827;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      min-height:42px;
    }
    .side-links a:hover{transform: translateY(-1px); box-shadow:0 16px 30px rgba(17,24,39,.10); border-color: rgba(17,24,39,.18)}
    .side-links a .arrow{
      width:26px; height:26px; border-radius:12px;
      border:1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(255,59,106,.10), rgba(124,58,237,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#111827;
      flex:0 0 auto;
    }

    .form-card{
      padding:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(520px 260px at 0% 0%, rgba(255,59,106,.12), transparent 55%),
        radial-gradient(520px 260px at 100% 0%, rgba(124,58,237,.12), transparent 55%),
        rgba(255,255,255,.74);
      box-shadow: var(--shadow2);
    }
    .form-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      align-items:start;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-size:13px; font-weight:950;
      color:#111827;
    }
    .input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.14);
      background: rgba(255,255,255,.84);
      color:#111827;
      font-size:14px;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    textarea{min-height:120px; resize:vertical}
    .input:focus, select:focus, textarea:focus{
      outline:none;
      border-color: rgba(6,182,212,.40);
      box-shadow: 0 0 0 4px rgba(6,182,212,.16);
    }
    .form-actions{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between;
      margin-top:12px;
      padding-top:12px;
      border-top:1px dashed rgba(17,24,39,.14);
    }
    .hint{
      color:var(--muted2);
      font-size:12.8px;
      line-height:1.6;
      font-weight:800;
      max-width: 56ch;
    }

    .floating-customer{
      position:fixed; right:14px; bottom:18px; z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-btn{
      pointer-events:auto;
      display:inline-flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      box-shadow:0 18px 40px rgba(17,24,39,.14);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, opacity .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .float-btn:hover{transform: translateY(-2px); border-color: rgba(17,24,39,.18)}
    .float-btn .ico{
      width:36px; height:36px; border-radius:16px;
      background: linear-gradient(135deg, rgba(255,59,106,.14), rgba(124,58,237,.12));
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .float-btn .txt{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .float-btn .txt strong{font-size:13px}
    .float-btn .txt span{font-size:12px; color:var(--muted2); font-weight:900}
    .qr-pop{
      pointer-events:auto;
      width: 240px;
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.86);
      box-shadow:0 28px 70px rgba(17,24,39,.18);
      padding:12px;
      display:none;
    }
    .qr-pop.show{display:block}
    .qr-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .qr-head strong{font-size:13.5px}
    .qr-close{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:14px;
      padding:8px 10px;
      cursor:pointer;
      font-weight:1000;
      transition: transform .18s ease;
    }
    .qr-close:hover{transform: translateY(-1px)}
    .qr-body{
      display:flex; gap:12px; align-items:center;
    }
    .qr-body img{
      width:92px; height:92px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      object-fit:cover;
      background: #fff;
    }
    .qr-body p{
      margin:0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.65;
      font-weight:850;
    }

    .backtop{
      position:fixed; right:14px; bottom:150px; z-index:70;
      display:none;
    }
    .backtop.show{display:block}
    .backtop button{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      border-radius:18px;
      padding:12px 14px;
      cursor:pointer;
      box-shadow:0 18px 40px rgba(17,24,39,.14);
      font-weight:1000;
      transition: transform .18s ease;
    }
    .backtop button:hover{transform: translateY(-2px)}

    footer{
      padding: 26px 0 34px 0;
      background:
        radial-gradient(900px 360px at 0% 0%, rgba(255,59,106,.10), transparent 55%),
        radial-gradient(900px 360px at 100% 0%, rgba(124,58,237,.10), transparent 55%),
        linear-gradient(180deg, rgba(246,247,251,.80), rgba(255,255,255,.90));
      border-top:1px solid rgba(17,24,39,.08);
      margin-top: 10px;
    }
    .footer-grid{
      display:grid; grid-template-columns: 1.15fr .85fr; gap:14px; align-items:start;
    }
    .footer-card{
      padding:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.76);
      box-shadow:0 10px 24px rgba(17,24,39,.06);
    }
    .footer-card h3{margin:0 0 10px 0; font-size:15px}
    .footer-card p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
      font-weight:800;
    }
    .footer-links{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .footer-links a{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      padding:10px 12px; border-radius:14px;
      font-size:12.7px; font-weight:950; color:#111827;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .footer-links a:hover{transform: translateY(-1px); box-shadow:0 16px 30px rgba(17,24,39,.10); border-color: rgba(17,24,39,.18)}
    .fineprint{
      margin-top:14px;
      display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
      color:var(--muted2);
      font-size:12.8px;
      font-weight:900;
    }

    .logo-bands{
      margin-top:10px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .band{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; gap:10px;
      font-weight:950;
      color:#111827;
      font-size:12.8px;
      min-width: 160px;
    }
    .band i{
      width:30px; height:30px; border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(6,182,212,.12), rgba(255,59,106,.10));
      display:flex; align-items:center; justify-content:center;
      font-style:normal;
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .metrics{grid-template-columns: 1fr 1fr;}
      .grid-3{grid-template-columns: 1fr; }
      .grid-2{grid-template-columns: 1fr; }
      .process{grid-template-columns: 1fr 1fr}
      .accordions{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .list-grid{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      table{min-width: 680px}
      nav ul{display:none}
      .mobile-toggle{display:inline-flex}
      .mobile-panel.show{display:block}
      .nav-actions{min-width:auto}
      .brand{min-width:auto}
    }
    @media (max-width: 420px){
      .hero h1{font-size:26px}
      .process{grid-template-columns: 1fr}
      .metrics{grid-template-columns: 1fr}
    }

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