:root{
      --bg0:#f7fbf8;
      --bg1:#ffffff;
      --text:#0f172a;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(17,24,39,.12);
      --card:rgba(255,255,255,.9);
      --shadow:0 10px 30px rgba(15,23,42,.08);
      --shadow2:0 14px 40px rgba(15,23,42,.12);
      --green:#15c56b;
      --green2:#00c389;
      --green3:#22e37f;
      --deep:#0b3b2a;
      --brand:#0ea66a;
      --brand2:#00b37e;
      --focus: rgba(21,197,107,.25);
      --radius:18px;
      --radius2:26px;
      --container:1120px;
      --pad:20px;
      --ease:cubic-bezier(.2,.9,.2,1);
    }

    *{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 SC","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 420px at 16% 0%, rgba(21,197,107,.16), transparent 55%),
        radial-gradient(760px 380px at 88% 12%, rgba(0,195,137,.14), transparent 52%),
        linear-gradient(180deg, #f4fbf7 0%, var(--bg0) 45%, #f6fbf8 100%);
    }

    a{color:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--pad);
    }

    .skip-link{
      position:absolute;
      top:-40px;
      left:10px;
      background:#fff;
      border:1px solid var(--line);
      padding:10px 12px;
      border-radius:12px;
      z-index:9999;
      box-shadow:var(--shadow);
      transition:top .2s var(--ease);
      color:var(--text);
      text-decoration:none;
      font-weight:700;
    }
    .skip-link:focus{top:10px}

    header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(247,251,248,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(17,24,39,.08);
    }

    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:12px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }

    .logo{
      width:44px;
      height:44px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(21,197,107,.18), rgba(0,195,137,.10));
      border:1px solid rgba(21,197,107,.28);
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .logo img{display:block; width:100%; height:100%; object-fit:contain}
    .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:14px;
      flex:1 1 auto;
      justify-content:flex-end;
      min-width:0;
    }

    .menu{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .menu a{
      text-decoration:none;
      font-weight:650;
      font-size:13px;
      color:rgba(15,23,42,.78);
      padding:10px 10px;
      border-radius:12px;
      transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
      white-space:nowrap;
    }
    .menu a:hover{
      background:rgba(21,197,107,.10);
      color:rgba(11,59,42,.95);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }

    .btn{
      appearance:none;
      border:1px solid rgba(15,23,42,.12);
      background:#fff;
      color:var(--text);
      border-radius:14px;
      padding:10px 14px;
      font-weight:750;
      font-size:13px;
      cursor:pointer;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      box-shadow:0 8px 18px rgba(15,23,42,.06);
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2); border-color: rgba(21,197,107,.35)}
    .btn:active{transform: translateY(0px)}
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus), 0 10px 28px rgba(15,23,42,.10)}
    .btn-primary{
      background:linear-gradient(135deg, var(--green2), var(--green3));
      border-color: rgba(0,195,137,.42);
      color:#062217;
      box-shadow:0 14px 30px rgba(0,195,137,.18);
    }
    .btn-primary:hover{box-shadow:0 18px 44px rgba(0,195,137,.26)}
    .btn-ghost{
      background:rgba(255,255,255,.65);
      border-color: rgba(21,197,107,.22);
    }

    .icon-dot{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #d1ffe7 0%, rgba(255,255,255,.2) 20%, rgba(0,0,0,0) 60%), linear-gradient(180deg, #22e37f, #00b37e);
      border:1px solid rgba(7,110,63,.35);
      box-shadow:0 8px 18px rgba(0,179,126,.25);
    }

    .burger{
      display:none;
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:#fff;
      cursor:pointer;
      align-items:center;
      justify-content:center;
      box-shadow:0 8px 18px rgba(15,23,42,.06);
      transition: transform .18s var(--ease), box-shadow .18s var(--ease);
    }
    .burger:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
    .burger span{
      width:18px; height:2px; background:rgba(15,23,42,.8);
      display:block; border-radius:2px;
      position:relative;
    }
    .burger span::before,.burger span::after{
      content:"";
      position:absolute; left:0;
      width:18px; height:2px; background:rgba(15,23,42,.8);
      border-radius:2px;
      transition: transform .2s var(--ease), top .2s var(--ease), opacity .2s var(--ease);
    }
    .burger span::before{top:-6px}
    .burger span::after{top:6px}

    .mobile-panel{
      display:none;
      padding:10px 0 16px;
    }
    .mobile-panel .panel-inner{
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      border-radius:18px;
      padding:10px;
      box-shadow: var(--shadow);
    }
    .mobile-menu{
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .mobile-menu a{
      text-decoration:none;
      font-weight:750;
      font-size:14px;
      color:rgba(15,23,42,.86);
      padding:12px 12px;
      border-radius:14px;
      background:rgba(21,197,107,.06);
      border:1px solid rgba(21,197,107,.12);
    }
    .mobile-menu a:hover{
      background:rgba(21,197,107,.10);
    }

    main{padding-bottom:30px}

    .hero{
      padding:34px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }

    .hero-card{
      border-radius:var(--radius2);
      border:1px solid rgba(21,197,107,.22);
      background:
        radial-gradient(900px 380px at 12% 0%, rgba(21,197,107,.24), transparent 48%),
        radial-gradient(760px 340px at 90% 14%, rgba(0,195,137,.22), transparent 46%),
        linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      box-shadow: var(--shadow);
      padding:26px 22px;
      position:relative;
      overflow:hidden;
      min-height:320px;
    }

    .hero-card::after{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(120deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.55) 18%, rgba(255,255,255,.0) 34%);
      transform: translateX(-70%) rotate(8deg);
      opacity:.35;
      pointer-events:none;
      animation: sheen 4.6s var(--ease) infinite;
    }
    @keyframes sheen{
      0%, 46% {transform: translateX(-70%) rotate(8deg); opacity:.0}
      55% {opacity:.35}
      80% {transform: translateX(70%) rotate(8deg); opacity:.12}
      100% {transform: translateX(70%) rotate(8deg); opacity:0}
    }

    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-bottom:14px;
      position:relative;
      z-index:1;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:9px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(21,197,107,.18);
      color:rgba(11,59,42,.95);
      font-weight:780;
      font-size:12.5px;
      letter-spacing:.1px;
      box-shadow:0 10px 24px rgba(0,195,137,.08);
      backdrop-filter: blur(8px);
    }
    .badge i{
      font-style:normal;
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(180deg, var(--green3), var(--green2));
      box-shadow:0 10px 22px rgba(0,195,137,.24);
    }

    h1{
      position:relative;
      z-index:1;
      margin:0;
      font-size:34px;
      line-height:1.1;
      letter-spacing:-.6px;
      font-weight:920;
      color:#072116;
    }
    .hero-sub{
      position:relative;
      z-index:1;
      margin-top:12px;
      color:rgba(15,23,42,.74);
      font-size:15px;
      line-height:1.7;
      max-width:60ch;
      font-weight:560;
    }

    .hero-actions{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-top:18px;
    }
    .hero-actions .btn{padding:12px 16px; border-radius:16px}
    .link-mini{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:760;
      font-size:13px;
      color:rgba(11,59,42,.92);
      text-decoration:none;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(21,197,107,.14);
      background:rgba(255,255,255,.6);
      transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
    }
    .link-mini:hover{transform: translateY(-1px); border-color: rgba(21,197,107,.30); background:rgba(255,255,255,.76)}

    .hero-right{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.58));
      box-shadow: var(--shadow);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:12px;
      min-height:320px;
    }
    .right-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .right-title{
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .right-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .right-title span{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.5;
    }

    .pulse{
      width:54px;
      height:54px;
      border-radius:20px;
      border:1px solid rgba(21,197,107,.22);
      background: radial-gradient(circle at 30% 30%, rgba(34,227,127,.22), rgba(255,255,255,.0) 55%), rgba(21,197,107,.09);
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .pulse::before{
      content:"";
      position:absolute;
      inset:-30px;
      border-radius:999px;
      border:2px solid rgba(21,197,107,.28);
      animation: ring 2.2s var(--ease) infinite;
    }
    @keyframes ring{
      0%{transform: scale(.7); opacity:.0}
      30%{opacity:.55}
      100%{transform: scale(1.2); opacity:0}
    }
    .pulse svg{position:relative; z-index:1}
    .pulse path{stroke:#0b3b2a}

    .mini-metrics{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:2px;
    }
    .metric{
      border-radius:16px;
      border:1px solid rgba(21,197,107,.14);
      background:rgba(255,255,255,.68);
      padding:12px 12px;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
      box-shadow:0 10px 26px rgba(15,23,42,.05);
    }
    .metric:hover{transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(21,197,107,.26)}
    .metric .k{
      font-size:12.5px;
      color:rgba(11,59,42,.92);
      font-weight:860;
      display:flex;
      align-items:center;
      gap:8px;
    }
    .metric .k em{
      font-style:normal;
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(180deg, var(--green3), var(--green2));
      box-shadow:0 10px 22px rgba(0,195,137,.24);
    }
    .metric .v{
      margin-top:8px;
      font-size:20px;
      font-weight:920;
      letter-spacing:-.3px;
    }
    .metric .s{
      margin-top:6px;
      font-size:12.5px;
      color:var(--muted2);
      line-height:1.4;
      font-weight:620;
    }

    .right-bottom{
      margin-top:auto;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.48));
      padding:14px;
    }
    .right-bottom .row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .status{
      display:flex; flex-direction:column;
      gap:6px;
    }
    .status strong{font-size:13.5px}
    .status span{font-size:12.5px; color:var(--muted2); font-weight:630}
    .seg{
      display:flex; gap:8px; align-items:center;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(21,197,107,.16);
      background:rgba(21,197,107,.08);
      font-weight:850;
      font-size:12px;
      color:rgba(11,59,42,.92);
      white-space:nowrap;
    }

    .section{
      padding:34px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:16px;
      flex-wrap:wrap;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
      font-weight:930;
      color:#071f15;
    }
    .section-head p{
      margin:0;
      color:rgba(15,23,42,.70);
      font-size:14px;
      line-height:1.7;
      font-weight:580;
      max-width:62ch;
    }

    .fade-in{
      opacity:0;
      transform: translateY(14px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }
    .fade-in.show{
      opacity:1;
      transform: translateY(0px);
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }

    .card{
      border-radius:var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 28px rgba(15,23,42,.06);
      padding:16px;
      overflow:hidden;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
    }
    .card:hover{transform: translateY(-3px); border-color: rgba(21,197,107,.26); box-shadow: var(--shadow2)}
    .card h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.1px;
      font-weight:900;
      color:#071f15;
    }
    .card p{
      margin:10px 0 0;
      color:rgba(15,23,42,.72);
      font-size:13.5px;
      line-height:1.7;
      font-weight:590;
    }
    .card .meta{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:12px;
    }
    .tag{
      font-size:12.5px;
      font-weight:800;
      color:rgba(11,59,42,.92);
      background:rgba(21,197,107,.10);
      border:1px solid rgba(21,197,107,.18);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }

    .icon{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(21,197,107,.20);
      background: radial-gradient(circle at 30% 30%, rgba(34,227,127,.20), rgba(255,255,255,.0) 55%), rgba(21,197,107,.08);
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 12px 24px rgba(0,195,137,.10);
      margin-bottom:12px;
    }
    .icon svg{width:22px; height:22px}
    .icon path{stroke:#0b3b2a}

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .step{
      position:relative;
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      box-shadow:0 12px 28px rgba(15,23,42,.06);
      transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
      overflow:hidden;
    }
    .step:hover{transform: translateY(-3px); border-color: rgba(21,197,107,.26); box-shadow: var(--shadow2)}
    .step::after{
      content:"";
      position:absolute;
      inset:auto -30px -30px auto;
      width:120px; height:120px;
      border-radius:40px;
      background: radial-gradient(circle at 30% 30%, rgba(34,227,127,.26), rgba(0,195,137,.0) 60%);
      transform: rotate(-12deg);
      pointer-events:none;
    }
    .step .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(21,197,107,.22);
      background: rgba(21,197,107,.08);
      font-weight:950;
      color:#071f15;
      margin-bottom:10px;
      position:relative;
      z-index:1;
    }
    .step h3{
      margin:0;
      font-size:15px;
      font-weight:920;
      color:#071f15;
      position:relative;
      z-index:1;
    }
    .step p{
      margin:10px 0 0;
      color:rgba(15,23,42,.72);
      font-size:13.5px;
      line-height:1.7;
      font-weight:600;
      position:relative;
      z-index:1;
    }

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

    .compare{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      padding:14px;
      overflow:hidden;
    }

    .table-wrap{
      overflow:auto;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.75);
    }

    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:760px;
      font-size:13.5px;
    }
    th, td{
      padding:14px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:middle;
      text-align:left;
      white-space:nowrap;
    }
    th{
      position:sticky;
      top:0;
      background:linear-gradient(180deg, rgba(21,197,107,.14), rgba(255,255,255,.82));
      z-index:1;
      font-weight:950;
      color:#071f15;
      border-bottom:1px solid rgba(21,197,107,.18);
    }
    tr:last-child td{border-bottom:none}
    .cell-strong{
      font-weight:920;
      color:#071f15;
    }
    .score{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      color:#071f15;
    }
    .stars{
      display:inline-flex;
      gap:4px;
      align-items:center;
    }
    .star{
      width:18px; height:18px;
      display:inline-block;
    }
    .check{
      display:flex; align-items:center; gap:8px;
      font-weight:820;
      color:rgba(11,59,42,.95);
    }
    .check i{
      width:18px; height:18px; border-radius:8px;
      background: rgba(21,197,107,.12);
      border:1px solid rgba(21,197,107,.22);
      display:inline-flex; align-items:center; justify-content:center;
      font-style:normal;
      flex:0 0 auto;
    }
    .xcell{
      color:rgba(107,114,128,.9);
      font-weight:820;
    }

    .pricing{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .price-card{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(720px 300px at 18% 0%, rgba(21,197,107,.18), transparent 48%),
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.58));
      box-shadow: var(--shadow);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .price-card::after{
      content:"";
      position:absolute;
      inset:-20px -20px auto auto;
      width:220px; height:220px;
      border-radius:70px;
      background: radial-gradient(circle at 30% 30%, rgba(34,227,127,.22), rgba(0,195,137,.0) 62%);
      transform: rotate(18deg);
      pointer-events:none;
    }
    .price-card > *{position:relative; z-index:1}
    .price-card h3{
      margin:0;
      font-size:16px;
      font-weight:950;
      color:#071f15;
    }
    .price-card p{
      margin:10px 0 0;
      color:rgba(15,23,42,.72);
      line-height:1.7;
      font-size:13.5px;
      font-weight:600;
    }
    .price-list{
      margin-top:14px;
      display:grid;
      gap:10px;
    }
    .li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      border:1px solid rgba(21,197,107,.14);
      background:rgba(255,255,255,.62);
      border-radius:16px;
      padding:12px;
    }
    .li .b{
      width:28px; height:28px; border-radius:12px;
      background: rgba(21,197,107,.10);
      border:1px solid rgba(21,197,107,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      color:#071f15;
      font-weight:950;
      font-size:13px;
    }
    .li strong{
      display:block;
      font-size:13.5px;
      font-weight:950;
      color:#071f15;
    }
    .li span{
      display:block;
      margin-top:4px;
      color:rgba(15,23,42,.70);
      font-size:13px;
      line-height:1.6;
      font-weight:600;
    }

    .network{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .network .card{
      padding:14px;
    }
    .network .card h3{font-size:14.5px}
    .network .card .meta{margin-top:10px}

    .timeline{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      padding:16px;
    }
    .timeline-steps{
      display:grid;
      gap:12px;
      margin-top:10px;
    }
    .trow{
      display:grid;
      grid-template-columns: 90px 1fr;
      gap:12px;
      align-items:flex-start;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      border-radius:18px;
      padding:12px;
    }
    .trow .time{
      display:flex;
      flex-direction:column;
      gap:6px;
      align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(21,197,107,.18);
      background: rgba(21,197,107,.08);
      color:#071f15;
      font-weight:950;
      min-height:64px;
      justify-content:center;
    }
    .trow .time span{
      font-weight:800;
      font-size:12.5px;
      color:rgba(11,59,42,.92);
      margin-top:2px;
    }
    .trow .desc strong{
      display:block;
      font-size:14.5px;
      color:#071f15;
      font-weight:950;
    }
    .trow .desc p{
      margin:8px 0 0;
      color:rgba(15,23,42,.72);
      font-size:13.5px;
      line-height:1.7;
      font-weight:600;
    }

    .faq{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      padding:6px;
    }
    .faq details{
      border-top:1px solid rgba(17,24,39,.08);
      padding:10px 6px;
    }
    .faq details:first-child{border-top:none}
    .faq summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:16px;
      background:rgba(255,255,255,.65);
      border:1px solid rgba(17,24,39,.08);
      font-weight:920;
      color:#071f15;
      transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
    }
    .faq summary::-webkit-details-marker{display:none}
    .faq details[open] summary{
      border-color: rgba(21,197,107,.28);
      box-shadow:0 16px 36px rgba(0,195,137,.12);
      transform: translateY(-1px);
    }
    .faq .qtext{
      font-size:14px;
      line-height:1.5;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(21,197,107,.18);
      background: rgba(21,197,107,.08);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      transition: transform .25s var(--ease);
    }
    details[open] .chev{transform: rotate(180deg)}
    .faq .answer{
      padding:12px 10px 0;
      color:rgba(15,23,42,.72);
      font-size:13.5px;
      line-height:1.8;
      font-weight:600;
    }

    .comments{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .comment{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(720px 260px at 10% 0%, rgba(21,197,107,.14), transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      box-shadow:0 12px 28px rgba(15,23,42,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
    }
    .comment:hover{transform: translateY(-3px); border-color: rgba(21,197,107,.26); box-shadow: var(--shadow2)}
    .comment .top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .avatar{
      width:44px; height:44px;
      border-radius:18px;
      border:1px solid rgba(21,197,107,.22);
      background: rgba(21,197,107,.08);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#071f15;
      flex:0 0 auto;
    }
    .person{
      display:flex; flex-direction:column;
      gap:6px;
      min-width:0;
    }
    .person strong{
      font-size:13.5px;
      font-weight:950;
      color:#071f15;
    }
    .person span{
      color:var(--muted2);
      font-size:12.5px;
      font-weight:650;
      line-height:1.3;
    }
    .comment p{
      margin:0;
      color:rgba(15,23,42,.72);
      font-size:13.5px;
      line-height:1.8;
      font-weight:610;
    }
    .quote{
      margin-top:auto;
      display:flex;
      gap:8px;
      align-items:center;
      color:rgba(11,59,42,.92);
      font-weight:880;
      font-size:12.5px;
    }
    .quote i{
      width:18px; height:18px;
      border-radius:8px;
      border:1px solid rgba(21,197,107,.18);
      background: rgba(21,197,107,.08);
      display:flex; align-items:center; justify-content:center;
      font-style:normal;
    }

    .cases{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .case{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 28px rgba(15,23,42,.06);
      overflow:hidden;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
      display:flex;
      flex-direction:column;
      min-height:210px;
    }
    .case:hover{transform: translateY(-3px); border-color: rgba(21,197,107,.26); box-shadow: var(--shadow2)}
    .case .head{
      padding:14px 14px 10px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .case .head strong{
      font-size:14.5px;
      font-weight:950;
      color:#071f15;
      line-height:1.3;
    }
    .case .pill{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(21,197,107,.10);
      border:1px solid rgba(21,197,107,.18);
      color:rgba(11,59,42,.92);
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
    }
    .case .body{
      padding:0 14px 14px;
      color:rgba(15,23,42,.72);
      font-size:13.5px;
      line-height:1.8;
      font-weight:610;
      margin-top:-2px;
    }
    .case .foot{
      margin-top:auto;
      padding:12px 14px 14px;
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:space-between;
      border-top:1px solid rgba(17,24,39,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.55));
    }
    .case .foot .small{
      color:var(--muted2);
      font-size:12.5px;
      font-weight:650;
    }
    .case .foot a{
      text-decoration:none;
      font-weight:950;
      color:#071f15;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(21,197,107,.18);
      background: rgba(21,197,107,.08);
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
      white-space:nowrap;
    }
    .case .foot a:hover{transform: translateY(-1px); border-color: rgba(21,197,107,.32); box-shadow:0 16px 36px rgba(0,195,137,.14)}

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .article{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 28px rgba(15,23,42,.06);
      padding:16px;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height:170px;
    }
    .article:hover{transform: translateY(-3px); border-color: rgba(21,197,107,.26); box-shadow: var(--shadow2)}
    .article .k{
      font-weight:950;
      color:#071f15;
      font-size:14.5px;
      line-height:1.4;
      margin:0;
    }
    .article .d{
      color:rgba(15,23,42,.72);
      font-size:13.5px;
      line-height:1.7;
      font-weight:610;
      margin:0;
    }
    .article .link{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      border-top:1px solid rgba(17,24,39,.08);
      padding-top:12px;
      color:var(--muted2);
      font-weight:700;
      font-size:12.5px;
    }
    .article .link a{
      text-decoration:none;
      font-weight:950;
      color:#071f15;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(21,197,107,.18);
      background: rgba(21,197,107,.08);
      transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
      white-space:nowrap;
    }
    .article .link a:hover{transform: translateY(-1px); border-color: rgba(21,197,107,.32); box-shadow:0 16px 36px rgba(0,195,137,.14)}

    .form-wrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    form{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    form::after{
      content:"";
      position:absolute;
      inset:-80px auto auto -80px;
      width:220px; height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(21,197,107,.20), rgba(0,195,137,.0) 62%);
      border-radius:80px;
      pointer-events:none;
      transform: rotate(-8deg);
    }
    form > *{position:relative; z-index:1}
    .form-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
      flex-wrap:wrap;
    }
    .form-head h3{
      margin:0;
      font-size:16px;
      font-weight:980;
      color:#071f15;
    }
    .form-head p{
      margin:8px 0 0;
      color:rgba(15,23,42,.72);
      font-size:13.5px;
      line-height:1.7;
      font-weight:610;
      max-width:52ch;
    }

    .fields{
      display:grid;
      gap:10px;
      margin-top:12px;
    }
    .row2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    label{
      display:flex;
      flex-direction:column;
      gap:7px;
      font-size:12.5px;
      font-weight:900;
      color:#071f15;
    }
    input, select, textarea{
      width:100%;
      border:1px solid rgba(17,24,39,.14);
      background: rgba(255,255,255,.86);
      border-radius:14px;
      padding:12px 12px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition: box-shadow .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
      box-shadow:0 10px 20px rgba(15,23,42,.04);
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(21,197,107,.38);
      box-shadow:0 0 0 4px var(--focus), 0 16px 34px rgba(0,195,137,.10);
    }

    .form-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:12px;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.5;
      font-weight:650;
      max-width:46ch;
    }

    .side-info{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(720px 260px at 20% 0%, rgba(21,197,107,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.58));
      box-shadow: var(--shadow);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .side-info::after{
      content:"";
      position:absolute;
      inset:auto -60px -60px auto;
      width:240px; height:240px;
      border-radius:80px;
      background: radial-gradient(circle at 30% 30%, rgba(34,227,127,.20), rgba(0,195,137,.0) 62%);
      pointer-events:none;
      transform: rotate(14deg);
    }
    .side-info > *{position:relative; z-index:1}
    .side-info h3{
      margin:0;
      font-size:16px;
      font-weight:980;
      color:#071f15;
    }
    .side-info p{
      margin:10px 0 0;
      color:rgba(15,23,42,.72);
      font-size:13.5px;
      line-height:1.8;
      font-weight:610;
    }
    .bulletGrid{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .bcard{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.68);
      padding:12px;
      box-shadow:0 10px 24px rgba(15,23,42,.05);
    }
    .bcard strong{
      display:flex; align-items:center; gap:8px;
      font-size:13.5px;
      font-weight:980;
      color:#071f15;
    }
    .bcard strong i{
      width:18px; height:18px;
      border-radius:8px;
      border:1px solid rgba(21,197,107,.18);
      background: rgba(21,197,107,.08);
      display:inline-flex; align-items:center; justify-content:center;
      font-style:normal;
      font-size:12px;
    }
    .bcard span{
      display:block;
      margin-top:8px;
      color:rgba(15,23,42,.70);
      font-size:13px;
      line-height:1.6;
      font-weight:610;
    }

    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .cloud-tag{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.65);
      box-shadow:0 10px 24px rgba(15,23,42,.05);
      font-weight:900;
      font-size:12.5px;
      color:rgba(11,59,42,.92);
      transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
      cursor:default;
    }
    .cloud-tag:hover{
      transform: translateY(-2px);
      border-color: rgba(21,197,107,.26);
      box-shadow:0 16px 36px rgba(0,195,137,.14);
      background: rgba(21,197,107,.08);
    }

    .partners{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-top:12px;
    }
    .partners a{
      text-decoration:none;
      font-weight:900;
      font-size:13px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      box-shadow:0 10px 24px rgba(15,23,42,.05);
      transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
      white-space:nowrap;
    }
    .partners a:hover{
      transform: translateY(-2px);
      border-color: rgba(21,197,107,.26);
      box-shadow:0 16px 36px rgba(0,195,137,.14);
    }

    .footer{
      margin-top:20px;
      background:
        radial-gradient(820px 320px at 18% 0%, rgba(21,197,107,.20), transparent 55%),
        linear-gradient(180deg, rgba(7,33,22,.96), rgba(6,26,17,.98));
      color:#eafff4;
      border-top:1px solid rgba(255,255,255,.10);
    }
    .footer-inner{
      padding:26px 0;
    }
    .footer-top{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .footBrand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footLogo{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(34,227,127,.28);
      background: rgba(21,197,107,.10);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .footLogo img{width:100%; height:100%; object-fit:contain; display:block}
    .footBrand strong{
      display:block;
      font-size:15px;
      font-weight:980;
      color:#eafff4;
    }
    .footBrand span{
      display:block;
      margin-top:6px;
      color:rgba(234,255,244,.76);
      font-size:12.5px;
      line-height:1.6;
      font-weight:650;
    }

    .footCol h3{
      margin:0;
      font-size:13.5px;
      font-weight:980;
      color:#eafff4;
      letter-spacing:.2px;
    }
    .footLinks{
      margin-top:10px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footLinks a, .footLinks span{
      text-decoration:none;
      font-size:13px;
      color:rgba(234,255,244,.78);
      font-weight:700;
      line-height:1.4;
    }
    .footLinks a:hover{color:#ffffff}
    .footMeta{
      margin-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      padding-top:16px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(234,255,244,.74);
      font-weight:700;
      font-size:12.5px;
    }
    .footMeta a{
      color:#eafff4;
      text-decoration:none;
      font-weight:900;
      border:1px solid rgba(34,227,127,.24);
      background: rgba(21,197,107,.10);
      padding:9px 12px;
      border-radius:999px;
      transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
      white-space:nowrap;
    }
    .footMeta a:hover{transform: translateY(-2px); background: rgba(21,197,107,.16); border-color: rgba(34,227,127,.40)}

    .float-help{
      position:fixed;
      right:14px;
      bottom:18px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width:52px;
      height:52px;
      border-radius:20px;
      border:1px solid rgba(21,197,107,.22);
      background: rgba(255,255,255,.86);
      box-shadow:0 16px 36px rgba(15,23,42,.18);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
      position:relative;
      overflow:hidden;
    }
    .float-btn:hover{transform: translateY(-2px); box-shadow:0 22px 54px rgba(15,23,42,.22); border-color: rgba(21,197,107,.34)}
    .float-btn svg{width:22px; height:22px}
    .float-btn::after{
      content:"";
      position:absolute;
      inset:auto -40px -40px auto;
      width:120px; height:120px;
      border-radius:50px;
      background: radial-gradient(circle at 30% 30%, rgba(34,227,127,.18), rgba(0,195,137,.0) 62%);
      pointer-events:none;
    }
    .float-hint{
      max-width:180px;
      text-align:right;
      color:rgba(11,59,42,.95);
      background: rgba(255,255,255,.90);
      border:1px solid rgba(21,197,107,.18);
      border-radius:16px;
      padding:10px 12px;
      box-shadow: var(--shadow);
      font-weight:900;
      font-size:12.5px;
      transform-origin: right bottom;
      animation: pop .4s var(--ease) both;
    }
    @keyframes pop{
      from{opacity:0; transform: translateY(6px) scale(.98)}
      to{opacity:1; transform: translateY(0px) scale(1)}
    }

    .modal{
      position:fixed;
      inset:0;
      background: rgba(2,6,23,.48);
      z-index:80;
      display:none;
      align-items:center;
      justify-content:center;
      padding:16px;
    }
    .modal.show{display:flex}
    .modal-card{
      width:min(560px, 100%);
      border-radius:26px;
      border:1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.92);
      box-shadow:0 40px 90px rgba(0,0,0,.35);
      overflow:hidden;
    }
    .modal-head{
      padding:14px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      background: linear-gradient(180deg, rgba(21,197,107,.14), rgba(255,255,255,.92));
    }
    .modal-head strong{
      font-weight:980;
      color:#071f15;
      letter-spacing:.2px;
    }
    .close{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.12);
      background:#fff;
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 12px 26px rgba(15,23,42,.10);
      transition: transform .18s var(--ease), box-shadow .18s var(--ease);
    }
    .close:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
    .modal-body{
      padding:16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:center;
    }
    .qrbox{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.75);
      padding:14px;
      text-align:center;
    }
    .qrbox img{
      width:100%;
      max-width:220px;
      height:auto;
      display:block;
      margin:0 auto;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background:#fff;
    }
    .qrbox span{
      display:block;
      margin-top:10px;
      color:rgba(15,23,42,.72);
      font-weight:750;
      font-size:13px;
      line-height:1.5;
    }
    .modal-info{
      display:flex; flex-direction:column; gap:10px;
    }
    .modal-info p{
      margin:0;
      color:rgba(15,23,42,.72);
      line-height:1.8;
      font-weight:630;
      font-size:13.5px;
    }
    .modal-actions{
      margin-top:4px;
      display:flex; gap:10px; flex-wrap:wrap;
    }

    .section-slim{padding:22px 0}

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr}
      .hero-card, .hero-right{min-height:auto}
      .steps{grid-template-columns: 1fr 1fr}
      .grid-3{grid-template-columns: 1fr 1fr}
      .two-col{grid-template-columns: 1fr}
      .pricing{grid-template-columns: 1fr}
      .network{grid-template-columns: 1fr}
      .comments{grid-template-columns: 1fr 1fr}
      .cases{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .form-wrap{grid-template-columns: 1fr}
      .row2{grid-template-columns: 1fr}
      table{min-width:650px}
      .footer-top{grid-template-columns: 1fr}
      .modal-body{grid-template-columns: 1fr}
    }

    @media (max-width: 760px){
      .menu{display:none}
      .nav-cta .btn-ghost{display:none}
      .burger{display:flex}
      .mobile-panel{display:block}
      h1{font-size:28px}
      .grid-3{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr}
      .comments{grid-template-columns: 1fr}
      .network{grid-template-columns: 1fr}
      .float-help{right:10px; bottom:14px}
      .trow{grid-template-columns: 1fr}
      table{min-width:620px}
      .mini-metrics{grid-template-columns: 1fr 1fr}
    }