:root{
      --bg0:#fffdf7;
      --bg1:#ffffff;
      --ink:#111827;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(17,24,39,.10);
      --line2:rgba(17,24,39,.14);
      --card:rgba(255,255,255,.78);
      --shadow:0 18px 50px rgba(17,24,39,.10);
      --shadow2:0 10px 24px rgba(17,24,39,.08);
      --yellow:#ffb400;
      --yellow2:#ffcf3f;
      --yellow3:#ffd86a;
      --deep:#0b1220;
      --brand:#ffb400;
      --brand2:#ffce3d;
      --accent:#2f6bff;
      --ok:#16a34a;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:26px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"PingFang SC","Hiragino Sans GB","Noto Sans","Microsoft YaHei",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(900px 420px at 12% 0%, rgba(255,180,0,.18), transparent 55%),
        radial-gradient(700px 380px at 88% 10%, rgba(47,107,255,.14), transparent 58%),
        linear-gradient(180deg, var(--bg0), #ffffff 55%, #fffdf6 100%);
    }
    a{color:inherit}
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(160%) blur(10px);
      background:rgba(255,253,247,.62);
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:10px; min-width:220px;
    }
    .brand img{
      width:44px; height:44px; border-radius:12px;
      background:#fff; border:1px solid rgba(17,24,39,.10);
      box-shadow:0 10px 18px rgba(17,24,39,.08);
      object-fit:contain;
    }
    .brand-title{display:flex; flex-direction:column; line-height:1.1}
    .brand-title .name{font-weight:860; letter-spacing:.2px}
    .brand-title .sub{font-size:12px; color:var(--muted2); margin-top:3px}

    nav{display:flex; align-items:center; gap:14px}
    .nav-links{
      display:flex; align-items:center; gap:8px; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      text-decoration:none;
      font-size:13px;
      color:rgba(17,24,39,.78);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      transform:translateY(-1px);
      background:rgba(255,180,0,.12);
      border-color:rgba(255,180,0,.22);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      appearance:none;
      border:1px solid transparent;
      background:#111827;
      color:#fff;
      padding:10px 14px;
      border-radius:12px;
      cursor:pointer;
      font-weight:720;
      letter-spacing:.2px;
      transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      text-decoration:none;
      display:inline-flex; align-items:center; gap:10px;
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 14px 28px rgba(17,24,39,.14)}
    .btn:active{transform:translateY(0px); box-shadow:none}
    .btn-primary{
      background:linear-gradient(180deg, #ffcc3a, #ffb400);
      color:#141414;
      border-color:rgba(0,0,0,.08);
      box-shadow:0 14px 24px rgba(255,180,0,.22);
    }
    .btn-primary:hover{box-shadow:0 18px 36px rgba(255,180,0,.28)}
    .btn-ghost{
      background:rgba(255,255,255,.72);
      border-color:rgba(17,24,39,.12);
      color:rgba(17,24,39,.88);
    }
    .btn-ghost:hover{box-shadow:0 14px 24px rgba(17,24,39,.10)}
    .btn-small{padding:9px 12px; border-radius:11px; font-weight:700; font-size:13px}
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:999px;
      background:rgba(255,180,0,.12);
      border:1px solid rgba(255,180,0,.22);
      color:rgba(17,24,39,.9);
      font-size:12px;
      white-space:nowrap;
    }
    .pill .dot{
      width:8px; height:8px; border-radius:99px;
      background:var(--brand);
      box-shadow:0 0 0 6px rgba(255,180,0,.14);
    }

    .mobile-toggle{
      display:none;
      padding:10px 12px;
      border-radius:12px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.72);
      cursor:pointer;
      font-weight:740;
      letter-spacing:.2px;
    }
    .mobile-drawer{
      display:none;
      padding:10px 0 16px;
      border-top:1px solid rgba(17,24,39,.08);
    }
    .mobile-drawer .row{
      display:flex; flex-direction:column; gap:8px;
    }
    .mobile-drawer a{
      text-decoration:none;
      padding:12px 12px;
      border:1px solid rgba(17,24,39,.10);
      border-radius:14px;
      background:rgba(255,255,255,.72);
      color:rgba(17,24,39,.90);
      font-weight:700;
      transition:transform .15s ease, box-shadow .15s ease;
    }
    .mobile-drawer a:hover{transform:translateY(-1px); box-shadow:0 14px 22px rgba(17,24,39,.10)}
    .mobile-cta{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
    }

    .hero{
      padding:34px 0 20px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      position:relative;
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(255,180,0,.23), transparent 55%),
        radial-gradient(700px 360px at 86% 18%, rgba(47,107,255,.18), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
      box-shadow:var(--shadow2);
      overflow:hidden;
      padding:26px 22px;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px -2px auto -2px;
      height:120px;
      background:
        linear-gradient(90deg, rgba(255,180,0,.18), rgba(47,107,255,.12), rgba(255,180,0,.18));
      filter:blur(12px);
      opacity:.9;
      pointer-events:none;
    }
    .hero-top{
      position:relative;
      display:flex; align-items:flex-start; gap:14px; justify-content:space-between;
      margin-bottom:14px;
      flex-wrap:wrap;
    }
    h1{
      margin:0;
      font-size:28px;
      line-height:1.18;
      letter-spacing:-.3px;
    }
    .lead{
      margin:10px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      max-width:56ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:16px;
      align-items:center;
      position:relative;
    }
    .hero-meta{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;
    }
    .meta-item{
      flex:1 1 180px;
      min-width:180px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      border-radius:16px;
      padding:12px 12px;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .meta-item:hover{transform:translateY(-2px); box-shadow:0 18px 30px rgba(17,24,39,.10)}
    .meta-item .k{
      font-size:12px; color:var(--muted2);
    }
    .meta-item .v{
      margin-top:6px; font-weight:880; letter-spacing:.2px;
      font-size:15px;
    }

    .hero-side{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 16px 40px rgba(17,24,39,.07);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:12px;
      overflow:hidden;
      position:relative;
    }
    .hero-side:after{
      content:"";
      position:absolute;
      right:-60px; top:-80px;
      width:220px; height:220px;
      background:radial-gradient(circle at 30% 30%, rgba(255,180,0,.35), transparent 55%),
                 radial-gradient(circle at 70% 70%, rgba(47,107,255,.22), transparent 58%);
      filter:blur(2px);
      opacity:.85;
      pointer-events:none;
    }
    .side-title{
      position:relative;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .side-title h2{
      margin:0;
      font-size:14px;
      letter-spacing:.2px;
      color:rgba(17,24,39,.88);
    }
    .side-title .badge{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,180,0,.14);
      border:1px solid rgba(255,180,0,.22);
      font-weight:800;
    }
    .side-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .stat{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.70);
      padding:12px 12px;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .stat:hover{transform:translateY(-2px); box-shadow:0 18px 30px rgba(17,24,39,.10)}
    .stat .num{
      font-size:18px;
      font-weight:900;
      letter-spacing:-.2px;
    }
    .stat .lab{
      margin-top:6px;
      font-size:12px;
      color:var(--muted2);
      line-height:1.4;
    }

    .side-steps{
      position:relative;
      border-top:1px dashed rgba(17,24,39,.12);
      padding-top:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .step-mini{
      display:flex; gap:10px; align-items:flex-start;
    }
    .step-mini .idx{
      width:26px; height:26px;
      border-radius:10px;
      background:rgba(255,180,0,.16);
      border:1px solid rgba(255,180,0,.24);
      display:flex; align-items:center; justify-content:center;
      font-weight:900; font-size:12px;
      color:rgba(17,24,39,.92);
      flex:0 0 auto;
    }
    .step-mini .txt{
      font-size:13px; color:rgba(17,24,39,.86); line-height:1.5;
    }

    main{padding:8px 0 32px}
    section{padding:24px 0}
    .section-head{
      display:flex; justify-content:space-between; align-items:flex-end; gap:14px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:20px;
      letter-spacing:-.2px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      max-width:70ch;
      line-height:1.7;
      font-size:13.5px;
    }

    .grid-3{
      display:grid; grid-template-columns:repeat(3,1fr); gap:12px;
    }
    .grid-4{
      display:grid; grid-template-columns:repeat(4,1fr); gap:12px;
    }
    .card{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 28px rgba(17,24,39,.06);
      padding:16px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      overflow:hidden;
      position:relative;
    }
    .card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(17,24,39,.10);
      border-color:rgba(255,180,0,.25);
    }
    .card .icon{
      width:40px; height:40px; border-radius:14px;
      background:linear-gradient(180deg, rgba(255,180,0,.22), rgba(255,180,0,.10));
      border:1px solid rgba(255,180,0,.25);
      display:flex; align-items:center; justify-content:center;
      margin-bottom:10px;
      position:relative;
    }
    .card .icon svg{width:20px; height:20px; fill:none; stroke:rgba(17,24,39,.9); stroke-width:2}
    .card h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.1px;
    }
    .card .desc{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .tags{
      display:flex; flex-wrap:wrap; gap:8px; margin-top:12px;
    }
    .tag{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      color:rgba(17,24,39,.86);
      white-space:nowrap;
    }
    .tag.hot{
      background:rgba(255,180,0,.14);
      border-color:rgba(255,180,0,.24);
      font-weight:800;
    }

    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }

    .flow{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .flow-item{
      display:flex; gap:12px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.70);
      padding:14px;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .flow-item:hover{transform:translateY(-2px); box-shadow:0 18px 30px rgba(17,24,39,.10)}
    .flow-item .num{
      width:40px; height:40px; border-radius:14px;
      background:rgba(17,24,39,.04);
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .flow-item .num:after{
      content:"";
      position:absolute; inset:-30px;
      background:radial-gradient(circle at 20% 20%, rgba(255,180,0,.35), transparent 55%);
      opacity:.8;
    }
    .flow-item .content{flex:1}
    .flow-item .title{
      font-weight:880;
      margin:0;
      font-size:14px;
      letter-spacing:-.1px;
    }
    .flow-item .text{
      margin:6px 0 0;
      color:var(--muted);
      line-height:1.7;
      font-size:13px;
    }

    .compare-wrap{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 18px 40px rgba(17,24,39,.08);
      overflow:hidden;
    }
    .compare-top{
      padding:16px 16px 8px;
      border-bottom:1px solid rgba(17,24,39,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .rating{
      display:flex; align-items:center; gap:10px;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
      padding:10px 12px;
      border-radius:16px;
      background:rgba(255,180,0,.14);
      border:1px solid rgba(255,180,0,.22);
      font-weight:900;
    }
    .star{
      width:16px; height:16px; display:inline-block;
      background:conic-gradient(from 90deg, var(--brand), var(--brand2));
      clip-path:polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      opacity:.95;
    }
    .rating .score{
      display:flex; flex-direction:column;
      line-height:1.2;
    }
    .rating .score .big{
      font-size:24px; font-weight:950; letter-spacing:-.3px;
    }
    .rating .score .small{
      font-size:12px; color:var(--muted2);
      margin-top:4px;
    }
    .compare-note{
      max-width:60ch;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      margin:0;
    }

    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:auto;
    }
    .table-wrap{overflow:auto}
    table{
      min-width:820px;
      width:100%;
      font-size:13px;
    }
    thead th{
      text-align:left;
      padding:14px 12px;
      border-bottom:1px solid rgba(17,24,39,.10);
      background:rgba(17,24,39,.02);
      color:rgba(17,24,39,.86);
      font-weight:900;
      letter-spacing:.1px;
      white-space:nowrap;
    }
    tbody td{
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      color:rgba(17,24,39,.86);
      vertical-align:top;
    }
    tbody tr:last-child td{border-bottom:none}
    .yes{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:850;
    }
    .yes .check{
      width:18px; height:18px; border-radius:8px;
      background:rgba(22,163,74,.12);
      border:1px solid rgba(22,163,74,.26);
      display:inline-flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .yes .check svg{width:12px; height:12px; stroke:#15803d; fill:none; stroke-width:2.5}
    .hint{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
      margin-top:6px;
    }
    .emph{
      background:rgba(255,180,0,.12);
      border:1px solid rgba(255,180,0,.20);
      border-radius:14px;
      padding:10px 10px;
      margin:10px 0 0;
      color:rgba(17,24,39,.86);
      font-size:12.8px;
      line-height:1.7;
    }

    .tabs{
      display:flex; gap:8px; flex-wrap:wrap; margin-top:10px;
    }
    .tab{
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.64);
      border:1px solid rgba(17,24,39,.10);
      cursor:pointer;
      font-weight:800;
      color:rgba(17,24,39,.86);
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      font-size:13px;
    }
    .tab:hover{transform:translateY(-1px)}
    .tab.active{
      background:rgba(255,180,0,.16);
      border-color:rgba(255,180,0,.28);
    }

    .list{
      display:flex; flex-direction:column; gap:10px;
    }
    .list-item{
      display:flex; justify-content:space-between; gap:14px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.70);
      padding:14px;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .list-item:hover{transform:translateY(-2px); box-shadow:0 18px 30px rgba(17,24,39,.10)}
    .list-item .left{min-width:0}
    .list-item .t{
      font-weight:900; margin:0; font-size:14px; letter-spacing:-.1px;
    }
    .list-item .s{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px; line-height:1.7;
    }
    .list-item .right{
      flex:0 0 auto;
      display:flex; flex-direction:column; align-items:flex-end; gap:8px;
    }
    .mini-metric{
      font-size:12px; color:rgba(17,24,39,.86);
      background:rgba(17,24,39,.03);
      border:1px solid rgba(17,24,39,.10);
      padding:8px 10px;
      border-radius:999px;
      white-space:nowrap;
      font-weight:800;
    }

    .pricing-row{
      display:grid; grid-template-columns:1.05fr .95fr; gap:12px; align-items:stretch;
    }
    .price-card{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 18px 40px rgba(17,24,39,.08);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .price-card:before{
      content:"";
      position:absolute; inset:-1px -1px auto -1px;
      height:92px;
      background:linear-gradient(90deg, rgba(255,180,0,.24), rgba(47,107,255,.14), rgba(255,180,0,.16));
      filter:blur(10px);
      opacity:.9;
      pointer-events:none;
    }
    .price-card > *{position:relative}
    .price-title{
      margin:0;
      font-size:15px; font-weight:950; letter-spacing:-.1px;
    }
    .price-sub{
      margin:8px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7;
    }
    .price-box{
      margin-top:12px;
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
    }
    .price-box .cell{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      padding:12px;
    }
    .cell .k{font-size:12px; color:var(--muted2)}
    .cell .v{margin-top:6px; font-weight:950; font-size:18px; letter-spacing:-.2px}
    .cell .t{margin-top:6px; font-size:12.5px; color:var(--muted); line-height:1.6}
    .price-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

    .timeline{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 18px 40px rgba(17,24,39,.08);
      padding:16px;
    }
    .timeline .items{display:flex; flex-direction:column; gap:12px; margin-top:10px}
    .timeline .node{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
    }
    .timeline .dot{
      width:12px; height:12px; border-radius:99px;
      background:var(--brand);
      box-shadow:0 0 0 6px rgba(255,180,0,.16);
      margin-top:6px;
      flex:0 0 auto;
    }
    .timeline .node h3{
      margin:0;
      font-size:14px; font-weight:950; letter-spacing:-.1px;
    }
    .timeline .node p{
      margin:6px 0 0;
      color:var(--muted);
      line-height:1.7;
      font-size:13px;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    details{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      padding:14px 14px;
      box-shadow:0 12px 26px rgba(17,24,39,.05);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    details[open]{border-color:rgba(255,180,0,.26); box-shadow:0 18px 40px rgba(17,24,39,.10)}
    summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      font-weight:920;
      letter-spacing:-.1px;
      color:rgba(17,24,39,.92);
      user-select:none;
    }
    summary::-webkit-details-marker{display:none}
    .sum-right{
      display:flex; align-items:center; gap:10px; flex:0 0 auto;
      color:var(--muted2);
      font-weight:850;
      font-size:12px;
    }
    .chev{
      width:22px; height:22px; border-radius:10px;
      background:rgba(17,24,39,.04);
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      transition:transform .18s ease;
    }
    details[open] .chev{transform:rotate(180deg); border-color:rgba(255,180,0,.25)}
    .chev svg{width:14px; height:14px; stroke:rgba(17,24,39,.85); fill:none; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round}

    details .ans{
      margin-top:10px;
      color:var(--muted);
      line-height:1.8;
      font-size:13.5px;
      padding-right:8px;
    }

    .reviews{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .review{
      border-radius:20px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 28px rgba(17,24,39,.06);
      padding:16px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .review:before{
      content:"";
      position:absolute; inset:-2px -2px auto -2px;
      height:74px;
      background:linear-gradient(90deg, rgba(255,180,0,.22), rgba(47,107,255,.14), rgba(255,180,0,.16));
      filter:blur(12px);
      opacity:.6;
      pointer-events:none;
    }
    .review > *{position:relative}
    .review .who{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
      flex-wrap:wrap;
    }
    .avatar{
      width:42px; height:42px; border-radius:16px;
      background:rgba(255,180,0,.14);
      border:1px solid rgba(255,180,0,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .review .role{
      font-size:13px; color:rgba(17,24,39,.88);
      font-weight:900;
    }
    .review .meta{
      font-size:12px; color:var(--muted2); font-weight:800;
    }
    .review p{
      margin:0;
      color:var(--muted);
      line-height:1.8;
      font-size:13.5px;
    }

    .case-grid{
      display:grid; grid-template-columns:1.1fr .9fr; gap:12px;
      align-items:stretch;
    }
    .case-main{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 18px 40px rgba(17,24,39,.08);
      padding:16px;
      overflow:hidden;
    }
    .case-main .head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .case-main h3{margin:0; font-size:15px; font-weight:980; letter-spacing:-.1px}
    .case-main .sub{margin:8px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .case-cards{
      display:grid; grid-template-columns:repeat(2,1fr); gap:12px;
      margin-top:12px;
    }
    .case{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      overflow:hidden;
      display:flex; flex-direction:column;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .case:hover{transform:translateY(-2px); box-shadow:0 18px 36px rgba(17,24,39,.10); border-color:rgba(255,180,0,.26)}
    .img-wrap{
      padding:10px 10px 0;
    }
    .img-frame{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:linear-gradient(180deg, rgba(255,180,0,.10), rgba(47,107,255,.08));
      overflow:hidden;
    }
    .img-frame img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
    }
    .case .body{
      padding:12px 12px 13px;
      display:flex; flex-direction:column; gap:8px;
    }
    .case .title{
      font-weight:960; letter-spacing:-.1px;
      font-size:14px;
      margin:0;
    }
    .case .desc{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      min-height:44px;
    }

    .article-list{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 18px 40px rgba(17,24,39,.08);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .article-list:before{
      content:"";
      position:absolute; inset:-2px -2px auto -2px;
      height:84px;
      background:radial-gradient(circle at 20% 10%, rgba(255,180,0,.28), transparent 58%),
                 radial-gradient(circle at 80% 30%, rgba(47,107,255,.18), transparent 56%);
      filter:blur(14px);
      opacity:.75;
      pointer-events:none;
    }
    .article-list > *{position:relative}
    .article-list h3{margin:0; font-size:15px; font-weight:980; letter-spacing:-.1px}
    .articles{
      margin-top:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .article{
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .article:hover{transform:translateY(-2px); box-shadow:0 18px 36px rgba(17,24,39,.10)}
    .article .t{font-weight:950; letter-spacing:-.1px; font-size:14px; margin:0; line-height:1.4}
    .article .s{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    .article .go{
      flex:0 0 auto;
      white-space:nowrap;
      text-decoration:none;
      font-weight:900;
      font-size:13px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
      color:rgba(17,24,39,.90);
    }
    .article .go:hover{transform:translateY(-1px); border-color:rgba(255,180,0,.26); box-shadow:0 16px 30px rgba(17,24,39,.10)}

    form{
      display:flex; flex-direction:column; gap:12px;
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    label{display:flex; flex-direction:column; gap:7px; font-size:13px; font-weight:850; color:rgba(17,24,39,.88)}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.78);
      color:rgba(17,24,39,.92);
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease;
      font-size:14px;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(255,180,0,.45);
      box-shadow:0 0 0 4px rgba(255,180,0,.16);
    }
    .form-actions{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between;
      margin-top:4px;
    }
    .form-note{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      max-width:46ch;
    }

    footer{
      border-top:1px solid rgba(17,24,39,.10);
      background:linear-gradient(180deg, rgba(17,24,39,.02), rgba(255,255,255,.84));
      padding:18px 0 26px;
    }
    .footer-grid{
      display:grid; grid-template-columns:1.1fr .9fr;
      gap:12px;
      align-items:start;
    }
    .footer-card{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.76);
      padding:16px;
      box-shadow:0 18px 40px rgba(17,24,39,.06);
    }
    .foot-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .foot-brand{
      display:flex; gap:12px; align-items:center;
    }
    .foot-brand img{
      width:52px; height:52px; border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
      object-fit:contain;
    }
    .foot-brand h3{
      margin:0; font-size:15px; font-weight:980; letter-spacing:-.1px;
    }
    .foot-brand p{
      margin:7px 0 0; color:var(--muted);
      font-size:13.2px; line-height:1.7;
    }
    .foot-links{
      display:flex; flex-direction:column; gap:10px;
    }
    .links-row{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .link-pill{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      font-weight:900;
      font-size:13px;
      color:rgba(17,24,39,.90);
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .link-pill:hover{transform:translateY(-1px); border-color:rgba(255,180,0,.26); box-shadow:0 16px 30px rgba(17,24,39,.10)}
    .foot-q{
      display:flex; gap:10px; align-items:flex-start;
      padding-top:12px;
      border-top:1px dashed rgba(17,24,39,.12);
      margin-top:12px;
    }
    .foot-q .col{flex:1}
    .foot-q .k{font-size:12px; color:var(--muted2); font-weight:900}
    .foot-q .v{margin-top:6px; font-size:14px; font-weight:950; letter-spacing:-.1px}
    .foot-q .v a{text-decoration:none; border-bottom:1px solid rgba(17,24,39,.20)}
    .copyright{
      text-align:center;
      color:var(--muted2);
      font-size:12.5px;
      margin-top:14px;
      padding-top:10px;
    }

    .floating{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-btn{
      pointer-events:auto;
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.84);
      box-shadow:0 18px 40px rgba(17,24,39,.12);
      cursor:pointer;
      user-select:none;
      transition:transform .18s ease, box-shadow .18s ease;
      max-width:260px;
    }
    .float-btn:hover{transform:translateY(-2px); box-shadow:0 24px 60px rgba(17,24,39,.14)}
    .float-icon{
      width:36px; height:36px; border-radius:14px;
      background:rgba(255,180,0,.14);
      border:1px solid rgba(255,180,0,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .float-icon svg{width:18px; height:18px; stroke:rgba(17,24,39,.90); fill:none; stroke-width:2.3; stroke-linecap:round; stroke-linejoin:round}
    .float-text{
      display:flex; flex-direction:column; line-height:1.2;
      min-width:0;
    }
    .float-text .t{font-weight:980; letter-spacing:-.1px; font-size:13px}
    .float-text .s{color:var(--muted2); font-size:12px; margin-top:4px}
    .qr-pop{
      pointer-events:auto;
      width:250px;
      border-radius:20px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.92);
      box-shadow:0 24px 70px rgba(17,24,39,.16);
      overflow:hidden;
      transform-origin:bottom right;
      animation:popIn .18s ease both;
      display:none;
    }
    .qr-pop .top{
      padding:12px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(17,24,39,.08);
      background:linear-gradient(180deg, rgba(255,180,0,.12), rgba(255,255,255,.80));
    }
    .qr-pop .top .k{font-weight:980; letter-spacing:-.1px; font-size:13px}
    .qr-pop .top button{
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.72);
      border-radius:12px;
      padding:7px 10px;
      cursor:pointer;
      font-weight:900;
      color:rgba(17,24,39,.88);
    }
    .qr-pop .body{padding:12px; display:flex; gap:12px; align-items:center}
    .qr-pop img{width:86px; height:86px; border-radius:18px; border:1px solid rgba(17,24,39,.12); background:#fff; object-fit:cover}
    .qr-pop .info{flex:1; min-width:0}
    .qr-pop .info .a{font-weight:980; font-size:14px}
    .qr-pop .info .b{color:var(--muted); font-size:12.8px; line-height:1.6; margin-top:6px}
    @keyframes popIn{
      from{opacity:0; transform:scale(.98) translateY(4px)}
      to{opacity:1; transform:scale(1) translateY(0)}
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      h1{font-size:26px}
      .grid-3{grid-template-columns:1fr}
      .grid-4{grid-template-columns:1fr 1fr}
      .split{grid-template-columns:1fr}
      .reviews{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .case-cards{grid-template-columns:1fr}
      .pricing-row{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      nav{display:none}
      .mobile-toggle{display:inline-flex; align-items:center; gap:10px}
      .mobile-drawer{display:block}
    }
    @media (max-width: 520px){
      .nav-wrap{padding:10px 0}
      .brand{min-width:0}
      .brand-title .sub{display:none}
      .hero-card{padding:22px 16px}
      .hero-side{padding:16px}
      .grid-4{grid-template-columns:1fr}
      .float-btn{max-width:230px}
      .qr-pop{width:230px}
    }