:root{
      --bg0:#f7f4ff;
      --bg1:#ffffff;
      --ink:#1f2430;
      --muted:#5b6476;
      --muted2:#7a8498;
      --line:rgba(22, 31, 46, .10);
      --line2:rgba(22, 31, 46, .16);
      --card:#ffffff;
      --shadow: 0 18px 44px rgba(17, 24, 39, .10);
      --shadow2: 0 10px 28px rgba(17, 24, 39, .12);
      --shadow3: 0 6px 18px rgba(17, 24, 39, .10);
      --radius:18px;
      --radius2:24px;

      --brandA:#6d4cff;
      --brandB:#19b7ff;
      --brandC:#ff4fd8;
      --brandD:#ffb020;

      --btn:#121826;
      --btnText:#ffffff;

      --focus: rgba(109, 76, 255, .25);
      --chipBg: rgba(109, 76, 255, .10);
      --chipBd: rgba(109, 76, 255, .22);
      --okBg: rgba(25, 183, 255, .10);
      --okBd: rgba(25, 183, 255, .22);
      --warnBg: rgba(255, 176, 32, .10);
      --warnBd: rgba(255, 176, 32, .22);
    }

    *{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, "Noto Sans", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1200px 600px at 20% -10%, rgba(109,76,255,.20), transparent 55%),
        radial-gradient(900px 560px at 90% 10%, rgba(25,183,255,.18), transparent 55%),
        radial-gradient(800px 520px at 45% 0%, rgba(255,79,216,.14), transparent 52%),
        linear-gradient(180deg, var(--bg0), #fff 42%, #fff 100%);
    }

    a{color:inherit; text-decoration:none}
    a:hover{opacity:.92}
    button, input, select, textarea{font:inherit}

    .container{
      width:100%;
      max-width:1120px;
      margin:0 auto;
      padding:0 16px;
    }

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

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(160%) blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom:1px solid rgba(22,31,46,.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: 200px;
    }
    .brandMark{
      width:44px; height:44px;
      border-radius:14px;
      background:
        radial-gradient(16px 16px at 30% 25%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
        linear-gradient(135deg, rgba(109,76,255,.98), rgba(25,183,255,.95) 45%, rgba(255,79,216,.95));
      box-shadow: 0 12px 28px rgba(109,76,255,.24);
      border:1px solid rgba(255,255,255,.55);
      display:flex; align-items:center; justify-content:center;
      position:relative;
      overflow:hidden;
    }
    .brandMark:before{
      content:"";
      position:absolute;
      inset:-40%;
      background: conic-gradient(from 90deg, rgba(255,255,255,.0), rgba(255,255,255,.55), rgba(255,255,255,0));
      transform: rotate(18deg);
      animation: sheen 5.2s linear infinite;
      opacity:.7;
    }
    @keyframes sheen{
      0%{transform:translateX(-20%) rotate(18deg)}
      50%{transform:translateX(20%) rotate(18deg)}
      100%{transform:translateX(-20%) rotate(18deg)}
    }
    .brandMark svg{position:relative; z-index:2}
    .brandText{display:flex; flex-direction:column; line-height:1.2}
    .brandText .t1{font-weight:860; letter-spacing:.2px}
    .brandText .t2{font-size:12px; color:var(--muted); margin-top:2px}

    nav{display:flex; align-items:center; gap:14px}
    .navLinks{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navLinks a{
      font-size:13px;
      color:rgba(31,36,48,.88);
      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(109,76,255,.08);
      border-color:rgba(109,76,255,.20);
      transform: translateY(-1px);
    }
    .navRight{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width: 210px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(0,0,0,.12);
      background:#fff;
      color:var(--ink);
      box-shadow: 0 8px 22px rgba(17,24,39,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(17,24,39,.12);
      border-color: rgba(109,76,255,.30);
    }
    .btnPrimary{
      background: linear-gradient(135deg, rgba(109,76,255,.98), rgba(25,183,255,.92));
      color:#fff;
      border-color: rgba(255,255,255,.35);
      box-shadow: 0 18px 46px rgba(109,76,255,.22);
    }
    .btnPrimary:hover{
      box-shadow: 0 24px 62px rgba(109,76,255,.26);
      border-color: rgba(255,255,255,.55);
    }
    .btnGhost{
      background: rgba(255,255,255,.72);
      border-color: rgba(22,31,46,.14);
      box-shadow: none;
    }
    .btnSmall{
      padding:9px 12px;
      font-size:13px;
      border-radius:12px;
    }
    .iconDot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brandA), var(--brandB));
      box-shadow: 0 8px 18px rgba(109,76,255,.35);
    }

    .hamburger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(22,31,46,.14);
      background:#fff;
      cursor:pointer;
      align-items:center;
      justify-content:center;
      box-shadow: 0 8px 22px rgba(17,24,39,.08);
    }
    .hamburger:focus{outline:none; box-shadow: 0 0 0 4px var(--focus), 0 8px 22px rgba(17,24,39,.08);}
    .hamburger .bars{
      width:18px; height:12px; position:relative;
    }
    .hamburger .bars span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px;
      background: rgba(31,36,48,.85);
      transition: transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .hamburger .bars span:nth-child(1){top:0}
    .hamburger .bars span:nth-child(2){top:5px}
    .hamburger .bars span:nth-child(3){top:10px}
    .hamburger[aria-expanded="true"] .bars span:nth-child(1){top:5px; transform:rotate(45deg)}
    .hamburger[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .bars span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobilePanel{
      display:none;
      padding-bottom:12px;
    }
    .mobileLinks{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding:12px;
      border-radius:18px;
      background:rgba(255,255,255,.86);
      border:1px solid rgba(22,31,46,.10);
      box-shadow: var(--shadow3);
    }
    .mobileLinks a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(22,31,46,.10);
      background:#fff;
      color:rgba(31,36,48,.92);
      font-size:14px;
    }
    .mobileLinks a:active{transform: translateY(1px)}

    .hero{
      padding:38px 0 14px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .heroLeft{
      padding:26px 22px;
      border-radius: var(--radius2);
      border:1px solid rgba(22,31,46,.10);
      background:
        radial-gradient(800px 360px at 20% 0%, rgba(109,76,255,.18), transparent 60%),
        radial-gradient(700px 380px at 80% 0%, rgba(25,183,255,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.92));
      box-shadow: 0 26px 78px rgba(109,76,255,.12);
      position:relative;
      overflow:hidden;
      min-height: 340px;
    }
    .heroLeft:before{
      content:"";
      position:absolute;
      top:-160px; left:-220px;
      width:520px; height:520px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.65), rgba(255,255,255,0) 58%);
      transform: rotate(14deg);
      opacity:.6;
      pointer-events:none;
    }
    .heroKicker{
      display:flex;
      align-items:center;
      gap:10px;
      color: rgba(31,36,48,.88);
      font-size:13px;
      margin-bottom:10px;
      flex-wrap:wrap;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(109,76,255,.22);
      background: rgba(109,76,255,.10);
      color: rgba(31,36,48,.92);
      font-weight:650;
    }
    .pill .spark{
      width:9px; height:9px;
      border-radius:3px;
      background: linear-gradient(135deg, var(--brandA), var(--brandC));
      transform: rotate(12deg);
      box-shadow: 0 10px 24px rgba(255,79,216,.20);
    }
    h1{
      font-size: 34px;
      line-height: 1.15;
      margin:0 0 10px;
      letter-spacing: -0.5px;
    }
    .heroSub{
      color:var(--muted);
      font-size: 15px;
      line-height:1.8;
      margin: 0 0 16px;
      max-width: 62ch;
    }
    .heroActions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 14px;
    }
    .miniNote{
      display:flex; align-items:flex-start; gap:10px;
      margin-top:16px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 34px rgba(17,24,39,.06);
      max-width: 520px;
    }
    .miniNote .badge{
      width:34px; height:34px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(25,183,255,.95), rgba(109,76,255,.95));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 14px 36px rgba(25,183,255,.20);
      border:1px solid rgba(255,255,255,.55);
      flex: 0 0 auto;
    }
    .miniNote .badge svg{opacity:.95}
    .miniNote .nt{
      display:flex; flex-direction:column; gap:2px;
    }
    .miniNote .nt b{font-size:13px}
    .miniNote .nt span{font-size:13px; color: var(--muted)}

    .heroRight{
      border-radius: var(--radius2);
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 68px rgba(17,24,39,.10);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
      min-height: 340px;
      overflow:hidden;
      position:relative;
    }
    .heroRight:after{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(520px 280px at 80% 0%, rgba(255,79,216,.16), transparent 55%),
        radial-gradient(500px 300px at 10% 100%, rgba(255,176,32,.16), transparent 55%);
      pointer-events:none;
    }

    .dataGrid{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
      margin-top:4px;
    }
    .metric{
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.80);
      padding:12px 12px;
      box-shadow: 0 10px 24px rgba(17,24,39,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .metric:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 48px rgba(17,24,39,.12);
      border-color: rgba(109,76,255,.26);
    }
    .metric .num{
      font-weight:900;
      font-size:20px;
      letter-spacing:-.3px;
      display:flex; align-items:baseline; gap:8px;
    }
    .metric .num i{
      font-style:normal;
      color: rgba(31,36,48,.65);
      font-weight:750;
      font-size:12px;
      border:1px solid rgba(22,31,46,.10);
      border-radius:999px;
      padding:4px 8px;
      background: rgba(255,255,255,.7);
    }
    .metric .lbl{
      margin-top:6px;
      font-size:13px;
      color:var(--muted);
      line-height:1.4;
    }
    .heroRightBottom{
      position:relative;
      z-index:2;
      margin-top:auto;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.78);
      padding:14px 14px;
    }
    .heroRightBottom .row{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .heroRightBottom h3{
      margin:0;
      font-size:14px;
      letter-spacing:.2px;
    }
    .heroRightBottom p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .chips{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .chip{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid var(--chipBd);
      background: var(--chipBg);
      font-size:12px;
      color: rgba(31,36,48,.92);
      font-weight:650;
    }

    .section{
      padding:40px 0;
    }
    .sectionHeader{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .sectionHeader h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .sectionHeader p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      max-width: 60ch;
    }

    .card{
      border-radius: var(--radius);
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 46px rgba(17,24,39,.08);
      padding:16px;
    }
    .subtle{
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 28px rgba(17,24,39,.07);
    }

    .fadeIn{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fadeIn.isIn{
      opacity:1;
      transform: translateY(0);
    }

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

    .serviceCard{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 12px 34px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      min-height: 152px;
    }
    .serviceCard:before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:72px;
      background:
        radial-gradient(160px 70px at 10% 30%, rgba(109,76,255,.22), transparent 60%),
        radial-gradient(160px 70px at 70% 20%, rgba(25,183,255,.18), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .serviceCard:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 60px rgba(17,24,39,.12);
      border-color: rgba(109,76,255,.28);
    }
    .serviceTop{
      position:relative;
      z-index:2;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:8px;
    }
    .serviceIcon{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.65);
      background: linear-gradient(135deg, rgba(109,76,255,.95), rgba(25,183,255,.92));
      box-shadow: 0 18px 46px rgba(109,76,255,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .serviceIcon.alt{
      background: linear-gradient(135deg, rgba(255,79,216,.95), rgba(109,76,255,.92));
      box-shadow: 0 18px 46px rgba(255,79,216,.14);
    }
    .serviceIcon.alt2{
      background: linear-gradient(135deg, rgba(255,176,32,.95), rgba(25,183,255,.92));
      box-shadow: 0 18px 46px rgba(255,176,32,.14);
    }
    .serviceTitle{
      position:relative;
      z-index:2;
      font-weight:900;
      letter-spacing:-.2px;
      margin:0;
      font-size:15px;
    }
    .serviceDesc{
      position:relative;
      z-index:2;
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
      align-items:stretch;
    }
    .step{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 12px 34px rgba(17,24,39,.06);
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 190px;
      position:relative;
      overflow:hidden;
    }
    .step:after{
      content:"";
      position:absolute;
      right:-40px; top:-40px;
      width:120px; height:120px;
      background: radial-gradient(circle at 30% 30%, rgba(109,76,255,.25), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .step .k{
      position:relative; z-index:2;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .step .idx{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(22,31,46,.12);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color: rgba(31,36,48,.92);
      box-shadow: 0 10px 24px rgba(17,24,39,.05);
    }
    .step h3{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
      position:relative; z-index:2;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
      position:relative; z-index:2;
    }

    .compareWrap{
      border-radius: var(--radius2);
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 22px 68px rgba(17,24,39,.10);
      overflow:hidden;
    }
    .compareHead{
      padding:16px;
      border-bottom:1px solid rgba(22,31,46,.10);
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
      background:
        radial-gradient(680px 260px at 10% 0%, rgba(109,76,255,.18), transparent 60%),
        radial-gradient(680px 260px at 90% 0%, rgba(25,183,255,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.78));
    }
    .ratingBlock{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 28px rgba(17,24,39,.06);
    }
    .stars svg{width:18px; height:18px}
    .ratingText b{display:block; font-size:16px; letter-spacing:-.2px}
    .ratingText span{display:block; color:var(--muted); font-size:13px; margin-top:2px}
    .scorePill{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(109,76,255,.24);
      background: rgba(109,76,255,.10);
      box-shadow: 0 14px 40px rgba(109,76,255,.12);
      font-weight:900;
      letter-spacing:-.2px;
      display:flex; align-items:baseline; gap:8px;
      white-space:nowrap;
    }
    .scorePill small{
      font-weight:700;
      color: rgba(31,36,48,.65);
      font-size:12px;
    }

    .compareTable{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:14px;
    }
    .compareTable th, .compareTable td{
      padding:14px 12px;
      border-bottom:1px solid rgba(22,31,46,.08);
      border-right:1px solid rgba(22,31,46,.08);
      vertical-align:top;
    }
    .compareTable th:last-child, .compareTable td:last-child{border-right:none}
    .compareTable tr:last-child td{border-bottom:none}
    .compareTable th{
      background: rgba(255,255,255,.85);
      color: rgba(31,36,48,.92);
      text-align:left;
      font-weight:900;
    }
    .compareTable td{
      color: rgba(31,36,48,.88);
    }
    .markGood{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(25,183,255,.22);
      background: rgba(25,183,255,.10);
      color: rgba(31,36,48,.92);
      font-weight:800;
      white-space:nowrap;
    }
    .markGood .check{
      width:18px; height:18px;
      border-radius:8px;
      background: linear-gradient(135deg, rgba(25,183,255,.95), rgba(109,76,255,.95));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 14px 34px rgba(25,183,255,.18);
      border:1px solid rgba(255,255,255,.55);
      flex:0 0 auto;
    }
    .markMaybe{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,176,32,.22);
      background: rgba(255,176,32,.10);
      color: rgba(31,36,48,.92);
      font-weight:800;
      white-space:nowrap;
    }
    .markMaybe .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, rgba(255,176,32,.98), rgba(255,79,216,.90));
      box-shadow: 0 14px 34px rgba(255,176,32,.18);
      border:1px solid rgba(255,255,255,.5);
      flex:0 0 auto;
    }

    .compareCols{
      display:flex;
      gap:12px;
      align-items:flex-start;
      margin-top:12px;
      flex-wrap:wrap;
    }
    .compareHint{
      flex: 1 1 280px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.74);
      color: var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }
    .compareHint b{color: rgba(31,36,48,.92)}
    .compareAction{
      flex: 0 0 auto;
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(109,76,255,.22);
      background: rgba(109,76,255,.08);
      box-shadow: 0 16px 46px rgba(109,76,255,.12);
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .timeline .rail{
      border-radius: var(--radius);
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 12px 34px rgba(17,24,39,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .timeline .rail:before{
      content:"";
      position:absolute;
      left:28px; top:22px; bottom:22px;
      width:2px;
      background: linear-gradient(180deg, rgba(109,76,255,.0), rgba(109,76,255,.45), rgba(25,183,255,.35));
      opacity:.55;
    }
    .tItem{
      position:relative;
      display:flex;
      gap:12px;
      padding:10px 0;
      align-items:flex-start;
    }
    .tDot{
      width:18px; height:18px;
      border-radius:8px;
      background: linear-gradient(135deg, rgba(109,76,255,.95), rgba(25,183,255,.95));
      border:1px solid rgba(255,255,255,.55);
      box-shadow: 0 14px 34px rgba(109,76,255,.18);
      margin-left:19px;
      flex:0 0 auto;
      margin-top: 6px;
    }
    .tBody b{display:block; font-size:14px}
    .tBody span{display:block; margin-top:4px; color:var(--muted); font-size:13.5px; line-height:1.7}

    .listBullets{
      margin:0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .listBullets li{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 28px rgba(17,24,39,.05);
    }
    .listBullets .ic{
      width:34px; height:34px; border-radius:14px;
      background: rgba(109,76,255,.10);
      border:1px solid rgba(109,76,255,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .listBullets b{font-size:14px}
    .listBullets span{display:block; margin-top:3px; color:var(--muted); font-size:13.5px; line-height:1.7}

    .caseGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:stretch;
    }
    .caseMain{
      padding:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(22,31,46,.10);
      background:
        radial-gradient(760px 300px at 20% 0%, rgba(25,183,255,.16), transparent 60%),
        radial-gradient(760px 300px at 90% 10%, rgba(109,76,255,.18), transparent 58%),
        rgba(255,255,255,.78);
      box-shadow: 0 24px 78px rgba(17,24,39,.10);
      overflow:hidden;
    }
    .caseTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .caseTop h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .tagRow{
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.78);
      font-size:12.5px;
      color: rgba(31,36,48,.9);
      font-weight:750;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .caseList{
      display:flex; flex-direction:column; gap:10px;
      margin-top:8px;
    }
    .caseItem{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.80);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      cursor:pointer;
    }
    .caseItem:hover{
      transform: translateY(-2px);
      border-color: rgba(109,76,255,.26);
      box-shadow: 0 18px 60px rgba(17,24,39,.10);
    }
    .caseItem .thumb{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background:
        radial-gradient(16px 16px at 30% 25%, rgba(255,255,255,.95), rgba(255,255,255,0) 62%),
        linear-gradient(135deg, rgba(109,76,255,.25), rgba(25,183,255,.18), rgba(255,79,216,.16));
      flex:0 0 auto;
      position:relative;
      overflow:hidden;
    }
    .caseItem .thumb:after{
      content:"";
      position:absolute;
      inset:-40%;
      background: conic-gradient(from 90deg, rgba(255,255,255,0), rgba(255,255,255,.6), rgba(255,255,255,0));
      transform: rotate(14deg);
      opacity:.65;
      animation: thumbSheen 6s linear infinite;
    }
    @keyframes thumbSheen{
      0%{transform:translateX(-20%) rotate(14deg)}
      55%{transform:translateX(20%) rotate(14deg)}
      100%{transform:translateX(-20%) rotate(14deg)}
    }
    .caseItem .meta{
      display:flex; flex-direction:column; gap:4px;
      min-width: 0;
    }
    .caseItem .meta b{
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .caseItem .meta span{
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      overflow:hidden;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
    }
    .caseSide{
      padding:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(17,24,39,.08);
      display:flex;
      flex-direction:column;
      gap:12px;
      overflow:hidden;
    }

    .priceRef{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 12px 34px rgba(17,24,39,.06);
    }
    .priceRef .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .priceRef h3{margin:0; font-size:15px}
    .priceRef p{margin:8px 0 0; color:var(--muted); font-size:13.5px; line-height:1.75}
    .refGrid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
      margin-top:12px;
    }
    .refCell{
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.74);
    }
    .refCell b{display:block; font-size:13.5px}
    .refCell span{display:block; margin-top:4px; color:var(--muted); font-size:12.5px; line-height:1.5}

    .tabs{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:8px;
    }
    .tabBtn{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(22,31,46,.12);
      background: rgba(255,255,255,.78);
      cursor:pointer;
      font-weight:800;
      font-size:13px;
      color: rgba(31,36,48,.9);
      transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
      user-select:none;
    }
    .tabBtn:hover{transform: translateY(-2px); border-color: rgba(109,76,255,.26)}
    .tabBtn.isActive{
      background: linear-gradient(135deg, rgba(109,76,255,.22), rgba(25,183,255,.16));
      border-color: rgba(109,76,255,.28);
      box-shadow: 0 18px 46px rgba(109,76,255,.12);
    }

    .panel{
      margin-top:10px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.80);
    }
    .panel .pTitle{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .panel .pTitle b{font-size:14.5px; letter-spacing:-.2px}
    .panel ul{
      margin:10px 0 0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:9px;
    }
    .panel li{
      display:flex; align-items:flex-start; gap:10px;
      color: rgba(31,36,48,.88);
      font-size:13.5px;
      line-height:1.7;
      border-radius:14px;
      padding:10px 10px;
      border:1px solid rgba(22,31,46,.08);
      background: rgba(255,255,255,.72);
    }
    .panel li i{
      width:20px; height:20px;
      border-radius:9px;
      background: rgba(109,76,255,.10);
      border:1px solid rgba(109,76,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-style:normal;
      flex:0 0 auto;
      margin-top:2px;
      color: rgba(31,36,48,.88);
      font-weight:950;
      font-size:12px;
    }

    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    form{
      width:100%;
    }
    .formCard{
      border-radius: var(--radius2);
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 22px 68px rgba(17,24,39,.10);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .formCard:before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:84px;
      background:
        radial-gradient(220px 90px at 12% 40%, rgba(109,76,255,.20), transparent 65%),
        radial-gradient(220px 90px at 80% 10%, rgba(25,183,255,.16), transparent 65%),
        radial-gradient(240px 100px at 62% 0%, rgba(255,79,216,.12), transparent 70%);
      pointer-events:none;
    }
    .formInner{
      position:relative;
      z-index:2;
    }
    .formTitle{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .formTitle h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .formTitle p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
      max-width:52ch;
    }
    .fields{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-size:13px;
      color: rgba(31,36,48,.88);
      font-weight:800;
    }
    .field input, .field select, .field textarea{
      width:100%;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(22,31,46,.12);
      background: rgba(255,255,255,.86);
      color: rgba(31,36,48,.92);
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease;
    }
    .field textarea{
      min-height:110px;
      resize: vertical;
      grid-column: 1 / -1;
    }
    .field input:focus, .field select:focus, .field textarea:focus{
      border-color: rgba(109,76,255,.36);
      box-shadow: 0 0 0 4px var(--focus);
    }
    .formActions{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      margin-top:12px;
      flex-wrap:wrap;
    }
    .hintRow{
      display:flex; gap:10px; align-items:flex-start;
      color: var(--muted);
      font-size:12.8px;
      line-height:1.6;
      max-width: 60ch;
    }
    .hintRow .shield{
      width:22px; height:22px;
      border-radius:10px;
      border:1px solid rgba(22,31,46,.12);
      background: rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }

    .contactSide{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .sideCard{
      border-radius: var(--radius2);
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(17,24,39,.08);
      padding:16px;
    }
    .sideCard h3{margin:0; font-size:15.5px; letter-spacing:-.2px}
    .sideCard p{margin:8px 0 0; color:var(--muted); font-size:13.5px; line-height:1.75}
    .kefuRow{
      display:flex; align-items:flex-start; gap:12px; margin-top:12px;
    }
    .kefuRow img{
      width:92px; height:auto;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background:#fff;
      box-shadow: 0 14px 44px rgba(17,24,39,.10);
      flex:0 0 auto;
    }
    .kefuMeta{
      display:flex; flex-direction:column; gap:8px;
      min-width:0;
    }
    .kefuMeta .line{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      color: rgba(31,36,48,.92);
      font-size:13.5px;
      line-height:1.6;
    }
    .kefuMeta .line span{color:var(--muted)}
    .copyLink{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(22,31,46,.12);
      background: rgba(255,255,255,.85);
      box-shadow: 0 10px 28px rgba(17,24,39,.06);
      cursor:pointer;
      user-select:none;
    }
    .copyLink:active{transform: translateY(1px)}
    .copyLink svg{opacity:.85}

    .comments{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .commentCard{
      border-radius: var(--radius2);
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 18px 60px rgba(17,24,39,.08);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 170px;
    }
    .commentCard:before{
      content:"";
      position:absolute;
      inset:-2px auto auto -2px;
      width:240px; height:88px;
      background: radial-gradient(160px 70px at 20% 40%, rgba(255,79,216,.16), transparent 60%),
                  radial-gradient(160px 70px at 70% 20%, rgba(109,76,255,.16), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .commentCard:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 78px rgba(17,24,39,.12);
      border-color: rgba(109,76,255,.26);
    }
    .commentTop{
      position:relative; z-index:2;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:44px; height:44px;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: linear-gradient(135deg, rgba(109,76,255,.18), rgba(25,183,255,.14), rgba(255,79,216,.12));
      box-shadow: 0 14px 44px rgba(17,24,39,.08);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(31,36,48,.92);
      flex:0 0 auto;
    }
    .who b{display:block; font-size:14.5px; letter-spacing:-.2px}
    .who span{display:block; margin-top:4px; color:var(--muted); font-size:13px}
    .starsRow{
      display:flex; gap:4px; align-items:center;
      color: rgba(31,36,48,.9);
      flex:0 0 auto;
      padding:8px 10px;
      border-radius:16px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.75);
    }
    .starsRow svg{width:16px; height:16px}
    .commentText{
      position:relative; z-index:2;
      margin:0;
      color: rgba(31,36,48,.88);
      font-size:13.8px;
      line-height:1.85;
      max-width: 60ch;
    }

    .articleGrid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .articleCard{
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 12px 34px rgba(17,24,39,.06);
      padding:14px 14px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex;
      flex-direction:column;
      gap:8px;
      min-height: 150px;
    }
    .articleCard:hover{
      transform: translateY(-3px);
      border-color: rgba(109,76,255,.26);
      box-shadow: 0 22px 68px rgba(17,24,39,.12);
    }
    .articleMeta{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color: var(--muted);
      font-size:12.5px;
      flex-wrap:wrap;
    }
    .articleCard b{font-size:14.5px; letter-spacing:-.2px}
    .articleCard p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      display:-webkit-box;
      -webkit-line-clamp:3;
      -webkit-box-orient:vertical;
      overflow:hidden;
      min-height: 70px;
    }
    .articleCard .linkRow{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .linkRow a{
      display:inline-flex; align-items:center; gap:10px;
      font-weight:900;
      font-size:13.5px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(22,31,46,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 10px 28px rgba(17,24,39,.05);
    }
    .linkRow a:active{transform: translateY(1px)}

    .faqWrap{
      border-radius: var(--radius2);
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 26px 78px rgba(17,24,39,.10);
      overflow:hidden;
    }
    details.faqItem{
      border-top:1px solid rgba(22,31,46,.08);
      padding:0;
      background: rgba(255,255,255,.0);
    }
    details.faqItem:first-child{border-top:none}
    details.faqItem summary{
      list-style:none;
      cursor:pointer;
      padding:16px 16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:950;
      letter-spacing:-.2px;
    }
    details.faqItem summary::-webkit-details-marker{display:none}
    .faqQ{
      display:flex; gap:12px; align-items:flex-start;
      min-width:0;
    }
    .faqQ .qMark{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(109,76,255,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
      font-weight:1000;
      color: rgba(31,36,48,.92);
    }
    .faqQ span{display:block; font-size:14.5px; line-height:1.6}
    .faqCaret{
      flex:0 0 auto;
      width:36px; height:36px;
      border-radius:16px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease;
      box-shadow: 0 10px 28px rgba(17,24,39,.05);
      margin-top:-2px;
    }
    details[open] .faqCaret{transform: rotate(180deg)}
    .faqA{
      padding:0 16px 16px 62px;
      color: rgba(31,36,48,.88);
      font-size:13.8px;
      line-height:1.85;
    }

    .tagCloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .cloudTag{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.78);
      font-weight:900;
      font-size:12.8px;
      color: rgba(31,36,48,.9);
      box-shadow: 0 12px 34px rgba(17,24,39,.05);
      transition: transform .18s ease, border-color .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .cloudTag:hover{
      transform: translateY(-2px);
      border-color: rgba(109,76,255,.26);
    }

    .networkGrid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .netCard{
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 12px 34px rgba(17,24,39,.06);
      padding:14px;
      min-height: 150px;
      position:relative;
      overflow:hidden;
    }
    .netCard:after{
      content:"";
      position:absolute;
      inset:auto -60px -60px auto;
      width:200px; height:200px;
      background: radial-gradient(circle at 30% 30%, rgba(25,183,255,.16), transparent 60%);
      pointer-events:none;
    }
    .netCard b{display:block; font-size:14.5px; letter-spacing:-.2px; position:relative; z-index:2}
    .netCard p{margin:8px 0 0; color:var(--muted); font-size:13.5px; line-height:1.75; position:relative; z-index:2}
    .netPoints{
      margin-top:10px;
      display:flex; flex-wrap:wrap; gap:8px; position:relative; z-index:2;
    }
    .netPoints span{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(22,31,46,.10);
      background: rgba(255,255,255,.72);
      font-size:12px;
      font-weight:850;
      color: rgba(31,36,48,.9);
    }

    .footer{
      padding:26px 0 22px;
      margin-top:8px;
    }
    .footerCard{
      border-radius: var(--radius2);
      border:1px solid rgba(22,31,46,.12);
      background:
        radial-gradient(780px 280px at 20% 0%, rgba(109,76,255,.18), transparent 60%),
        radial-gradient(780px 280px at 90% 0%, rgba(25,183,255,.16), transparent 60%),
        rgba(17, 24, 39, .96);
      color:#fff;
      box-shadow: 0 36px 110px rgba(17,24,39,.18);
      overflow:hidden;
      position:relative;
    }
    .footerCard:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(380px 200px at 10% 20%, rgba(255,79,216,.18), transparent 60%),
        radial-gradient(360px 200px at 90% 10%, rgba(255,176,32,.18), transparent 60%);
      pointer-events:none;
      opacity:.8;
    }
    .footerInner{
      position:relative; z-index:2;
      padding:18px;
    }
    .footerTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
      border-bottom: 1px solid rgba(255,255,255,.14);
      padding-bottom:14px;
      margin-bottom:14px;
    }
    .footerBrand{
      display:flex; gap:12px; align-items:flex-start;
      min-width: 280px;
    }
    .footerBrand img{
      width:44px; height:auto;
      border-radius:16px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(255,255,255,.35);
      padding:8px;
    }
    .footerBrand b{display:block; font-size:16px; letter-spacing:-.2px}
    .footerBrand span{display:block; margin-top:6px; color: rgba(255,255,255,.78); font-size:13.5px; line-height:1.7}

    .footerCols{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      min-width: 320px;
      flex: 1 1 auto;
    }
    .footerCol{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
    }
    .footerCol h3{
      margin:0;
      font-size:13.5px;
      letter-spacing:.2px;
      color: rgba(255,255,255,.92);
    }
    .footerCol a, .footerCol div{
      color: rgba(255,255,255,.82);
      font-size:13.5px;
      line-height:1.8;
      display:flex; align-items:center; gap:10px;
      margin-top:8px;
      word-break:break-word;
    }

    .footerLinks{
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
      justify-content:flex-start;
      margin-top:10px;
    }
    .footerLinks a{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.86);
      font-weight:850;
      font-size:12.8px;
    }
    .footerLinks a:hover{background: rgba(255,255,255,.10)}
    .footerBottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:12px;
      color: rgba(255,255,255,.78);
      font-size:12.8px;
    }
    .footerBottom .right{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .topLink{
      padding:9px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
      color:#fff;
      font-weight:900;
      cursor:pointer;
    }

    .floatKefu{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .floatBtn{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.12);
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(10px);
      box-shadow: 0 22px 68px rgba(17,24,39,.14);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      user-select:none;
    }
    .floatBtn:hover{
      transform: translateY(-3px);
      border-color: rgba(109,76,255,.26);
      box-shadow: 0 28px 90px rgba(17,24,39,.18);
    }
    .floatBtn:focus{outline:none; box-shadow: 0 0 0 4px var(--focus), 0 22px 68px rgba(17,24,39,.14)}
    .floatBubble{
      display:none;
      width: 240px;
      border-radius:20px;
      border:1px solid rgba(22,31,46,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 28px 90px rgba(17,24,39,.20);
      padding:12px;
      overflow:hidden;
    }
    .floatBubble .bTitle{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      font-weight:950;
      letter-spacing:-.2px;
      font-size:14px;
      margin-bottom:10px;
    }
    .floatBubble .closeMini{
      width:28px; height:28px;
      border-radius:12px;
      border:1px solid rgba(22,31,46,.12);
      background: rgba(255,255,255,.9);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
    }
    .floatBubble .bGrid{
      display:flex; gap:12px; align-items:flex-start;
    }
    .floatBubble img{
      width:78px; height:auto;
      border-radius:18px;
      border:1px solid rgba(22,31,46,.10);
      background:#fff;
      flex:0 0 auto;
    }
    .floatBubble .bText{
      display:flex; flex-direction:column; gap:6px; min-width:0;
    }
    .floatBubble .bText span{color:var(--muted); font-size:13px; line-height:1.6}
    .floatBubble .bActions{
      margin-top:10px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .floatBubble .bActions a{
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(22,31,46,.12);
      background: rgba(255,255,255,.9);
      font-weight:950;
      font-size:13px;
      white-space:nowrap;
    }

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .heroLeft{min-height: unset}
      .heroRight{min-height: unset}
      .grid3{grid-template-columns: 1fr; }
      .grid2{grid-template-columns: 1fr; }
      .steps{grid-template-columns: 1fr 1fr; }
      .caseGrid{grid-template-columns: 1fr; }
      .timeline{grid-template-columns: 1fr; }
      .comments{grid-template-columns: 1fr; }
      .articleGrid{grid-template-columns: 1fr; }
      .networkGrid{grid-template-columns: 1fr; }
      .formGrid{grid-template-columns: 1fr; }
      .fields{grid-template-columns: 1fr; }
      .steps .step{min-height: unset}
      .heroLeft h1{font-size:30px}
      .navLinks{display:none}
      .hamburger{display:flex}
      .mobilePanel{display:block}
      .floatBubble{width: 230px}
    }

    @media (max-width: 520px){
      .heroLeft{padding:20px 16px}
      .heroRight{padding:14px}
      h1{font-size:27px}
      .steps{grid-template-columns: 1fr; }
      .dataGrid{grid-template-columns: 1fr 1fr}
      .compareTable th, .compareTable td{padding:12px 10px}
      .faqA{padding-left:52px}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .fadeIn{transition:none}
      .brandMark:before, .caseItem .thumb:after{animation:none}
    }