:root{
      --bg0:#f6fff9;
      --bg1:#f1ffef;
      --card:#ffffff;
      --text:#17202a;
      --muted:#5a6a7b;
      --muted2:#7b8796;
      --line:rgba(16,185,129,.20);
      --shadow:0 18px 40px rgba(16,185,129,.12);
      --shadow2:0 10px 28px rgba(23,32,42,.08);
      --green:#00c853;
      --green2:#14c86b;
      --green3:#0ea96a;
      --accent:#19d18f;
      --accent2:#00b37a;
      --dark:#0f1720;
      --chip:#eafff2;
      --danger:#d92d20;
      --focus:rgba(16,185,129,.28);
      --radius:18px;
      --radius2:14px;
      --max: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", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 420px at 15% 0%, rgba(0,200,83,.18), transparent 55%),
        radial-gradient(820px 420px at 85% 8%, rgba(20,200,107,.12), transparent 52%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 38%, #ffffff 120px);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--max);
      padding:0 18px;
      margin:0 auto;
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:auto;
      width:1px;height:1px;overflow:hidden;
    }
    .skip-link:focus{
      left:16px;top:16px;width:auto;height:auto;z-index:9999;
      background:#fff;border:1px solid rgba(16,185,129,.35);
      padding:10px 12px;border-radius:12px; box-shadow:var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(246,255,249,.68);
      border-bottom:1px solid rgba(16,185,129,.14);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width:220px;
    }
    .ai-page-logo{
      width:42px; height:auto;
      padding:8px;
      border-radius:14px;
      background:linear-gradient(180deg, rgba(0,200,83,.14), rgba(0,200,83,.06));
      border:1px solid rgba(16,185,129,.20);
    }
    .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand-name{font-weight:820; letter-spacing:.2px}
    .brand-sub{font-size:12px; color:var(--muted); margin-top:4px}

    nav .nav-links{
      display:flex; align-items:center; gap:16px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px; color:rgba(23,32,42,.78);
      padding:9px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(16,185,129,.08);
      border-color:rgba(16,185,129,.20);
      transform:translateY(-1px);
    }

    .nav-cta{
      display:flex; align-items:center; gap:10px;
      justify-content:flex-end;
      min-width:240px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(16,185,129,.30);
      background:#fff;
      color:var(--text);
      font-weight:700;
      font-size:13.5px;
      transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 12px 26px rgba(0,0,0,.08);
      border-color:rgba(16,185,129,.45);
    }
    .btn-primary{
      background:linear-gradient(180deg, rgba(0,200,83,1), rgba(0,172,73,1));
      border-color:rgba(0,200,83,.55);
      color:#05301a;
      box-shadow:0 16px 36px rgba(0,200,83,.22);
    }
    .btn-primary:hover{
      box-shadow:0 20px 44px rgba(0,200,83,.26);
    }
    .btn-ghost{
      background:rgba(255,255,255,.7);
      border-color:rgba(16,185,129,.22);
    }
    .btn-small{padding:9px 12px; border-radius:12px; font-size:13px}
    .icon-dot{
      width:10px; height:10px; border-radius:999px;
      background:radial-gradient(circle at 30% 30%, #b5ffd9, #00c853);
      box-shadow:0 0 0 6px rgba(16,185,129,.15);
    }
    .menu-btn{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(16,185,129,.25);
      background:rgba(255,255,255,.72);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .15s ease, border-color .15s ease;
    }
    .menu-btn:hover{transform:translateY(-1px); border-color:rgba(16,185,129,.42)}
    .burger{
      width:18px; height:12px; position:relative;
    }
    .burger span{
      position:absolute; left:0; right:0; height:2px; border-radius:3px;
      background:rgba(23,32,42,.74);
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger span:nth-child(1){top:0}
    .burger span:nth-child(2){top:5px}
    .burger span:nth-child(3){top:10px}
    .menu-open .burger span:nth-child(1){top:5px; transform:rotate(45deg)}
    .menu-open .burger span:nth-child(2){opacity:0}
    .menu-open .burger span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:10px 0 16px;
      border-top:1px dashed rgba(16,185,129,.20);
    }
    .mobile-panel a{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px; border-radius:14px;
      border:1px solid rgba(16,185,129,.14);
      background:rgba(255,255,255,.72);
      margin-top:10px;
      color:rgba(23,32,42,.82);
      transition:transform .15s ease, border-color .15s ease;
    }
    .mobile-panel a:hover{transform:translateY(-1px); border-color:rgba(16,185,129,.35)}
    .chev{opacity:.6}

    main{padding-bottom:48px}

    .hero{
      position:relative;
      padding:34px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius:var(--radius);
      background:
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.72)),
        radial-gradient(900px 380px at 18% 0%, rgba(0,200,83,.18), transparent 55%),
        radial-gradient(820px 420px at 92% 8%, rgba(20,200,107,.12), transparent 52%);
      border:1px solid rgba(16,185,129,.20);
      box-shadow:var(--shadow2);
      padding:22px;
      overflow:hidden;
      position:relative;
      min-height:320px;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(600px 180px at 20% 20%, rgba(0,200,83,.18), transparent 60%),
        radial-gradient(600px 200px at 85% 0%, rgba(20,200,107,.12), transparent 60%),
        linear-gradient(90deg, rgba(0,200,83,.08), transparent 35%, rgba(0,200,83,.06));
      pointer-events:none;
      opacity:.9;
    }
    .hero-inner{position:relative; z-index:1; display:flex; flex-direction:column; height:100%}
    .hero-top{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      flex-wrap:wrap;
    }
    .badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:9px 12px;
      border-radius:999px;
      background:rgba(234,255,242,.9);
      border:1px solid rgba(16,185,129,.25);
      color:rgba(5,48,26,.92);
      font-weight:750;
      font-size:13px;
      white-space:nowrap;
    }
    .badge svg{width:16px; height:16px}
    .hero-title{
      margin:14px 0 10px;
      font-size:34px;
      line-height:1.12;
      letter-spacing:-.4px;
      font-weight:920;
      max-width:640px;
    }
    .hero-lead{
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
      max-width:680px;
      margin:0;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:18px;
      align-items:center;
    }
    .trust-row{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap;
      margin-top:auto;
      padding-top:16px;
      border-top:1px dashed rgba(16,185,129,.22);
    }
    .trust-item{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(16,185,129,.18);
      background:rgba(255,255,255,.65);
    }
    .trust-num{
      font-weight:950;
      color:rgba(5,48,26,.95);
      letter-spacing:-.3px;
      font-size:18px;
      line-height:1;
    }
    .trust-txt{font-size:12.5px; color:var(--muted); line-height:1.3}
    .hero-side{
      border-radius:var(--radius);
      border:1px solid rgba(16,185,129,.20);
      background:rgba(255,255,255,.72);
      box-shadow:var(--shadow2);
      padding:18px;
      overflow:hidden;
      min-height:320px;
      position:relative;
    }
    .hero-side:after{
      content:"";
      position:absolute;
      width:360px; height:360px;
      right:-180px; top:-190px;
      background:radial-gradient(circle at 30% 30%, rgba(0,200,83,.28), transparent 55%);
      pointer-events:none;
    }
    .side-inner{position:relative; z-index:1}
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .side-title h2{
      margin:0;
      font-size:16px;
      font-weight:900;
      letter-spacing:-.2px;
    }
    .pill{
      font-size:12px; color:rgba(5,48,26,.85);
      background:rgba(234,255,242,.92);
      border:1px solid rgba(16,185,129,.22);
      padding:7px 10px; border-radius:999px;
      font-weight:780;
      white-space:nowrap;
    }

    .metric-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .metric{
      padding:14px 12px;
      border-radius:16px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(16,185,129,.16);
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      will-change:transform;
    }
    .metric:hover{
      transform:translateY(-3px);
      border-color:rgba(16,185,129,.32);
      box-shadow:0 18px 30px rgba(0,0,0,.06);
    }
    .metric .k{
      font-size:13px; color:var(--muted2);
      margin-bottom:8px;
      display:flex; align-items:center; gap:8px;
    }
    .metric .k svg{width:16px; height:16px; opacity:.9}
    .metric .v{
      font-weight:980;
      letter-spacing:-.4px;
      font-size:20px;
      color:rgba(5,48,26,.98);
      line-height:1.1;
    }
    .side-note{
      margin-top:12px;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      border-top:1px dashed rgba(16,185,129,.22);
      padding-top:12px;
    }
    .side-form{
      margin-top:14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .quick-link{
      flex:1 1 auto;
      min-width:160px;
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(16,185,129,.22);
      background:linear-gradient(180deg, rgba(234,255,242,.9), rgba(255,255,255,.72));
      transition:transform .15s ease, border-color .15s ease;
      cursor:pointer;
    }
    .quick-link:hover{transform:translateY(-2px); border-color:rgba(16,185,129,.42)}
    .quick-left{display:flex; flex-direction:column; gap:4px}
    .quick-title{font-weight:900; font-size:13.5px}
    .quick-sub{font-size:12px; color:var(--muted)}
    .spark{
      width:34px; height:34px;
      border-radius:14px;
      background:rgba(0,200,83,.14);
      border:1px solid rgba(16,185,129,.22);
      display:flex; align-items:center; justify-content:center;
    }
    .spark svg{width:18px;height:18px; color:rgba(5,48,26,.95)}

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

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(16,185,129,.18);
      border-radius:var(--radius2);
      padding:16px;
      box-shadow:0 10px 24px rgba(0,0,0,.04);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 30px rgba(0,0,0,.06);
      border-color:rgba(16,185,129,.30);
    }
    .card h3{
      margin:0 0 8px;
      font-size:15.5px;
      font-weight:930;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .card .meta{
      margin-top:12px;
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .chip{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      background:var(--chip);
      border:1px solid rgba(16,185,129,.18);
      color:rgba(5,48,26,.92);
      font-weight:760;
      white-space:nowrap;
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .step{
      display:flex; gap:14px; align-items:flex-start;
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(16,185,129,.16);
      background:rgba(255,255,255,.78);
    }
    .step .num{
      width:38px; height:38px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(0,200,83,.16), rgba(0,200,83,.06));
      border:1px solid rgba(16,185,129,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(5,48,26,.95);
      flex:0 0 auto;
    }
    .step h3{
      margin:0 0 6px;
      font-size:15px; font-weight:920;
    }
    .step p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.7}

    .compare-wrap{
      border-radius:var(--radius);
      border:1px solid rgba(16,185,129,.18);
      background:rgba(255,255,255,.78);
      box-shadow:0 12px 26px rgba(0,0,0,.04);
      overflow:hidden;
    }
    .compare-top{
      padding:16px;
      border-bottom:1px solid rgba(16,185,129,.14);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .rating{
      display:flex; flex-direction:column; gap:6px;
      min-width:210px;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      color:rgba(0,200,83,.95);
      filter:drop-shadow(0 8px 12px rgba(0,200,83,.18));
    }
    .rating .score{
      font-weight:980;
      font-size:26px;
      letter-spacing:-.6px;
      color:rgba(5,48,26,.98);
      line-height:1.0;
    }
    .rating .rec{
      color:var(--muted);
      font-size:13px; line-height:1.4;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:13.5px;
    }
    thead th{
      text-align:left;
      padding:14px 14px;
      background:linear-gradient(180deg, rgba(234,255,242,.95), rgba(255,255,255,.72));
      color:rgba(5,48,26,.95);
      border-bottom:1px solid rgba(16,185,129,.18);
      font-weight:900;
      position:sticky;
      top:72px;
      z-index:1;
    }
    tbody td{
      padding:14px 14px;
      border-bottom:1px solid rgba(16,185,129,.10);
      color:rgba(23,32,42,.86);
      vertical-align:top;
    }
    tbody tr:hover td{background:rgba(0,200,83,.04)}
    .td-muted{color:var(--muted)}
    .tag-good{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,185,129,.22);
      background:rgba(234,255,242,.9);
      color:rgba(5,48,26,.95);
      font-weight:820;
      white-space:nowrap;
    }
    .tag-warn{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(217,45,32,.18);
      background:rgba(255,240,240,.9);
      color:#8b1f17;
      font-weight:820;
      white-space:nowrap;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .faq-item{
      border-radius:16px;
      border:1px solid rgba(16,185,129,.16);
      background:rgba(255,255,255,.78);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      text-align:left;
      background:transparent;
      border:0;
      padding:14px 14px;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:900;
      letter-spacing:-.1px;
      color:rgba(23,32,42,.9);
    }
    .faq-q:focus-visible{
      outline:3px solid var(--focus);
      outline-offset:-2px;
    }
    .faq-q span{color:var(--muted); font-weight:800; font-size:12.5px}
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition:max-height .25s ease;
      border-top:1px solid rgba(16,185,129,.12);
    }
    .faq-a .inner{
      padding:12px 14px 14px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .faq-item[data-open="true"] .faq-a{max-height:240px}
    .faq-plus{
      width:26px; height:26px;
      border-radius:12px;
      border:1px solid rgba(16,185,129,.18);
      background:rgba(234,255,242,.75);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .faq-item[data-open="true"] .faq-plus{
      border-color:rgba(16,185,129,.35);
      background:rgba(16,185,129,.10);
    }
    .faq-plus:before{
      content:"+";
      font-weight:980; color:rgba(5,48,26,.92);
      transform:translateY(-1px);
    }
    .faq-item[data-open="true"] .faq-plus:before{content:"×"; font-size:16px}

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(16,185,129,.18);
      background:
        radial-gradient(420px 120px at 10% 0%, rgba(0,200,83,.12), transparent 60%),
        rgba(255,255,255,.78);
      box-shadow:0 10px 24px rgba(0,0,0,.04);
    }
    .review .top{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      margin-bottom:10px;
    }
    .avatar{
      width:42px;height:42px;border-radius:16px;
      background:linear-gradient(180deg, rgba(0,200,83,.18), rgba(0,200,83,.06));
      border:1px solid rgba(16,185,129,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      color:rgba(5,48,26,.95);
    }
    .review .who{
      display:flex; flex-direction:column; gap:4px; min-width:0;
      flex:1;
    }
    .review .role{
      font-weight:950; letter-spacing:-.2px;
      font-size:14px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .review .area{
      color:var(--muted2);
      font-size:12.5px;
    }
    .review .stars{
      gap:4px; margin-top:2px;
    }
    .review .stars svg{width:16px;height:16px}
    .review .text{
      color:var(--muted);
      font-size:13.5px; line-height:1.7;
      margin:0;
    }

    .gallery-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .case{
      border-radius:var(--radius2);
      border:1px solid rgba(16,185,129,.18);
      background:rgba(255,255,255,.78);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      min-height:240px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .case:hover{
      transform:translateY(-3px);
      border-color:rgba(16,185,129,.34);
      box-shadow:0 18px 30px rgba(0,0,0,.06);
    }
    .case-media{
      padding:14px;
      background:
        radial-gradient(420px 140px at 10% 0%, rgba(0,200,83,.12), transparent 60%),
        linear-gradient(180deg, rgba(234,255,242,.62), rgba(255,255,255,.0));
      border-bottom:1px solid rgba(16,185,129,.12);
    }
    .case-media .mini-bar{
      height:10px; border-radius:999px;
      background:linear-gradient(90deg, rgba(0,200,83,.9), rgba(20,200,107,.20));
      width:62%;
      margin:2px 0 10px;
      opacity:.95;
    }
    .case-media h3{
      margin:0;
      font-weight:950;
      letter-spacing:-.25px;
      font-size:15px;
    }
    .case-body{
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
      flex:1;
    }
    .case-body p{
      margin:0;
      color:var(--muted);
      font-size:13.5px; line-height:1.7;
    }
    .case-foot{
      display:flex; gap:8px; flex-wrap:wrap; align-items:center;
      margin-top:auto;
    }
    .link-row{
      display:flex; gap:10px; flex-wrap:wrap;
      padding-top:14px;
      border-top:1px dashed rgba(16,185,129,.22);
    }

    .form-card{
      border-radius:var(--radius);
      border:1px solid rgba(16,185,129,.18);
      background:rgba(255,255,255,.78);
      box-shadow:0 12px 26px rgba(0,0,0,.04);
      overflow:hidden;
    }
    .form-inner{
      padding:18px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .form-inner .side{
      padding:6px 0;
    }
    .form-inner h3{
      margin:0 0 8px;
      font-size:16px;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .form-inner p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    form{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .field-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    label{
      display:flex; flex-direction:column; gap:8px;
      font-size:12.5px; color:rgba(23,32,42,.78); font-weight:820;
    }
    input, select, textarea{
      width:100%;
      border:1px solid rgba(16,185,129,.20);
      background:rgba(255,255,255,.86);
      border-radius:14px;
      padding:12px 12px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(16,185,129,.50);
      box-shadow:0 0 0 4px rgba(16,185,129,.18);
    }
    .form-actions{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:4px;
    }
    .hint{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.5;
    }

    .tag-cloud{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:12px;
    }
    .tag-cloud a{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,185,129,.16);
      background:rgba(255,255,255,.75);
      color:rgba(23,32,42,.84);
      font-weight:800;
      font-size:12.5px;
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tag-cloud a:hover{
      transform:translateY(-2px);
      border-color:rgba(16,185,129,.34);
      background:rgba(234,255,242,.85);
    }

    .network-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .network-map{
      border-radius:var(--radius2);
      border:1px solid rgba(16,185,129,.18);
      background:
        radial-gradient(520px 180px at 10% 0%, rgba(0,200,83,.12), transparent 60%),
        rgba(255,255,255,.78);
      overflow:hidden;
      padding:16px;
    }
    .map-title{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .map-title h3{margin:0; font-size:15.5px; font-weight:950; letter-spacing:-.2px}
    .region-list{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
    }
    .region{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(16,185,129,.16);
      background:rgba(255,255,255,.78);
    }
    .region .rname{font-weight:930; font-size:13.5px; letter-spacing:-.1px}
    .region .rcnt{color:var(--muted); font-size:12.5px; margin-top:6px; line-height:1.4}
    .mini-bullets{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(16,185,129,.18);
      background:rgba(255,255,255,.78);
    }
    .mini-bullets h3{
      margin:0 0 10px;
      font-size:15.5px;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .mini-bullets ul{
      margin:0; padding-left:18px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.8;
    }
    .mini-bullets li{margin:6px 0}

    .article-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      border-radius:var(--radius);
      border:1px solid rgba(16,185,129,.18);
      background:rgba(255,255,255,.78);
      overflow:hidden;
    }
    .article-list .head{
      padding:16px;
      border-bottom:1px solid rgba(16,185,129,.14);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .article-list h3{margin:0; font-size:16px; font-weight:950}
    .article-list .sub{color:var(--muted); font-size:13.5px; margin-top:6px; line-height:1.6}
    .article-items{padding:8px}
    .article-item{
      padding:12px 12px;
      border-radius:14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      border:1px solid transparent;
      transition:background .15s ease, border-color .15s ease, transform .15s ease;
      margin:8px;
      background:rgba(255,255,255,.68);
    }
    .article-item:hover{
      transform:translateY(-2px);
      border-color:rgba(16,185,129,.28);
      background:rgba(234,255,242,.65);
    }
    .article-item .left{
      min-width:0; flex:1;
    }
    .article-item .title{
      font-weight:950;
      font-size:13.8px;
      letter-spacing:-.2px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .article-item .desc{
      margin-top:6px;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.6;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .article-item .go{
      color:rgba(5,48,26,.95);
      font-weight:920;
      font-size:12.5px;
      white-space:nowrap;
      align-self:flex-start;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,185,129,.20);
      background:rgba(234,255,242,.86);
    }

    .resource-card{
      border-radius:var(--radius);
      border:1px solid rgba(16,185,129,.18);
      background:
        radial-gradient(520px 180px at 10% 0%, rgba(0,200,83,.12), transparent 60%),
        rgba(255,255,255,.78);
      padding:18px;
      box-shadow:0 12px 26px rgba(0,0,0,.04);
      overflow:hidden;
      position:relative;
    }
    .resource-card:after{
      content:"";
      position:absolute;
      width:260px;height:260px;
      right:-120px; bottom:-140px;
      background:radial-gradient(circle at 30% 30%, rgba(0,200,83,.22), transparent 60%);
      pointer-events:none;
    }
    .resource-inner{position:relative; z-index:1}
    .resource-card h3{margin:0 0 8px; font-size:16px; font-weight:950}
    .resource-card p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .resource-img-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
      align-items:stretch;
    }
    .img-box{
      border-radius:16px;
      border:1px solid rgba(16,185,129,.18);
      background:rgba(255,255,255,.72);
      padding:10px;
    }
    .img-box img{
      width:100%;
      height:auto;
      display:block;
      border-radius:12px;
    }
    .resource-foot{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      padding-top:12px;
      border-top:1px dashed rgba(16,185,129,.22);
    }

    footer{
      background:linear-gradient(180deg, rgba(10,20,16,.04), rgba(0,0,0,.02));
      border-top:1px solid rgba(16,185,129,.14);
      padding:24px 0 26px;
      margin-top:8px;
    }
    .footer-inner{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .footer-col{
      min-width:220px;
      flex:1;
    }
    .footer-title{font-weight:980; letter-spacing:-.25px}
    .footer-text{
      margin-top:10px;
      color:var(--muted);
      font-size:13.5px; line-height:1.7;
      max-width:520px;
    }
    .footer-links{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .footer-links a{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,185,129,.18);
      background:rgba(255,255,255,.65);
      font-weight:860;
      font-size:12.5px;
      color:rgba(23,32,42,.84);
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .footer-links a:hover{
      transform:translateY(-2px);
      border-color:rgba(16,185,129,.34);
      background:rgba(234,255,242,.7);
    }
    .copyright{
      margin-top:16px;
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.6;
    }

    .floating{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-card{
      pointer-events:auto;
      border-radius:18px;
      border:1px solid rgba(16,185,129,.22);
      background:rgba(255,255,255,.82);
      box-shadow:0 18px 40px rgba(0,0,0,.10);
      overflow:hidden;
      width:150px;
      transform:translateY(6px);
      opacity:.98;
    }
    .float-head{
      padding:10px 12px;
      background:linear-gradient(180deg, rgba(234,255,242,.92), rgba(255,255,255,.70));
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(16,185,129,.14);
      font-weight:950;
      font-size:12.8px;
    }
    .float-img{
      padding:10px;
      display:flex; justify-content:center;
      background:rgba(255,255,255,.65);
    }
    .float-img img{
      width:110px; height:auto;
      border-radius:12px;
      border:1px solid rgba(16,185,129,.18);
      background:#fff;
    }
    .float-actions{
      pointer-events:auto;
      display:flex; gap:10px; align-items:center;
    }
    .to-top{
      pointer-events:auto;
      width:44px;height:44px;border-radius:16px;
      border:1px solid rgba(16,185,129,.22);
      background:rgba(255,255,255,.82);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      box-shadow:0 18px 40px rgba(0,0,0,.10);
      transition:transform .15s ease, border-color .15s ease;
    }
    .to-top:hover{transform:translateY(-3px); border-color:rgba(16,185,129,.45)}
    .to-top svg{width:18px;height:18px; color:rgba(5,48,26,.95)}

    .reveal{
      opacity:0;
      transform:translateY(10px);
      transition:opacity .6s ease, transform .6s ease;
    }
    .reveal.show{opacity:1; transform:translateY(0)}
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-card{min-height:auto}
      .hero-side{min-height:auto}
      nav .nav-links{display:none}
      .nav-cta{min-width:auto}
      .menu-btn{display:flex}
      .mobile-panel{display:none}
      .mobile-panel.show{display:block}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .faq{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .gallery-grid{grid-template-columns: 1fr}
      .form-inner{grid-template-columns:1fr}
      .network-grid{grid-template-columns:1fr}
      .region-list{grid-template-columns:1fr 1fr}
      .article-grid{grid-template-columns:1fr}
      thead th{position:relative; top:auto}
    }