:root{
      --bg0:#f7fff9;
      --bg1:#f2faf2;
      --card:#ffffff;
      --text:#0f172a;
      --muted:#475569;
      --muted2:#64748b;
      --line:rgba(15, 23, 42, .10);
      --shadow:0 14px 40px rgba(12, 184, 87, .14), 0 2px 8px rgba(2, 6, 23, .06);
      --shadow2:0 10px 26px rgba(2, 6, 23, .10);
      --green:#00c853;
      --green2:#22c55e;
      --green3:#16a34a;
      --lime:#b7ff5a;
      --accent:#00d06b;
      --accent2:#34d399;
      --ring:rgba(0, 200, 83, .28);
      --focus:rgba(34, 197, 94, .35);
      --radius:18px;
      --radius2:14px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
        "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 520px at 15% -10%, rgba(0,200,83,.14), transparent 55%),
        radial-gradient(1000px 520px at 85% 0%, rgba(34,197,94,.12), transparent 52%),
        linear-gradient(180deg, var(--bg0) 0%, #ffffff 36%, var(--bg1) 100%);
    }
    a{color:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

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

    header{
      position:sticky; top:0; z-index:50;
      background:rgba(247,255,249,.75);
      backdrop-filter:saturate(130%) blur(10px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .brand .logo{
      width:44px; height:44px; border-radius:14px;
      display:grid; place-items:center;
      background:linear-gradient(145deg, rgba(0,200,83,.15), rgba(34,197,94,.04));
      border:1px solid rgba(0,200,83,.18);
      box-shadow:0 12px 30px rgba(34,197,94,.16);
      overflow:hidden;
    }
    .brand img{
      width:100%; height:100%; object-fit:contain; display:block;
    }
    .brand .title{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .title strong{font-size:14px; letter-spacing:.2px}
    .brand .title span{font-size:12px; color:var(--muted2); margin-top:4px}

    nav{display:flex; align-items:center; gap:10px}
    .nav-links{
      display:flex; align-items:center; gap:10px;
    }
    .nav-links a{
      text-decoration:none;
      font-size:13px;
      color:rgba(15,23,42,.84);
      padding:10px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition:background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(0,200,83,.08);
      border-color:rgba(0,200,83,.18);
      transform:translateY(-1px);
    }
    .nav-actions{
      display:flex; align-items:center; gap:10px; justify-content:flex-end;
      min-width:240px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      color:rgba(15,23,42,.92);
      text-decoration:none;
      font-weight:650;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      box-shadow:0 8px 18px rgba(2,6,23,.06);
      user-select:none;
      cursor:pointer;
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 14px 30px rgba(2,6,23,.10)}
    .btn:active{transform:translateY(0px); box-shadow:0 10px 18px rgba(2,6,23,.08)}
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus), 0 14px 30px rgba(2,6,23,.10)}
    .btn-primary{
      background:linear-gradient(180deg, rgba(0,200,83,1) 0%, rgba(22,163,74,1) 100%);
      border-color:rgba(0,200,83,.35);
      color:#062012;
      box-shadow:0 20px 45px rgba(0,200,83,.22), 0 6px 18px rgba(2,6,23,.08);
    }
    .btn-primary .dot{
      width:9px; height:9px; border-radius:50%;
      background:rgba(255,255,255,.95);
      box-shadow:0 0 0 4px rgba(255,255,255,.20);
    }
    .btn-ghost{
      background:rgba(255,255,255,.70);
      border-color:rgba(0,200,83,.20);
    }

    .hamburger{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.72);
      box-shadow:0 10px 22px rgba(2,6,23,.06);
      cursor:pointer;
      align-items:center; justify-content:center;
    }
    .hamburger .lines{
      width:18px; height:14px; position:relative;
    }
    .hamburger .lines span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background:rgba(15,23,42,.85);
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger .lines span:nth-child(1){top:0}
    .hamburger .lines span:nth-child(2){top:6px}
    .hamburger .lines span:nth-child(3){top:12px}
    .hamburger[aria-expanded="true"] .lines span:nth-child(1){top:6px; transform:rotate(45deg)}
    .hamburger[aria-expanded="true"] .lines span:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .lines span:nth-child(3){top:6px; transform:rotate(-45deg)}

    .mobile-panel{
      display:none;
      border-top:1px solid rgba(15,23,42,.08);
      padding:10px 0 14px;
    }
    .mobile-panel .grid{
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
    }
    .mobile-panel a{
      text-decoration:none;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      font-size:13px; font-weight:650;
      color:rgba(15,23,42,.88);
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .mobile-panel a:hover{
      transform:translateY(-1px);
      border-color:rgba(0,200,83,.22);
      background:rgba(0,200,83,.07);
    }

    .hero{
      padding:34px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      background:linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.98) 100%);
      border:1px solid rgba(0,200,83,.22);
      box-shadow: var(--shadow);
      border-radius:24px;
      padding:26px 22px;
      position:relative;
      overflow:hidden;
    }
    .hero-card::before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(600px 240px at 20% 0%, rgba(0,200,83,.25), transparent 60%),
        radial-gradient(520px 240px at 85% 20%, rgba(34,197,94,.20), transparent 60%),
        linear-gradient(135deg, rgba(0,200,83,.10), rgba(34,197,94,.02));
      pointer-events:none;
      opacity:.9;
      mask: linear-gradient(#000, #000) content-box, linear-gradient(#000,#000);
      -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000,#000);
    }
    .hero-inner{position:relative; z-index:1}
    .eyebrow{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.20);
      color:rgba(15,23,42,.88);
      font-weight:700;
      font-size:12px;
      letter-spacing:.2px;
    }
    .pill .spark{
      width:18px; height:18px; border-radius:6px;
      background:linear-gradient(180deg, rgba(0,200,83,1), rgba(34,197,94,.9));
      display:grid; place-items:center;
      box-shadow:0 10px 18px rgba(0,200,83,.18);
    }
    .pill .spark svg{width:12px; height:12px; fill:#062012}
    .hero h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.12;
    }
    .hero p{
      margin:12px 0 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      max-width:62ch;
    }
    .hero-ctas{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin-bottom:18px;
    }
    .micro{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:14px;
    }
    .micro .m{
      flex:1 1 180px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.80);
      border-radius:16px;
      padding:12px 12px;
      display:flex; align-items:flex-start; gap:10px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .micro .m:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.25);
      box-shadow:0 14px 30px rgba(0,200,83,.12);
    }
    .micro .ic{
      width:34px; height:34px; border-radius:12px;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.20);
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .micro .ic svg{width:18px; height:18px; fill:rgba(0,200,83,1)}
    .micro .m strong{display:block; font-size:13px; margin-top:2px}
    .micro .m span{display:block; font-size:12px; color:var(--muted2); margin-top:4px; line-height:1.5}

    .hero-side{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.95));
      box-shadow:0 14px 40px rgba(2,6,23,.08);
      padding:18px;
      display:flex; flex-direction:column; gap:12px;
      overflow:hidden;
      position:relative;
    }
    .hero-side::after{
      content:"";
      position:absolute; right:-120px; top:-120px; width:280px; height:280px;
      border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(0,200,83,.28), transparent 60%);
      pointer-events:none;
      filter: blur(2px);
    }
    .side-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px; position:relative; z-index:1;
    }
    .side-top h2{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .side-top .tag{
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(0,200,83,.24);
      background:rgba(0,200,83,.08);
      color:rgba(15,23,42,.90);
      font-weight:800;
      white-space:nowrap;
    }
    .side-metrics{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      position:relative; z-index:1;
    }
    .metric{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.86);
      border-radius:18px;
      padding:14px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      transform: translateZ(0);
    }
    .metric:hover{
      transform:translateY(-3px);
      border-color:rgba(0,200,83,.22);
      box-shadow:0 20px 40px rgba(0,200,83,.10);
    }
    .metric .num{
      font-size:22px;
      font-weight:900;
      letter-spacing:-.4px;
    }
    .metric .lab{
      margin-top:6px;
      font-size:12px;
      color:var(--muted2);
      line-height:1.4;
    }
    .side-bottom{
      position:relative; z-index:1;
      border-top:1px solid rgba(15,23,42,.10);
      padding-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .progress{
      flex:1 1 260px;
      min-width:240px;
    }
    .progress .bar{
      height:10px; border-radius:999px;
      background:rgba(15,23,42,.08);
      overflow:hidden;
      border:1px solid rgba(15,23,42,.08);
    }
    .progress .fill{
      height:100%;
      width:0%;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(0,200,83,1), rgba(34,197,94,1));
      box-shadow:0 10px 20px rgba(0,200,83,.20);
      transition: width .8s cubic-bezier(.2,.9,.2,1);
    }
    .progress .hint{
      margin-top:8px;
      display:flex; justify-content:space-between; gap:10px;
      color:var(--muted2);
      font-size:12px;
    }

    .section{
      padding:26px 0;
    }
    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .section-title h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .section-title p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      max-width:62ch;
    }

    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;
    }
    .card{
      background:rgba(255,255,255,.92);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 10px 25px rgba(2,6,23,.05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .card:hover{
      transform:translateY(-3px);
      border-color:rgba(0,200,83,.22);
      box-shadow:0 18px 40px rgba(0,200,83,.10);
    }
    .card .kicker{
      display:flex; align-items:center; gap:10px; margin-bottom:10px;
    }
    .badge-ic{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(0,200,83,.22);
      background:linear-gradient(180deg, rgba(0,200,83,.12), rgba(34,197,94,.04));
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .badge-ic svg{width:18px; height:18px; fill:rgba(0,200,83,1)}
    .card h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }

    .list{
      margin:0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.90);
    }
    .check{
      width:24px; height:24px; border-radius:10px;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.20);
      display:grid; place-items:center; flex:0 0 auto;
      margin-top:2px;
    }
    .check svg{width:14px; height:14px; fill:rgba(0,200,83,1)}
    .li strong{
      display:block; font-size:13.5px; letter-spacing:-.2px;
    }
    .li span{
      display:block; margin-top:4px;
      font-size:12.8px; color:var(--muted2); line-height:1.6;
    }

    .timeline{
      display:grid; grid-template-columns: 1fr;
      gap:10px;
    }
    .step{
      display:grid;
      grid-template-columns: 44px 1fr;
      gap:12px;
      align-items:start;
      padding:14px 14px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.92);
      transition: transform .2s ease, border-color .2s ease;
    }
    .step:hover{transform:translateY(-2px); border-color:rgba(0,200,83,.22)}
    .step .n{
      width:44px; height:44px; border-radius:18px;
      background:linear-gradient(180deg, rgba(0,200,83,.15), rgba(34,197,94,.04));
      border:1px solid rgba(0,200,83,.22);
      display:grid; place-items:center;
      font-weight:900;
      color:rgba(15,23,42,.92);
      box-shadow:0 12px 24px rgba(0,200,83,.10);
      position:relative;
      overflow:hidden;
    }
    .step .n::after{
      content:"";
      position:absolute; inset:-20px;
      background:radial-gradient(circle at 30% 30%, rgba(0,200,83,.22), transparent 60%);
      pointer-events:none;
    }
    .step .n span{position:relative; z-index:1}
    .step h3{margin:0; font-size:14.5px}
    .step p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.7}

    .compare-wrap{
      border-radius:24px;
      border:1px solid rgba(0,200,83,.22);
      background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.98));
      box-shadow:0 18px 50px rgba(0,200,83,.12);
      overflow:hidden;
    }
    .compare-head{
      padding:18px 16px;
      border-bottom:1px solid rgba(15,23,42,.10);
      display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; align-items:center;
      background:linear-gradient(180deg, rgba(0,200,83,.10), rgba(255,255,255,.0));
    }
    .rating{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      display:inline-block;
    }
    .score{
      display:flex; flex-direction:column;
      line-height:1.1;
    }
    .score strong{font-size:22px; letter-spacing:-.5px}
    .score span{font-size:12px; color:var(--muted2); margin-top:6px}
    .compare-actions{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }

    .table-scroll{
      overflow:auto;
      -webkit-overflow-scrolling:touch;
    }
    table{
      width:100%;
      min-width:820px;
      border-collapse:separate;
      border-spacing:0;
      font-size:13px;
    }
    thead th{
      position:sticky;
      top:0;
      background:rgba(240,255,245,.98);
      z-index:1;
      border-bottom:1px solid rgba(15,23,42,.10);
      padding:14px 12px;
      text-align:left;
      color:rgba(15,23,42,.88);
      font-weight:900;
      letter-spacing:-.2px;
      white-space:nowrap;
    }
    tbody td{
      padding:14px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
      color:rgba(15,23,42,.88);
    }
    tbody tr:last-child td{border-bottom:none}
    .cell-muted{color:var(--muted2)}
    .tag-green{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(0,200,83,.22);
      background:rgba(0,200,83,.10);
      font-weight:850;
      font-size:12px;
      color:rgba(15,23,42,.92);
      white-space:nowrap;
    }
    .tag-gray{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(15,23,42,.03);
      font-weight:850;
      font-size:12px;
      color:rgba(15,23,42,.80);
      white-space:nowrap;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    details{
      background:rgba(255,255,255,.92);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:12px 12px;
      box-shadow:0 10px 24px rgba(2,6,23,.04);
      transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    details[open]{border-color:rgba(0,200,83,.24); box-shadow:0 18px 40px rgba(0,200,83,.10)}
    summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:900;
      letter-spacing:-.2px;
      font-size:13.5px;
      padding:6px 6px;
      color:rgba(15,23,42,.92);
    }
    summary::-webkit-details-marker{display:none}
    .sum-left{display:flex; gap:10px; align-items:flex-start}
    .sum-icon{
      width:28px; height:28px; border-radius:12px;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.20);
      display:grid; place-items:center; flex:0 0 auto; margin-top:1px;
      transition:transform .2s ease;
    }
    details[open] .sum-icon{transform: rotate(8deg)}
    .sum-icon svg{width:14px; height:14px; fill:rgba(0,200,83,1)}
    .faq-answer{
      margin:8px 6px 6px;
      color:var(--muted);
      line-height:1.8;
      font-size:13px;
    }
    .faq-go{
      margin-top:12px;
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
    }

    .reviews{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;
    }
    .review{
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:0 10px 25px rgba(2,6,23,.05);
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .review:hover{
      transform:translateY(-3px);
      border-color:rgba(0,200,83,.22);
      box-shadow:0 18px 42px rgba(0,200,83,.10);
    }
    .review::before{
      content:"";
      position:absolute; inset:-40px -40px auto auto;
      width:140px; height:140px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(0,200,83,.18), transparent 62%);
      pointer-events:none;
    }
    .review .who{
      display:flex; align-items:center; justify-content:space-between; gap:12px; position:relative; z-index:1;
    }
    .who strong{font-size:14px; letter-spacing:-.2px}
    .who span{font-size:12px; color:var(--muted2)}
    .review p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
      position:relative; z-index:1;
    }
    .quote{
      width:34px; height:34px; border-radius:14px;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.20);
      display:grid; place-items:center; flex:0 0 auto;
    }
    .quote svg{width:16px; height:16px; fill:rgba(0,200,83,1)}

    .article-list{
      display:grid; grid-template-columns: 1fr 1fr 1fr; gap:12px;
    }
    .article{
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.92);
      padding:16px;
      box-shadow:0 10px 25px rgba(2,6,23,.05);
      transition: transform .2s ease, border-color .2s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:160px;
    }
    .article:hover{transform:translateY(-3px); border-color:rgba(0,200,83,.22)}
    .article .top{
      display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
    }
    .article .type{
      font-size:12px; font-weight:900;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(0,200,83,.22);
      background:rgba(0,200,83,.10);
      white-space:nowrap;
    }
    .article h3{
      margin:0;
      font-size:14.5px; letter-spacing:-.2px; line-height:1.45;
    }
    .article .meta{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
      color:var(--muted2);
      font-size:12px;
    }
    .article a{
      text-decoration:none;
      font-weight:900;
      color:rgba(0,200,83,1);
    }

    .form-card{
      border-radius:24px;
      border:1px solid rgba(0,200,83,.22);
      background:linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.98));
      box-shadow:0 18px 50px rgba(0,200,83,.12);
      overflow:hidden;
    }
    .form-inner{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:0;
      align-items:stretch;
    }
    .form-left{
      padding:18px 16px;
      border-right:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(520px 260px at 10% 0%, rgba(0,200,83,.14), transparent 60%),
        linear-gradient(180deg, rgba(0,200,83,.06), rgba(255,255,255,.0));
    }
    .form-left h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.3px;
    }
    .form-left p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.5px; line-height:1.8;
    }
    .form-left .help{
      margin-top:14px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.86);
      font-size:12px; color:rgba(15,23,42,.86);
      font-weight:800;
    }
    form{
      padding:18px 16px;
      background:rgba(255,255,255,.92);
    }
    .fields{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    label{
      font-weight:900;
      font-size:12.5px;
      color:rgba(15,23,42,.90);
      letter-spacing:-.1px;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.98);
      color:rgba(15,23,42,.92);
      font-size:13.5px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(0,200,83,.35);
      box-shadow:0 0 0 4px rgba(0,200,83,.18);
    }
    .form-bottom{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .form-note{
      color:var(--muted2);
      font-size:12px;
      line-height:1.6;
      max-width:52ch;
    }
    .submit-row{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      justify-content:flex-end;
      flex:1 1 260px;
    }

    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .t{
      padding:8px 10px;
      border-radius:999px;
      background:rgba(0,200,83,.08);
      border:1px solid rgba(0,200,83,.18);
      color:rgba(15,23,42,.90);
      font-weight:900;
      font-size:12px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .t:hover{transform:translateY(-2px); background:rgba(0,200,83,.12); border-color:rgba(0,200,83,.26)}
    .net-grid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .net-card{
      padding:16px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.92);
      box-shadow:0 10px 25px rgba(2,6,23,.05);
    }
    .net-card h3{margin:0; font-size:14.5px; letter-spacing:-.2px}
    .net-card p{margin:8px 0 0; color:var(--muted); font-size:13.2px; line-height:1.8}
    .net-list{
      margin:12px 0 0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .net-item{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.86);
    }
    .pin{
      width:28px; height:28px; border-radius:14px;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.22);
      display:grid; place-items:center; flex:0 0 auto;
      margin-top:1px;
    }
    .pin svg{width:14px; height:14px; fill:rgba(0,200,83,1)}
    .net-item strong{display:block; font-size:13.5px}
    .net-item span{display:block; margin-top:4px; color:var(--muted2); font-size:12.7px; line-height:1.6}

    .case-grid{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;
    }
    .case{
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.92);
      overflow:hidden;
      box-shadow:0 10px 25px rgba(2,6,23,.05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      display:flex; flex-direction:column;
      min-height:220px;
    }
    .case:hover{
      transform:translateY(-3px);
      border-color:rgba(0,200,83,.22);
      box-shadow:0 18px 42px rgba(0,200,83,.10);
    }
    .case-media{
      padding:14px 14px 8px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .case-icon{
      width:44px; height:44px; border-radius:18px;
      border:1px solid rgba(0,200,83,.22);
      background:linear-gradient(180deg, rgba(0,200,83,.14), rgba(34,197,94,.04));
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .case-icon svg{width:18px; height:18px; fill:rgba(0,200,83,1)}
    .case .title{
      padding:0 14px 12px;
    }
    .case h3{
      margin:0;
      font-size:14.8px;
      letter-spacing:-.25px;
      line-height:1.4;
    }
    .case p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px; line-height:1.75;
      padding:0 14px 12px;
    }
    .case .bottom{
      margin-top:auto;
      padding:12px 14px 14px;
      border-top:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
    }
    .case .metric-mini{
      font-size:12px; color:var(--muted2); line-height:1.4;
    }
    .case .link{
      text-decoration:none;
      font-weight:950;
      color:rgba(0,200,83,1);
      font-size:12.5px;
      display:inline-flex; align-items:center; gap:8px;
    }
    .case .link svg{width:14px; height:14px; fill:rgba(0,200,83,1)}

    .price-grid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .price-card{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.92);
      box-shadow:0 10px 25px rgba(2,6,23,.05);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .price-card::before{
      content:"";
      position:absolute; inset:-60px auto auto -60px;
      width:190px; height:190px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(0,200,83,.20), transparent 65%);
      pointer-events:none;
    }
    .price-card h3{margin:0; position:relative; z-index:1; font-size:15px}
    .price-card p{margin:8px 0 0; position:relative; z-index:1; color:var(--muted); font-size:13.2px; line-height:1.8}
    .price-row{
      margin-top:12px;
      position:relative; z-index:1;
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .price-item{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.86);
    }
    .price-item strong{display:block; font-size:16px; letter-spacing:-.4px}
    .price-item span{display:block; margin-top:6px; color:var(--muted2); font-size:12.3px; line-height:1.4}

    .partners{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .partner{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.88);
      font-size:12.5px;
      font-weight:900;
      color:rgba(15,23,42,.86);
      white-space:nowrap;
    }

    footer{
      padding:22px 0 28px;
      margin-top:8px;
      border-top:1px solid rgba(15,23,42,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.50), rgba(247,255,249,.95));
    }
    .foot-grid{
      display:grid; grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .foot-left h3{margin:0; font-size:15px}
    .foot-left p{
      margin:10px 0 0; color:var(--muted); font-size:13.2px; line-height:1.8;
    }
    .foot-links{
      display:flex; flex-direction:column; gap:10px;
    }
    .foot-links .row{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .foot-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.88);
      font-size:13px;
      font-weight:900;
      color:rgba(15,23,42,.86);
      transition:transform .15s ease, border-color .15s ease;
    }
    .foot-links a:hover{transform:translateY(-1px); border-color:rgba(0,200,83,.25)}
    .copy{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(15,23,42,.08);
      display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
      color:var(--muted2);
      font-size:12.5px;
    }

    .float-cs{
      position:fixed; right:16px; bottom:16px; z-index:60;
      display:flex; flex-direction:column; gap:10px; align-items:flex-end;
    }
    .float-btn{
      width:48px; height:48px; border-radius:18px;
      border:1px solid rgba(0,200,83,.22);
      background:linear-gradient(180deg, rgba(0,200,83,1), rgba(22,163,74,1));
      box-shadow:0 20px 45px rgba(0,200,83,.22), 0 6px 18px rgba(2,6,23,.10);
      display:grid; place-items:center;
      cursor:pointer;
      transition: transform .15s ease;
    }
    .float-btn:hover{transform:translateY(-2px)}
    .float-btn svg{width:20px; height:20px; fill:#062012}
    .qr-pop{
      width:240px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.96);
      box-shadow:0 18px 50px rgba(2,6,23,.14);
      overflow:hidden;
      transform-origin: bottom right;
      animation: popIn .18s ease both;
    }
    @keyframes popIn{
      from{opacity:0; transform: translateY(8px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .qr-head{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      background:linear-gradient(180deg, rgba(0,200,83,.10), rgba(255,255,255,.0));
    }
    .qr-head strong{font-size:13px}
    .qr-close{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.9);
      cursor:pointer;
      display:grid; place-items:center;
      transition: transform .15s ease;
    }
    .qr-close:hover{transform:translateY(-1px)}
    .qr-close svg{width:14px; height:14px; fill:rgba(15,23,42,.8)}
    .qr-body{
      padding:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .qr-img{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      overflow:hidden;
      background:#fff;
    }
    .qr-img img{
      width:100%; height:auto; display:block;
    }
    .qr-hint{
      color:var(--muted2);
      font-size:12.5px; line-height:1.6;
    }

    .to-top{
      width:44px; height:44px; border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 24px rgba(2,6,23,.10);
      display:grid; place-items:center;
      cursor:pointer;
      transition: transform .15s ease, background .15s ease;
      display:none;
    }
    .to-top svg{width:18px; height:18px; fill:rgba(15,23,42,.85)}
    .to-top:hover{transform:translateY(-2px); background:rgba(0,200,83,.08); border-color:rgba(0,200,83,.25)}
    .fade-up{
      opacity:0;
      transform: translateY(14px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .fade-up.is-visible{
      opacity:1;
      transform: translateY(0);
    }

    .skip-anchor{scroll-margin-top:90px;}

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr}
      .nav-actions{min-width:auto}
      .nav-links{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:block}
      .grid-3{grid-template-columns:1fr}
      .two-col{grid-template-columns:1fr}
      .faq{grid-template-columns:1fr}
      .reviews{grid-template-columns:1fr}
      .article-list{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .form-inner{grid-template-columns:1fr}
      .form-left{border-right:none; border-bottom:1px solid rgba(15,23,42,.10)}
      .net-grid{grid-template-columns:1fr}
      .price-grid{grid-template-columns:1fr}
      .foot-grid{grid-template-columns:1fr}
      .float-cs{right:12px; bottom:12px}
    }

    @media (prefers-reduced-motion: reduce){
      *{scroll-behavior:auto !important}
      .fade-up{transition:none}
      .metric:hover, .card:hover, .review:hover, .case:hover, .article:hover, .t:hover{transform:none}
    }