:root{
      --bg0:#f6fbf7;
      --bg1:#ffffff;
      --ink:#0f172a;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(15,23,42,.10);
      --card:rgba(255,255,255,.92);
      --shadow:0 14px 40px rgba(5, 122, 69, .12);
      --shadow2:0 10px 24px rgba(2, 132, 74, .10);
      --green:#00c853;
      --green2:#18e36a;
      --green3:#00a651;
      --accent:#0ea75e;
      --focus:rgba(0,200,83,.25);
      --radius:18px;
      --radius2:24px;
      --max:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC", Arial, sans-serif;
      color:var(--ink);
      background:
        radial-gradient(900px 380px at 20% -5%, rgba(0,200,83,.18), transparent 60%),
        radial-gradient(700px 340px at 90% 10%, rgba(24,227,106,.16), transparent 55%),
        linear-gradient(180deg, #f3fbf4 0%, #ffffff 55%, #f6fbf7 100%);
    }
    a{color:inherit}
    .container{
      width:100%;
      max-width:var(--max);
      margin:0 auto;
      padding:0 18px;
    }
    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
      background:#fff; border:1px solid var(--line); border-radius:12px; z-index:9999;
      box-shadow:var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(246, 251, 247, .75);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:10px; min-width: 180px;
    }
    .brand img{width:44px; height:44px; border-radius:14px; background:#fff; padding:6px; box-shadow:0 8px 22px rgba(0,200,83,.18); object-fit:contain}
    .brand .t{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .name{font-weight:850; letter-spacing:.2px}
    .brand .sub{font-size:12px; color:var(--muted2); margin-top:2px}
    .nav-right{
      display:flex; align-items:center; gap:10px;
    }
    .nav-links{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end;
    }
    .nav-links a{
      text-decoration:none;
      font-size:13px; color:rgba(15,23,42,.80);
      padding:8px 10px; border-radius:12px;
      border:1px solid transparent;
      transition:transform .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(0,200,83,.08);
      border-color:rgba(0,200,83,.22);
      transform:translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      appearance:none; border:1px solid transparent;
      border-radius:14px; padding:10px 14px;
      font-weight:750; font-size:14px; text-decoration:none; cursor:pointer;
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform:translateY(0)}
    .btn-primary{
      background:linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
      color:#062012;
      box-shadow:0 14px 30px rgba(0,200,83,.22);
      border-color:rgba(0,200,83,.35);
    }
    .btn-primary:hover{
      transform:translateY(-1px);
      box-shadow:0 18px 40px rgba(0,200,83,.26);
    }
    .btn-ghost{
      background:rgba(255,255,255,.72);
      border-color:rgba(15,23,42,.12);
      color:rgba(15,23,42,.92);
    }
    .btn-ghost:hover{
      transform:translateY(-1px);
      border-color:rgba(0,200,83,.28);
      box-shadow:0 12px 28px rgba(0,200,83,.12);
    }
    .icon-dot{
      width:10px; height:10px; border-radius:99px;
      background:rgba(6,32,18,.88);
      box-shadow:0 0 0 6px rgba(0,200,83,.22);
    }

    .menu-btn{
      display:none;
      width:42px; height:42px; border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.75);
      cursor:pointer;
      align-items:center; justify-content:center;
      transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .menu-btn:hover{
      transform:translateY(-1px);
      border-color:rgba(0,200,83,.26);
      box-shadow:0 12px 26px rgba(0,200,83,.12);
    }
    .hamburger{
      width:18px; height:12px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px; background:rgba(15,23,42,.82);
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1){top:0}
    .hamburger span:nth-child(2){top:5px}
    .hamburger span:nth-child(3){top:10px}
    .menu-open .hamburger span:nth-child(1){top:5px; transform:rotate(45deg)}
    .menu-open .hamburger span:nth-child(2){opacity:0}
    .menu-open .hamburger span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:0 0 14px 0;
    }
    .mobile-panel .grid{
      display:grid; gap:10px;
      grid-template-columns:1fr 1fr;
    }
    .mobile-panel a{
      text-decoration:none;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.75);
      border-radius:14px;
      padding:10px 12px;
      font-size:13px;
      color:rgba(15,23,42,.86);
      transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .mobile-panel a:hover{
      transform:translateY(-1px);
      border-color:rgba(0,200,83,.25);
      box-shadow:0 12px 26px rgba(0,200,83,.10);
    }

    main{padding:18px 0 30px}
    .hero{
      position:relative;
      padding:34px 0 20px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius:var(--radius2);
      background:
        radial-gradient(900px 420px at 0% 0%, rgba(0,200,83,.18), transparent 55%),
        radial-gradient(720px 420px at 100% 0%, rgba(24,227,106,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.70) 100%);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
      padding:22px;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(0,200,83,.22) 0%, rgba(0,200,83,0) 38%, rgba(24,227,106,.18) 70%, rgba(24,227,106,0) 100%);
      pointer-events:none;
      opacity:.55;
      transform:translateX(-20%);
      animation:shine 9s linear infinite;
    }
    @keyframes shine{
      0%{transform:translateX(-28%)}
      50%{transform:translateX(28%)}
      100%{transform:translateX(-28%)}
    }
    .hero-inner{position:relative; z-index:1}
    .badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px; border-radius:999px;
      border:1px solid rgba(0,200,83,.28);
      background:rgba(0,200,83,.08);
      color:rgba(6,32,18,.92);
      font-weight:800; font-size:13px;
    }
    .badge .pulse{
      width:10px; height:10px; border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 0 rgba(0,200,83,.35);
      animation:pulse 1.9s ease-out infinite;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(0,200,83,.35)}
      70%{box-shadow:0 0 0 14px rgba(0,200,83,0)}
      100%{box-shadow:0 0 0 0 rgba(0,200,83,0)}
    }
    .hero h1{
      margin:14px 0 10px;
      font-size:34px; line-height:1.16;
      letter-spacing:-.6px;
    }
    .hero p{
      margin:0 0 16px;
      color:rgba(15,23,42,.78);
      font-size:15px; line-height:1.7;
      max-width:62ch;
    }
    .hero-actions{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin:10px 0 14px;
    }
    .hero-meta{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top:6px;
    }
    .meta-chip{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.62);
    }
    .meta-chip strong{font-size:13px}
    .meta-chip span{font-size:12px; color:var(--muted2)}
    .mini-icon{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.22);
      color:rgba(6,32,18,.95);
      flex:0 0 auto;
    }
    .hero-side{
      border-radius:var(--radius2);
      background:linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.68) 100%);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:var(--shadow2);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .hero-side:after{
      content:"";
      position:absolute;
      right:-90px; top:-90px;
      width:240px; height:240px;
      border-radius:999px;
      background:radial-gradient(circle at 30% 30%, rgba(24,227,106,.26), rgba(0,200,83,0) 60%);
      pointer-events:none;
    }
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
      position:relative; z-index:1;
    }
    .side-title h2{
      margin:0; font-size:16px; letter-spacing:-.2px;
    }
    .side-title .tag{
      font-size:12px; color:rgba(6,32,18,.92);
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.22);
      padding:6px 10px; border-radius:999px; font-weight:750;
      white-space:nowrap;
    }
    .side-list{
      position:relative; z-index:1;
      display:grid; gap:10px;
    }
    .side-item{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.66);
      border-radius:16px;
      padding:12px;
      display:flex; gap:12px; align-items:flex-start;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .side-item:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(0,200,83,.12);
      border-color:rgba(0,200,83,.25);
    }
    .side-item .ic{
      width:38px; height:38px; border-radius:16px;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      color:rgba(6,32,18,.95);
    }
    .side-item b{display:block; font-size:13.5px; margin-top:1px}
    .side-item small{display:block; margin-top:4px; color:var(--muted2); line-height:1.35}

    section{padding:18px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .kicker{
      display:inline-flex; gap:10px; align-items:center;
      font-size:12px; color:rgba(6,32,18,.9);
      font-weight:850;
      background:rgba(0,200,83,.08);
      border:1px solid rgba(0,200,83,.22);
      padding:7px 10px; border-radius:999px;
    }
    .section-head h2{
      margin:10px 0 0;
      font-size:24px; letter-spacing:-.5px; line-height:1.2;
    }
    .section-head p{
      margin:0; color:rgba(15,23,42,.74); line-height:1.7; max-width:62ch; font-size:14px;
    }

    .cards{
      display:grid; gap:12px;
    }
    .grid-3{grid-template-columns:repeat(3, minmax(0,1fr))}
    .grid-4{grid-template-columns:repeat(4, minmax(0,1fr))}
    .grid-2{grid-template-columns:repeat(2, minmax(0,1fr))}
    .card{
      border-radius:var(--radius);
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      padding:14px;
      box-shadow:0 12px 26px rgba(2, 132, 74, .06);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.25);
      box-shadow:0 18px 46px rgba(0,200,83,.12);
    }
    .card .top{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      margin-bottom:8px;
    }
    .card .ic{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(180deg, rgba(0,200,83,.14), rgba(0,200,83,.06));
      border:1px solid rgba(0,200,83,.22);
      color:rgba(6,32,18,.95);
      flex:0 0 auto;
    }
    .card h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .card p{margin:8px 0 0; color:rgba(15,23,42,.74); line-height:1.65; font-size:13.5px}
    .metric{
      display:flex; align-items:baseline; gap:10px; margin-top:10px;
    }
    .metric .big{
      font-weight:950; font-size:28px; letter-spacing:-.6px;
    }
    .metric .unit{color:var(--muted2); font-weight:700; font-size:12.5px}
    .pill-row{
      display:flex; gap:8px; flex-wrap:wrap; margin-top:10px;
    }
    .pill{
      padding:7px 10px; border-radius:999px;
      background:rgba(0,200,83,.08);
      border:1px solid rgba(0,200,83,.18);
      color:rgba(6,32,18,.95);
      font-size:12px; font-weight:800;
    }

    .steps{
      display:grid; gap:12px;
      grid-template-columns:repeat(4, minmax(0,1fr));
    }
    .step{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .step:before{
      content:"";
      position:absolute; left:-40px; top:-40px;
      width:100px; height:100px;
      border-radius:999px;
      background:radial-gradient(circle at 30% 30%, rgba(0,200,83,.20), rgba(0,200,83,0) 60%);
    }
    .step .n{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.22);
      font-weight:950;
      position:relative;
    }
    .step h3{margin:10px 0 6px; font-size:16px; letter-spacing:-.2px; position:relative}
    .step p{margin:0; color:rgba(15,23,42,.74); line-height:1.65; font-size:13.5px; position:relative}

    .compare-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(800px 240px at 20% 0%, rgba(0,200,83,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.70) 100%);
      box-shadow:var(--shadow2);
      padding:16px;
    }
    .score-row{
      display:grid; grid-template-columns: 240px 1fr; gap:12px; align-items:stretch;
      margin-bottom:12px;
    }
    .score-card{
      border-radius:18px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(0,200,83,.22);
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
      justify-content:center;
      position:relative;
      overflow:hidden;
    }
    .score-card:after{
      content:"";
      position:absolute; inset:-2px;
      background:linear-gradient(135deg, rgba(0,200,83,.22), rgba(0,200,83,0) 45%);
      opacity:.45; pointer-events:none;
    }
    .score-inner{position:relative; z-index:1}
    .stars{display:flex; gap:6px; align-items:center}
    .star{
      width:16px; height:16px; display:inline-block;
      background:conic-gradient(from 180deg, #ffcf5a, #ffcf5a);
      clip-path:polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      filter:drop-shadow(0 6px 10px rgba(255,207,90,.35));
    }
    .score-title{font-weight:950; font-size:16px; margin-top:8px}
    .score-big{
      font-weight:1000; font-size:38px; letter-spacing:-1px; margin-top:-2px;
    }
    .score-sub{color:var(--muted2); font-weight:750; font-size:12.5px}
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    .compare-table th, .compare-table td{
      border-bottom:1px solid rgba(15,23,42,.08);
      padding:12px 12px;
      text-align:left;
      vertical-align:top;
      font-size:13.5px;
      line-height:1.5;
    }
    .compare-table th{
      background:rgba(0,200,83,.08);
      color:rgba(6,32,18,.95);
      font-weight:950;
      white-space:nowrap;
    }
    .compare-table tr:last-child td{border-bottom:none}
    .badge-ok{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(0,200,83,.22);
      background:rgba(0,200,83,.08);
      font-weight:900; color:rgba(6,32,18,.95);
      white-space:nowrap;
    }
    .badge-mid{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(15,23,42,.04);
      font-weight:850; color:rgba(15,23,42,.82);
      white-space:nowrap;
    }

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

    .list{
      display:grid; gap:10px;
    }
    .li{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .li:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.25);
      box-shadow:0 18px 44px rgba(0,200,83,.10);
    }
    .li .check{
      width:34px; height:34px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.22);
      color:rgba(6,32,18,.95);
      flex:0 0 auto;
      font-weight:1000;
    }
    .li b{display:block; font-size:14.5px; margin-top:1px}
    .li span{display:block; margin-top:5px; color:var(--muted2); font-size:13.5px; line-height:1.5}

    .timeline{
      border-radius:var(--radius2);
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:0 14px 38px rgba(2,132,74,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .timeline:before{
      content:"";
      position:absolute; left:20px; top:20px; bottom:20px; width:2px;
      background:linear-gradient(180deg, rgba(0,200,83,.45), rgba(0,200,83,0));
      opacity:.9;
    }
    .tl{
      position:relative;
      display:grid; gap:14px;
    }
    .tl-item{
      display:grid;
      grid-template-columns: 46px 1fr;
      gap:12px;
      align-items:flex-start;
    }
    .tl-dot{
      width:42px; height:42px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(0,200,83,.10);
      border:1px solid rgba(0,200,83,.22);
      font-weight:1000;
      color:rgba(6,32,18,.95);
      position:relative;
    }
    .tl-item h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .tl-item p{margin:6px 0 0; color:rgba(15,23,42,.74); line-height:1.65; font-size:13.5px}

    .tabs{
      display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px;
    }
    .tab{
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.72);
      font-weight:900; font-size:13px;
      cursor:pointer;
      transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
      user-select:none;
    }
    .tab:hover{transform:translateY(-1px); border-color:rgba(0,200,83,.26); box-shadow:0 12px 28px rgba(0,200,83,.10)}
    .tab[aria-selected="true"]{
      background:rgba(0,200,83,.10);
      border-color:rgba(0,200,83,.30);
      color:rgba(6,32,18,.95);
    }
    .tab-panels{
      display:grid; gap:12px;
    }
    .panel{
      border-radius:var(--radius2);
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      padding:14px;
      display:none;
    }
    .panel[aria-hidden="false"]{display:block}

    .case-grid{
      display:grid; gap:12px;
      grid-template-columns: 1.05fr .95fr;
      align-items:start;
    }
    .case-card{
      border-radius:var(--radius2);
      background:linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.70) 100%);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:0 18px 44px rgba(0,200,83,.08);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .case-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(700px 220px at 15% 0%, rgba(0,200,83,.14), transparent 60%),
        radial-gradient(560px 220px at 95% 10%, rgba(24,227,106,.12), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .case-inner{position:relative; z-index:1}
    .case-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .case-head h3{margin:0; font-size:16.5px; letter-spacing:-.2px}
    .case-head p{margin:6px 0 0; color:rgba(15,23,42,.72); line-height:1.6; font-size:13.5px}
    .case-tags{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
    .case-list{display:grid; gap:10px}
    .case-item{
      border-radius:16px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(15,23,42,.10);
      padding:12px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .case-item:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.25);
      box-shadow:0 18px 44px rgba(0,200,83,.10);
    }
    .case-item .row{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .case-item b{font-size:14.5px}
    .case-item small{color:var(--muted2); display:block; margin-top:5px; line-height:1.5}
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(15,23,42,.04);
      font-size:12px; font-weight:900; color:rgba(15,23,42,.82);
      white-space:nowrap;
    }
    .chip.green{
      border-color:rgba(0,200,83,.22);
      background:rgba(0,200,83,.08);
      color:rgba(6,32,18,.95);
    }

    .article-grid{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr 1fr;
    }
    .article{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      padding:14px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height: 168px;
    }
    .article:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 44px rgba(0,200,83,.10);
      border-color:rgba(0,200,83,.25);
    }
    .article a{
      text-decoration:none;
      color:inherit;
      font-weight:950;
      letter-spacing:-.2px;
      line-height:1.3;
      font-size:14.5px;
    }
    .article .meta{
      display:flex; gap:8px; flex-wrap:wrap; align-items:center;
      color:var(--muted2); font-weight:800; font-size:12px;
    }
    .article .excerpt{
      color:rgba(15,23,42,.72);
      line-height:1.65;
      font-size:13.5px;
      margin-top:auto;
    }
    .article .open{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900; font-size:13px;
      color:rgba(6,32,18,.95);
      margin-top:4px;
    }

    .form-card{
      border-radius:var(--radius2);
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:0 18px 44px rgba(0,200,83,.08);
      padding:16px;
    }
    form{display:grid; gap:12px}
    .row2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
    label{
      display:grid; gap:7px;
      font-size:13px; font-weight:900;
      color:rgba(15,23,42,.86);
    }
    input, select, textarea{
      width:100%;
      padding:11px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.85);
      color:rgba(15,23,42,.92);
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
      font-size:14px;
    }
    textarea{min-height:108px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(0,200,83,.45);
      box-shadow:0 0 0 5px var(--focus);
      background:#fff;
    }
    .form-foot{
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-top:2px;
    }
    .fine{
      color:var(--muted2); font-size:12.5px; line-height:1.5; max-width:60ch;
      font-weight:750;
    }

    details.faq{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      padding:12px 12px;
      transition:box-shadow .18s ease, border-color .18s ease, transform .18s ease;
      overflow:hidden;
    }
    details.faq:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.25);
      box-shadow:0 18px 44px rgba(0,200,83,.10);
    }
    details.faq summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:950; letter-spacing:-.2px;
      padding:6px 4px;
      color:rgba(15,23,42,.95);
    }
    details.faq summary::-webkit-details-marker{display:none}
    .chev{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(15,23,42,.03);
      display:flex; align-items:center; justify-content:center;
      transition:transform .2s ease, background .2s ease, border-color .2s ease;
      flex:0 0 auto;
    }
    details.faq[open] .chev{
      transform:rotate(180deg);
      background:rgba(0,200,83,.10);
      border-color:rgba(0,200,83,.22);
    }
    .faq .a{
      color:rgba(15,23,42,.74);
      line-height:1.7;
      font-size:13.5px;
      padding:8px 4px 4px;
      font-weight:750;
    }

    .review-grid{
      display:grid; gap:12px;
      grid-template-columns:repeat(3, minmax(0,1fr));
    }
    .review{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height: 190px;
    }
    .review:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.25);
      box-shadow:0 18px 44px rgba(0,200,83,.10);
    }
    .review .head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .person{
      display:flex; gap:10px; align-items:center;
    }
    .avatar{
      width:42px; height:42px; border-radius:18px;
      background:linear-gradient(180deg, rgba(0,200,83,.18), rgba(0,200,83,.06));
      border:1px solid rgba(0,200,83,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:rgba(6,32,18,.95);
      flex:0 0 auto;
    }
    .person b{display:block; font-size:13.8px}
    .person small{display:block; color:var(--muted2); margin-top:2px; font-size:12.5px; font-weight:800}
    .review .text{
      color:rgba(15,23,42,.74);
      line-height:1.75;
      font-size:13.5px;
      margin-top:auto;
      font-weight:750;
    }

    .tag-cloud{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .cloud-tag{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      font-weight:900; font-size:13px; color:rgba(15,23,42,.85);
      transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
      cursor:default;
    }
    .cloud-tag:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.26);
      box-shadow:0 16px 34px rgba(0,200,83,.10);
      background:rgba(0,200,83,.06);
    }

    .network{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
      align-items:stretch;
    }
    .map-card{
      border-radius:var(--radius2);
      background:rgba(255,255,255,.74);
      border:1px solid rgba(15,23,42,.10);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .map-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 220px at 20% 20%, rgba(0,200,83,.16), transparent 55%),
        radial-gradient(420px 220px at 90% 40%, rgba(24,227,106,.14), transparent 55%);
      pointer-events:none;
      opacity:.95;
    }
    .map-inner{position:relative; z-index:1}
    .map-title{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}
    .map-title h3{margin:0; font-size:16.5px}
    .network-grid{
      display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px;
    }
    .net-item{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      padding:12px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .net-item:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.25);
      box-shadow:0 18px 44px rgba(0,200,83,.10);
    }
    .net-item b{display:block; font-size:14.5px}
    .net-item span{display:block; margin-top:5px; color:var(--muted2); line-height:1.5; font-size:13.5px; font-weight:800}

    .footer{
      background:linear-gradient(180deg, rgba(10, 50, 26, .02) 0%, rgba(0,200,83,.06) 100%);
      border-top:1px solid rgba(15,23,42,.08);
      padding:22px 0 16px;
      margin-top:10px;
    }
    .footer-top{
      display:grid; grid-template-columns: 1.2fr 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .foot-card{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      padding:14px;
    }
    .foot-card h3{margin:0; font-size:15.5px}
    .foot-card p{margin:8px 0 0; color:rgba(15,23,42,.74); line-height:1.7; font-weight:750; font-size:13.5px}
    .foot-links{
      display:grid; gap:10px; margin-top:10px;
    }
    .foot-links a{
      text-decoration:none;
      color:rgba(15,23,42,.84);
      font-weight:900;
      font-size:13.5px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
    }
    .foot-links a:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.26);
      box-shadow:0 16px 34px rgba(0,200,83,.10);
      background:rgba(0,200,83,.06);
    }
    .friend{
      display:flex; flex-wrap:wrap; gap:10px; margin-top:10px;
    }
    .friend a{
      font-size:12.5px; font-weight:950; color:rgba(6,32,18,.95);
      text-decoration:none;
      border:1px solid rgba(0,200,83,.22);
      background:rgba(0,200,83,.08);
      padding:8px 10px; border-radius:999px;
      transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease;
      white-space:nowrap;
    }
    .friend a:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.35);
      box-shadow:0 14px 30px rgba(0,200,83,.12);
    }
    .footer-bottom{
      display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
      align-items:center;
      padding-top:14px;
      border-top:1px solid rgba(15,23,42,.08);
      margin-top:14px;
      color:rgba(15,23,42,.72);
      font-weight:800;
      font-size:12.5px;
    }
    .footer-bottom .right{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .small-link{
      text-decoration:none; font-weight:900;
      color:rgba(15,23,42,.78);
      padding:8px 10px; border-radius:12px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease;
    }
    .small-link:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.26);
      box-shadow:0 16px 34px rgba(0,200,83,.10);
    }

    .float-customer{
      position:fixed; right:14px; bottom:16px; z-index:80;
      display:flex; flex-direction:column; gap:10px; align-items:flex-end;
    }
    .float-btn{
      width:48px; height:48px; border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 16px 40px rgba(0,0,0,.10);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .float-btn:hover{
      transform:translateY(-2px);
      border-color:rgba(0,200,83,.26);
      box-shadow:0 20px 50px rgba(0,200,83,.18);
    }
    .tooltip{
      display:none;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.92);
      box-shadow:0 18px 44px rgba(0,0,0,.12);
      font-weight:900; font-size:12.5px;
      color:rgba(15,23,42,.85);
      margin-right:2px;
      max-width: 240px;
    }
    .float-customer.show .tooltip{display:block}

    .to-top{
      display:none;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      .steps{grid-template-columns:repeat(2, minmax(0,1fr))}
      .grid-3{grid-template-columns:repeat(2, minmax(0,1fr))}
      .grid-4{grid-template-columns:repeat(2, minmax(0,1fr))}
      .review-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .article-grid{grid-template-columns:1fr 1fr}
      .score-row{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .two-col{grid-template-columns:1fr}
      .network{grid-template-columns:1fr}
      .footer-top{grid-template-columns:1fr}
      .nav-links{display:none}
      .menu-btn{display:flex}
      .mobile-panel{display:block}
      .mobile-panel{max-height:0; overflow:hidden; transition:max-height .25s ease}
      .mobile-panel.open{max-height: 420px}
      .to-top{display:flex}
    }
    @media (max-width: 520px){
      .hero h1{font-size:28px}
      .grid-3{grid-template-columns:1fr}
      .grid-4{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .review-grid{grid-template-columns:1fr}
      .article-grid{grid-template-columns:1fr}
      .row2{grid-template-columns:1fr}
      .network-grid{grid-template-columns:1fr}
      .hero-card{padding:18px}
      .hero-side{padding:14px}
    }

    .img-inline{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    .img-inline img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
    }
    .img-row{
      display:grid; gap:12px; grid-template-columns: 1fr 1fr; margin-top:12px;
    }
    @media (max-width: 720px){
      .img-row{grid-template-columns:1fr}
    }
    .sr-only{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
      clip:rect(0,0,0,0); white-space:nowrap; border:0;
    }
    .animate-in{
      opacity:0; transform:translateY(10px);
      transition:opacity .55s ease, transform .55s ease;
      will-change:transform, opacity;
    }
    .animate-in.show{
      opacity:1; transform:translateY(0);
    }

    .anchor{
      scroll-margin-top: 88px;
    }
    .table-wrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    .table-wrap::-webkit-scrollbar{height:10px}
    .table-wrap::-webkit-scrollbar-thumb{background:rgba(0,200,83,.25); border-radius:999px}