:root{
      --bg0:#f6fbf7;
      --bg1:#f1fbf3;
      --card:#ffffff;
      --text:#14181c;
      --muted:#5a6772;
      --muted2:#7a8894;
      --line:rgba(20,24,28,.10);
      --line2:rgba(20,24,28,.14);
      --shadow:0 18px 45px rgba(15, 23, 42, .08);
      --shadow2:0 10px 30px rgba(16, 185, 129, .14);
      --green:#16c56f;
      --green2:#0fb862;
      --green3:#0aa34e;
      --lime:#b9ff3b;
      --focus:rgba(22,197,111,.22);
      --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 Neue", Arial, "Noto Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 18% -10%, rgba(22,197,111,.18), transparent 55%),
        radial-gradient(1000px 520px at 85% 0%, rgba(185,255,59,.13), transparent 55%),
        linear-gradient(180deg, var(--bg1) 0%, #ffffff 40%, #ffffff 100%);
    }

    .skip-link{
      position:absolute; left:-999px; top:8px;
      background:var(--card); color:var(--text);
      border:1px solid var(--line2); border-radius:999px;
      padding:10px 14px; z-index:9999;
      box-shadow:var(--shadow);
    }
    .skip-link:focus{left:12px}

    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      background:rgba(246,251,247,.72);
      backdrop-filter:saturate(160%) blur(10px);
      border-bottom:1px solid rgba(20,24,28,.08);
    }
    .header-inner{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand-link{display:inline-flex; align-items:center; gap:10px; text-decoration:none}
    .ai-page-logo{width:44px; height:auto}

    .nav{display:flex; align-items:center; gap:10px}
    .nav-toggle{
      display:none;
      border:1px solid var(--line2);
      background:rgba(255,255,255,.75);
      color:var(--text);
      border-radius:12px;
      padding:10px 12px;
      gap:10px;
      align-items:center;
    }
    .nav-toggle-lines{
      width:18px; height:12px; position:relative; display:inline-block;
    }
    .nav-toggle-lines::before,.nav-toggle-lines::after{
      content:""; position:absolute; left:0; right:0; height:2px; background:currentColor; border-radius:2px;
    }
    .nav-toggle-lines::before{top:0}
    .nav-toggle-lines::after{bottom:0}
    .nav-toggle-lines{background:linear-gradient(currentColor,currentColor); background-size:100% 2px; background-position:center; background-repeat:no-repeat}
    .nav-toggle-text{font-weight:700; font-size:14px}

    .nav-menu{
      display:flex; align-items:center; justify-content:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .nav-item{
      text-decoration:none;
      color:var(--muted);
      font-weight:650;
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition:background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
    }
    .nav-item:hover{
      background:rgba(22,197,111,.08);
      border-color:rgba(22,197,111,.20);
      color:var(--text);
      transform:translateY(-1px);
    }
    .nav-cta-small{
      border-color:rgba(22,197,111,.25);
      background:rgba(22,197,111,.10);
      color:var(--text);
    }

    .header-actions{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(20,24,28,.12);
      text-decoration:none;
      color:var(--text);
      background:#fff;
      font-weight:750;
      font-size:14px;
      transition:transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .btn:hover{transform:translateY(-1px)}
    .btn-solid{
      background:linear-gradient(180deg, rgba(22,197,111,1), rgba(15,184,98,1));
      border-color:rgba(16,185,129,.5);
      color:#052012;
      box-shadow:0 18px 40px rgba(16,185,129,.18);
    }
    .btn-solid:hover{box-shadow:0 22px 50px rgba(16,185,129,.24)}
    .btn-ghost{
      background:rgba(255,255,255,.70);
      border-color:rgba(20,24,28,.12);
    }
    .btn-green{
      background:rgba(22,197,111,.10);
      border-color:rgba(22,197,111,.30);
      color:var(--text);
    }
    .btn-link{
      background:transparent;
      border-color:transparent;
      padding:10px 0;
      color:rgba(20,24,28,.72);
      font-weight:780;
      text-decoration:none;
    }
    .btn-link:hover{color:var(--text); transform:none}
    .btn-lg{padding:12px 16px; border-radius:16px; font-size:15px}
    .btn-icon{display:inline-flex}
    .btn-icon-right{display:inline-flex}

    .btn-block{width:100%}
    .inline-cta{
      margin-top:18px;
      display:flex; align-items:center; justify-content:space-between;
      gap:16px;
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(22,197,111,.26);
      background:linear-gradient(180deg, rgba(22,197,111,.10), rgba(255,255,255,.88));
      box-shadow:0 14px 35px rgba(22,197,111,.10);
    }
    .inline-cta-title{font-weight:900; letter-spacing:.2px}
    .inline-cta-sub{color:var(--muted); margin-top:4px; font-size:14px}
    .inline-cta-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

    .hero{
      position:relative;
      padding:34px 0 22px;
      overflow:hidden;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:22px;
      align-items:start;
    }
    .hero-copy{padding:12px 0}
    .badge-row{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px}
    .badge{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:8px 12px;
      font-weight:800;
      font-size:12.5px;
      border:1px solid rgba(20,24,28,.10);
      color:rgba(20,24,28,.78);
      background:rgba(255,255,255,.75);
    }
    .badge-green{border-color:rgba(22,197,111,.30); background:rgba(22,197,111,.10); color:#075022}
    .badge-muted{background:rgba(255,255,255,.75)}
    .badge-green-soft{border-color:rgba(185,255,59,.25); background:rgba(185,255,59,.10); color:#234f15}

    .hero-title{
      margin:0;
      font-size:40px;
      line-height:1.12;
      letter-spacing:-.5px;
    }
    .hero-subtitle{
      margin:14px 0 0;
      color:var(--muted);
      font-size:16px;
      line-height:1.75;
      max-width:62ch;
    }
    .hero-actions{
      margin-top:18px;
      display:flex; gap:12px; flex-wrap:wrap;
    }
    .btn-underline{
      height:3px; width:0; background:rgba(0,0,0,.18);
      border-radius:4px; transition:width .25s ease;
    }
    .btn-solid:hover .btn-underline{width:100%}

    .hero-trust{
      margin-top:18px;
      display:flex; align-items:center; gap:14px; flex-wrap:wrap;
      padding:14px 14px;
      border-radius:var(--radius);
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 28px rgba(15,23,42,.06);
    }
    .trust-item{min-width:160px}
    .trust-num{font-weight:950; font-size:18px}
    .trust-unit{font-size:14px; color:var(--muted2); font-weight:850; margin-left:4px}
    .trust-label{margin-top:4px; color:var(--muted); font-size:13px; font-weight:700}
    .trust-divider{width:1px; height:36px; background:rgba(20,24,28,.10)}

    .hero-panel{
      border-radius:var(--radius2);
      background:
        radial-gradient(800px 340px at 20% 0%, rgba(22,197,111,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.75));
      border:1px solid rgba(22,197,111,.20);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .panel-top{
      padding:18px 18px 10px;
      border-bottom:1px solid rgba(20,24,28,.08);
      background:linear-gradient(180deg, rgba(22,197,111,.08), rgba(255,255,255,.70));
    }
    .panel-title{
      font-weight:950;
      display:flex; align-items:center; gap:10px;
    }
    .panel-dot{
      width:10px; height:10px; border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 6px rgba(22,197,111,.16);
    }
    .panel-hint{margin-top:6px; color:var(--muted); font-size:13px; font-weight:720}

    .kpi-grid{
      padding:16px;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .kpi-card{
      border-radius:18px;
      border:1px solid rgba(20,24,28,.09);
      background:rgba(255,255,255,.72);
      padding:14px 14px;
      box-shadow:0 10px 24px rgba(15,23,42,.04);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .kpi-card:hover{
      transform:translateY(-2px);
      border-color:rgba(22,197,111,.25);
      box-shadow:0 18px 35px rgba(16,185,129,.12);
    }
    .kpi-icon{
      color:rgba(6,95,53,.95);
      display:inline-flex;
      width:36px; height:36px;
      border-radius:12px;
      border:1px solid rgba(22,197,111,.22);
      background:rgba(22,197,111,.10);
      align-items:center; justify-content:center;
    }
    .kpi-value{margin-top:10px; font-weight:950; letter-spacing:-.2px}
    .kpi-desc{margin-top:6px; color:var(--muted); font-size:13px; line-height:1.55}

    .panel-bottom{
      padding:14px 16px 18px;
      border-top:1px solid rgba(20,24,28,.08);
    }
    .mini-row{display:flex; gap:10px; align-items:flex-start; margin:10px 0}
    .mini-bullet{
      width:9px; height:9px; border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 6px rgba(22,197,111,.14);
      margin-top:6px;
      flex:0 0 auto;
    }
    .mini-bullet-2{background:#8cff4a}
    .mini-text{color:var(--muted); font-weight:750; font-size:13.5px; line-height:1.6}
    .panel-actions{display:flex; gap:12px; align-items:center; margin-top:14px; flex-wrap:wrap}
    .chat-pop-actions .btn{justify-content:center}

    .hero-decoration{
      position:absolute; inset:0; pointer-events:none;
    }
    .grid-orb{
      position:absolute;
      width:360px; height:360px;
      border-radius:50%;
      background:
        radial-gradient(circle at 30% 30%, rgba(185,255,59,.30), transparent 55%),
        radial-gradient(circle at 60% 70%, rgba(22,197,111,.22), transparent 60%);
      filter: blur(1px);
      opacity:.9;
      transform:translate3d(0,0,0);
      animation: floaty 9s ease-in-out infinite;
    }
    .orb-1{top:-140px; left:-120px; animation-delay:-2s}
    .orb-2{bottom:-160px; right:-140px; animation-delay:-5s}
    .grid-line{
      position:absolute;
      left:-20%;
      top:58%;
      width:140%;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(22,197,111,.45), transparent);
      opacity:.45;
      transform:rotate(-6deg);
    }
    @keyframes floaty{
      0%,100%{transform:translateY(0) scale(1)}
      50%{transform:translateY(14px) scale(1.02)}
    }

    .section{
      padding:34px 0;
    }
    .section-inner{padding:0}
    .section-soft{background:linear-gradient(180deg, rgba(22,197,111,.06), rgba(255,255,255,0)); border-top:1px solid rgba(20,24,28,.06); border-bottom:1px solid rgba(20,24,28,.06)}
    .section-soft-2{background:linear-gradient(180deg, rgba(22,197,111,.07), rgba(255,255,255,0)); border-top:1px solid rgba(20,24,28,.06)}
    .section-soft-3{background:linear-gradient(180deg, rgba(185,255,59,.10), rgba(255,255,255,0)); border-top:1px solid rgba(20,24,28,.06)}
    .section-footer{padding:28px 0 40px}

    .section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px}
    .split-head{align-items:flex-start}
    .section-title{
      margin:0;
      font-size:28px;
      line-height:1.25;
      letter-spacing:-.3px;
    }
    .section-subtitle{
      margin:10px 0 0;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.75;
      max-width:68ch;
      font-weight:650;
    }
    .section-side{display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap; align-items:center}

    .section-head.split-head .section-side{margin-top:6px}

    .cards-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .feature-card{
      border-radius:var(--radius);
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,28,.10);
      box-shadow:0 14px 35px rgba(15,23,42,.05);
      padding:18px;
      transition:transform .18s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .feature-card:hover{
      transform:translateY(-2px);
      border-color:rgba(22,197,111,.25);
      box-shadow:0 18px 45px rgba(16,185,129,.12);
    }
    .feature-card-green{
      background:
        radial-gradient(900px 300px at 18% 0%, rgba(22,197,111,.22), transparent 60%),
        rgba(255,255,255,.82);
      border-color:rgba(22,197,111,.26);
    }
    .feature-top{display:flex; align-items:center; justify-content:space-between}
    .feature-tag{
      display:inline-flex;
      border-radius:999px;
      padding:8px 12px;
      background:rgba(20,24,28,.05);
      border:1px solid rgba(20,24,28,.08);
      font-size:12.5px;
      font-weight:900;
      color:rgba(20,24,28,.75);
    }
    .feature-tag-green{
      background:rgba(22,197,111,.10);
      border-color:rgba(22,197,111,.25);
      color:#075022;
    }
    .feature-title{margin:12px 0 0; font-size:18px; letter-spacing:-.2px}
    .feature-text{margin:10px 0 0; color:var(--muted); line-height:1.75; font-weight:650; font-size:14.5px}
    .feature-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .feature-li{display:flex; gap:10px; align-items:center; font-weight:800; color:rgba(20,24,28,.78)}
    .check{display:inline-flex; width:18px; height:18px; border-radius:6px; align-items:center; justify-content:center; background:rgba(22,197,111,.12); color:var(--green3); font-weight:950}

    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .service-card{
      border-radius:var(--radius);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.76);
      padding:16px;
      box-shadow:0 14px 35px rgba(15,23,42,.05);
      transition:transform .18s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .service-card:hover{
      transform:translateY(-2px);
      border-color:rgba(22,197,111,.25);
      box-shadow:0 18px 45px rgba(16,185,129,.12);
    }
    .service-card-wide{grid-column: span 3}
    .service-card-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .service-icon{
      width:40px; height:40px;
      border-radius:14px;
      border:1px solid rgba(22,197,111,.22);
      background:rgba(22,197,111,.10);
      display:flex; align-items:center; justify-content:center;
      color:#075022;
    }
    .service-title{margin:0; font-size:18px}
    .service-text{margin:0; color:var(--muted); font-weight:650; line-height:1.7; font-size:14.5px}
    .service-link{
      margin-top:auto;
      color:rgba(7,80,34,.95);
      font-weight:900;
      text-decoration:none;
      padding-top:6px;
      display:inline-flex; align-items:center; gap:8px;
    }
    .service-link::after{content:"→"; opacity:.9}
    .chip-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}
    .chip{
      border-radius:999px;
      padding:8px 12px;
      background:rgba(20,24,28,.05);
      border:1px solid rgba(20,24,28,.08);
      font-weight:850;
      font-size:12.5px;
      color:rgba(20,24,28,.75);
    }
    .chip-green{
      background:rgba(22,197,111,.10);
      border-color:rgba(22,197,111,.25);
      color:#075022;
    }

    .timeline-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.72);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
    }
    .timeline{
      list-style:none;
      margin:0; padding:0;
      display:grid;
      gap:12px;
    }
    .time-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.75);
      transition:transform .18s ease, border-color .2s ease;
    }
    .time-item:hover{transform:translateY(-2px); border-color:rgba(22,197,111,.25)}
    .time-dot{
      width:12px; height:12px; border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 6px rgba(22,197,111,.14);
      margin-top:6px;
      flex:0 0 auto;
    }
    .time-title{font-weight:950}
    .time-text{color:var(--muted); font-weight:650; margin-top:6px; line-height:1.7; font-size:14.5px}

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

    .glass-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:
        radial-gradient(900px 350px at 20% 0%, rgba(22,197,111,.16), transparent 60%),
        rgba(255,255,255,.80);
      box-shadow:0 14px 35px rgba(15,23,42,.05);
      padding:18px;
    }
    .glass-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .glass-title{margin:0; font-size:20px}
    .glass-sub{margin-top:6px; color:var(--muted); font-weight:680; font-size:14px}
    .advice-list{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .advice-item{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:16px; border:1px solid rgba(20,24,28,.08); background:rgba(255,255,255,.76)}
    .advice-key{font-weight:950; min-width:92px}
    .advice-val{color:var(--muted); font-weight:650; line-height:1.6; font-size:14.5px}
    .glass-actions{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap}

    .model-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.80);
      box-shadow:0 14px 35px rgba(15,23,42,.05);
      padding:18px;
      overflow:hidden;
    }
    .model-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .model-title{margin:0; font-size:20px}
    .model-sub{margin-top:6px; color:var(--muted); font-weight:680; font-size:14px}
    .model-grid{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px;
      max-height:210px;
      overflow:auto;
      padding-right:6px;
    }
    .model-grid::-webkit-scrollbar{height:10px; width:10px}
    .model-grid::-webkit-scrollbar-thumb{background:rgba(22,197,111,.28); border-radius:999px}
    .model-chip{
      border-radius:999px;
      padding:8px 12px;
      background:rgba(22,197,111,.08);
      border:1px solid rgba(22,197,111,.18);
      font-weight:880;
      font-size:12.5px;
      color:#075022;
    }
    .model-bottom{margin-top:14px; display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .model-note{color:var(--muted); font-weight:680; line-height:1.7; font-size:14px; display:flex; gap:10px; align-items:flex-start}
    .model-bullet{width:10px; height:10px; border-radius:50%; background:var(--green); box-shadow:0 0 0 6px rgba(22,197,111,.14); margin-top:6px}

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .industry-card{
      border-radius:var(--radius);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.78);
      padding:16px;
      box-shadow:0 14px 35px rgba(15,23,42,.05);
      transition:transform .18s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .industry-card:hover{
      transform:translateY(-2px);
      border-color:rgba(22,197,111,.25);
      box-shadow:0 18px 45px rgba(16,185,129,.12);
    }
    .industry-card-wide{grid-column: span 3}
    .industry-title{display:flex; align-items:center; gap:10px; font-weight:950}
    .industry-icon{
      width:40px; height:40px;
      border-radius:14px;
      border:1px solid rgba(22,197,111,.22);
      background:rgba(22,197,111,.10);
      display:flex; align-items:center; justify-content:center;
      color:#075022;
    }
    .industry-text{margin-top:10px; color:var(--muted); font-weight:650; line-height:1.7; font-size:14.5px}
    .industry-tags{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
    .industry-wide-top{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .industry-wide-title{font-weight:980; font-size:18px}
    .industry-wide-sub{margin-top:6px; color:var(--muted); font-weight:680; line-height:1.65}
    .industry-wide-bottom{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .small-badge{
      border-radius:999px;
      padding:8px 12px;
      background:rgba(20,24,28,.05);
      border:1px solid rgba(20,24,28,.08);
      font-weight:900;
      font-size:12.5px;
      color:rgba(20,24,28,.75);
    }

    .process-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .process-col{display:flex; flex-direction:column; gap:14px}
    .process-step{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.80);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
      display:flex;
      gap:14px;
      align-items:flex-start;
      transition:transform .18s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .process-step:hover{
      transform:translateY(-2px);
      border-color:rgba(22,197,111,.25);
      box-shadow:0 18px 45px rgba(16,185,129,.12);
    }
    .process-step-highlight{
      background:
        radial-gradient(900px 280px at 20% 0%, rgba(22,197,111,.22), transparent 60%),
        rgba(255,255,255,.84);
      border-color:rgba(22,197,111,.30);
    }
    .step-num{
      width:42px; height:42px;
      border-radius:16px;
      background:rgba(20,24,28,.06);
      border:1px solid rgba(20,24,28,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(20,24,28,.78);
      flex:0 0 auto;
    }
    .step-num-green{
      background:rgba(22,197,111,.12);
      border-color:rgba(22,197,111,.25);
      color:#075022;
    }
    .step-title{margin:0; font-size:18px; font-weight:950}
    .step-text{margin-top:8px; color:var(--muted); font-weight:650; line-height:1.7; font-size:14.5px}

    .mini-banner{
      margin-top:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(22,197,111,.22);
      background:linear-gradient(180deg, rgba(22,197,111,.10), rgba(255,255,255,.86));
      box-shadow:0 14px 35px rgba(16,185,129,.10);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .mini-banner-title{font-weight:980}
    .mini-banner-sub{margin-top:6px; color:var(--muted); font-weight:680; line-height:1.65}

    .cases-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .case-card{
      border-radius:var(--radius);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 14px 35px rgba(15,23,42,.05);
      padding:16px;
      transition:transform .18s ease, border-color .2s ease, box-shadow .2s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:190px;
    }
    .case-card:hover{
      transform:translateY(-2px);
      border-color:rgba(22,197,111,.25);
      box-shadow:0 18px 45px rgba(16,185,129,.12);
    }
    .case-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .case-badge{
      border-radius:999px;
      padding:8px 12px;
      font-weight:950;
      font-size:12.5px;
      border:1px solid rgba(22,197,111,.25);
      background:rgba(22,197,111,.10);
      color:#075022;
    }
    .case-score{color:rgba(20,24,28,.72); font-weight:900; font-size:13px}
    .star{color:#16c56f}
    .case-title{margin:0; font-size:18px; font-weight:980}
    .case-text{margin:0; color:var(--muted); font-weight:650; line-height:1.7; font-size:14.5px}
    .case-meta{margin-top:auto; display:flex; gap:10px; flex-wrap:wrap}
    .meta-pill{
      border-radius:999px;
      padding:8px 12px;
      background:rgba(20,24,28,.05);
      border:1px solid rgba(20,24,28,.08);
      font-weight:900;
      font-size:12.5px;
      color:rgba(20,24,28,.75);
    }
    .meta-pill-green{
      background:rgba(22,197,111,.10);
      border-color:rgba(22,197,111,.25);
      color:#075022;
    }
    .cases-bottom{
      margin-top:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.76);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
    }
    .cases-bottom-title{font-weight:980}
    .cases-bottom-sub{margin-top:6px; color:var(--muted); font-weight:680; line-height:1.65}
    .cases-bottom-right{display:flex; gap:10px; flex-wrap:wrap}

    .compare-grid{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:start;
    }
    .rating-card{
      border-radius:var(--radius2);
      border:1px solid rgba(22,197,111,.25);
      background:
        radial-gradient(900px 340px at 20% 0%, rgba(22,197,111,.24), transparent 60%),
        rgba(255,255,255,.86);
      box-shadow:0 18px 45px rgba(16,185,129,.12);
      padding:18px;
      position:sticky;
      top:92px;
    }
    .rating-top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
    .rating-badge{
      border-radius:999px;
      padding:8px 12px;
      background:rgba(22,197,111,.10);
      border:1px solid rgba(22,197,111,.25);
      font-weight:950;
      color:#075022;
      font-size:12.5px;
    }
    .rating-stars{color:#1bd26c; font-weight:950; letter-spacing:1px}
    .rating-score{margin-top:14px; display:flex; align-items:flex-end; gap:8px}
    .rating-number{font-size:52px; font-weight:1000; letter-spacing:-1px; line-height:1}
    .rating-total{font-size:18px; font-weight:950; color:var(--muted); padding-bottom:8px}
    .rating-desc{margin-top:10px; color:var(--muted); font-weight:680; line-height:1.7}
    .rating-actions{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}
    .side-note{
      margin-top:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.75);
      padding:14px;
      box-shadow:0 14px 35px rgba(15,23,42,.04);
    }
    .side-note-title{font-weight:980}
    .side-note-text{margin-top:8px; color:var(--muted); font-weight:680; line-height:1.7}

    .compare-table-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.80);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      overflow:hidden;
    }
    .compare-table-head{padding:16px; border-bottom:1px solid rgba(20,24,28,.08); background:linear-gradient(180deg, rgba(22,197,111,.08), rgba(255,255,255,.78))}
    .compare-table-title{font-weight:980}
    .compare-table-sub{margin-top:6px; color:var(--muted); font-weight:680}

    .table-scroll{overflow:auto}
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width:640px;
    }
    .compare-table th,.compare-table td{
      border-bottom:1px solid rgba(20,24,28,.08);
      padding:12px 14px;
      text-align:left;
      vertical-align:top;
      font-size:14.5px;
    }
    .compare-table th{
      color:rgba(20,24,28,.78);
      font-weight:980;
      background:rgba(255,255,255,.65);
      position:sticky;
      top:0;
      z-index:1;
    }
    .compare-table td{color:var(--text); font-weight:650}
    .compare-cta-row{
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
      border-top:1px solid rgba(20,24,28,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(22,197,111,.06));
    }
    .compare-cta-title{font-weight:1000}
    .compare-cta-sub{margin-top:6px; color:var(--muted); font-weight:680; line-height:1.65}
    .compare-cta-actions{display:flex; gap:10px; flex-wrap:wrap}

    .compare-details{
      margin-top:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.76);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
    }
    .details-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
    .detail-item{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
    }
    .detail-title{font-weight:980}
    .detail-text{margin-top:8px; color:var(--muted); font-weight:680; line-height:1.7; font-size:14.5px}

    .network-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .map-card{
      height:100%;
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:
        radial-gradient(900px 350px at 20% 0%, rgba(22,197,111,.18), transparent 60%),
        rgba(255,255,255,.84);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:18px;
      display:flex; flex-direction:column;
    }
    .map-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .map-title{font-weight:1000; font-size:18px}
    .map-sub{margin-top:6px; color:var(--muted); font-weight:680; line-height:1.65}
    .map-list{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .map-li{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
    }
    .map-icon{
      width:38px; height:38px;
      border-radius:14px;
      border:1px solid rgba(22,197,111,.22);
      background:rgba(22,197,111,.10);
      display:flex; align-items:center; justify-content:center;
      color:#075022;
      flex:0 0 auto;
      margin-top:2px;
    }
    .map-icon-2{border-color:rgba(185,255,59,.25); background:rgba(185,255,59,.10); color:#234f15}
    .map-icon-3{border-color:rgba(22,197,111,.18); background:rgba(22,197,111,.08); color:#075022}
    .map-text{color:var(--muted); font-weight:680; line-height:1.7; font-size:14.5px}
    .map-actions{margin-top:auto; display:flex; gap:10px; flex-wrap:wrap; padding-top:14px}

    .network-cards{display:flex; flex-direction:column; gap:14px; height:100%}
    .net-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
      flex:1 1 auto;
    }
    .net-card-2{
      background:linear-gradient(180deg, rgba(22,197,111,.10), rgba(255,255,255,.86));
      border-color:rgba(22,197,111,.22);
    }
    .net-title{font-weight:1000}
    .net-value{margin-top:8px; font-weight:850; color:rgba(20,24,28,.82); line-height:1.6}
    .net-tags{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
    .net-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .net-note{margin-top:10px; color:var(--muted); font-weight:680; line-height:1.7}

    .match-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .match-left{display:flex; flex-direction:column; gap:14px}
    .match-intro{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.80);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:18px;
    }
    .match-title{font-size:18px; font-weight:1000}
    .match-text{margin-top:10px; color:var(--muted); font-weight:680; line-height:1.7}
    .quick-chips{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .qchip{
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(20,24,28,.12);
      background:rgba(255,255,255,.82);
      color:var(--text);
      font-weight:900;
      font-size:13px;
      cursor:pointer;
      transition:transform .15s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .qchip:hover{
      transform:translateY(-1px);
      border-color:rgba(22,197,111,.30);
      box-shadow:0 14px 30px rgba(16,185,129,.10);
    }

    .match-benefits{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:
        radial-gradient(900px 320px at 18% 0%, rgba(22,197,111,.18), transparent 60%),
        rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:18px;
    }
    .benefit-item{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:18px; border:1px solid rgba(20,24,28,.08); background:rgba(255,255,255,.78); margin-bottom:12px}
    .benefit-item:last-child{margin-bottom:0}
    .benefit-icon{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(22,197,111,.22);
      background:rgba(22,197,111,.10);
      color:#075022; display:flex; align-items:center; justify-content:center; flex:0 0 auto; margin-top:2px;
    }
    .benefit-icon-2{border-color:rgba(185,255,59,.25); background:rgba(185,255,59,.10); color:#234f15}
    .benefit-icon-3{border-color:rgba(22,197,111,.18); background:rgba(22,197,111,.08); color:#075022}
    .benefit-title{font-weight:1000}
    .benefit-text{margin-top:6px; color:var(--muted); font-weight:680; line-height:1.7; font-size:14.5px}

    .match-form-card{
      border-radius:var(--radius2);
      border:1px solid rgba(22,197,111,.25);
      background:
        radial-gradient(900px 360px at 20% 0%, rgba(22,197,111,.22), transparent 60%),
        rgba(255,255,255,.86);
      box-shadow:0 18px 45px rgba(16,185,129,.12);
      padding:18px;
    }
    .form-head{display:flex; flex-direction:column; gap:6px; margin-bottom:14px}
    .form-title{font-size:18px; font-weight:1000}
    .form-sub{color:var(--muted); font-weight:680; line-height:1.65; font-size:14.5px}

    .form{margin:0}
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field-wide{grid-column: span 2}
    .field-label{font-weight:950; color:rgba(20,24,28,.82); font-size:13.5px}
    .field-input{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(20,24,28,.12);
      background:rgba(255,255,255,.82);
      padding:12px 12px;
      font-size:14.5px;
      outline:none;
      color:var(--text);
      transition:box-shadow .2s ease, border-color .2s ease;
    }
    .field-input:focus{box-shadow:0 0 0 4px var(--focus); border-color:rgba(22,197,111,.34)}
    .field-textarea{resize:vertical; min-height:120px}
    .form-bottom{margin-top:14px}
    .form-agree{margin-top:10px; color:rgba(20,24,28,.58); font-weight:700; font-size:12.5px; line-height:1.6}
    .form-status{
      margin-top:12px;
      padding:12px;
      border-radius:14px;
      border:1px solid rgba(22,197,111,.25);
      background:rgba(22,197,111,.08);
      color:#075022;
      font-weight:850;
    }

    .price-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:stretch;
    }
    .price-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:
        radial-gradient(900px 320px at 20% 0%, rgba(22,197,111,.20), transparent 60%),
        rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:18px;
    }
    .price-top{}
    .price-title{font-size:18px; font-weight:1000}
    .price-sub{margin-top:8px; color:var(--muted); font-weight:680; line-height:1.65}
    .price-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .price-li{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
      color:rgba(20,24,28,.82);
      font-weight:850;
    }
    .price-dot{
      width:10px; height:10px; border-radius:50%; background:var(--green);
      box-shadow:0 0 0 6px rgba(22,197,111,.14);
      margin-top:6px; flex:0 0 auto;
    }
    .price-dot-2{background:#8cff4a}
    .price-dot-3{background:#20d07a}
    .price-dot-4{background:#34f58a}
    .price-dot-5{background:#b9ff3b}
    .price-foot{margin-top:14px; padding-top:12px; border-top:1px solid rgba(20,24,28,.08); display:flex; flex-direction:column; gap:10px}
    .price-foot-note{color:var(--muted); font-weight:680; line-height:1.7}

    .price-compare{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:18px;
      display:flex; flex-direction:column;
      gap:12px;
    }
    .price-compare-head{display:flex; flex-direction:column; gap:8px}
    .price-compare-title{font-weight:1000; font-size:18px}
    .price-compare-sub{color:var(--muted); font-weight:680; line-height:1.65}
    .simple-table{
      width:100%;
      min-width:640px;
      border-collapse:collapse;
    }
    .simple-table th,.simple-table td{
      border-bottom:1px solid rgba(20,24,28,.08);
      padding:12px 14px;
      font-size:14.5px;
      text-align:left;
      vertical-align:top;
      font-weight:650;
    }
    .simple-table th{
      font-weight:980;
      color:rgba(20,24,28,.78);
      background:rgba(255,255,255,.65);
      position:sticky; top:0; z-index:1;
    }
    .price-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; margin-top:2px}

    .training-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .training-card, .trainer-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:18px;
    }
    .training-card{
      background:
        radial-gradient(900px 340px at 20% 0%, rgba(22,197,111,.18), transparent 60%),
        rgba(255,255,255,.84);
      border-color:rgba(22,197,111,.18);
    }
    .training-title{font-size:18px; font-weight:1000}
    .training-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .training-li{
      display:flex; gap:10px; align-items:center;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
      font-weight:900;
      color:rgba(20,24,28,.82);
    }
    .tick{
      width:18px; height:18px; border-radius:6px;
      display:inline-flex; align-items:center; justify-content:center;
      background:rgba(22,197,111,.12); color:var(--green3); font-weight:1000;
      flex:0 0 auto;
    }
    .training-note{margin-top:14px; color:var(--muted); font-weight:680; line-height:1.7}
    .training-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .trainer-top{display:flex; flex-direction:column; gap:8px}
    .trainer-title{font-size:18px; font-weight:1000}
    .trainer-sub{color:var(--muted); font-weight:680; line-height:1.65}
    .trainer-steps{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .trainer-step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
    }
    .trainer-step-num{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(22,197,111,.22);
      background:rgba(22,197,111,.10);
      color:#075022;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; flex:0 0 auto;
    }
    .trainer-step-title{font-weight:1000}
    .trainer-step-text{margin-top:6px; color:var(--muted); font-weight:680; line-height:1.7; font-size:14.5px}

    .trainer-bottom{margin-top:14px; padding-top:14px; border-top:1px solid rgba(20,24,28,.08)}
    .trainer-stats{display:flex; gap:12px; flex-wrap:wrap}
    .tstat{flex:1 1 120px; padding:12px; border-radius:18px; border:1px solid rgba(20,24,28,.08); background:rgba(255,255,255,.78)}
    .tstat-num{font-weight:1000}
    .tstat-label{margin-top:6px; color:var(--muted); font-weight:680; line-height:1.65; font-size:14px}
    .trainer-cta{margin-top:12px}

    .tag-cloud{
      margin-top:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.80);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
    }
    .tag-cloud-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .tag-cloud-title{font-weight:1000}
    .tag-cloud-sub{color:var(--muted); font-weight:680; line-height:1.65; margin-top:6px}
    .tag-cloud-body{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
    .tag{
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      font-weight:900;
      color:rgba(20,24,28,.78);
      font-size:13px;
    }

    .articles-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .article-list-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:18px;
    }
    .article-card-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .article-title{font-weight:1000; font-size:18px}
    .article-sub{color:var(--muted); font-weight:680; margin-top:6px}
    .article-list{list-style:none; padding:0; margin:14px 0 0; display:flex; flex-direction:column; gap:12px}
    .article-item{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .article-link{
      text-decoration:none; color:rgba(20,24,28,.92);
      font-weight:950; line-height:1.4;
    }
    .article-link:hover{color:#075022; text-decoration:underline}
    .article-meta{
      border-radius:999px;
      padding:8px 12px;
      background:rgba(22,197,111,.10);
      border:1px solid rgba(22,197,111,.25);
      color:#075022;
      font-weight:950;
      font-size:12.5px;
      white-space:nowrap;
    }
    .article-footer{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(20,24,28,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .article-footer-note{color:var(--muted); font-weight:680; line-height:1.7}

    .side-stack{display:flex; flex-direction:column; gap:14px}
    .side-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
    }
    .side-card-highlight{
      background:
        radial-gradient(900px 300px at 20% 0%, rgba(22,197,111,.20), transparent 60%),
        rgba(255,255,255,.86);
      border-color:rgba(22,197,111,.22);
    }
    .side-card-title{font-weight:1000; font-size:18px}
    .side-card-sub{margin-top:8px; color:var(--muted); font-weight:680; line-height:1.7}
    .side-actions{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .side-action{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
      text-decoration:none;
      color:var(--text);
      font-weight:950;
      transition:transform .18s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .side-action:hover{
      transform:translateY(-2px);
      border-color:rgba(22,197,111,.25);
      box-shadow:0 18px 35px rgba(16,185,129,.10);
    }
    .side-action-icon{
      width:38px; height:38px;
      border-radius:14px;
      border:1px solid rgba(22,197,111,.22);
      background:rgba(22,197,111,.10);
      display:flex; align-items:center; justify-content:center;
      color:#075022; flex:0 0 auto;
    }
    .side-action-arrow{color:rgba(20,24,28,.55); font-weight:1000}

    .side-highlight-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .side-highlight-li{display:flex; gap:10px; align-items:center; color:rgba(20,24,28,.80); font-weight:850}
    .side-highlight-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .help-quote{
      margin-top:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .help-quote-title{font-weight:1000; font-size:18px}
    .help-quote-sub{margin-top:8px; color:var(--muted); font-weight:680; line-height:1.7}

    .faq-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start}
    .faq-item{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:12px 12px;
      margin-bottom:12px;
    }
    .faq-q{
      width:100%;
      background:transparent;
      border:none;
      padding:12px 6px;
      text-align:left;
      font-weight:1000;
      color:rgba(20,24,28,.90);
      font-size:15px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      cursor:pointer;
    }
    .faq-q:focus{outline:none; box-shadow:0 0 0 4px var(--focus); border-radius:14px}
    .faq-icon{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.80);
      position:relative;
      flex:0 0 auto;
    }
    .faq-icon::before,.faq-icon::after{
      content:""; position:absolute; left:50%; top:50%;
      width:16px; height:2px;
      background:rgba(20,24,28,.70);
      transform:translate(-50%,-50%);
      border-radius:2px;
      transition:transform .2s ease, opacity .2s ease;
    }
    .faq-icon::after{transform:translate(-50%,-50%) rotate(90deg)}
    .faq-item[data-open="true"] .faq-icon::after{opacity:0; transform:translate(-50%,-50%) rotate(0deg)}
    .faq-a{
      padding:0 6px 14px;
      color:var(--muted);
      font-weight:680;
      line-height:1.75;
      font-size:14.5px;
    }

    .faq-bottom-cta{
      margin-top:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(22,197,111,.22);
      background:linear-gradient(180deg, rgba(22,197,111,.10), rgba(255,255,255,.86));
      box-shadow:0 14px 35px rgba(16,185,129,.10);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .faq-bottom-title{font-weight:1000; font-size:18px}
    .faq-bottom-sub{margin-top:8px; color:var(--muted); font-weight:680; line-height:1.7}
    .faq-bottom-actions{display:flex; gap:10px; flex-wrap:wrap}

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .wiki-card{
      border-radius:var(--radius);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
      transition:transform .18s ease, border-color .2s ease, box-shadow .2s ease;
      min-height:190px;
      display:flex; flex-direction:column; gap:10px;
    }
    .wiki-card:hover{
      transform:translateY(-2px);
      border-color:rgba(22,197,111,.25);
      box-shadow:0 18px 45px rgba(16,185,129,.12);
    }
    .wiki-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .wiki-icon{
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(22,197,111,.22);
      background:rgba(22,197,111,.10);
      color:#075022; display:flex; align-items:center; justify-content:center;
    }
    .wiki-badge{
      border-radius:999px;
      padding:8px 12px;
      border:1px solid rgba(20,24,28,.10);
      background:rgba(20,24,28,.05);
      color:rgba(20,24,28,.75);
      font-weight:950;
      font-size:12.5px;
    }
    .wiki-badge-green{
      border-color:rgba(22,197,111,.25);
      background:rgba(22,197,111,.10);
      color:#075022;
    }
    .wiki-title{font-weight:1000; font-size:16.5px}
    .wiki-text{margin-top:auto; color:var(--muted); font-weight:680; line-height:1.7; font-size:14.5px}

    .wiki-cta{
      margin-top:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.80);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .wiki-cta-title{font-weight:1000; font-size:18px}
    .wiki-cta-sub{margin-top:8px; color:var(--muted); font-weight:680; line-height:1.7}
    .wiki-cta-right{display:flex; gap:10px; flex-wrap:wrap}

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .join-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:18px;
    }
    .join-card-green{
      background:
        radial-gradient(900px 340px at 20% 0%, rgba(22,197,111,.22), transparent 60%),
        rgba(255,255,255,.86);
      border-color:rgba(22,197,111,.22);
    }
    .join-title{font-weight:1000; font-size:18px}
    .join-list{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .join-li{display:flex; gap:10px; align-items:flex-start; padding:12px; border-radius:18px; border:1px solid rgba(20,24,28,.08); background:rgba(255,255,255,.78); font-weight:850; color:rgba(20,24,28,.82); line-height:1.6}
    .join-tags{margin-top:14px; display:flex; flex-wrap:wrap; gap:10px}
    .join-callout{
      margin-top:14px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
    }
    .join-callout-title{font-weight:1000}
    .join-callout-text{margin-top:8px; color:var(--muted); font-weight:680; line-height:1.7; font-size:14.5px}
    .join-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .contact-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:18px;
    }
    .contact-card-right{
      background:
        radial-gradient(900px 340px at 20% 0%, rgba(22,197,111,.16), transparent 60%),
        rgba(255,255,255,.86);
      border-color:rgba(22,197,111,.18);
    }
    .contact-card-head{display:flex; flex-direction:column; gap:8px; margin-bottom:14px}
    .contact-title{font-weight:1000; font-size:18px}
    .contact-sub{color:var(--muted); font-weight:680; line-height:1.7}
    .contact-list{display:flex; flex-direction:column; gap:12px}
    .contact-li{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
    }
    .contact-key{font-weight:1000; color:rgba(20,24,28,.82)}
    .contact-val{color:rgba(20,24,28,.80); font-weight:750}
    .contact-link{color:rgba(7,80,34,.95); font-weight:950; text-decoration:none}
    .contact-link:hover{text-decoration:underline}

    .qrcard-title{font-weight:1000; margin-top:14px}
    .qrcard-sub{color:var(--muted); font-weight:680; margin-top:6px; line-height:1.7}
    .qrcard-imgwrap{
      margin-top:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
    }
    .qrcard-img{width:180px; max-width:100%; height:auto}
    .contact-qrcard{margin-top:8px}

    .review-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .review-card{
      border-radius:18px;
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.78);
      padding:14px;
      box-shadow:0 10px 24px rgba(15,23,42,.03);
    }
    .review-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
    }
    .review-avatar{
      width:42px; height:42px;
      border-radius:16px;
      background:rgba(22,197,111,.10);
      border:1px solid rgba(22,197,111,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:#075022; flex:0 0 auto;
    }
    .review-name{font-weight:1000}
    .review-stars{color:#1bd26c; font-weight:1000; letter-spacing:1px}
    .review-text{margin-top:10px; color:var(--muted); font-weight:680; line-height:1.75; font-size:14.5px}

    .contact-note-banner{
      margin-top:14px;
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(22,197,111,.22);
      background:linear-gradient(180deg, rgba(22,197,111,.10), rgba(255,255,255,.86));
      box-shadow:0 14px 35px rgba(16,185,129,.10);
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .contact-note-title{font-weight:1000; font-size:18px}
    .contact-note-sub{margin-top:8px; color:var(--muted); font-weight:680; line-height:1.7}
    .contact-note-actions{display:flex; gap:10px; flex-wrap:wrap}

    .friend-links{
      margin-top:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 14px 35px rgba(15,23,42,.04);
      padding:16px;
    }
    .friend-links-title{font-weight:1000; font-size:16px}
    .friend-links-list{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .friend-links-list a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.82);
      font-weight:900;
      color:rgba(20,24,28,.78);
      font-size:13px;
      transition:transform .15s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .friend-links-list a:hover{
      transform:translateY(-1px);
      border-color:rgba(22,197,111,.28);
      box-shadow:0 14px 30px rgba(16,185,129,.10);
      color:#075022;
    }

    .site-footer{
      background:linear-gradient(180deg, rgba(22,197,111,.08), rgba(255,255,255,.0));
      border-top:1px solid rgba(20,24,28,.08);
      padding:22px 0 10px;
    }
    .footer-inner{padding:0 18px}
    .footer-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:18px;
      flex-wrap:wrap;
    }
    .footer-brand{display:flex; align-items:flex-start; gap:12px}
    .footer-logo .ai-page-logo{width:46px}
    .footer-brand-title{font-weight:1000; font-size:18px}
    .footer-brand-sub{margin-top:6px; color:var(--muted); font-weight:680; line-height:1.65}
    .footer-columns{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
      width:min(620px, 100%);
    }
    .footer-col{
      border-radius:var(--radius);
      border:1px solid rgba(20,24,28,.08);
      background:rgba(255,255,255,.78);
      padding:14px;
    }
    .footer-col-title{font-weight:1000; margin-bottom:10px}
    .footer-link{
      display:block;
      color:rgba(20,24,28,.80);
      font-weight:760;
      text-decoration:none;
      margin:8px 0;
    }
    .footer-link:hover{color:#075022; text-decoration:underline}
    .footer-text{color:var(--muted); font-weight:700; line-height:1.7}

    .footer-bottom{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(20,24,28,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .footer-copy{color:rgba(20,24,28,.70); font-weight:750}
    .footer-legal{color:rgba(20,24,28,.60); font-weight:750; display:flex; gap:10px; align-items:center}
    .footer-mini-link{color:rgba(20,24,28,.65); text-decoration:none}
    .footer-mini-link:hover{color:#075022; text-decoration:underline}
    .footer-dot{opacity:.6}

    .to-top{
      position:fixed; right:16px; bottom:16px;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(20,24,28,.12);
      background:rgba(255,255,255,.86);
      color:var(--text);
      box-shadow:0 18px 45px rgba(15,23,42,.10);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transform:translateY(18px);
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
      z-index:60;
    }
    .to-top.show{
      opacity:1; pointer-events:auto; transform:translateY(0);
    }
    .to-top:hover{border-color:rgba(22,197,111,.28); background:rgba(255,255,255,.96)}
    .to-top span{font-weight:1000}

    .float-chat{
      position:fixed;
      right:16px;
      bottom:72px;
      z-index:65;
    }
    .chat-btn{
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(22,197,111,.25);
      background:linear-gradient(180deg, rgba(22,197,111,.14), rgba(255,255,255,.86));
      box-shadow:0 18px 45px rgba(16,185,129,.16);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      gap:0;
      padding:0;
      transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease;
      color:#075022;
    }
    .chat-btn:hover{transform:translateY(-2px); border-color:rgba(22,197,111,.40); box-shadow:0 22px 55px rgba(16,185,129,.22)}
    .chat-text{display:none; font-weight:1000}
    .chat-icon{display:inline-flex}

    .chat-pop{
      width:280px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,24,28,.12);
      background:rgba(255,255,255,.95);
      box-shadow:0 24px 70px rgba(15,23,42,.18);
      overflow:hidden;
      margin-top:12px;
    }
    .chat-pop-head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding:12px 14px;
      border-bottom:1px solid rgba(20,24,28,.08);
      background:linear-gradient(180deg, rgba(22,197,111,.10), rgba(255,255,255,.90));
    }
    .chat-pop-title{font-weight:1000}
    .chat-pop-close{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,24,28,.10);
      background:rgba(255,255,255,.86);
      cursor:pointer;
      font-weight:1000;
      color:rgba(20,24,28,.70);
    }
    .chat-pop-close:hover{border-color:rgba(22,197,111,.30); color:#075022}
    .chat-pop-body{padding:14px}
    .chat-pop-img{
      width:200px;
      display:block;
      margin:0 auto;
      border-radius:18px;
    }
    .chat-pop-hint{
      margin-top:10px;
      text-align:center;
      color:var(--muted);
      font-weight:700;
      line-height:1.6;
      font-size:13px;
    }

    .skip-safe{height:1px}

    .section .container{position:relative}

    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; gap:14px}
      .hero-title{font-size:34px}
      .hero-panel{order:2}
      .nav-menu{display:none}
      .nav-toggle{display:inline-flex}
      .nav-menu.nav-open{display:flex; flex-direction:column; align-items:flex-start; padding:10px 0; width:100%}
      .nav-menu{gap:6px}
      .header-actions{display:none}
      .cards-3{grid-template-columns:1fr; gap:12px}
      .service-grid{grid-template-columns:1fr; gap:12px}
      .service-card-wide{grid-column: span 1}
      .two-col{grid-template-columns:1fr}
      .industry-grid{grid-template-columns:1fr}
      .industry-card-wide{grid-column: span 1}
      .process-grid{grid-template-columns:1fr}
      .cases-grid{grid-template-columns:1fr 1fr}
      .compare-grid{grid-template-columns:1fr}
      .rating-card{position:relative; top:auto}
      .network-grid{grid-template-columns:1fr}
      .match-grid{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .field-wide{grid-column: span 1}
      .price-grid{grid-template-columns:1fr}
      .training-grid{grid-template-columns:1fr}
      .articles-grid{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
      .wiki-grid{grid-template-columns:1fr 1fr}
      .join-grid{grid-template-columns:1fr}
      .contact-grid{grid-template-columns:1fr}
      .review-grid{grid-template-columns:1fr}
      .footer-columns{grid-template-columns:1fr; width:100%}
      .to-top{right:14px; bottom:86px}
    }
    @media (max-width: 520px){
      .hero-title{font-size:30px}
      .cases-grid{grid-template-columns:1fr}
      .wiki-grid{grid-template-columns:1fr}
      .float-chat{right:12px}
      .to-top{right:12px}
      .friend-links-list a{flex:1 1 140px}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .grid-orb{animation:none}
      .btn,.kpi-card,.feature-card,.service-card,.process-step,.case-card,.industry-card,.wiki-card,.side-action,.qchip{transition:none}
    }