:root{
      --bg0:#ffffff;
      --bg1:#f6f7fb;
      --text:#101828;
      --muted:#5b6476;
      --muted2:#7a859d;
      --card:#ffffff;
      --line:rgba(16,24,40,.10);
      --shadow: 0 10px 30px rgba(16,24,40,.08);
      --shadow2: 0 12px 22px rgba(16,24,40,.10);
      --radius:18px;

      --brandA:#6D28D9;
      --brandB:#2563EB;
      --brandC:#22C55E;
      --brandD:#F97316;
      --brandE:#EC4899;

      --grad: linear-gradient(120deg, #2563EB 0%, #6D28D9 28%, #EC4899 58%, #F97316 100%);
      --grad2: linear-gradient(135deg, rgba(37,99,235,.18), rgba(109,40,217,.18), rgba(236,72,153,.16));
      --gradStroke: linear-gradient(135deg, rgba(37,99,235,.55), rgba(109,40,217,.55), rgba(236,72,153,.5));
      --btn:#0f172a;
      --btnText:#fff;

      --focus: 0 0 0 4px rgba(37,99,235,.18);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB",
                   "Microsoft YaHei", "Noto Sans SC", Arial, "Apple Color Emoji", "Segoe UI Emoji";
      background: radial-gradient(1200px 600px at 20% -10%, rgba(37,99,235,.12), transparent 55%),
                  radial-gradient(900px 520px at 90% 5%, rgba(109,40,217,.14), transparent 55%),
                  radial-gradient(800px 520px at 60% 15%, rgba(236,72,153,.10), transparent 55%),
                  linear-gradient(180deg, #ffffff 0%, #f6f7fb 55%, #ffffff 100%);
      color:var(--text);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    a:hover{opacity:.95}
    .container{
      width:100%;
      max-width:1160px;
      padding:0 18px;
      margin:0 auto;
    }

    .skip{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:16px; top:16px; width:auto; height:auto; z-index:9999;
      background:#fff; border:1px solid var(--line); border-radius:10px; padding:10px 12px;
      box-shadow:var(--shadow);
      outline:none;
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(130%) blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom: 1px solid rgba(16,24,40,.08);
    }
    .navWrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width: 220px;
    }
    .logoImg{
      width:40px; height:40px; border-radius:12px;
      background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(109,40,217,.22), rgba(236,72,153,.20));
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(16,24,40,.08);
      overflow:hidden;
    }
    .logoImg img{width:100%; height:100%; object-fit:contain; display:block}
    .brandText{display:flex; flex-direction:column; line-height:1.1}
    .brandName{font-weight:800; letter-spacing:.2px}
    .brandTag{font-size:12px; color:var(--muted); margin-top:4px}

    .navRight{
      display:flex; align-items:center; gap:12px; justify-content:flex-end;
      flex:1;
    }
    .navLinks{
      display:none;
      align-items:center; gap:14px;
      padding:8px 0;
      flex-wrap:wrap;
    }
    .navLinks a{
      font-size:13px; color:rgba(16,24,40,.80);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .navLinks a:hover{
      background: rgba(37,99,235,.08);
      border-color: rgba(37,99,235,.16);
      transform: translateY(-1px);
    }

    .navCta{
      display:flex; align-items:center; gap:10px;
    }
    .pill{
      display:flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.7);
      box-shadow: 0 8px 20px rgba(16,24,40,.06);
    }
    .pillDot{
      width:10px; height:10px; border-radius:50%;
      background: var(--grad);
      box-shadow: 0 0 0 5px rgba(37,99,235,.10);
    }
    .pillText{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .pillText b{font-size:12.5px}
    .pillText span{font-size:11.5px; color:var(--muted); margin-top:2px}

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.78);
      color: var(--text);
      font-weight:700;
      font-size:14px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
      white-space:nowrap;
      cursor:pointer;
    }
    .btn:hover{transform: translateY(-1px); box-shadow: 0 14px 28px rgba(16,24,40,.10)}
    .btn:active{transform: translateY(0)}
    .btn:focus{outline:none; box-shadow: var(--focus), 0 14px 28px rgba(16,24,40,.10)}
    .btnPrimary{
      border-color: rgba(37,99,235,.20);
      background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(109,40,217,.15), rgba(236,72,153,.14));
    }
    .btnDark{
      background: var(--btn);
      border-color: rgba(15,23,42,.18);
      color: var(--btnText);
    }
    .btnDark:hover{box-shadow: 0 18px 34px rgba(15,23,42,.18)}
    .btnIcon{
      width:18px; height:18px; display:inline-block;
    }

    .burger{
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .burger:hover{transform: translateY(-1px); box-shadow: 0 14px 28px rgba(16,24,40,.08)}
    .burger:focus{outline:none; box-shadow: var(--focus), 0 14px 28px rgba(16,24,40,.08)}
    .burgerLines{width:18px}
    .burgerLines span{
      display:block; height:2px; background: rgba(16,24,40,.85); border-radius:2px;
      margin:4px 0;
      transition: transform .22s ease, opacity .22s ease;
    }
    .burger[aria-expanded="true"] .burgerLines span:nth-child(1){transform: translateY(6px) rotate(45deg)}
    .burger[aria-expanded="true"] .burgerLines span:nth-child(2){opacity:0}
    .burger[aria-expanded="true"] .burgerLines span:nth-child(3){transform: translateY(-6px) rotate(-45deg)}

    .mobileMenu{
      display:none;
      padding:12px 0 18px;
    }
    .mobileMenu .mobileLinks{
      display:flex; flex-direction:column; gap:10px;
      padding:12px 0;
    }
    .mobileMenu a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      color: rgba(16,24,40,.88);
      font-weight:700;
      font-size:14px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .mobileMenu a:hover{transform: translateY(-1px); box-shadow: 0 14px 28px rgba(16,24,40,.08)}
    .mobileMenu .mobileCtas{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

    @media (min-width: 980px){
      .navLinks{display:flex}
      .burger{display:none}
      .mobileMenu{display:none !important}
    }
    @media (max-width: 979px){
      .pill{display:none}
      .mobileMenu{display:block}
    }

    .hero{
      position:relative;
      padding:30px 0 6px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1fr;
      gap:18px;
      align-items:stretch;
      margin-top:12px;
    }

    @media (min-width: 980px){
      .heroGrid{
        grid-template-columns: 1.1fr .9fr;
        gap:22px;
      }
    }

    .heroCard{
      position:relative;
      border-radius: 26px;
      border: 1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(900px 420px at 15% 0%, rgba(37,99,235,.20), transparent 55%),
        radial-gradient(720px 360px at 90% 10%, rgba(109,40,217,.18), transparent 55%),
        radial-gradient(560px 320px at 70% 30%, rgba(236,72,153,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.66) 100%);
      box-shadow: 0 26px 60px rgba(16,24,40,.10);
      overflow:hidden;
      padding:22px;
    }

    .heroCard::before{
      content:"";
      position:absolute; inset:-2px;
      background: linear-gradient(120deg, rgba(37,99,235,.45), rgba(109,40,217,.38), rgba(236,72,153,.30), rgba(249,115,22,.22));
      opacity:.35;
      filter: blur(22px);
      pointer-events:none;
      transform: translate3d(0,0,0);
    }

    .heroInner{position:relative; z-index:1}
    .badgeRow{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(16,24,40,.10);
      color: rgba(16,24,40,.84);
      font-weight:800;
      font-size:12.5px;
      letter-spacing:.2px;
    }
    .badge svg{flex:0 0 auto}
    .heroTitle{
      margin:14px 0 10px;
      font-size: clamp(24px, 3.2vw, 38px);
      letter-spacing: -0.6px;
      line-height:1.15;
    }
    .heroLead{
      margin:0;
      color: var(--muted);
      font-size:15.5px;
      line-height:1.7;
      max-width: 60ch;
    }

    .heroActions{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin-top:16px;
    }
    .subActions{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin-top:14px;
      color:var(--muted);
      font-size:13px;
    }
    .miniCheck{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      background: rgba(255,255,255,.66);
      border: 1px solid rgba(16,24,40,.10);
      border-radius: 16px;
    }
    .miniCheck i{
      width:22px; height:22px; border-radius:7px;
      background: rgba(37,99,235,.12);
      border: 1px solid rgba(37,99,235,.18);
      display:inline-flex; align-items:center; justify-content:center;
      color:#1d4ed8;
      font-style:normal;
      font-weight:900;
      font-size:12px;
    }

    .heroSide{
      border-radius: 26px;
      border: 1px solid rgba(16,24,40,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.62) 100%);
      box-shadow: 0 18px 40px rgba(16,24,40,.08);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .heroSide::after{
      content:"";
      position:absolute; inset:auto -120px -140px auto;
      width:280px; height:280px;
      background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.22), transparent 60%),
                  radial-gradient(circle at 70% 60%, rgba(236,72,153,.20), transparent 58%);
      filter: blur(10px);
      pointer-events:none;
    }
    .sideInner{position:relative; z-index:1}
    .sideTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      padding-bottom:14px;
      border-bottom: 1px solid rgba(16,24,40,.08);
    }
    .sideTop h3{
      margin:0;
      font-size:15px;
      letter-spacing:.2px;
    }
    .sideTop p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }

    .signal{
      display:flex; flex-direction:column; gap:10px;
      min-width: 116px;
      align-items:flex-end;
    }
    .signal .bars{
      width:90px; height:34px;
      display:flex; align-items:flex-end; gap:4px;
    }
    .signal .bars span{
      width:10px; border-radius:8px;
      background: linear-gradient(180deg, rgba(37,99,235,.75), rgba(236,72,153,.55));
      opacity:.9;
      transform-origin: bottom;
      animation: pulseBars 2.8s ease-in-out infinite;
    }
    .signal .bars span:nth-child(1){height:10px; animation-delay:.0s}
    .signal .bars span:nth-child(2){height:16px; animation-delay:.2s}
    .signal .bars span:nth-child(3){height:22px; animation-delay:.4s}
    .signal .bars span:nth-child(4){height:28px; animation-delay:.6s}
    .signal small{
      color:var(--muted);
      font-size:12px;
    }
    @keyframes pulseBars{
      0%, 100% { transform: scaleY(1); opacity:.85 }
      45% { transform: scaleY(1.12); opacity:1 }
    }

    .metricGrid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
      padding-top:14px;
    }
    .metric{
      border-radius: 18px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 86px;
      display:flex; flex-direction:column; justify-content:space-between;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.20);
    }
    .metricTop{
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
    }
    .metricIcon{
      width:34px; height:34px; border-radius:14px;
      border: 1px solid rgba(16,24,40,.10);
      background: linear-gradient(180deg, rgba(37,99,235,.14), rgba(109,40,217,.10));
      display:flex; align-items:center; justify-content:center;
    }
    .metricIcon svg{width:18px; height:18px}
    .metricVal{
      font-size:18px; font-weight:900; letter-spacing:-.3px;
    }
    .metricDesc{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.4;
      margin-top:6px;
    }

    main{padding:22px 0 10px}
    section{padding:22px 0}

    .sectionTitleRow{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .sectionTitle{
      margin:0;
      font-size:22px;
      letter-spacing:-.2px;
    }
    .sectionSub{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
      max-width: 64ch;
    }

    .grid3{
      display:grid; grid-template-columns: 1fr; gap:12px;
    }
    @media (min-width: 760px){
      .grid3{grid-template-columns: repeat(3, minmax(0, 1fr));}
    }
    .grid2{
      display:grid; grid-template-columns: 1fr; gap:12px;
    }
    @media (min-width: 900px){
      .grid2{grid-template-columns: repeat(2, minmax(0, 1fr));}
    }

    .card{
      border-radius: var(--radius);
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 30px rgba(16,24,40,.06);
      padding:16px;
    }
    .cardSoft{
      background:
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.68));
    }

    .feature{
      display:flex; gap:12px; align-items:flex-start;
    }
    .feature .ficon{
      width:44px; height:44px; border-radius:16px;
      background: var(--grad2);
      border: 1px solid rgba(37,99,235,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .feature .ficon svg{width:20px; height:20px}
    .feature h3{
      margin:0;
      font-size:15px;
      letter-spacing:.1px;
    }
    .feature p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.65;
    }

    .timeline{
      position:relative;
      padding:6px 0 2px;
    }
    .timelineRow{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    @media (min-width: 900px){
      .timelineRow{grid-template-columns: repeat(4, minmax(0, 1fr));}
    }
    .step{
      padding:14px;
      border-radius: 20px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      min-height: 122px;
      display:flex; flex-direction:column;
      gap:10px;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(16,24,40,.10);
      border-color: rgba(109,40,217,.22);
    }
    .step .n{
      width:34px; height:34px; border-radius:14px;
      background: rgba(109,40,217,.12);
      border: 1px solid rgba(109,40,217,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:900; color:#5b21b6;
    }
    .step h4{margin:0; font-size:15px}
    .step p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.6}

    .split{
      display:grid; gap:12px;
      grid-template-columns: 1fr;
      align-items:start;
    }
    @media (min-width: 980px){
      .split{grid-template-columns: 1.05fr .95fr}
    }

    .tableWrap{
      overflow:auto;
      border-radius: 20px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 30px rgba(16,24,40,.06);
    }
    table{
      width:100%;
      border-collapse: collapse;
      min-width: 720px;
      font-size: 13.5px;
    }
    th, td{
      padding:12px 12px;
      border-bottom: 1px solid rgba(16,24,40,.08);
      text-align:left;
      vertical-align:top;
      white-space:normal;
    }
    th{
      background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(109,40,217,.06));
      position:sticky; top:0; z-index:1;
      font-weight:900;
    }
    .check{
      display:flex; align-items:flex-start; gap:8px;
      color: rgba(16,24,40,.88);
    }
    .check i{
      width:18px; height:18px; border-radius:7px;
      background: rgba(34,197,94,.12);
      border: 1px solid rgba(34,197,94,.22);
      display:inline-flex; align-items:center; justify-content:center;
      color:#166534;
      font-style:normal; font-weight:900; font-size:12px;
      flex:0 0 auto;
      margin-top:1px;
    }

    .compareCard{
      display:flex; flex-direction:column; gap:12px;
    }
    .ratingRow{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
      padding-bottom:12px;
      border-bottom:1px solid rgba(16,24,40,.08);
    }
    .stars{
      display:flex; align-items:center; gap:8px;
      flex-wrap:wrap;
    }
    .stars .starGroup{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:22px; height:22px;
      display:inline-block;
      filter: drop-shadow(0 10px 14px rgba(249,115,22,.14));
    }
    .ratingText b{
      font-size: 12.5px; color:var(--muted2);
      display:block; margin-bottom:4px;
    }
    .ratingText strong{
      font-size: 22px; letter-spacing:-.4px;
    }
    .ratingP{
      margin:0; color:var(--muted); font-size:13.5px; line-height:1.7;
    }

    .list{
      display:flex; flex-direction:column; gap:10px;
      margin-top:2px;
    }
    .listItem{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius: 18px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.68);
    }
    .listItem .liIcon{
      width:36px; height:36px; border-radius:14px;
      background: linear-gradient(180deg, rgba(37,99,235,.14), rgba(236,72,153,.10));
      border: 1px solid rgba(37,99,235,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .listItem .liIcon svg{width:18px; height:18px}
    .listItem h4{margin:0; font-size:14.5px}
    .listItem p{margin:6px 0 0; color:var(--muted); font-size:13.5px; line-height:1.6}

    .segmented{
      display:flex; gap:8px; flex-wrap:wrap;
      padding:10px;
      border-radius: 18px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
    }
    .segmented button{
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      color: rgba(16,24,40,.88);
      padding:10px 12px;
      border-radius: 14px;
      cursor:pointer;
      font-weight:900;
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    }
    .segmented button:hover{transform: translateY(-1px); box-shadow: 0 14px 26px rgba(16,24,40,.08)}
    .segmented button[aria-pressed="true"]{
      background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(109,40,217,.16), rgba(236,72,153,.14));
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 18px 34px rgba(37,99,235,.12);
    }
    .matchPanel{
      margin-top:12px;
      padding:14px;
      border-radius: 20px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      overflow:hidden;
      position:relative;
    }
    @media (min-width: 980px){
      .matchPanel{grid-template-columns: 1.1fr .9fr}
    }
    .matchPanel::before{
      content:"";
      position:absolute; inset:-2px auto auto -2px;
      width:220px; height:220px;
      background: radial-gradient(circle at 40% 40%, rgba(37,99,235,.20), transparent 58%),
                  radial-gradient(circle at 70% 55%, rgba(236,72,153,.16), transparent 60%);
      filter: blur(14px);
      pointer-events:none;
    }
    .matchPanel .mpLeft, .matchPanel .mpRight{position:relative; z-index:1}
    .mpLeft h3{margin:0; font-size:16px}
    .mpLeft p{margin:8px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .mpChips{
      display:flex; flex-wrap:wrap; gap:8px; margin-top:12px;
    }
    .chip{
      padding:9px 10px;
      border-radius: 999px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      font-weight:800;
      font-size:12.5px;
      color: rgba(16,24,40,.88);
      transition: transform .18s ease;
    }
    .chip:hover{transform: translateY(-1px)}
    .mpRight .priceBox{
      border-radius: 20px;
      border: 1px solid rgba(16,24,40,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66));
      padding:14px;
    }
    .priceBox .t{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .priceBox .t b{font-size:14px}
    .priceBox .t span{font-size:12.5px; color:var(--muted)}
    .priceList{
      display:flex; flex-direction:column; gap:10px; margin-top:12px;
    }
    .priceRow{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.72);
    }
    .priceRow small{color:var(--muted); font-size:12.5px; display:block}
    .priceRow strong{font-size:14px; letter-spacing:-.2px}
    .priceHint{
      margin:10px 0 0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.6;
    }

    .reviews{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    @media (min-width: 860px){
      .reviews{grid-template-columns: repeat(3, minmax(0, 1fr))}
    }
    .reviewCard{
      padding:16px;
      border-radius: 22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.76);
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 190px;
      display:flex; flex-direction:column; gap:12px;
    }
    .reviewCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(16,24,40,.10);
      border-color: rgba(236,72,153,.18);
    }
    .reviewTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:42px; height:42px; border-radius:16px;
      background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(109,40,217,.16), rgba(236,72,153,.12));
      border:1px solid rgba(16,24,40,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:900; color: rgba(16,24,40,.85);
      flex:0 0 auto;
    }
    .reviewMeta{display:flex; flex-direction:column}
    .reviewMeta b{font-size:14.5px}
    .reviewMeta small{color:var(--muted); font-size:12.5px; margin-top:2px}
    .quote{
      color: var(--muted);
      font-size:13.5px;
      line-height:1.75;
      margin:0;
    }
    .reviewBottom{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding-top:10px;
      border-top:1px solid rgba(16,24,40,.08);
    }
    .tagRow{display:flex; gap:8px; flex-wrap:wrap}
    .tag{
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      color: rgba(16,24,40,.86);
      font-size:12.5px;
      font-weight:900;
    }

    .caseGrid{
      display:grid; grid-template-columns: 1fr; gap:12px;
    }
    @media (min-width: 980px){
      .caseGrid{grid-template-columns: 1fr 1fr 1fr}
    }
    .caseCard{
      border-radius: 22px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      overflow:hidden;
      position:relative;
      display:flex; flex-direction:column; gap:12px;
      min-height: 212px;
    }
    .caseCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.20);
    }
    .caseTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .caseTop b{font-size:15px}
    .caseTop span{
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      color: rgba(16,24,40,.86);
      font-weight:900; font-size:12.5px;
      white-space:nowrap;
    }
    .caseCard p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .caseFoot{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding-top:12px;
      border-top: 1px solid rgba(16,24,40,.08);
      color: var(--muted);
      font-size:12.8px;
    }

    .articleList{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    @media (min-width: 980px){
      .articleList{grid-template-columns: 1fr 1fr}
    }
    .articleCard{
      border-radius: 22px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .articleCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(16,24,40,.10);
      border-color: rgba(109,40,217,.20);
    }
    .articleHead{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:8px;
    }
    .articleCard h3{margin:0; font-size:15px}
    .articleCard p{margin:8px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .articleLink{
      display:inline-flex; align-items:center; gap:8px;
      margin-top:12px;
      font-weight:900;
      color:#1d4ed8;
      font-size:13.5px;
    }
    .arrow{
      width:18px; height:18px;
      border-radius:8px;
      border:1px solid rgba(29,78,216,.18);
      background: rgba(29,78,216,.10);
      display:inline-flex; align-items:center; justify-content:center;
      transition: transform .18s ease;
    }
    .articleCard:hover .arrow{transform: translateX(2px)}

    .accordion{
      display:flex; flex-direction:column; gap:10px;
    }
    details.acc{
      border-radius: 20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding: 12px 14px;
      box-shadow: 0 14px 30px rgba(16,24,40,.06);
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    details.acc[open]{
      border-color: rgba(37,99,235,.20);
      box-shadow: 0 18px 34px rgba(16,24,40,.10);
    }
    details.acc summary{
      list-style:none;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:900;
      font-size:14.2px;
      padding:4px 0;
      user-select:none;
    }
    details.acc summary::-webkit-details-marker{display:none}
    .sumIcon{
      width:30px; height:30px; border-radius:12px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transform: rotate(0deg);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      margin-top:-2px;
    }
    details.acc[open] .sumIcon{
      transform: rotate(45deg);
      border-color: rgba(37,99,235,.22);
      background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(236,72,153,.12));
    }
    .accBody{
      color:var(--muted);
      font-size:13.6px;
      line-height:1.75;
      padding-top:10px;
      border-top: 1px solid rgba(16,24,40,.08);
      margin-top:10px;
    }

    .tagCloud{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .cloudTag{
      padding:10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      font-weight:900;
      font-size:13px;
      color: rgba(16,24,40,.86);
      transition: transform .18s ease;
      cursor:pointer;
    }
    .cloudTag:hover{transform: translateY(-2px)}

    .formCard{
      border-radius: 26px;
      border: 1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(680px 420px at 10% 10%, rgba(37,99,235,.16), transparent 55%),
        radial-gradient(680px 420px at 90% 20%, rgba(236,72,153,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.66));
      box-shadow: 0 26px 60px rgba(16,24,40,.10);
      padding:18px;
      overflow:hidden;
    }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    @media (min-width: 980px){
      .formGrid{grid-template-columns: 1fr 1fr}
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-weight:900;
      font-size:13.2px;
      color: rgba(16,24,40,.90);
    }
    .input, select.input, textarea.input{
      border-radius: 16px;
      border: 1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
      font-size:14px;
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
      color: rgba(16,24,40,.92);
    }
    textarea.input{min-height: 110px; resize:vertical}
    .input:focus{
      box-shadow: var(--focus);
      border-color: rgba(37,99,235,.28);
    }
    .formActions{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .formNote{
      color: var(--muted);
      font-size:12.8px;
      line-height:1.6;
      max-width: 56ch;
    }

    footer{
      margin-top: 10px;
      background: linear-gradient(180deg, rgba(16,24,40,.02), rgba(16,24,40,.04));
      border-top: 1px solid rgba(16,24,40,.08);
      padding: 18px 0 22px;
    }
    .footerGrid{
      display:grid; grid-template-columns: 1fr; gap:14px;
      align-items:start;
    }
    @media (min-width: 980px){
      .footerGrid{grid-template-columns: 1.25fr .75fr}
    }
    .footCard{
      border-radius: 24px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
    }
    .footTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .footBrand{
      display:flex; align-items:center; gap:12px;
    }
    .footBrand .miniLogo{
      width:46px; height:46px; border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: var(--grad2);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .footBrand .miniLogo img{width:100%; height:100%; object-fit:contain; display:block}
    .footBrand b{font-size:16px}
    .footBrand p{margin:6px 0 0; color:var(--muted); font-size:13.2px; line-height:1.6}

    .footerLinks{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:12px;
    }
    .footerLinks a{
      padding:10px 12px;
      border-radius: 999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      font-weight:900;
      color: rgba(16,24,40,.86);
      font-size:12.8px;
      transition: transform .18s ease;
    }
    .footerLinks a:hover{transform: translateY(-2px)}
    .copyright{
      margin-top:12px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
    }

    .floatHelp{
      position:fixed;
      right:14px; bottom:14px;
      z-index:60;
      display:flex; flex-direction:column; gap:10px;
    }
    .floatBtn{
      width:48px; height:48px; border-radius:18px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 34px rgba(16,24,40,.14);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
    }
    .floatBtn:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 24px 46px rgba(16,24,40,.18);
    }
    .floatBtn:focus{outline:none; box-shadow: var(--focus), 0 24px 46px rgba(16,24,40,.18)}
    .toast{
      position:absolute;
      right:58px; bottom: 2px;
      background: rgba(15,23,42,.96);
      color:#fff;
      font-size:12.5px;
      padding:10px 12px;
      border-radius:14px;
      box-shadow: 0 18px 34px rgba(15,23,42,.22);
      opacity:0; transform: translateY(6px);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
      white-space:nowrap;
    }
    .floatBtn:hover .toast{
      opacity:1; transform: translateY(0);
    }

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

    .srOnly{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
    }