:root{
      --bg0:#f6fbf7;
      --bg1:#eef8f1;
      --card:#ffffff;
      --text:#12201a;
      --muted:#4b5b54;
      --muted2:#6b7c73;
      --line:rgba(10,30,20,.10);

      --green:#12c97a;
      --green2:#06a968;
      --green3:#00d18f;
      --mint:#e6fff3;

      --shadow: 0 14px 40px rgba(10, 30, 20, .10);
      --shadow2: 0 10px 24px rgba(10, 30, 20, .10);
      --radius:16px;
      --radius2:22px;
      --container:1120px;
      --pad:18px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
                   "Microsoft YaHei", "Noto Sans SC", "Segoe UI", Roboto, Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 20% 0%, rgba(18,201,122,.14), transparent 55%),
        radial-gradient(900px 450px at 90% 10%, rgba(0,209,143,.12), transparent 60%),
        linear-gradient(180deg, var(--bg0), #ffffff 65%);
      min-height:100vh;
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute; left:-999px; top:12px;
      background:#0a1d14; color:#fff;
      padding:10px 12px; border-radius:12px; z-index:1000;
    }
    .skip-link:focus{left:12px}

    .bg-wrap{position:fixed; inset:0; pointer-events:none; z-index:-1; overflow:hidden}
    .bg-grid{
      position:absolute; inset:-200px -200px auto -200px; height:520px;
      background:
        linear-gradient(to right, rgba(18,201,122,.10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(18,201,122,.10) 1px, transparent 1px);
      background-size: 44px 44px;
      transform: rotate(-6deg);
      filter: blur(.0px);
      opacity:.55;
    }
    .bg-blob{
      position:absolute;
      width:520px; height:520px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(18,201,122,.35), rgba(18,201,122,.08) 50%, transparent 70%);
      filter: blur(10px);
      opacity:.9;
    }
    .bg-blob-1{left:-140px; top:-160px}
    .bg-blob-2{right:-220px; top:-140px; background: radial-gradient(circle at 30% 30%, rgba(0,209,143,.28), rgba(0,209,143,.06) 50%, transparent 70%)}
    .bg-blob-3{left:38%; top:420px; width:480px; height:480px; opacity:.55}

    .container{max-width:var(--container); margin:0 auto; padding:0 var(--pad)}
    .site-header{
      position:sticky; top:0; z-index:50;
      background: rgba(246,251,247,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(10,30,20,.08);
    }
    .header-inner{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:14px 0;
    }
    .brand{display:flex; align-items:center; gap:12px; min-width:240px}
    .ai-page-logo{width:42px; height:42px; object-fit:contain}
    .brand-meta{display:flex; flex-direction:column; line-height:1.05}
    .brand-name{font-weight:820; letter-spacing:.2px}
    .brand-sub{font-size:12px; color:var(--muted2); margin-top:4px}

    .nav-desktop{
      display:flex; align-items:center; gap:18px;
      flex-wrap:nowrap;
    }
    .nav-link{
      text-decoration:none; color:rgba(18,32,26,.92);
      font-weight:650; font-size:14px;
      padding:10px 8px; border-radius:12px;
      transition: background .2s ease, transform .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{background:rgba(18,201,122,.10); color:#0f2b20}
    .nav-cta-link{background:rgba(18,201,122,.12)}

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:12px 16px;
      border:1px solid rgba(10,30,20,.12);
      text-decoration:none;
      font-weight:760;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      -webkit-tap-highlight-color: transparent;
      white-space:nowrap;
    }
    .btn:active{transform: translateY(1px)}
    .btn-primary{
      background: linear-gradient(135deg, var(--green), var(--green2));
      color:#052116;
      border-color: rgba(0,0,0,.05);
      box-shadow: 0 12px 28px rgba(18,201,122,.22);
    }
    .btn-primary:hover{box-shadow: 0 16px 36px rgba(18,201,122,.26)}
    .btn-ghost{
      background: rgba(255,255,255,.55);
      color:#0f2b20;
      border-color: rgba(10,30,20,.14);
    }
    .btn-ghost:hover{
      background: rgba(255,255,255,.8);
      box-shadow: 0 10px 22px rgba(10,30,20,.08);
    }
    .btn-lg{padding:14px 18px; border-radius:16px; font-size:15px}
    .btn-sm{padding:9px 12px; border-radius:12px; font-size:13px}
    .w-100{width:100%}
    .text-link{
      color:#0f2b20;
      font-weight:720; text-decoration:none;
      display:inline-flex; gap:8px; align-items:center;
      padding:8px 0;
    }
    .text-link:hover{color:#052116; text-decoration:underline}

    .nav-toggle{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(10,30,20,.14);
      background: rgba(255,255,255,.65);
      cursor:pointer;
      align-items:center; justify-content:center;
      gap:5px;
    }
    .nav-toggle-line{
      display:block;
      width:18px; height:2px;
      background:#0f2b20;
      border-radius:999px;
      opacity:.9;
      transition: transform .2s ease, opacity .2s ease;
    }

    .mobile-menu{
      display:none;
      border-top:1px solid rgba(10,30,20,.08);
      background: rgba(246,251,247,.92);
      backdrop-filter: blur(10px);
    }
    .mobile-menu.open{display:block}
    .mobile-menu-inner{padding:14px 0 18px}
    .mobile-link{
      display:block;
      padding:12px 14px;
      margin:6px 0;
      text-decoration:none;
      color:#0f2b20;
      font-weight:740;
      border-radius:14px;
      background: rgba(255,255,255,.6);
      border: 1px solid rgba(10,30,20,.10);
    }
    .mobile-link:hover{background: rgba(255,255,255,.85)}
    .mobile-menu-actions{display:flex; flex-direction:column; gap:10px; margin-top:14px}

    .hero{
      padding:34px 0 10px;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.2fr .9fr;
      gap:22px;
      align-items:start;
    }
    .hero-copy{
      padding:10px 0 0;
    }
    .pill{
      display:inline-flex; align-items:center;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(18,201,122,.12);
      border:1px solid rgba(18,201,122,.22);
      font-weight:760;
      color:#08301d;
      font-size:13px;
    }
    .hero-title{
      margin:14px 0 10px;
      font-size:44px;
      line-height:1.08;
      letter-spacing:-.6px;
      font-weight:900;
    }
    .hero-desc{
      margin:0 0 18px;
      color:var(--muted);
      font-size:16px;
      line-height:1.65;
      max-width:58ch;
      font-weight:560;
    }
    .hero-actions{display:flex; gap:12px; flex-wrap:wrap}
    .hero-mini{
      margin-top:18px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .mini-item{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(10,30,20,.10);
      border-radius:16px;
      padding:12px;
      display:flex; gap:10px; align-items:flex-start;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .mini-item:hover{
      transform: translateY(-3px);
      box-shadow: 0 16px 30px rgba(10,30,20,.10);
      border-color: rgba(18,201,122,.28);
    }
    .mini-icon{color:rgba(6,169,104,.95); margin-top:2px}
    .mini-title{font-weight:840; font-size:13px}
    .mini-sub{margin-top:4px; color:var(--muted2); font-size:12.5px}

    .hero-panel{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(10,30,20,.10);
      border-radius:22px;
      box-shadow: var(--shadow2);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .hero-panel::before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(420px 220px at 22% 8%, rgba(18,201,122,.22), transparent 55%),
        radial-gradient(420px 220px at 80% 22%, rgba(0,209,143,.18), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .panel-top{position:relative; z-index:1}
    .panel-title{font-weight:900; font-size:16px}
    .panel-sub{margin-top:6px; color:var(--muted2); font-weight:600; font-size:13.5px}
    .metrics{
      position:relative; z-index:1;
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .metric-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(10,30,20,.10);
      border-radius:18px;
      padding:12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .metric-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 16px 28px rgba(10,30,20,.10);
      border-color: rgba(18,201,122,.26);
    }
    .metric-card.metric-accent{
      background: linear-gradient(180deg, rgba(18,201,122,.16), rgba(255,255,255,.62));
      border-color: rgba(18,201,122,.22);
    }
    .metric-label{color:var(--muted2); font-weight:720; font-size:12.5px}
    .metric-value{margin-top:8px; display:flex; align-items:baseline; gap:8px}
    .metric-value .num{font-size:22px; font-weight:950; letter-spacing:-.5px}
    .metric-value .unit{color:rgba(6,169,104,.95); font-weight:900; font-size:12.8px}
    .metric-note{margin-top:6px; color:var(--muted); font-size:12.8px; font-weight:600}

    .panel-actions{position:relative; z-index:1; margin-top:14px}
    .panel-small{
      margin-top:10px;
      display:flex; align-items:center; gap:10px;
      color:var(--muted2); font-weight:650; font-size:12.5px;
      padding:10px 12px;
      background: rgba(18,201,122,.08);
      border:1px solid rgba(18,201,122,.18);
      border-radius:16px;
    }
    .dot{width:9px; height:9px; border-radius:50%; background: var(--green); box-shadow: 0 0 0 4px rgba(18,201,122,.18)}

    .section{padding:54px 0}
    .section-tight{padding:28px 0}
    .section-soft{
      background: linear-gradient(180deg, rgba(18,201,122,.06), rgba(255,255,255,.0));
      border-top:1px solid rgba(10,30,20,.06);
      border-bottom:1px solid rgba(10,30,20,.06);
    }
    .section-divider{height:20px}

    .section-head{margin-bottom:26px}
    .section-title{
      margin:0;
      font-size:30px;
      letter-spacing:-.4px;
      font-weight:920;
    }
    .section-desc{
      margin:10px 0 0;
      color:var(--muted);
      line-height:1.7;
      font-size:15.5px;
      font-weight:600;
      max-width:78ch;
    }

    .grid-3{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
    .grid-2{display:grid; grid-template-columns: 1fr 380px; gap:16px; align-items:start}
    .feature-card, .ability-card, .help-card, .industry-card, .case-card, .review-card, .train-card, .net-card, .wiki-card, .pricing-card, .join-card, .contact-card, .match-form, .side-block{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(10,30,20,.10);
      border-radius:var(--radius);
      padding:16px;
      box-shadow: 0 10px 24px rgba(10,30,20,.05);
    }

    .feature-card{transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease}
    .feature-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 16px 30px rgba(10,30,20,.09);
      border-color: rgba(18,201,122,.24);
    }
    .feature-icon{color:rgba(6,169,104,.95)}
    .feature-title{margin:12px 0 8px; font-size:16px; font-weight:900}
    .feature-text{margin:0; color:var(--muted); line-height:1.6; font-weight:610; font-size:14px}

    .callout{
      margin-top:16px;
      display:flex; align-items:center; justify-content:space-between; gap:16px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(18,201,122,.18);
      border-radius:22px;
      padding:16px;
      box-shadow: 0 16px 36px rgba(10,30,20,.06);
    }
    .callout-title{font-weight:920; font-size:16px}
    .callout-tags{margin-top:10px; display:flex; flex-wrap:wrap; gap:8px}
    .tag{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(18,201,122,.10);
      border:1px solid rgba(18,201,122,.18);
      color:#08301d;
      font-weight:780;
      font-size:12.5px;
    }
    .callout-right{display:flex; align-items:center; gap:14px}
    .callout-metric{display:flex; flex-direction:column; gap:6px}
    .callout-num{font-weight:950; letter-spacing:-.2px}
    .callout-sub{color:var(--muted2); font-weight:650; font-size:12.5px}

    .panel-h3{margin:0 0 10px; font-size:18px; font-weight:950}
    .service-panel{padding:18px; border-radius:22px}
    .bullet-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    .bullet-item{display:flex; gap:10px; align-items:flex-start}
    .bullet-dot{width:10px; height:10px; border-radius:50%; background: rgba(18,201,122,.9); margin-top:4px; box-shadow: 0 0 0 5px rgba(18,201,122,.12)}
    .bullet-title{font-weight:900; font-size:13.8px}
    .bullet-text{margin-top:4px; color:var(--muted); font-weight:610; font-size:13.2px; line-height:1.55}

    .side-stack{display:flex; flex-direction:column; gap:14px}
    .stack-card{border-radius:22px; padding:16px}
    .stack-top{display:flex; flex-direction:column; gap:6px}
    .stack-kicker{color:var(--muted2); font-weight:760; font-size:12.5px}
    .stack-title{font-weight:950; font-size:18px}
    .stack-list{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .stack-li{display:flex; gap:10px; align-items:center; color:#0f2b20; font-weight:700}
    .check{width:16px; height:16px; border-radius:6px; background: rgba(18,201,122,.12); border:1px solid rgba(18,201,122,.22); display:inline-flex; align-items:center; justify-content:center}
    .check::after{content:""; width:8px; height:4px; border-left:2px solid rgba(6,169,104,.95); border-bottom:2px solid rgba(6,169,104,.95); transform: rotate(-45deg); margin-top:-1px}
    .scene-chips{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .chip{
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(10,30,20,.12);
      font-weight:800;
      font-size:12.8px;
    }
    .stack-card-2{background: linear-gradient(180deg, rgba(18,201,122,.10), rgba(255,255,255,.72)); border-color: rgba(18,201,122,.18)}

    .margin-top{margin-top:18px}
    .ability-card{padding:18px; border-radius:22px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease}
    .ability-card:hover{
      transform: translateY(-4px);
      border-color: rgba(18,201,122,.26);
      box-shadow: 0 18px 34px rgba(10,30,20,.08);
    }
    .ability-title{margin:0 0 10px; font-weight:950; font-size:18px}
    .ability-text{margin:0; color:var(--muted); line-height:1.6; font-weight:620; font-size:14.1px}
    .ability-metrics{margin-top:12px; display:flex; gap:12px; flex-wrap:wrap}
    .small-metric{display:flex; gap:8px; align-items:baseline}
    .small-num{font-weight:950}
    .small-sub{color:var(--muted2); font-weight:700; font-size:12.5px}

    .industry-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
    .industry-card{border-radius:22px; padding:18px}
    .industry-head{display:flex; align-items:center; gap:12px}
    .industry-icon{color:rgba(6,169,104,.95)}
    .industry-title{margin:0; font-size:16px; font-weight:950}
    .check-list{margin:14px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
    .check-list li{display:flex; gap:10px; align-items:flex-start; color:#0f2b20; font-weight:700; line-height:1.45}
    .text-link{margin-top:10px}

    .network-layout{display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:start}
    .timeline{
      padding:16px;
      border-radius:22px;
      background: rgba(255,255,255,.68);
      border:1px solid rgba(10,30,20,.10);
      box-shadow: 0 10px 24px rgba(10,30,20,.05);
    }
    .timeline-item{display:flex; gap:14px; padding:14px 8px}
    .timeline-dot{
      width:12px; height:12px; border-radius:50%;
      background: rgba(18,201,122,.95);
      margin-top:4px;
      box-shadow: 0 0 0 6px rgba(18,201,122,.12);
      flex:0 0 auto;
    }
    .timeline-title{font-weight:950}
    .timeline-text{margin-top:6px; color:var(--muted); font-weight:620; line-height:1.55; font-size:14px}

    .network-cards{display:flex; flex-direction:column; gap:14px}
    .net-card{border-radius:22px; padding:18px}
    .net-card-2{background: rgba(255,255,255,.72)}
    .net-title{font-weight:950; font-size:16px}
    .net-text{margin-top:8px; color:var(--muted); line-height:1.65; font-weight:620; font-size:14px}
    .net-badges{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .badge{
      padding:8px 10px; border-radius:999px;
      background: rgba(18,201,122,.10);
      border:1px solid rgba(18,201,122,.18);
      font-weight:820; font-size:12.5px;
      color:#08301d;
    }
    .badge-2{background: rgba(0,209,143,.10); border-color: rgba(0,209,143,.18)}
    .badge-3{background: rgba(16,185,129,.10); border-color: rgba(16,185,129,.18)}
    .net-actions{margin-top:14px}

    .steps{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px}
    .step{
      padding:16px;
      border-radius:22px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(10,30,20,.10);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow: 0 10px 24px rgba(10,30,20,.05);
    }
    .step:hover{
      transform: translateY(-4px);
      border-color: rgba(18,201,122,.25);
      box-shadow: 0 18px 34px rgba(10,30,20,.08);
    }
    .step-num{
      width:46px; height:46px; border-radius:16px;
      background: rgba(18,201,122,.12);
      border:1px solid rgba(18,201,122,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
    }
    .step-title{margin:12px 0 6px; font-weight:950; font-size:16px}
    .step-text{margin:0; color:var(--muted); font-weight:620; line-height:1.65; font-size:14px}

    .process-cta{
      margin-top:18px;
      border-radius:22px;
      border:1px solid rgba(18,201,122,.18);
      background: linear-gradient(135deg, rgba(18,201,122,.12), rgba(255,255,255,.74));
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:16px;
    }
    .process-kicker{color:var(--muted2); font-weight:780; font-size:13px}
    .process-title{margin-top:8px; font-weight:950; font-size:18px}
    .process-cta-right{display:flex; gap:12px; flex-wrap:wrap}

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .case-card{
      border-radius:22px;
      padding:18px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      background: rgba(255,255,255,.72);
    }
    .case-card:hover{
      transform: translateY(-5px);
      border-color: rgba(18,201,122,.26);
      box-shadow: 0 18px 36px rgba(10,30,20,.10);
    }
    .case-card-wide{
      grid-column: span 2;
      display:flex; flex-direction:column;
    }
    .case-top{display:flex; justify-content:space-between; gap:10px; align-items:center}
    .case-badge{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(18,201,122,.10);
      border:1px solid rgba(18,201,122,.18);
      font-weight:900;
      font-size:12.5px;
      color:#08301d;
    }
    .case-time{color:var(--muted2); font-weight:780; font-size:12.5px}
    .case-title{margin:12px 0 10px; font-weight:950; font-size:16.5px; letter-spacing:-.2px}
    .case-text{margin:0; color:var(--muted); font-weight:620; line-height:1.65; font-size:14.2px}
    .case-bottom{margin-top:14px; display:flex; justify-content:space-between; align-items:center; gap:12px}
    .case-pill{
      padding:8px 10px; border-radius:999px;
      background: rgba(255,255,255,.7);
      border:1px solid rgba(10,30,20,.12);
      font-weight:850; font-size:12.5px;
      color:#0f2b20;
      white-space:nowrap;
    }

    .compare-top{
      display:grid;
      grid-template-columns: 360px 1fr;
      gap:16px;
      align-items:start;
      margin-bottom:16px;
    }
    .rating-card{
      border-radius:22px;
      padding:18px;
      background: linear-gradient(180deg, rgba(18,201,122,.14), rgba(255,255,255,.74));
      border:1px solid rgba(18,201,122,.22);
    }
    .rating-row{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .stars{color: #0a8a55; font-size:20px; letter-spacing:2px}
    .rating-score{display:flex; align-items:baseline; gap:6px}
    .score-num{font-size:36px; font-weight:1000; letter-spacing:-1px; color:#082a1a}
    .score-unit{color:var(--muted2); font-weight:800}
    .rating-title{margin-top:10px; font-weight:980}
    .rating-sub{margin-top:6px; color:var(--muted); font-weight:650; line-height:1.6; font-size:14px}

    .compare-why{
      border-radius:22px;
      padding:18px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(10,30,20,.10);
    }
    .why-title{font-weight:980; font-size:16px}
    .why-list{margin-top:12px; display:grid; grid-template-columns: 1fr; gap:10px}
    .why-item{display:flex; gap:10px; align-items:center; font-weight:760}
    .ok{
      width:18px; height:18px; border-radius:8px;
      background: rgba(18,201,122,.12);
      border:1px solid rgba(18,201,122,.22);
      position:relative;
      flex:0 0 auto;
    }
    .ok::after{
      content:"";
      position:absolute; left:50%; top:52%;
      width:9px; height:5px;
      border-left:2px solid rgba(6,169,104,.95);
      border-bottom:2px solid rgba(6,169,104,.95);
      transform: translate(-50%,-50%) rotate(-45deg);
    }

    .table-wrap{
      border-radius:22px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(10,30,20,.10);
      padding:0;
      overflow:hidden;
      box-shadow: 0 14px 36px rgba(10,30,20,.06);
    }
    .table-titlebar{padding:16px 18px; border-bottom:1px solid rgba(10,30,20,.08)}
    .table-title{font-weight:980; font-size:16px}
    .table-note{margin-top:6px; color:var(--muted2); font-weight:650; font-size:13.2px}
    .table-scroll{overflow:auto}
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width:720px;
      font-size:14px;
    }
    .compare-table th, .compare-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(10,30,20,.08);
      vertical-align:top;
    }
    .compare-table thead th{
      background: rgba(18,201,122,.10);
      color:#08301d;
      font-weight:950;
      border-bottom:1px solid rgba(18,201,122,.18);
    }
    .compare-table th{font-weight:950; color:#0f2b20}
    .cell-good{font-weight:860}
    .cell-mid{color:var(--muted); font-weight:720}
    .compare-table tbody tr:hover td{background: rgba(18,201,122,.04)}
    .table-bottom-actions{
      padding:16px 18px;
      display:flex; gap:14px; justify-content:space-between; align-items:center; flex-wrap:wrap;
    }
    .table-bottom-title{font-weight:980}
    .table-bottom-sub{margin-top:6px; color:var(--muted); font-weight:650; font-size:13.5px}
    .table-bottom-right{display:flex; gap:12px; flex-wrap:wrap}

    .match-grid{display:grid; grid-template-columns: 1fr 420px; gap:16px; align-items:start}
    .match-form{border-radius:22px; padding:18px}
    .form-head{margin-bottom:12px}
    .form-title{font-weight:1000; font-size:18px}
    .form-sub{margin-top:6px; color:var(--muted2); font-weight:700; font-size:13.2px}
    .form{display:flex; flex-direction:column; gap:14px}
    .form-row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    .field{display:flex; flex-direction:column; gap:8px}
    .field-label{font-weight:820; font-size:13px; color:#0f2b20}
    .input, .select, .textarea{
      border:1px solid rgba(10,30,20,.14);
      background: rgba(255,255,255,.78);
      border-radius:14px;
      padding:12px 12px;
      outline:none;
      color:#0f2b20;
      font-weight:680;
      font-size:14px;
      transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
      width:100%;
    }
    .textarea{resize:vertical; min-height:120px}
    .input:focus, .select:focus, .textarea:focus{
      border-color: rgba(18,201,122,.55);
      box-shadow: 0 0 0 6px rgba(18,201,122,.14);
    }
    .form-foot{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .form-hint{display:flex; gap:10px; align-items:center; color:var(--muted2); font-weight:700; font-size:13px}
    .shield{
      width:18px; height:18px; border-radius:8px;
      background: rgba(18,201,122,.12);
      border:1px solid rgba(18,201,122,.22);
      position:relative;
      flex:0 0 auto;
    }
    .shield::after{
      content:"";
      position:absolute; left:50%; top:52%;
      width:10px; height:6px;
      border-left:2px solid rgba(6,169,104,.95);
      border-bottom:2px solid rgba(6,169,104,.95);
      transform: translate(-50%,-50%) rotate(-45deg);
    }

    .match-side{display:flex; flex-direction:column; gap:14px}
    .side-block{border-radius:22px; padding:18px}
    .side-title{font-weight:1000; font-size:16px}
    .side-list{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .side-li{display:flex; gap:12px; align-items:center; font-weight:780; color:#0f2b20}
    .num-dot{
      width:22px; height:22px; border-radius:9px;
      background: rgba(18,201,122,.12);
      border:1px solid rgba(18,201,122,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:980; font-size:12.5px;
    }

    .side-block-2 .cloud-tags{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .cloud-tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(10,30,20,.12);
      background: rgba(255,255,255,.65);
      font-weight:820; font-size:12.6px;
      color:#0f2b20;
    }

    .rule-cards{margin-top:12px; display:flex; flex-direction:column; gap:12px}
    .rule-card{
      border-radius:18px;
      padding:12px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(10,30,20,.10);
    }
    .rule-title{font-weight:950}
    .rule-text{margin-top:6px; color:var(--muted); font-weight:650; line-height:1.6; font-size:13.6px}

    .pricing-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:16px}
    .pricing-card{border-radius:22px}
    .pricing-card-alt{background: linear-gradient(180deg, rgba(18,201,122,.12), rgba(255,255,255,.74)); border-color: rgba(18,201,122,.18)}
    .pricing-head{margin-bottom:14px}
    .pricing-title{font-weight:1000; font-size:18px}
    .pricing-sub{margin-top:6px; color:var(--muted2); font-weight:700; font-size:13.2px}

    .pricing-steps{display:flex; flex-direction:column; gap:12px}
    .pricing-step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(10,30,20,.10);
      background: rgba(255,255,255,.66);
    }
    .ps-num{
      width:34px; height:34px; border-radius:14px;
      background: rgba(18,201,122,.12);
      border:1px solid rgba(18,201,122,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
    }
    .ps-title{font-weight:980}
    .ps-text{margin-top:6px; color:var(--muted); font-weight:650; line-height:1.6; font-size:13.6px}

    .mini-table-wrap{margin-top:6px}
    .mini-table-title{font-weight:950; margin-bottom:10px}
    .mini-table{
      border-radius:18px; overflow:hidden;
      border:1px solid rgba(10,30,20,.10);
      background: rgba(255,255,255,.65);
    }
    .mini-table .row{
      display:grid;
      grid-template-columns: 1fr 1.1fr 1fr;
      gap:10px;
      padding:12px 12px;
      border-bottom:1px solid rgba(10,30,20,.08);
      font-weight:720;
      align-items:start;
    }
    .mini-table .row:last-child{border-bottom:none}
    .row-head{background: rgba(18,201,122,.10); color:#08301d; font-weight:1000}
    .pricing-actions{margin-top:14px; display:flex; flex-direction:column; gap:10px}

    .pricing-footnote{
      margin-top:14px;
      display:flex; align-items:center; gap:10px;
      color:var(--muted2); font-weight:680;
      padding:12px 14px;
      border:1px dashed rgba(18,201,122,.28);
      border-radius:18px;
      background: rgba(255,255,255,.55);
    }
    .info-dot{width:10px; height:10px; border-radius:50%; background: rgba(18,201,122,.95); box-shadow: 0 0 0 6px rgba(18,201,122,.12)}

    .training-grid{display:grid; grid-template-columns: 420px 1fr; gap:16px; align-items:start}
    .train-card{border-radius:22px}
    .train-head{margin-bottom:12px}
    .train-title{font-weight:1000; font-size:18px}
    .train-sub{margin-top:6px; color:var(--muted2); font-weight:700; font-size:13.2px}
    .train-list{display:flex; flex-direction:column; gap:10px; margin-top:12px}
    .train-item{display:flex; gap:10px; align-items:center; font-weight:800}
    .bullet-mark{width:12px; height:12px; border-radius:5px; background: rgba(18,201,122,.12); border:1px solid rgba(18,201,122,.25); position:relative}
    .bullet-mark::after{
      content:"";
      position:absolute; left:50%; top:55%;
      width:7px; height:4px;
      border-left:2px solid rgba(6,169,104,.95);
      border-bottom:2px solid rgba(6,169,104,.95);
      transform: translate(-50%,-50%) rotate(-45deg);
    }
    .train-bottom{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}

    .train-right{display:flex; flex-direction:column; gap:14px}
    .train-right-card{border-radius:22px; padding:18px}
    .train-right-title{font-weight:1000; font-size:16px}

    .accordion-compact{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .acc-item{
      border-radius:18px;
      border:1px solid rgba(10,30,20,.10);
      background: rgba(255,255,255,.65);
      overflow:hidden;
    }
    .acc-btn{
      width:100%;
      text-align:left;
      padding:12px 14px;
      background:transparent;
      border:none;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      cursor:pointer;
      font-weight:900;
      color:#0f2b20;
    }
    .acc-icon{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(18,201,122,.22);
      background: rgba(18,201,122,.10);
      position:relative; flex:0 0 auto;
    }
    .acc-icon::before, .acc-icon::after{
      content:"";
      position:absolute; left:50%; top:50%;
      width:14px; height:2px; background: rgba(6,169,104,.95);
      transform: translate(-50%,-50%);
      border-radius:999px;
      transition: transform .2s ease, opacity .2s ease;
    }
    .acc-icon::after{transform: translate(-50%,-50%) rotate(90deg)}
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition: max-height .25s ease;
    }
    .acc-text{padding:0 14px 12px; color:var(--muted); font-weight:650; line-height:1.65; font-size:13.8px}
    .acc-item button[aria-expanded="true"] .acc-icon::after{opacity:0; transform: translate(-50%,-50%) rotate(0deg)}

    .who-grid{margin-top:12px; display:grid; grid-template-columns: 1fr; gap:12px}
    .who-card{
      border-radius:18px;
      padding:12px;
      border:1px solid rgba(10,30,20,.10);
      background: rgba(255,255,255,.65);
    }
    .who-title{font-weight:1000}
    .who-text{margin-top:6px; color:var(--muted); font-weight:650; line-height:1.6; font-size:13.6px}

    .help-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px}
    .help-card{border-radius:22px; padding:18px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease}
    .help-card:hover{transform: translateY(-4px); border-color: rgba(18,201,122,.25); box-shadow: 0 18px 34px rgba(10,30,20,.08)}
    .help-title{font-weight:1000; font-size:16px}
    .help-text{margin:10px 0 0; color:var(--muted); font-weight:620; line-height:1.65; font-size:14px}

    .faq-grid{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px}
    .faq-col{display:flex; flex-direction:column; gap:12px}
    .faq-item{
      border-radius:22px;
      border:1px solid rgba(10,30,20,.10);
      background: rgba(255,255,255,.72);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      text-align:left;
      padding:14px 16px;
      background:transparent;
      border:none;
      cursor:pointer;
      display:flex; justify-content:space-between; align-items:center; gap:14px;
      font-weight:950;
      color:#0f2b20;
    }
    .faq-icon{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(18,201,122,.22);
      background: rgba(18,201,122,.10);
      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(6,169,104,.95);
      transform: translate(-50%,-50%);
      border-radius:999px;
      transition: transform .2s ease, opacity .2s ease;
    }
    .faq-icon::after{transform: translate(-50%,-50%) rotate(90deg)}
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition: max-height .25s ease;
    }
    .faq-a p{
      margin:0;
      padding:0 16px 14px;
      color:var(--muted);
      font-weight:650;
      line-height:1.7;
      font-size:14px;
    }
    .faq-item .faq-q[aria-expanded="true"] .faq-icon::after{
      opacity:0;
      transform: translate(-50%,-50%) rotate(0deg);
    }

    .wiki-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px}
    .wiki-card{border-radius:22px; padding:18px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease}
    .wiki-card:hover{transform: translateY(-4px); border-color: rgba(18,201,122,.25); box-shadow: 0 18px 34px rgba(10,30,20,.08)}
    .wiki-title{font-weight:1000; font-size:16px}
    .wiki-text{margin:10px 0 0; color:var(--muted); font-weight:640; line-height:1.65; font-size:14px}

    .news-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:16px; align-items:start}
    .articles, .news-side{border-radius:22px; padding:18px; background: rgba(255,255,255,.72); border:1px solid rgba(10,30,20,.10)}
    .articles-head{display:flex; flex-direction:column; gap:6px; margin-bottom:10px}
    .articles-title{font-weight:1000; font-size:16px}
    .articles-sub{color:var(--muted2); font-weight:700; font-size:13.2px}
    .article-list{display:flex; flex-direction:column; gap:10px; margin-top:10px}
    .article-item{
      text-decoration:none;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(10,30,20,.10);
      background: rgba(255,255,255,.65);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article-item:hover{transform: translateY(-3px); border-color: rgba(18,201,122,.24); box-shadow: 0 16px 28px rgba(10,30,20,.08)}
    .article-kicker{color:var(--muted2); font-weight:800; font-size:12.5px}
    .article-name{margin-top:5px; font-weight:950}
    .article-right{color:rgba(6,169,104,.95); font-weight:1000}

    .side-head{display:flex; flex-direction:column; gap:6px; margin-bottom:10px}
    .review-grid{display:grid; grid-template-columns: 1fr; gap:12px}
    .review-card{
      border-radius:22px;
      padding:14px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(10,30,20,.10);
      box-shadow:none;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .review-card:hover{transform: translateY(-3px); border-color: rgba(18,201,122,.22); box-shadow: 0 16px 28px rgba(10,30,20,.08)}
    .review-top{display:flex; gap:12px; align-items:center}
    .review-avatar{
      width:40px; height:40px; border-radius:16px;
      background: rgba(18,201,122,.12);
      border:1px solid rgba(18,201,122,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:#08301d;
      flex:0 0 auto;
    }
    .review-role{font-weight:1000; font-size:13.8px}
    .review-meta{margin-top:4px; color:var(--muted2); font-weight:720; font-size:12.8px}
    .review-text{margin:10px 0 0; color:var(--muted); font-weight:640; line-height:1.7; font-size:14px}

    .review-actions{margin-top:14px}

    .join-grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
    .join-card{border-radius:22px}
    .join-card-2{background: linear-gradient(180deg, rgba(18,201,122,.12), rgba(255,255,255,.74)); border-color: rgba(18,201,122,.18)}
    .join-title{font-weight:1000; font-size:16px}
    .join-list{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .join-li{display:flex; gap:10px; align-items:flex-start; font-weight:770; color:#0f2b20; line-height:1.5}
    .join-actions{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}

    .join-mode{margin-top:12px; display:grid; grid-template-columns: 1fr; gap:12px}
    .mode-card{
      border-radius:18px; padding:12px;
      border:1px solid rgba(10,30,20,.10);
      background: rgba(255,255,255,.65);
    }
    .mode-title{font-weight:1000}
    .mode-text{margin-top:6px; color:var(--muted); font-weight:650; line-height:1.6; font-size:13.6px}

    .join-quote{
      margin-top:14px;
      padding:14px;
      border-radius:18px;
      border:1px dashed rgba(18,201,122,.30);
      background: rgba(255,255,255,.55);
      display:flex; gap:12px; align-items:flex-start;
    }
    .quote-mark{font-size:34px; line-height:1; color:rgba(6,169,104,.95); font-weight:1000}
    .quote-text{font-weight:760; color:var(--muted); line-height:1.6}

    .contact-grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:start}
    .contact-card{border-radius:22px}
    .contact-title{font-weight:1000; font-size:16px}
    .contact-title.small{font-size:14.5px; margin-bottom:10px}
    .contact-items{margin-top:12px; display:flex; flex-direction:column; gap:12px}
    .contact-item{display:flex; gap:12px; justify-content:space-between; align-items:baseline; border-bottom:1px solid rgba(10,30,20,.08); padding-bottom:10px}
    .contact-item:last-child{border-bottom:none}
    .contact-label{color:var(--muted2); font-weight:780; font-size:13px}
    .contact-value{font-weight:850}

    .link-safe{color:inherit; text-decoration:none; font-weight:900}
    .link-safe:hover{text-decoration:underline}

    .contact-net{margin-top:18px; display:flex; flex-direction:column; gap:10px}
    .qr-wrap{
      display:flex; gap:14px; align-items:center;
      border-radius:20px;
      padding:12px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(10,30,20,.10);
    }
    .qr-img{width:96px; height:96px; border-radius:16px; object-fit:cover; background:#fff}
    .qr-caption{color:var(--muted); font-weight:680; line-height:1.5; font-size:13.6px}

    .contact-actions{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}

    .links-grid{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .links-grid a{
      text-decoration:none;
      color:#0f2b20;
      font-weight:850;
      border:1px solid rgba(10,30,20,.12);
      background: rgba(255,255,255,.65);
      padding:10px 12px;
      border-radius:999px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      font-size:13px;
    }
    .links-grid a:hover{transform: translateY(-2px); border-color: rgba(18,201,122,.24); box-shadow: 0 16px 28px rgba(10,30,20,.08)}
    .contact-quick{margin-top:18px}
    .quick-actions{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top:12px}
    .contact-mini{margin-top:18px; display:flex; flex-direction:column; gap:10px}
    .mini-line{display:flex; gap:10px; align-items:center; color:var(--muted2); font-weight:700; font-size:13px}
    .mini-icon-round{
      width:12px; height:12px; border-radius:5px;
      background: rgba(18,201,122,.12);
      border:1px solid rgba(18,201,122,.22);
      flex:0 0 auto;
    }
    .mini-icon-round-2{background: rgba(0,209,143,.10); border-color: rgba(0,209,143,.22)}

    .cards-row{display:flex; gap:14px; flex-wrap:wrap}
    .small-article{
      flex:1 1 220px;
      border-radius:22px;
      padding:16px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(10,30,20,.10);
      box-shadow: 0 10px 24px rgba(10,30,20,.05);
    }
    .small-article-title{font-weight:1000; margin-bottom:10px}
    .small-article-link{color:#0f2b20; font-weight:900; text-decoration:none}
    .small-article-link:hover{text-decoration:underline}

    .site-footer{
      background: #072015;
      color:#e9fff4;
      border-top:1px solid rgba(255,255,255,.08);
      margin-top:16px;
    }
    .site-footer a{color:#e9fff4}
    .footer-inner{padding:26px 0 18px}
    .footer-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap;
      padding-bottom:14px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-brand{display:flex; align-items:center; gap:12px; min-width:280px}
    .footer-logo{width:42px; height:42px; object-fit:contain}
    .footer-meta{display:flex; flex-direction:column; gap:6px}
    .footer-name{font-weight:1000}
    .footer-sub{color:rgba(233,255,244,.72); font-weight:700; font-size:13.2px}
    .footer-links{display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:center}
    .footer-link{
      text-decoration:none;
      font-weight:780;
      color:rgba(233,255,244,.88);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
    }
    .footer-link:hover{background: rgba(255,255,255,.08)}
    .footer-actions{display:flex; gap:12px; align-items:center; flex-wrap:wrap}

    .site-footer .btn-ghost{
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.12);
      color:#e9fff4;
    }
    .site-footer .btn-ghost:hover{background: rgba(255,255,255,.10)}
    .site-footer .btn-primary{box-shadow: 0 18px 44px rgba(18,201,122,.20)}
    .footer-bottom{
      margin-top:14px;
      display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
      color:rgba(233,255,244,.78);
      font-weight:700;
      font-size:13px;
    }
    .footer-right{display:flex; align-items:center; gap:10px}
    .footer-dot{width:10px; height:10px; border-radius:5px; background: rgba(18,201,122,.75); box-shadow: 0 0 0 6px rgba(18,201,122,.16)}

    .to-top{
      position:fixed;
      right:18px;
      bottom:88px;
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(10,30,20,.14);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 30px rgba(10,30,20,.14);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      z-index:60;
      opacity:0; transform: translateY(8px);
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease, background .2s ease;
      color:#0f2b20;
    }
    .to-top.show{
      opacity:1; transform: translateY(0);
      pointer-events:auto;
    }
    .to-top:hover{background:#ffffff}

    .float-contact{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom:16px;
      z-index:70;
      display:flex;
      gap:10px;
      padding:10px;
      border-radius:22px;
      background: rgba(255,255,255,.68);
      border:1px solid rgba(10,30,20,.12);
      box-shadow: 0 18px 48px rgba(10,30,20,.18);
      backdrop-filter: blur(10px);
      width:min(540px, calc(100% - 24px));
      justify-content:space-between;
    }
    .float-btn{
      flex:1 1 0;
      display:flex; align-items:center; justify-content:center;
      gap:10px;
      text-decoration:none;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(10,30,20,.12);
      font-weight:950;
      color:#0f2b20;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      -webkit-tap-highlight-color: transparent;
    }
    .float-btn:active{transform: translateY(1px)}
    .float-green{
      background: linear-gradient(135deg, rgba(18,201,122,.95), rgba(6,169,104,.95));
      border-color: rgba(0,0,0,.05);
      color:#052116;
      box-shadow: 0 14px 32px rgba(18,201,122,.20);
    }
    .float-green:hover{box-shadow: 0 18px 40px rgba(18,201,122,.26)}
    .float-ghost{
      background: rgba(255,255,255,.70);
    }
    .float-btn:hover{border-color: rgba(18,201,122,.22); box-shadow: 0 16px 34px rgba(10,30,20,.10)}
    .float-icon{display:inline-flex; align-items:center; justify-content:center; color:currentColor}
    .float-text{font-size:13.8px; white-space:nowrap}

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .35s ease, transform .35s ease;
    }
    .reveal.is-visible{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; gap:14px}
      .hero-title{font-size:36px}
      .hero-mini{grid-template-columns: 1fr; }
      .nav-desktop{display:none}
      .nav-toggle{display:flex}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .bullet-grid{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: 1fr 1fr}
      .industry-grid{grid-template-columns: 1fr}
      .network-layout{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr 1fr; gap:12px}
      .case-grid{grid-template-columns: 1fr}
      .case-card-wide{grid-column: auto}
      .compare-top{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .wiki-grid{grid-template-columns: 1fr 1fr}
      .news-grid{grid-template-columns: 1fr}
      .join-grid{grid-template-columns: 1fr}
      .pricing-grid{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .match-grid{grid-template-columns: 1fr}
      .quick-actions{grid-template-columns: 1fr}
      .float-contact{gap:12px; padding:10px}
    }

    @media (max-width: 520px){
      .hero-title{font-size:30px}
      .section-title{font-size:24px}
      .section{padding:42px 0}
      .steps{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: 1fr}
      .wiki-grid{grid-template-columns: 1fr}
      .form-row{grid-template-columns: 1fr}
      .float-text{display:none}
      .float-btn{justify-content:center}
      .to-top{bottom:92px}
    }