:root{
      --bg0:#fbfaf8;
      --bg1:#ffffff;
      --ink:#1f2328;
      --muted:#5d6772;
      --muted2:#7b8794;
      --line:rgba(15,23,42,.12);
      --card:rgba(255,255,255,.78);
      --shadow:0 14px 40px rgba(17,24,39,.08);
      --shadow2:0 10px 28px rgba(17,24,39,.10);
      --radius:18px;
      --radius2:14px;

      --c0:#6d28d9;
      --c1:#2563eb;
      --c2:#06b6d4;
      --c3:#f59e0b;
      --c4:#10b981;
      --hot:#7c3aed;

      --focus:rgba(124,58,237,.26);
      --btn:#111827;
      --btn2:#0f172a;
      --btnText:#ffffff;
      --soft:#f4f6ff;
      --soft2:#ecfeff;
      --soft3:#fff7ed;

      --container:1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1100px 520px at 18% -10%, rgba(109,40,217,.18), transparent 55%),
        radial-gradient(900px 460px at 82% 8%, rgba(37,99,235,.16), transparent 55%),
        radial-gradient(900px 520px at 50% 22%, rgba(6,182,212,.10), transparent 58%),
        linear-gradient(180deg, var(--bg0) 0%, #ffffff 52%, #fbfbfd 100%);
    }

    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(255,255,255,.72);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:210px;
    }
    .brand img{
      width:44px;
      height:44px;
      object-fit:contain;
      border-radius:12px;
      background:rgba(255,255,255,.9);
      box-shadow:0 10px 22px rgba(17,24,39,.08);
      border:1px solid rgba(15,23,42,.08);
    }
    .brand .brandText{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand .brandName{
      font-weight:860;
      letter-spacing:.2px;
      font-size:15px;
    }
    .brand .brandSub{
      font-size:12px;
      color:var(--muted);
      margin-top:3px;
      max-width:240px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .navRight{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .navLinks{
      display:flex;
      align-items:center;
      gap:14px;
      padding:0;
      margin:0;
      list-style:none;
    }
    .navLinks a{
      text-decoration:none;
      color:var(--muted);
      font-weight:650;
      font-size:13px;
      padding:10px 10px;
      border-radius:12px;
      transition:transform .2s ease, background-color .2s ease, color .2s ease;
      outline:none;
    }
    .navLinks a:hover{
      background:rgba(124,58,237,.08);
      color:var(--ink);
      transform:translateY(-1px);
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border:1px solid rgba(15,23,42,.10);
      border-radius:14px;
      padding:10px 14px;
      background:linear-gradient(135deg, rgba(109,40,217,.12), rgba(37,99,235,.10));
      color:var(--ink);
      font-weight:780;
      font-size:13px;
      text-decoration:none;
      transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 12px 26px rgba(124,58,237,.18);
      border-color:rgba(124,58,237,.35);
      background:linear-gradient(135deg, rgba(109,40,217,.18), rgba(37,99,235,.14));
    }
    .btnPrimary{
      background:linear-gradient(135deg, #6d28d9 0%, #2563eb 52%, #06b6d4 100%);
      color:#fff;
      border-color:rgba(255,255,255,.14);
      box-shadow:0 16px 40px rgba(37,99,235,.22);
    }
    .btnPrimary:hover{
      box-shadow:0 18px 48px rgba(37,99,235,.28);
      border-color:rgba(255,255,255,.22);
    }

    .iconDot{
      width:10px;height:10px;border-radius:50%;
      background:conic-gradient(from 180deg, #6d28d9, #2563eb, #06b6d4, #f59e0b, #10b981, #6d28d9);
      box-shadow:0 0 0 3px rgba(255,255,255,.12);
    }

    .menuBtn{
      display:none;
      align-items:center;
      justify-content:center;
      width:42px;height:42px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .menuBtn:hover{
      transform:translateY(-1px);
      box-shadow:0 10px 22px rgba(17,24,39,.10);
    }

    .mobilePanel{
      display:none;
      padding:12px 0 16px;
    }
    .mobilePanel .mobileLinks{
      display:flex; flex-direction:column; gap:8px;
      padding:0; margin:0; list-style:none;
    }
    .mobilePanel a{
      text-decoration:none;
      color:var(--ink);
      font-weight:750;
      padding:12px 12px;
      border:1px solid rgba(15,23,42,.10);
      border-radius:14px;
      background:rgba(255,255,255,.72);
    }

    main{
      padding-bottom:34px;
    }

    .hero{
      padding:34px 0 18px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:start;
    }
    .heroLeft{
      position:relative;
      border-radius:var(--radius);
      overflow:hidden;
      background:
        radial-gradient(900px 520px at 18% -8%, rgba(109,40,217,.28), transparent 55%),
        radial-gradient(700px 420px at 75% 5%, rgba(37,99,235,.24), transparent 52%),
        radial-gradient(900px 560px at 55% 30%, rgba(6,182,212,.16), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.70) 100%);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:var(--shadow);
      padding:22px 20px 18px;
      min-height:328px;
    }
    .heroLeft:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(90deg, rgba(124,58,237,.0) 0%, rgba(124,58,237,.24) 18%, rgba(37,99,235,.22) 40%, rgba(6,182,212,.20) 60%, rgba(245,158,11,.14) 80%, rgba(16,185,129,.0) 100%);
      opacity:.7;
      filter: blur(26px);
      pointer-events:none;
      transform:translateZ(0);
      animation: sheen 9s ease-in-out infinite;
    }
    @keyframes sheen{
      0%,100%{transform:translateX(-10px) translateY(0) scale(1)}
      50%{transform:translateX(18px) translateY(6px) scale(1.02)}
    }
    .heroContent{
      position:relative;
      z-index:2;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .kickerRow{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.64);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:0 10px 22px rgba(17,24,39,.06);
      font-weight:780;
      font-size:13px;
      color:var(--ink);
    }
    .kicker b{
      font-weight:900;
      color:#0f172a;
    }

    h1{
      font-size:34px;
      margin:0;
      letter-spacing:.2px;
      line-height:1.18;
    }
    .heroLead{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.65;
      max-width:62ch;
    }

    .heroActions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .heroMetaRow{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:10px;
      margin-top:14px;
    }
    .miniStat{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.66);
      padding:12px 12px;
      box-shadow:0 10px 22px rgba(17,24,39,.05);
      transition:transform .2s ease, box-shadow .2s ease;
      min-height:78px;
    }
    .miniStat:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(17,24,39,.10);
    }
    .miniStat .val{
      font-weight:950;
      font-size:18px;
      letter-spacing:.2px;
      display:flex; align-items:baseline; gap:6px;
    }
    .miniStat .unit{
      font-size:12px;
      color:var(--muted2);
      font-weight:800;
    }
    .miniStat .label{
      margin-top:6px;
      color:var(--muted);
      font-weight:720;
      font-size:12.5px;
      line-height:1.35;
    }

    .heroRight{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .rightTop{
      padding:18px 16px 10px;
      background:
        radial-gradient(560px 240px at 30% 10%, rgba(124,58,237,.18), transparent 55%),
        radial-gradient(540px 220px at 75% 20%, rgba(37,99,235,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.64));
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .rightTitle{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .rightTitle h2{
      font-size:15px; margin:0; font-weight:910; letter-spacing:.2px;
    }
    .pulseTag{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:850;
      color:#0f172a;
      background:rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.10);
    }
    .pulseDot{
      width:9px;height:9px;border-radius:50%;
      background:conic-gradient(from 180deg, #6d28d9, #2563eb, #06b6d4, #f59e0b, #10b981, #6d28d9);
      box-shadow:0 0 0 4px rgba(124,58,237,.10);
      animation:pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{transform:scale(1); opacity:1}
      50%{transform:scale(1.25); opacity:.75}
    }

    .rightList{
      padding:14px 16px 16px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .rightItem{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.66);
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .rightItem:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(17,24,39,.08);
    }
    .badgeIcon{
      width:36px;height:36px;border-radius:14px;
      background:linear-gradient(135deg, rgba(124,58,237,.16), rgba(37,99,235,.14));
      border:1px solid rgba(124,58,237,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .badgeIcon svg{width:18px;height:18px; fill:none; stroke:#4f46e5; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}
    .rightItem .t{
      font-weight:900; font-size:13px; margin:0;
    }
    .rightItem .d{
      margin:6px 0 0;
      color:var(--muted);
      font-size:12.6px;
      line-height:1.45;
      font-weight:700;
    }

    .section{
      padding:26px 0;
    }
    .sectionHead{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:14px;
      margin-bottom:14px;
    }
    .sectionTitle{
      margin:0;
      font-size:22px;
      font-weight:930;
      letter-spacing:.2px;
      line-height:1.25;
    }
    .sectionSub{
      margin:8px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width:70ch;
      font-weight:700;
    }
    .sectionRightHint{
      color:var(--muted2);
      font-size:12.5px;
      font-weight:760;
      white-space:nowrap;
    }

    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }

    .card{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 30px rgba(17,24,39,.06);
      overflow:hidden;
    }
    .cardPad{padding:16px}
    .cardHover{
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .cardHover:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 44px rgba(17,24,39,.10);
      border-color:rgba(124,58,237,.25);
    }

    .chipRow{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .chip{
      border-radius:999px;
      padding:8px 11px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.65);
      font-size:12.5px;
      color:var(--muted);
      font-weight:780;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .chip .spark{
      width:10px;height:10px;border-radius:50%;
      background:conic-gradient(from 180deg, #6d28d9, #2563eb, #06b6d4, #f59e0b, #10b981, #6d28d9);
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .step{
      padding:14px 14px 16px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(500px 240px at 20% 0%, rgba(124,58,237,.14), transparent 54%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.70));
      position:relative;
      overflow:hidden;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .step:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 44px rgba(17,24,39,.10);
    }
    .step:before{
      content:"";
      position:absolute; inset:auto -40px -44px auto;
      width:140px;height:140px;
      border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(124,58,237,.22), transparent 60%);
      filter: blur(4px);
      pointer-events:none;
    }
    .stepTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      position:relative;
    }
    .stepNum{
      font-weight:1000;
      font-size:20px;
      color:#111827;
      letter-spacing:.2px;
    }
    .stepIcon{
      width:38px;height:38px;border-radius:16px;
      border:1px solid rgba(124,58,237,.22);
      background:linear-gradient(135deg, rgba(124,58,237,.16), rgba(37,99,235,.12));
      display:flex; align-items:center; justify-content:center;
    }
    .stepIcon svg{width:18px;height:18px; fill:none; stroke:#4f46e5; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}
    .step h3{
      margin:12px 0 0;
      font-size:14px;
      font-weight:930;
      letter-spacing:.2px;
      position:relative;
    }
    .step p{
      margin:7px 0 0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.55;
      font-weight:720;
      position:relative;
    }

    .comparisonWrap{
      overflow:auto;
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 10px 30px rgba(17,24,39,.06);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:880px;
      font-size:13.5px;
    }
    thead th{
      text-align:left;
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.10);
      background:
        linear-gradient(90deg, rgba(124,58,237,.12), rgba(37,99,235,.10), rgba(6,182,212,.08));
      font-weight:950;
      color:#0f172a;
      position:sticky;
      top:0;
      z-index:2;
    }
    tbody td{
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      color:var(--muted);
      font-weight:720;
    }
    tbody tr:hover td{
      background:rgba(124,58,237,.045);
      color:#111827;
    }
    .tdStrong{
      color:#0f172a !important;
      font-weight:900 !important;
    }
    .scoreCell{
      display:flex; align-items:center; gap:10px;
    }
    .starRow{
      display:flex; gap:4px; align-items:center;
    }
    .star{
      width:16px;height:16px;
    }
    .ratingBadge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(245,158,11,.30);
      background:rgba(245,158,11,.10);
      color:#7a4b00;
      font-weight:950;
      white-space:nowrap;
    }

    .faqWrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    details{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 30px rgba(17,24,39,.05);
      overflow:hidden;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    details:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 44px rgba(17,24,39,.10);
      border-color:rgba(124,58,237,.22);
    }
    summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-weight:930;
      color:#0f172a;
    }
    summary::-webkit-details-marker{display:none}
    .sumText{
      display:flex;
      align-items:flex-start;
      gap:10px;
    }
    .qIcon{
      width:30px;height:30px;border-radius:14px;
      border:1px solid rgba(124,58,237,.22);
      background:linear-gradient(135deg, rgba(124,58,237,.14), rgba(37,99,235,.10));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .qIcon svg{width:16px;height:16px; fill:none; stroke:#4f46e5; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}
    .chev{
      width:22px;height:22px;
      flex:0 0 auto;
      border-radius:10px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.6);
      display:flex; align-items:center; justify-content:center;
      transition:transform .2s ease;
    }
    details[open] .chev{transform:rotate(180deg)}
    .answer{
      padding:0 14px 14px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      font-weight:720;
    }

    .reviewsGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .review{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(600px 260px at 10% 0%, rgba(6,182,212,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.70));
      box-shadow:0 10px 30px rgba(17,24,39,.05);
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .review:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 44px rgba(17,24,39,.10);
    }
    .reviewTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .avatar{
      width:42px;height:42px;border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:linear-gradient(135deg, rgba(124,58,237,.18), rgba(37,99,235,.14));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#0f172a;
    }
    .reviewRole{
      margin:0;
      font-size:12.5px;
      color:var(--muted2);
      font-weight:850;
      text-align:right;
    }
    .review p{
      margin:0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.7;
      font-weight:720;
    }

    .twoCol{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }

    .list{
      margin:0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .list li{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
    }
    .check{
      width:28px;height:28px;border-radius:12px;
      background:rgba(16,185,129,.12);
      border:1px solid rgba(16,185,129,.26);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .check svg{width:16px;height:16px; stroke:#0f7a47; fill:none; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round;}
    .liTitle{
      margin:0;
      font-weight:930;
      font-size:13.2px;
      color:#0f172a;
    }
    .liDesc{
      margin:6px 0 0;
      color:var(--muted);
      font-size:12.9px;
      line-height:1.55;
      font-weight:720;
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .timeCard{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 10px 30px rgba(17,24,39,.05);
      position:relative;
      overflow:hidden;
    }
    .timeCard:before{
      content:"";
      position:absolute;
      inset:-40px auto auto -60px;
      width:160px;height:160px;
      border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(124,58,237,.18), transparent 60%);
      filter: blur(6px);
      pointer-events:none;
    }
    .timeTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      position:relative;
    }
    .timeTag{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.22);
      background:rgba(124,58,237,.10);
      color:#4c1d95;
      font-weight:950;
      font-size:12.5px;
      white-space:nowrap;
    }
    .timeCard h3{
      margin:10px 0 0;
      font-weight:950;
      font-size:14px;
      position:relative;
    }
    .timeCard p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      font-weight:720;
      position:relative;
    }

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .caseCard{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 30px rgba(17,24,39,.05);
      overflow:hidden;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex;
      flex-direction:column;
    }
    .caseCard:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 44px rgba(17,24,39,.10);
      border-color:rgba(124,58,237,.22);
    }
    .caseHead{
      padding:14px 14px 10px;
      background:
        radial-gradient(520px 260px at 20% 0%, rgba(37,99,235,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.68));
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .caseHead h3{
      margin:0;
      font-size:14px;
      font-weight:960;
      line-height:1.4;
    }
    .caseMeta{
      margin-top:6px;
      color:var(--muted2);
      font-size:12.3px;
      font-weight:850;
    }
    .tagSet{
      display:flex; flex-wrap:wrap; gap:8px;
      padding:12px 14px 14px;
    }
    .tag{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
      color:var(--muted);
      font-size:12.3px;
      font-weight:820;
      white-space:nowrap;
    }
    .caseFoot{
      padding:14px;
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .caseFoot span{
      color:var(--muted);
      font-size:12.6px;
      font-weight:820;
    }
    .linkBtn{
      text-decoration:none;
      padding:9px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      color:#111827;
      font-weight:900;
      font-size:12.8px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .linkBtn:hover{
      transform:translateY(-1px);
      border-color:rgba(124,58,237,.30);
      box-shadow:0 12px 26px rgba(124,58,237,.16);
    }

    .articleList{
      display:flex; flex-direction:column; gap:10px;
    }
    .article{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 30px rgba(17,24,39,.05);
      display:flex; justify-content:space-between; gap:12px; align-items:flex-start;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .article:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 44px rgba(17,24,39,.10);
    }
    .article h3{
      margin:0;
      font-size:14px;
      font-weight:960;
      line-height:1.5;
    }
    .article p{
      margin:7px 0 0;
      color:var(--muted);
      font-size:12.9px;
      line-height:1.6;
      font-weight:720;
    }
    .article .right{
      display:flex; flex-direction:column; align-items:flex-end; gap:8px;
      min-width:150px;
    }
    .pill{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.22);
      background:rgba(124,58,237,.10);
      color:#4c1d95;
      font-weight:950;
      font-size:12px;
      white-space:nowrap;
    }
    .article .date{
      color:var(--muted2);
      font-size:12.3px;
      font-weight:850;
      white-space:nowrap;
    }

    form{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    label{
      display:flex; flex-direction:column; gap:7px;
      font-weight:880;
      font-size:12.7px;
      color:#0f172a;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      padding:12px 12px;
      background:rgba(255,255,255,.82);
      color:var(--ink);
      font-weight:760;
      outline:none;
      transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    textarea{min-height:108px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(124,58,237,.45);
      box-shadow:0 0 0 4px var(--focus);
    }
    .formActions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:2px;
    }
    .finePrint{
      color:var(--muted2);
      font-size:12.2px;
      font-weight:760;
      line-height:1.45;
    }

    .floatingHelp{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:70;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .helpBtn{
      display:flex;
      align-items:center;
      gap:10px;
      padding:11px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 16px 40px rgba(17,24,39,.12);
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      user-select:none;
    }
    .helpBtn:hover{
      transform:translateY(-2px);
      border-color:rgba(124,58,237,.30);
      box-shadow:0 22px 58px rgba(17,24,39,.14);
    }
    .helpBtn .bubble{
      width:38px;height:38px;border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(135deg, rgba(124,58,237,.16), rgba(37,99,235,.14));
      border:1px solid rgba(124,58,237,.22);
    }
    .helpBtn svg{width:18px;height:18px; stroke:#4f46e5; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}
    .helpBtn span{
      font-weight:950;
      font-size:13px;
      color:#0f172a;
    }

    .qrModal{
      position:fixed; inset:0;
      background:rgba(3,7,18,.48);
      backdrop-filter: blur(6px);
      display:none;
      align-items:center;
      justify-content:center;
      z-index:80;
      padding:18px;
    }
    .qrModal.show{display:flex}
    .qrPanel{
      width:min(420px, 100%);
      border-radius:22px;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(255,255,255,.25);
      box-shadow:0 30px 90px rgba(0,0,0,.22);
      overflow:hidden;
    }
    .qrHead{
      padding:16px 16px 10px;
      border-bottom:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(520px 260px at 20% 0%, rgba(124,58,237,.20), transparent 55%),
        radial-gradient(520px 260px at 80% 0%, rgba(37,99,235,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
    }
    .qrHead h3{
      margin:0;
      font-size:15px;
      font-weight:980;
    }
    .qrBody{
      padding:14px 16px 16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .qrBox{
      display:flex; align-items:center; justify-content:center;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      padding:12px;
    }
    .qrBox img{
      width:200px;
      height:auto;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    .qrFoot{
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      padding:0 16px 16px;
    }
    .ghost{
      background:rgba(255,255,255,.86);
      color:#0f172a;
    }
    .closeX{
      width:42px;height:42px;border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.86);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .closeX:hover{
      transform:translateY(-1px);
      box-shadow:0 16px 40px rgba(17,24,39,.12);
    }
    .closeX svg{width:18px;height:18px; stroke:#0f172a; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}

    footer{
      margin-top:18px;
      background:
        radial-gradient(900px 380px at 15% 0%, rgba(124,58,237,.16), transparent 55%),
        radial-gradient(760px 340px at 80% 0%, rgba(37,99,235,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.88));
      border-top:1px solid rgba(15,23,42,.10);
    }
    .footerInner{
      padding:22px 0;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:16px;
      align-items:start;
    }
    .footerLeft{
      display:flex; flex-direction:column; gap:12px;
    }
    .footBrand{
      display:flex; align-items:center; gap:12px;
    }
    .footBrand img{
      width:40px;height:40px; object-fit:contain;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.9);
    }
    .footBrand b{
      font-weight:1000;
      font-size:15px;
    }
    .footText{
      margin:0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.7;
      font-weight:720;
      max-width:70ch;
    }
    .friends{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:2px;
    }
    .friends a{
      text-decoration:none;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      color:var(--ink);
      font-weight:880;
      font-size:12.3px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .friends a:hover{
      transform:translateY(-1px);
      border-color:rgba(124,58,237,.30);
      box-shadow:0 12px 26px rgba(124,58,237,.14);
    }

    .footerRight{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
      padding:14px;
    }
    .footRow{
      display:flex; flex-direction:column; gap:10px;
    }
    .footRow .rItem{
      display:flex; justify-content:space-between; gap:10px; align-items:center;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.70);
    }
    .rItem span{
      color:var(--muted);
      font-size:12.7px;
      font-weight:850;
      white-space:nowrap;
    }
    .rItem a{
      text-decoration:none;
      color:#0f172a;
      font-weight:980;
      font-size:12.7px;
      white-space:nowrap;
    }
    .copyRow{
      padding:12px 0 18px;
      border-top:1px solid rgba(15,23,42,.08);
      color:var(--muted2);
      font-size:12.3px;
      font-weight:780;
    }

    .floatIn{
      opacity:0;
      transform:translateY(10px);
      transition:opacity .5s ease, transform .6s ease;
    }
    .floatIn.show{
      opacity:1;
      transform:translateY(0);
    }

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .heroLeft{min-height:unset}
      .heroMetaRow{grid-template-columns: repeat(3, minmax(0,1fr))}
      .steps{grid-template-columns: repeat(2, minmax(0,1fr))}
      .grid3{grid-template-columns: 1fr}
      .faqWrap{grid-template-columns: 1fr}
      .reviewsGrid{grid-template-columns: 1fr}
      .twoCol{grid-template-columns: 1fr}
      .timeline{grid-template-columns: 1fr}
      .caseGrid{grid-template-columns: 1fr}
      .footerInner{grid-template-columns: 1fr}
      .navLinks{display:none}
      .menuBtn{display:flex}
      .mobilePanel{display:block}
      .floatingHelp{right:12px; bottom:12px}
    }
    @media (max-width: 560px){
      h1{font-size:28px}
      .heroMetaRow{grid-template-columns: 1fr}
      .formGrid{grid-template-columns: 1fr}
      .container{padding:0 14px}
      .steps{grid-template-columns: 1fr}
    }