:root{
      --bg0:#ffffff;
      --bg1:#f7f4ff;
      --bg2:#f2fbff;
      --card:#ffffff;
      --text:#1f2430;
      --muted:#5a6476;
      --subtle:#78839a;
      --line:rgba(20,30,45,.10);
      --shadow:0 14px 40px rgba(26,36,56,.10);
      --shadow2:0 10px 24px rgba(26,36,56,.10);
      --radius:18px;
      --radius2:14px;
      --brandA:#7c3aed;
      --brandB:#06b6d4;
      --brandC:#f97316;
      --brandD:#10b981;
      --brandE:#3b82f6;
      --focus:rgba(59,130,246,.20);
      --btn:#121826;
      --btnText:#ffffff;
      --chipBg:rgba(124,58,237,.10);
      --chipBd:rgba(124,58,237,.18);
      --success:#10b981;
      --warn:#f59e0b;
      --danger:#ef4444;
      --max:1160px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, "Noto Sans", "Liberation Sans", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 450px at 14% -10%, rgba(124,58,237,.18), transparent 55%),
        radial-gradient(800px 420px at 88% 8%, rgba(6,182,212,.18), transparent 56%),
        radial-gradient(700px 420px at 45% 35%, rgba(249,115,22,.12), transparent 62%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 34%, #ffffff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--max);
      margin:0 auto;
      padding:0 18px;
    }
    .skip{
      position:absolute; left:-999px; top:0;
      background:#0b1220; color:#fff; padding:10px 14px; border-radius:10px; z-index:50;
    }
    .skip:focus{left:12px; top:12px}
    header{
      position:sticky; top:0; z-index:30;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(255,255,255,.72);
      border-bottom:1px solid rgba(20,30,45,.08);
    }
    .navWrap{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .ai-page-logo{
      width:42px; height:42px; object-fit:contain;
      filter: drop-shadow(0 10px 16px rgba(124,58,237,.22));
    }
    .brandText{display:flex; flex-direction:column; line-height:1.15}
    .brandText strong{font-size:14px; letter-spacing:.2px}
    .brandText span{font-size:12px; color:var(--muted)}
    nav{display:flex; align-items:center; gap:10px}
    .navLinks{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .navLinks a{
      font-size:13px; color:var(--muted);
      padding:9px 10px; border-radius:999px;
      transition:transform .15s ease, background .15s ease, color .15s ease;
      border:1px solid transparent;
      white-space:nowrap;
    }
    .navLinks a:hover{
      color:var(--text);
      background:rgba(124,58,237,.08);
      border-color:rgba(124,58,237,.14);
      transform: translateY(-1px);
    }
    .navCtas{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 14px; border-radius:12px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.70);
      color:var(--text);
      box-shadow:0 10px 18px rgba(14,22,36,.06);
      transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      font-weight:650;
      font-size:13.5px;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow:0 16px 26px rgba(14,22,36,.10);
      border-color:rgba(124,58,237,.22);
      background:rgba(255,255,255,.92);
    }
    .btnPrimary{
      background:linear-gradient(135deg, rgba(124,58,237,.98), rgba(6,182,212,.92));
      border-color:rgba(124,58,237,.22);
      color: #fff;
      box-shadow:0 18px 35px rgba(124,58,237,.22);
    }
    .btnPrimary:hover{
      background:linear-gradient(135deg, rgba(124,58,237,1), rgba(6,182,212,1));
      box-shadow:0 22px 48px rgba(124,58,237,.28);
      border-color:rgba(255,255,255,.20);
    }
    .iconDot{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.2));
      box-shadow:0 0 0 3px rgba(255,255,255,.25);
      border:1px solid rgba(255,255,255,.35);
    }
    .hamburger{
      display:none;
      width:42px; height:42px; border-radius:12px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.75);
      align-items:center; justify-content:center;
      cursor:pointer;
    }
    .hamburger:focus{outline:2px solid var(--focus); outline-offset:2px}
    .hamburger i{
      width:18px; height:12px; position:relative; display:block;
      background:transparent;
    }
    .hamburger i::before, .hamburger i::after, .hamburger i span{
      content:""; position:absolute; left:0; right:0; height:2px; border-radius:2px; background:rgba(25,34,52,.8);
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger i::before{top:0}
    .hamburger i span{top:5px}
    .hamburger i::after{top:10px}
    .mobilePanel{
      display:none;
      border-top:1px solid rgba(20,30,45,.08);
      padding:10px 0 16px;
    }
    .mobilePanel .mobileGrid{
      display:grid; gap:10px;
    }
    .mobilePanel a{
      padding:12px 12px; border-radius:14px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.70);
      color:var(--text);
      font-weight:650;
      font-size:14px;
    }
    .mobilePanel a:active{transform:translateY(1px)}
    .hero{
      padding:26px 0 8px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:18px;
      align-items:stretch;
    }
    .heroLeft{
      padding:22px 0 14px;
    }
    .eyebrow{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:9px 12px; border-radius:999px;
      border:1px solid rgba(124,58,237,.16);
      background:linear-gradient(180deg, rgba(124,58,237,.10), rgba(124,58,237,.06));
      color:rgba(62,20,200,.98);
      font-weight:720;
      font-size:13px;
    }
    .badge b{
      width:10px; height:10px; border-radius:50%;
      background:conic-gradient(from 180deg, var(--brandA), var(--brandB), var(--brandC), var(--brandA));
      box-shadow:0 0 0 3px rgba(124,58,237,.12);
      display:inline-block;
    }
    .heroTitle{
      font-size:40px;
      line-height:1.12;
      letter-spacing:-.6px;
      margin:0 0 12px;
    }
    .heroTitle .grad{
      background: linear-gradient(90deg, #1f2937 0%, #1f2937 35%, rgba(124,58,237,.95) 68%, rgba(6,182,212,.95) 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .heroSub{
      color:var(--muted);
      font-size:16px;
      line-height:1.7;
      margin:0 0 18px;
      max-width:58ch;
    }
    .heroActions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin:18px 0 18px;
    }
    .btnBig{
      padding:13px 16px;
      border-radius:14px;
      font-size:14.5px;
    }
    .metaRow{
      display:flex; gap:12px; flex-wrap:wrap; margin-top:14px;
    }
    .metaPill{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 24px rgba(12,18,32,.06);
      min-width:172px;
    }
    .metaPill .k{
      width:34px; height:34px; border-radius:12px;
      background:linear-gradient(135deg, rgba(124,58,237,.16), rgba(6,182,212,.12));
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      color:rgba(72,35,200,.98);
      font-weight:900;
      letter-spacing:-.2px;
    }
    .metaPill .t{display:flex; flex-direction:column; line-height:1.1}
    .metaPill .t strong{font-size:13.5px}
    .metaPill .t span{font-size:12px; color:var(--muted); margin-top:4px}
    .heroRight{
      border-radius:var(--radius);
      border:1px solid rgba(20,30,45,.10);
      background:
        radial-gradient(450px 220px at 18% 18%, rgba(124,58,237,.20), transparent 60%),
        radial-gradient(420px 240px at 88% 38%, rgba(6,182,212,.18), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.66));
      box-shadow: var(--shadow2);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .heroRight::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(124,58,237,.18), transparent 35%),
        linear-gradient(240deg, rgba(6,182,212,.14), transparent 45%);
      opacity:.9;
      pointer-events:none;
    }
    .heroRightInner{position:relative; z-index:1; display:flex; flex-direction:column; gap:12px}
    .statusCard{
      border-radius:16px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.76);
      padding:14px;
      display:flex; gap:12px; align-items:flex-start;
      transform: translateZ(0);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .statusCard:hover{
      transform: translateY(-2px);
      border-color:rgba(124,58,237,.22);
      box-shadow:0 18px 34px rgba(14,22,36,.10);
    }
    .statusIcon{
      width:42px; height:42px; border-radius:14px;
      background:linear-gradient(135deg, rgba(124,58,237,.20), rgba(6,182,212,.14));
      border:1px solid rgba(124,58,237,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:rgba(72,35,200,.98);
      flex:0 0 auto;
      position:relative;
    }
    .statusIcon::after{
      content:"";
      position:absolute; inset:-10px;
      background:radial-gradient(circle at 30% 20%, rgba(124,58,237,.25), transparent 55%);
      z-index:-1;
    }
    .statusCard h3{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .statusCard p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .sparkRow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .spark{
      border-radius:16px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.76);
      padding:12px;
      display:flex; flex-direction:column; gap:8px;
      min-height:104px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .spark:hover{transform: translateY(-2px); border-color:rgba(6,182,212,.25)}
    .sparkTop{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .sparkTop .label{font-size:13px; color:var(--muted); font-weight:650}
    .sparkTop .chip{
      font-size:12px;
      font-weight:800;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(6,182,212,.22);
      background:rgba(6,182,212,.10);
      color:rgba(5,116,139,.98);
      white-space:nowrap;
    }
    .spark .num{
      font-size:26px;
      font-weight:950;
      letter-spacing:-.6px;
      line-height:1.1;
    }
    .spark .hint{color:var(--muted); font-size:12.5px; line-height:1.5}
    .section{
      padding:42px 0;
    }
    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:18px;
    }
    .sectionHead h2{
      margin:0;
      font-size:26px;
      letter-spacing:-.4px;
    }
    .sectionHead p{
      margin:0;
      color:var(--muted);
      max-width:60ch;
      line-height:1.7;
      font-size:14.5px;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .grid2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .card{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(20,30,45,.10);
      border-radius:var(--radius2);
      padding:16px;
      box-shadow:0 10px 20px rgba(14,22,36,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow:0 18px 30px rgba(14,22,36,.10);
      border-color:rgba(124,58,237,.20);
    }
    .card h3{
      margin:10px 0 8px;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:13.5px;
    }
    .cardTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .glyph{
      width:44px; height:44px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(249,115,22,.14), rgba(124,58,237,.12));
      border:1px solid rgba(249,115,22,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:rgba(124,45,20,.98);
      flex:0 0 auto;
    }
    .kpi{
      display:flex; gap:10px; align-items:flex-end; justify-content:space-between;
      margin-top:12px;
      padding-top:12px;
      border-top:1px dashed rgba(20,30,45,.12);
    }
    .kpi strong{font-size:22px; letter-spacing:-.4px}
    .kpi span{color:var(--muted); font-size:12.5px; line-height:1.4; text-align:right}
    .steps{
      display:grid; grid-template-columns: repeat(4, 1fr); gap:12px;
    }
    .step{
      border-radius:16px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.78);
      padding:14px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease;
    }
    .step:hover{transform: translateY(-2px); border-color:rgba(6,182,212,.24)}
    .step::after{
      content:"";
      position:absolute; right:-40px; top:-40px;
      width:120px; height:120px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(6,182,212,.18), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .stepTop{
      display:flex; align-items:center; justify-content:space-between; gap:12px; position:relative; z-index:1;
    }
    .stepNum{
      width:34px; height:34px; border-radius:12px;
      background:rgba(6,182,212,.10);
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950; color:rgba(5,116,139,.98);
      flex:0 0 auto;
    }
    .step h3{margin:10px 0 8px; position:relative; z-index:1; font-size:15px}
    .step p{margin:0; color:var(--muted); line-height:1.7; font-size:13.3px; position:relative; z-index:1}
    .compareWrap{
      border-radius:var(--radius);
      border:1px solid rgba(20,30,45,.10);
      background:
        radial-gradient(600px 260px at 15% 20%, rgba(124,58,237,.14), transparent 60%),
        radial-gradient(550px 260px at 85% 30%, rgba(6,182,212,.12), transparent 62%),
        rgba(255,255,255,.80);
      box-shadow: var(--shadow2);
      padding:16px;
    }
    .tableWrap{
      overflow:auto;
      border-radius:14px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.78);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:860px;
      font-size:13.5px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,30,45,.08);
      vertical-align:top;
    }
    th{
      background:rgba(124,58,237,.08);
      color:var(--text);
      font-weight:900;
      position:sticky;
      top:0;
      z-index:2;
    }
    tr:last-child td{border-bottom:none}
    .tagRow{display:flex; flex-wrap:wrap; gap:8px}
    .tag{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.80);
      color:var(--muted);
      font-weight:700;
      font-size:12.5px;
      white-space:nowrap;
    }
    .tagStrong{
      background:rgba(16,185,129,.10);
      border-color:rgba(16,185,129,.20);
      color:rgba(5,150,105,.98);
    }
    .tagHi{
      background:rgba(124,58,237,.10);
      border-color:rgba(124,58,237,.20);
      color:rgba(88,35,210,.98);
    }
    .tagWarn{
      background:rgba(245,158,11,.11);
      border-color:rgba(245,158,11,.22);
      color:rgba(146,86,11,.98);
    }
    .ratingCard{
      display:flex; gap:14px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .ratingLeft{display:flex; gap:12px; align-items:flex-start}
    .ratingMedal{
      width:56px; height:56px; border-radius:20px;
      background:conic-gradient(from 210deg, rgba(249,115,22,.95), rgba(124,58,237,.95), rgba(6,182,212,.95), rgba(16,185,129,.95), rgba(249,115,22,.95));
      box-shadow:0 18px 40px rgba(124,58,237,.18);
      position:relative;
      border:1px solid rgba(255,255,255,.50);
      flex:0 0 auto;
    }
    .ratingMedal::after{
      content:"★";
      position:absolute; inset:0;
      display:flex; align-items:center; justify-content:center;
      color:#0b1220;
      font-size:26px;
      font-weight:1000;
      background:radial-gradient(circle at 30% 25%, rgba(255,255,255,.85), rgba(255,255,255,.1));
      border-radius:20px;
      mix-blend-mode:soft-light;
    }
    .ratingLeft h3{margin:0; font-size:18px; letter-spacing:-.2px}
    .ratingLeft p{margin:6px 0 0; color:var(--muted); font-size:13.5px; line-height:1.6}
    .ratingRight{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.78);
    }
    .ratingRight .num{
      font-size:28px; font-weight:1000; letter-spacing:-.6px; line-height:1;
    }
    .ratingRight .max{color:var(--muted); font-weight:800; font-size:12.5px}
    .twoCol{
      display:grid; grid-template-columns: 1.02fr .98fr; gap:14px; align-items:start;
    }
    .list{
      margin:10px 0 0;
      padding:0; list-style:none;
      display:grid; gap:10px;
    }
    .list li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.76);
    }
    .tick{
      width:22px; height:22px; border-radius:8px;
      background:rgba(16,185,129,.12);
      border:1px solid rgba(16,185,129,.20);
      display:flex; align-items:center; justify-content:center;
      color:rgba(5,150,105,.98);
      flex:0 0 auto;
      font-weight:1000;
      margin-top:1px;
      font-size:12px;
    }
    .list b{font-size:13.8px}
    .list span{display:block; color:var(--muted); font-size:12.8px; margin-top:4px; line-height:1.6}
    .timeline{
      position:relative;
      padding-left:18px;
      margin-top:10px;
    }
    .timeline::before{
      content:"";
      position:absolute; left:8px; top:2px; bottom:2px;
      width:2px; background:linear-gradient(180deg, rgba(124,58,237,.55), rgba(6,182,212,.45));
      opacity:.8;
    }
    .tItem{
      position:relative;
      padding:12px 12px 12px 18px;
      border-radius:16px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.76);
      margin-bottom:10px;
      transition: transform .18s ease;
    }
    .tItem:hover{transform: translateY(-2px)}
    .tItem::before{
      content:"";
      position:absolute; left:2px; top:16px;
      width:14px; height:14px; border-radius:50%;
      background:linear-gradient(180deg, rgba(124,58,237,.95), rgba(6,182,212,.92));
      border:2px solid rgba(255,255,255,.85);
      box-shadow:0 10px 18px rgba(124,58,237,.18);
    }
    .tItem h3{margin:0; font-size:14.8px; letter-spacing:-.2px}
    .tItem p{margin:6px 0 0; color:var(--muted); font-size:13.2px; line-height:1.7}
    .segmented{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
    }
    .seg{
      flex: 1 1 190px;
      border-radius:16px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.78);
      padding:12px;
    }
    .seg h3{margin:6px 0 6px; font-size:14.8px}
    .seg p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.7}
    .seg .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .seg .dot{
      width:10px; height:10px; border-radius:50%;
      background:conic-gradient(from 180deg, var(--brandA), var(--brandB), var(--brandC), var(--brandD), var(--brandA));
      box-shadow:0 0 0 4px rgba(124,58,237,.10);
      border:1px solid rgba(255,255,255,.65);
    }
    .seg .badgeMini{
      font-size:12px; font-weight:900; color:rgba(88,35,210,.98);
      padding:6px 10px; border-radius:999px;
      border:1px solid rgba(124,58,237,.22);
      background:rgba(124,58,237,.10);
      white-space:nowrap;
    }
    .reviewsGrid{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .review{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.80);
      box-shadow:0 10px 20px rgba(14,22,36,.05);
      transition: transform .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:200px;
    }
    .review:hover{transform: translateY(-2px); border-color:rgba(6,182,212,.24)}
    .reviewTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .avatar{
      width:42px; height:42px; border-radius:16px;
      background:linear-gradient(135deg, rgba(6,182,212,.16), rgba(124,58,237,.12));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:rgba(5,116,139,.98);
      flex:0 0 auto;
    }
    .review h3{margin:0; font-size:14.8px}
    .review .who{color:var(--muted); font-size:12.8px; margin-top:4px; line-height:1.4}
    .stars{display:flex; gap:2px; color:rgba(245,158,11,.98); font-size:14px; font-weight:1000}
    .review p{margin:0; color:var(--muted); line-height:1.7; font-size:13.3px}
    .casesGrid{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .caseCard{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.82);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow:0 10px 20px rgba(14,22,36,.05);
      display:flex; flex-direction:column; gap:10px;
      min-height:220px;
    }
    .caseCard:hover{
      transform: translateY(-2px);
      border-color:rgba(124,58,237,.22);
      box-shadow:0 18px 30px rgba(14,22,36,.10);
    }
    .caseTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .caseTitle{margin:0; font-size:15.5px}
    .caseBadge{
      font-size:12px; font-weight:900;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(6,182,212,.22);
      background:rgba(6,182,212,.10);
      color:rgba(5,116,139,.98);
      white-space:nowrap;
    }
    .caseCard ul{
      margin:0; padding:0; list-style:none; display:grid; gap:8px;
    }
    .caseCard li{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.6;
    }
    .bullet{
      width:18px; height:18px; border-radius:8px;
      background:rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.20);
      display:flex; align-items:center; justify-content:center;
      color:rgba(88,35,210,.98);
      flex:0 0 auto;
      font-weight:1000;
      margin-top:1px;
      font-size:11px;
    }
    .articleGrid{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:stretch;
    }
    .articleCard{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.82);
      transition: transform .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
    }
    .articleCard:hover{transform: translateY(-2px); border-color:rgba(124,58,237,.22)}
    .articleTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .articleMeta{
      color:var(--muted);
      font-size:12.5px;
      font-weight:800;
      display:flex; gap:10px; align-items:center;
    }
    .pillSmall{
      padding:6px 10px; border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.80);
      white-space:nowrap;
    }
    .articleCard h3{margin:0; font-size:15.6px}
    .articleCard p{margin:0; color:var(--muted); line-height:1.7; font-size:13.4px}
    .articleLinkRow{
      margin-top:auto;
      display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      padding-top:10px;
      border-top:1px dashed rgba(20,30,45,.12);
    }
    .smallLink{
      font-weight:850; color:rgba(72,35,200,.98);
      display:inline-flex; gap:8px; align-items:center;
      padding:10px 12px; border-radius:12px;
      border:1px solid rgba(124,58,237,.20);
      background:rgba(124,58,237,.08);
      transition: transform .15s ease;
      white-space:nowrap;
    }
    .smallLink:hover{transform: translateY(-1px)}
    .faqGrid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      align-items:start;
    }
    details.faq{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(20,30,45,.10);
      border-radius:16px;
      padding:12px 12px;
      box-shadow:0 10px 20px rgba(14,22,36,.05);
      transition: border-color .18s ease, transform .18s ease;
    }
    details.faq[open]{border-color:rgba(6,182,212,.25)}
    details.faq summary{
      list-style:none;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:900;
      color:var(--text);
      font-size:14.2px;
      line-height:1.45;
      padding:4px 0;
    }
    details.faq summary::-webkit-details-marker{display:none}
    .chev{
      width:34px; height:34px; border-radius:12px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease;
      color:rgba(72,35,200,.98);
      font-weight:1000;
    }
    details.faq[open] .chev{transform: rotate(180deg)}
    details.faq .ans{
      color:var(--muted);
      line-height:1.8;
      font-size:13.4px;
      padding:10px 0 2px;
      border-top:1px dashed rgba(20,30,45,.12);
      margin-top:10px;
    }
    .tagCloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .cloudTag{
      border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.78);
      color:var(--muted);
      padding:9px 12px;
      font-weight:800;
      font-size:12.8px;
      transition: transform .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .cloudTag:hover{transform: translateY(-2px); border-color:rgba(124,58,237,.22)}
    form{
      display:grid; gap:12px;
      margin-top:8px;
    }
    .formRow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:flex; flex-direction:column; gap:8px;
      font-size:12.8px;
      color:var(--muted);
      font-weight:800;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,30,45,.12);
      background:rgba(255,255,255,.88);
      color:var(--text);
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
      font-size:14px;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(59,130,246,.32);
      box-shadow:0 0 0 4px rgba(59,130,246,.14);
    }
    .formActions{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:2px;
    }
    .note{
      color:var(--muted);
      font-size:12.6px;
      line-height:1.6;
    }
    .toast{
      position:fixed;
      left:50%;
      bottom:22px;
      transform:translateX(-50%) translateY(20px);
      opacity:0;
      pointer-events:none;
      background:rgba(11,18,32,.92);
      color:#fff;
      padding:12px 14px;
      border-radius:14px;
      box-shadow:0 18px 40px rgba(0,0,0,.18);
      border:1px solid rgba(255,255,255,.12);
      transition: opacity .2s ease, transform .2s ease;
      z-index:60;
      max-width: calc(100vw - 24px);
    }
    .toast.show{
      opacity:1;
      transform:translateX(-50%) translateY(0);
    }
    footer{
      padding:26px 0 34px;
      border-top:1px solid rgba(20,30,45,.08);
      background:rgba(255,255,255,.74);
    }
    .footerGrid{
      display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:start;
    }
    .footerBox{
      border-radius:var(--radius);
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.82);
      padding:16px;
      box-shadow:0 10px 20px rgba(14,22,36,.05);
    }
    .footerTitle{margin:0; font-size:16px}
    .footerText{margin:8px 0 0; color:var(--muted); line-height:1.8; font-size:13.5px}
    .footerLinks{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .footerLinks a{
      font-weight:850;
      font-size:12.8px;
      color:rgba(72,35,200,.98);
      padding:10px 12px;
      border-radius:12px;
      border:1px solid rgba(124,58,237,.20);
      background:rgba(124,58,237,.08);
      transition: transform .15s ease;
      white-space:nowrap;
    }
    .footerLinks a:hover{transform: translateY(-1px)}
    .footerRight{
      display:flex; flex-direction:column; gap:12px;
    }
    .contactCard{
      border-radius:var(--radius);
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.82);
      padding:16px;
      box-shadow:0 10px 20px rgba(14,22,36,.05);
    }
    .contactTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .contactTop h3{margin:0; font-size:15.6px}
    .qrBox{
      width:92px; border-radius:18px;
      border:1px solid rgba(20,30,45,.10);
      background:rgba(255,255,255,.78);
      padding:8px;
      flex:0 0 auto;
    }
    .qrBox img{
      width:100%; height:auto; display:block;
      border-radius:14px;
      object-fit:contain;
    }
    .contactList{
      margin:10px 0 0;
      padding:0; list-style:none;
      display:grid; gap:10px;
      color:var(--muted); font-size:13.2px; line-height:1.7;
    }
    .contactList a{
      color:rgba(72,35,200,.98);
      font-weight:900;
      border-bottom:1px dashed rgba(124,58,237,.32);
    }
    .copyright{
      margin-top:14px;
      color:var(--subtle);
      font-size:12.5px;
      line-height:1.7;
      text-align:center;
    }
    .floatBar{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:55;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .floatBtn{
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(20,30,45,.12);
      background:rgba(255,255,255,.82);
      box-shadow:0 18px 40px rgba(14,22,36,.18);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease;
    }
    .floatBtn:hover{transform: translateY(-2px); border-color:rgba(124,58,237,.25)}
    .floatBtn:focus{outline:2px solid var(--focus); outline-offset:2px}
    .floatBtn svg{width:20px; height:20px; color:rgba(72,35,200,.98)}
    .floatTip{
      position:absolute;
      right:54px;
      padding:10px 12px;
      border-radius:14px;
      background:rgba(11,18,32,.92);
      color:#fff;
      font-size:12.5px;
      border:1px solid rgba(255,255,255,.10);
      opacity:0;
      transform: translateY(6px);
      pointer-events:none;
      transition: opacity .15s ease, transform .15s ease;
      white-space:nowrap;
    }
    .floatBtnWrap{position:relative}
    .floatBtnWrap:hover .floatTip{
      opacity:1;
      transform: translateY(0);
    }
    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.in{
      opacity:1;
      transform: translateY(0);
    }
    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; gap:12px}
      .heroTitle{font-size:34px}
      .grid3{grid-template-columns: 1fr}
      .grid2{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr 1fr}
      .twoCol{grid-template-columns: 1fr}
      .reviewsGrid{grid-template-columns: 1fr}
      .casesGrid{grid-template-columns: 1fr}
      .articleGrid{grid-template-columns: 1fr}
      .faqGrid{grid-template-columns: 1fr}
      .formRow{grid-template-columns: 1fr}
      .footerGrid{grid-template-columns: 1fr}
      .navLinks{display:none}
      .hamburger{display:flex}
      .mobilePanel.open{display:block}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .btn, .card, .step, details.faq, .caseCard, .review, .cloudTag, .floatBtn{transition:none}
    }