:root{
      --bg0:#f6fbf7;
      --bg1:#ffffff;
      --text:#0f172a;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(15,23,42,.10);
      --card:rgba(255,255,255,.82);
      --shadow: 0 10px 30px rgba(16,185,129,.12);
      --shadow2: 0 14px 44px rgba(16,185,129,.18);
      --green:#19c37d;
      --green2:#16a34a;
      --lime:#a3ff2b;
      --accent:#0ea5e9;
      --danger:#ef4444;
      --radius:18px;
      --radius2:26px;
      --container:1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 10% -10%, rgba(16,185,129,.18), transparent 60%),
        radial-gradient(900px 600px at 95% 10%, rgba(34,197,94,.14), transparent 55%),
        linear-gradient(180deg, #f3fbf5 0%, #ffffff 30%, #f7fbf7 100%);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    .container{max-width:var(--container); margin:0 auto; padding:0 18px;}
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px; border:1px solid rgba(25,195,125,.25);
      background:rgba(16,185,129,.08); border-radius:999px; color:#0b3b25;
      font-weight:650; font-size:12px; letter-spacing:.2px;
      box-shadow: 0 10px 24px rgba(16,185,129,.10);
    }
    .dot{
      width:8px; height:8px; border-radius:50%;
      background:linear-gradient(180deg, var(--lime), var(--green));
      box-shadow:0 0 0 4px rgba(163,255,43,.20);
      flex:0 0 auto;
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(246,251,247,.62);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .navwrap{padding:12px 0;}
    .navrow{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:260px;
    }
    .brand img{width:42px; height:42px; object-fit:contain; border-radius:14px; background:#fff; padding:6px; box-shadow:0 10px 24px rgba(16,185,129,.12); border:1px solid rgba(25,195,125,.20);}
    .brand .btxt{display:flex; flex-direction:column; line-height:1.15}
    .brand .name{font-weight:860; letter-spacing:.2px}
    .brand .sub{font-size:12px; color:var(--muted2); margin-top:3px}

    .navlinks{
      display:flex; align-items:center; gap:16px;
      flex:1 1 auto; justify-content:flex-end; flex-wrap:wrap;
    }
    .navlinks a{
      font-size:13px; color:#173032; opacity:.9;
      padding:8px 10px; border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }
    .navlinks a:hover{
      background:rgba(25,195,125,.10);
      border-color:rgba(25,195,125,.22);
      transform: translateY(-1px);
    }

    .navcta{
      display:flex; align-items:center; gap:10px;
      margin-left:10px;
    }
    .btn{
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      color:#0f172a;
      padding:10px 14px;
      border-radius:14px;
      font-weight:760;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      box-shadow: 0 8px 18px rgba(2,6,23,.06);
      cursor:pointer;
      user-select:none;
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-1px); box-shadow: 0 14px 28px rgba(2,6,23,.10);}
    .btn:active{transform:translateY(0px); box-shadow: 0 8px 18px rgba(2,6,23,.08);}
    .btn-primary{
      border-color: rgba(25,195,125,.35);
      background: linear-gradient(180deg, rgba(25,195,125,.16), rgba(25,195,125,.08));
      box-shadow: 0 16px 44px rgba(16,185,129,.16);
    }
    .btn-green{
      color:#052115;
      background: linear-gradient(180deg, #19c37d 0%, #12a86a 100%);
      border:1px solid rgba(0,0,0,.06);
      color:#062114;
      box-shadow: 0 18px 52px rgba(16,185,129,.28);
      position:relative;
      overflow:hidden;
    }
    .btn-green::after{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(600px 180px at 20% 10%, rgba(163,255,43,.45), transparent 55%),
                  radial-gradient(500px 200px at 90% 40%, rgba(14,165,233,.25), transparent 58%);
      opacity:.7;
      pointer-events:none;
    }
    .btn-green span{position:relative; z-index:1;}
    .btn-ghost{
      background:rgba(255,255,255,.7);
    }

    .hamburger{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.7);
      align-items:center; justify-content:center;
      cursor:pointer;
      box-shadow: 0 10px 24px rgba(2,6,23,.06);
    }
    .hamburger svg{width:20px; height:20px}
    .mobilePanel{
      display:none;
      padding:10px 0 16px 0;
    }
    .mobilePanel .panel{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.82);
      border-radius:16px;
      padding:12px;
      box-shadow: 0 18px 50px rgba(16,185,129,.12);
    }
    .mobilePanel .panel a{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.06);
      margin-bottom:10px;
      font-weight:720;
      font-size:14px;
      background: rgba(25,195,125,.06);
    }
    .mobilePanel .panel a:last-child{margin-bottom:0}

    .hero{
      padding:30px 0 22px;
      position:relative;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:18px;
      align-items:stretch;
      margin-top:10px;
    }
    .heroMain{
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(25,195,125,.20), transparent 55%),
        radial-gradient(820px 380px at 80% 25%, rgba(163,255,43,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.68));
      border-radius: var(--radius2);
      padding:22px 22px 18px;
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .heroMain::before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(700px 220px at 5% 10%, rgba(163,255,43,.24), transparent 50%),
        radial-gradient(540px 240px at 85% 10%, rgba(14,165,233,.18), transparent 52%);
      opacity:.55;
      pointer-events:none;
    }
    .heroMain > *{position:relative; z-index:1}
    .heroTop{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      justify-content:space-between;
    }
    .heroCopy{margin-top:14px}
    h1{
      margin:10px 0 10px;
      font-size:34px;
      line-height:1.16;
      letter-spacing:-.4px;
    }
    .lead{
      margin:0;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.7;
      max-width:62ch;
    }
    .heroActions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:16px;
      align-items:center;
    }
    .heroMeta{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:14px;
    }
    .metaPill{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(25,195,125,.20);
      background:rgba(16,185,129,.06);
      min-width:190px;
    }
    .metaIcon{
      width:34px; height:34px; border-radius:14px;
      background: linear-gradient(180deg, rgba(25,195,125,.22), rgba(25,195,125,.08));
      border:1px solid rgba(25,195,125,.28);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 12px 28px rgba(16,185,129,.10);
      flex:0 0 auto;
    }
    .metaIcon svg{width:18px; height:18px}
    .metaTxt{display:flex; flex-direction:column; line-height:1.1}
    .metaTxt b{font-size:13px}
    .metaTxt span{font-size:12px; color:var(--muted2); margin-top:5px}

    .heroSide{
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66));
      border-radius: var(--radius2);
      padding:18px;
      box-shadow: 0 16px 44px rgba(16,185,129,.10);
      position:relative;
      overflow:hidden;
    }
    .heroSide::after{
      content:"";
      position:absolute;
      width:380px; height:380px;
      border-radius:50%;
      right:-160px; top:-190px;
      background: radial-gradient(circle at 30% 30%, rgba(163,255,43,.35), transparent 60%);
      filter:saturate(120%);
      opacity:.75;
      pointer-events:none;
    }
    .heroSide > *{position:relative; z-index:1}
    .sideTitle{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .sideTitle h2{
      margin:0;
      font-size:16px;
      letter-spacing:.1px;
    }
    .statusBadge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(25,195,125,.25);
      background:rgba(25,195,125,.10);
      font-weight:780; font-size:12px;
      color:#0b3b25;
    }
    .pulse{
      width:10px; height:10px; border-radius:50%;
      background:var(--green);
      box-shadow: 0 0 0 0 rgba(25,195,125,.35);
      animation: pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(25,195,125,.35)}
      60%{box-shadow:0 0 0 10px rgba(25,195,125,0)}
      100%{box-shadow:0 0 0 0 rgba(25,195,125,0)}
    }

    .dataGrid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .metric{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      border-radius:16px;
      padding:12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      cursor:default;
    }
    .metric:hover{
      transform: translateY(-2px);
      border-color: rgba(25,195,125,.30);
      box-shadow: 0 18px 44px rgba(16,185,129,.14);
    }
    .metricTop{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
    .metric .k{font-size:12px; color:var(--muted2); font-weight:700}
    .metric .v{
      font-weight:900; font-size:22px; letter-spacing:-.6px;
      margin-top:8px;
    }
    .metric .d{font-size:12px; color:var(--muted2); line-height:1.5; margin-top:6px}

    .modelPills{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:14px;
    }
    .modelPills .pill{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.66);
      padding:8px 10px; border-radius:14px;
      font-size:12px; font-weight:720; color:#142d22;
    }
    .heroHint{
      margin-top:14px;
      border-top:1px dashed rgba(15,23,42,.16);
      padding-top:14px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .heroHint b{display:block; font-size:13px}
    .heroHint span{display:block; font-size:12.5px; color:var(--muted2); margin-top:6px; line-height:1.55}
    .check{
      width:34px; height:34px; border-radius:14px;
      background: linear-gradient(180deg, rgba(25,195,125,.18), rgba(25,195,125,.08));
      border:1px solid rgba(25,195,125,.25);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      box-shadow: 0 14px 30px rgba(16,185,129,.12);
    }
    .check svg{width:18px; height:18px}

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

    .grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
    .grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px;}
    .card{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 34px rgba(2,6,23,.04);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{transform: translateY(-2px); border-color: rgba(25,195,125,.28); box-shadow: 0 18px 44px rgba(16,185,129,.12);}
    .card h3{
      margin:10px 0 6px;
      font-size:15.5px;
      letter-spacing:-.1px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:13.8px;
    }
    .iconBox{
      width:44px; height:44px; border-radius:18px;
      background: linear-gradient(180deg, rgba(25,195,125,.22), rgba(25,195,125,.08));
      border:1px solid rgba(25,195,125,.25);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 16px 40px rgba(16,185,129,.14);
    }
    .iconBox svg{width:20px; height:20px}

    .steps{
      display:grid; grid-template-columns: repeat(4, 1fr); gap:14px;
      align-items:stretch;
    }
    .step{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step::after{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(420px 120px at 10% 0%, rgba(25,195,125,.18), transparent 55%);
      opacity:.7;
      pointer-events:none;
    }
    .step > *{position:relative; z-index:1}
    .step .n{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(16,185,129,.08);
      border:1px solid rgba(25,195,125,.22);
      font-weight:900; font-size:12.5px;
      color:#0b3b25;
    }
    .step h3{margin:12px 0 6px; font-size:15.5px}
    .step p{margin:0; color:var(--muted); line-height:1.7; font-size:13.8px}

    .compareWrap{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      border-radius: var(--radius2);
      padding:14px;
      box-shadow: 0 14px 44px rgba(16,185,129,.10);
    }
    .compareHeader{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding:10px 10px 14px;
      border-bottom:1px dashed rgba(15,23,42,.14);
      margin-bottom:10px;
    }
    .scoreCard{
      display:flex; align-items:center; gap:12px;
      border:1px solid rgba(25,195,125,.25);
      background: linear-gradient(180deg, rgba(25,195,125,.12), rgba(25,195,125,.06));
      border-radius:18px;
      padding:12px 14px;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      color: #15803d;
    }
    .star svg{width:18px; height:18px; fill: currentColor}
    .scoreText b{display:block; font-size:16px}
    .scoreText span{display:block; margin-top:4px; font-size:12.5px; color:var(--muted2); line-height:1.3}
    .compareNote{
      color:var(--muted);
      font-size:13.8px;
      line-height:1.7;
      max-width:68ch;
      padding-top:2px;
    }

    .tableWrap{
      overflow:auto;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width:760px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      font-size:13.8px;
      vertical-align:top;
    }
    th{
      text-align:left;
      font-size:13px;
      color:#0b3b25;
      background: linear-gradient(180deg, rgba(25,195,125,.16), rgba(25,195,125,.08));
      border-bottom:1px solid rgba(25,195,125,.22);
      position:sticky; top:0;
      z-index:1;
    }
    td b{font-weight:900}
    .tagGood{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(25,195,125,.25);
      background: rgba(16,185,129,.08);
      font-weight:900; color:#0b3b25; font-size:12.5px;
      white-space:nowrap;
    }
    .tagMid{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(59,130,246,.22);
      background: rgba(59,130,246,.08);
      font-weight:900; color:#0b2f4c; font-size:12.5px;
      white-space:nowrap;
    }
    .tagLine{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(2,6,23,.03);
      font-weight:900; color:#374151; font-size:12.5px;
      white-space:nowrap;
    }

    .timeline{
      display:grid; grid-template-columns: repeat(5, 1fr); gap:12px;
      align-items:stretch;
    }
    .timeItem{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .timeItem:hover{transform: translateY(-2px); border-color: rgba(25,195,125,.28); box-shadow: 0 18px 44px rgba(16,185,129,.12);}
    .timeItem::before{
      content:"";
      position:absolute; top:-40px; right:-70px;
      width:140px; height:140px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(163,255,43,.26), transparent 62%);
      opacity:.8; pointer-events:none;
    }
    .timeItem > *{position:relative; z-index:1}
    .timeItem .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .timeItem .when{
      font-weight:950; letter-spacing:-.2px;
      color:#0b3b25; font-size:13px;
      background: rgba(16,185,129,.08);
      border:1px solid rgba(25,195,125,.22);
      padding:7px 10px; border-radius:999px;
    }
    .timeItem h3{margin:0; font-size:14.8px}
    .timeItem p{margin:8px 0 0; color:var(--muted); line-height:1.6; font-size:13.5px}

    .tabsGrid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start;}
    .listCard ul{margin:12px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
    .listCard li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px; border-radius:14px;
      background: rgba(16,185,129,.06);
      border:1px solid rgba(25,195,125,.18);
    }
    .listCard li .liDot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(180deg, var(--lime), var(--green));
      margin-top:5px; flex:0 0 auto;
      box-shadow: 0 0 0 4px rgba(163,255,43,.18);
    }
    .listCard li b{display:block; font-size:13.5px}
    .listCard li span{display:block; font-size:12.8px; color:var(--muted2); margin-top:5px; line-height:1.5}

    .caseGrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
    .case{
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:12px;
    }
    .case:hover{transform: translateY(-2px); border-color: rgba(25,195,125,.28); box-shadow: 0 18px 44px rgba(16,185,129,.12);}
    .caseHead{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(25,195,125,.22);
      background: rgba(16,185,129,.08);
      color:#0b3b25;
      font-weight:900; font-size:12.5px;
      white-space:nowrap;
    }
    .caseTitle{
      font-weight:950; letter-spacing:-.2px;
      margin:0;
      font-size:15.5px;
    }
    .case p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:13.8px;
    }
    .case .bullets{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:auto;
    }
    .miniTag{
      font-size:12px; font-weight:800; color:#123126;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
    }

    .articleGrid{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:start;}
    .articleList{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
      box-shadow: 0 14px 44px rgba(16,185,129,.10);
    }
    .articleList .row{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      padding:12px 12px;
      border:1px solid rgba(15,23,42,.08);
      border-radius:16px;
      background: rgba(255,255,255,.70);
      margin-bottom:10px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .articleList .row:hover{transform: translateY(-2px); border-color: rgba(25,195,125,.28);}
    .articleList .row:last-child{margin-bottom:0}
    .row .l{display:flex; flex-direction:column; gap:6px}
    .row .t{
      font-weight:950; letter-spacing:-.2px;
      font-size:14.8px; line-height:1.35;
    }
    .row .m{
      color:var(--muted2); font-size:12.8px; line-height:1.5;
      max-width:48ch;
    }
    .row .go{
      display:inline-flex; align-items:center; justify-content:center;
      width:38px; height:38px;
      border-radius:14px;
      border:1px solid rgba(25,195,125,.22);
      background: rgba(16,185,129,.08);
      flex:0 0 auto;
    }
    .row .go svg{width:18px; height:18px}
    .sidePanel{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
      box-shadow: 0 14px 44px rgba(16,185,129,.08);
    }
    .sidePanel .k{color:var(--muted2); font-weight:850; font-size:12.8px; letter-spacing:.2px}
    .sidePanel h3{margin:8px 0 8px; font-size:16px}
    .sidePanel p{margin:0; color:var(--muted); line-height:1.7; font-size:13.8px}
    .tagCloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .tagCloud a{
      font-size:12.5px;
      font-weight:820;
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.64);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tagCloud a:hover{transform: translateY(-2px); border-color: rgba(25,195,125,.28); background: rgba(16,185,129,.06);}

    .formCard{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(900px 360px at 10% 0%, rgba(25,195,125,.22), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.70));
      padding:16px;
      box-shadow: var(--shadow);
    }
    form{margin-top:12px}
    .fields{
      display:grid; grid-template-columns: repeat(2, 1fr); gap:12px;
    }
    label{display:flex; flex-direction:column; gap:8px; font-size:12.8px; color:#20303a; font-weight:780}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.86);
      outline:none;
      font-size:14px;
      transition: border-color .15s ease, box-shadow .15s ease;
      color:var(--text);
    }
    textarea{min-height:108px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(25,195,125,.45);
      box-shadow: 0 0 0 4px rgba(25,195,125,.14);
    }
    .formActions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:14px;
      padding-top:12px;
      border-top:1px dashed rgba(15,23,42,.14);
    }
    .finePrint{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      max-width:60ch;
    }
    .submitRow{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }

    .faqWrap{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
      box-shadow: 0 14px 44px rgba(16,185,129,.10);
    }
    details{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      border-radius:16px;
      padding:12px 12px;
      margin-bottom:10px;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    details[open]{border-color: rgba(25,195,125,.32); box-shadow: 0 18px 44px rgba(16,185,129,.12);}
    details:last-child{margin-bottom:0}
    summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:930; font-size:14.6px;
      color:#0f172a;
      outline:none;
    }
    summary::-webkit-details-marker{display:none}
    .sumL{display:flex; align-items:flex-start; gap:10px}
    .sumIcon{
      width:34px; height:34px; border-radius:14px;
      background: rgba(16,185,129,.08);
      border:1px solid rgba(25,195,125,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      box-shadow: 0 14px 30px rgba(16,185,129,.10);
      margin-top:2px;
    }
    .sumIcon svg{width:18px; height:18px}
    .sumR{
      width:36px; height:36px; border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.7);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .18s ease;
    }
    details[open] .sumR{transform: rotate(45deg); border-color: rgba(25,195,125,.28);}
    .content{
      color:var(--muted);
      line-height:1.8;
      font-size:13.8px;
      padding:10px 2px 2px 44px;
    }

    .reviewsGrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
    .review{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 34px rgba(2,6,23,.04);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .review:hover{transform: translateY(-2px); border-color: rgba(25,195,125,.28); box-shadow: 0 18px 44px rgba(16,185,129,.12);}
    .reviewTop{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(180deg, rgba(25,195,125,.22), rgba(25,195,125,.08));
      border:1px solid rgba(25,195,125,.25);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#0b3b25;
      flex:0 0 auto;
      box-shadow: 0 16px 40px rgba(16,185,129,.14);
    }
    .review .role{color:var(--muted2); font-weight:850; font-size:12.8px; margin-top:6px}
    .review p{margin:12px 0 0; color:var(--muted); line-height:1.75; font-size:13.8px}
    .review .stamp{
      display:flex; align-items:center; gap:8px; margin-top:14px;
      color:#0b3b25; font-weight:950; font-size:12.5px;
      border:1px solid rgba(25,195,125,.22);
      background: rgba(16,185,129,.08);
      padding:9px 10px; border-radius:999px;
      width:fit-content;
    }

    .mediaStrip{
      display:grid; grid-template-columns: 1.1fr .9fr;
      gap:14px; align-items:start;
    }
    .mediaPanel{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
      box-shadow: 0 14px 44px rgba(16,185,129,.10);
    }
    .thumbs{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .thumb{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.7);
      overflow:hidden;
      min-height:120px;
      display:flex; align-items:center; justify-content:center;
    }
    .thumb img{width:100%; height:auto; display:block; object-fit:cover}
    .mediaPanel h3{margin:0; font-size:16px}
    .mediaPanel p{margin:8px 0 0; color:var(--muted); line-height:1.7; font-size:13.8px}
    .capList{
      margin-top:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .cap{
      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,.72);
    }
    .cap .b{width:36px; height:36px; border-radius:16px;
      background: rgba(16,185,129,.08);
      border:1px solid rgba(25,195,125,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      box-shadow: 0 14px 30px rgba(16,185,129,.10);
    }
    .cap .b svg{width:18px; height:18px}
    .cap b{display:block; font-size:13.7px}
    .cap span{display:block; margin-top:5px; color:var(--muted2); font-size:12.8px; line-height:1.55}

    .networkGrid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start;}
    .mapLike{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(650px 260px at 20% 20%, rgba(25,195,125,.20), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.70));
      padding:16px;
      box-shadow: 0 14px 44px rgba(16,185,129,.10);
      position:relative;
      overflow:hidden;
    }
    .mapLike::after{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(90deg, rgba(25,195,125,.10) 1px, transparent 1px),
        linear-gradient(180deg, rgba(25,195,125,.10) 1px, transparent 1px);
      background-size: 34px 34px;
      opacity:.35;
      pointer-events:none;
      mask-image: radial-gradient(circle at 30% 30%, rgba(0,0,0,.9), transparent 60%);
    }
    .mapLike > *{position:relative; z-index:1}
    .route{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .route .r{
      border-radius:999px;
      padding:9px 11px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-weight:900; font-size:12.5px; color:#123126;
    }
    .route .r strong{color:#0b3b25}
    .agents{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    .agent{
      border-radius:18px;
      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;
    }
    .agent:hover{transform: translateY(-2px); border-color: rgba(25,195,125,.28); box-shadow: 0 18px 44px rgba(16,185,129,.12);}
    .agent b{display:block; font-size:14.2px}
    .agent span{display:block; margin-top:6px; color:var(--muted2); font-size:12.8px; line-height:1.6}

    .anchorBlock{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
      box-shadow: 0 14px 44px rgba(16,185,129,.10);
    }

    footer{
      border-top:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.78));
      margin-top:10px;
    }
    .footerInner{padding:18px 0 14px}
    .footerTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap;
    }
    .footerCol{
      min-width:240px;
      max-width:520px;
    }
    .footerCol h3{margin:0; font-size:15.5px}
    .footerCol p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:13.8px}
    .footerLinks{
      display:flex; flex-direction:column; gap:10px;
      min-width:240px;
    }
    .footerLinks a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-weight:860;
      font-size:13.2px;
      color:#14312a;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .footerLinks a:hover{transform: translateY(-2px); border-color: rgba(25,195,125,.28); background: rgba(16,185,129,.06);}
    .footerMid{
      margin-top:14px;
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center; justify-content:space-between;
      border-top:1px dashed rgba(15,23,42,.14);
      padding-top:14px;
    }
    .footBrand{
      display:flex; align-items:center; gap:12px;
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
      max-width:68ch;
    }
    .kefu{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .kefu img{
      width:74px; height:74px; object-fit:cover;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      box-shadow: 0 18px 44px rgba(16,185,129,.10);
    }

    .copyRow{
      padding:12px 0 18px;
      color:var(--muted2);
      font-size:12.6px;
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
    }
    .legal{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
    .legal a{
      color:#0b3b25;
      font-weight:850;
      border-bottom:1px solid rgba(25,195,125,.28);
    }

    .floatKefu{
      position:fixed; right:14px; bottom:14px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px; align-items:flex-end;
    }
    .floatCard{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 18px 56px rgba(16,185,129,.18);
      padding:10px;
      display:flex; gap:10px; align-items:center;
      backdrop-filter: blur(10px);
      transform-origin: right bottom;
      animation: popIn .4s ease both;
    }
    @keyframes popIn{
      from{opacity:0; transform: translateY(10px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .floatCard img{
      width:52px; height:52px; border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      object-fit:cover;
    }
    .floatText{display:flex; flex-direction:column; line-height:1.1}
    .floatText b{font-size:13px}
    .floatText span{font-size:12px; color:var(--muted2); margin-top:5px}
    .floatActions{display:flex; flex-direction:column; gap:10px}
    .toTop{
      width:46px; height:46px; border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 56px rgba(16,185,129,.18);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease;
    }
    .toTop:hover{transform: translateY(-2px)}
    .toTop svg{width:18px; height:18px; fill:#0b3b25}

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

    .reveal{
      opacity:0; transform: translateY(12px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .reveal.isIn{
      opacity:1; transform: translateY(0);
    }

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .brand{min-width:auto}
      .steps{grid-template-columns: repeat(2, 1fr);}
      .grid3{grid-template-columns: repeat(2, 1fr);}
      .caseGrid{grid-template-columns: repeat(2, 1fr);}
      .reviewsGrid{grid-template-columns: repeat(2, 1fr);}
      .timeline{grid-template-columns: repeat(3, 1fr);}
      .articleGrid{grid-template-columns: 1fr;}
      .tabsGrid{grid-template-columns: 1fr;}
      .networkGrid{grid-template-columns: 1fr;}
      .agents{grid-template-columns: 1fr 1fr;}
      .mediaStrip{grid-template-columns: 1fr;}
    }
    @media (max-width: 720px){
      .navlinks{display:none}
      .navcta{display:none}
      .hamburger{display:flex}
      .mobilePanel{display:block}
      .heroMain{padding:18px}
      h1{font-size:28px}
      .metaPill{min-width:unset; flex:1 1 100%}
      .dataGrid{grid-template-columns: 1fr 1fr}
      .grid3{grid-template-columns: 1fr;}
      .grid2{grid-template-columns: 1fr;}
      .steps{grid-template-columns: 1fr;}
      .timeline{grid-template-columns: 1fr 1fr;}
      .caseGrid{grid-template-columns: 1fr;}
      .reviewsGrid{grid-template-columns: 1fr;}
      .fields{grid-template-columns: 1fr;}
      table{min-width:680px}
      .agents{grid-template-columns: 1fr;}
      .floatCard{display:none}
    }