:root{
      --bg:#f7fbf8;
      --bg2:#f0f8f4;
      --card:#ffffff;
      --text:#162226;
      --muted:#5b6b6a;
      --muted2:#7b8b89;
      --line:rgba(15,38,34,.10);
      --shadow:0 14px 40px rgba(0,0,0,.08);
      --shadow2:0 10px 26px rgba(9,28,24,.10);
      --mint:#41b883;
      --mint2:#bdf7d8;
      --mint3:#d8fbe9;
      --ink:#0f2a25;
      --blue:#2f6fed;
      --violet:#7b61ff;
      --radius:18px;
      --radius2:26px;
      --container:1120px;
      --pad:18px;
      --focus:0 0 0 4px rgba(65,184,131,.18);
      --grad:linear-gradient(120deg, rgba(189,247,216,.55), rgba(255,255,255,0) 55%),
             radial-gradient(900px 420px at 14% 12%, rgba(65,184,131,.22), rgba(65,184,131,0) 55%),
             radial-gradient(620px 320px at 78% 0%, rgba(47,111,237,.15), rgba(47,111,237,0) 55%);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      background: radial-gradient(1200px 600px at 0% 0%, rgba(65,184,131,.10), rgba(65,184,131,0) 55%),
                  linear-gradient(180deg, #f9fcfa 0%, var(--bg) 42%, #ffffff 100%);
      color:var(--text);
    }

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

    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
      background:#fff; border:1px solid var(--line); border-radius:12px; z-index:9999;
      box-shadow:var(--shadow2);
      outline:none;
    }

    .sr-only{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
      clip:rect(0,0,0,0); border:0;
    }

    .site-header{
      position:sticky; top:0; z-index:60;
      background: rgba(249,252,250,.78);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(15,38,34,.08);
    }

    .nav-container{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding:12px var(--pad);
    }

    .brand{display:flex; align-items:center; gap:12px; min-width:240px;}
    .brand-link{display:flex; align-items:center; gap:10px; text-decoration:none;}
    .ai-page-logo{width:44px; height:44px; object-fit:contain; border-radius:12px;}
    .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand-name{font-weight:780; letter-spacing:.2px}
    .brand-sub{font-size:12px; color:var(--muted)}

    .nav{display:flex; align-items:center; justify-content:flex-end; gap:14px; width:100%;}
    .nav-toggle{
      display:none;
      width:42px; height:42px; border-radius:14px;
      border:1px solid rgba(15,38,34,.12);
      background:rgba(255,255,255,.7);
      cursor:pointer;
    }
    .nav-toggle:focus{outline:none; box-shadow:var(--focus)}
    .nav-toggle-line{
      display:block; width:18px; height:2px; background:rgba(15,38,34,.75); margin:5px auto;
      border-radius:10px;
    }

    .nav-menu{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-link{
      text-decoration:none; color:rgba(15,38,34,.82);
      font-size:13px; padding:10px 10px; border-radius:14px;
      transition: background .2s ease, transform .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:rgba(65,184,131,.10);
      color:rgba(15,38,34,1);
      transform:translateY(-1px);
    }

    .nav-cta{display:flex; align-items:center; gap:10px; margin-left:auto;}
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(15,38,34,.12);
      text-decoration:none; cursor:pointer;
      font-weight:650; font-size:14px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      background:#fff;
      color:rgba(15,38,34,.92);
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn:hover{transform:translateY(-1px); box-shadow:0 10px 26px rgba(0,0,0,.08)}
    .btn:active{transform:translateY(0px); box-shadow:none}

    .btn-primary{
      background:linear-gradient(180deg, rgba(65,184,131,1) 0%, rgba(41,159,116,1) 100%);
      border-color:rgba(31,135,98,.35);
      color:#fff;
    }
    .btn-primary:hover{
      background:linear-gradient(180deg, rgba(74,198,139,1) 0%, rgba(41,159,116,1) 100%);
      box-shadow:0 16px 42px rgba(65,184,131,.28);
    }
    .btn-ghost{
      background:rgba(255,255,255,.6);
    }
    .btn-ghost:hover{
      border-color:rgba(65,184,131,.28);
      background:rgba(255,255,255,.85);
    }
    .btn-soft{
      background:rgba(65,184,131,.10);
      border-color:rgba(65,184,131,.18);
      color:rgba(16,55,42,.95);
    }
    .btn-soft:hover{
      background:rgba(65,184,131,.14);
      border-color:rgba(65,184,131,.24);
    }
    .btn-lg{padding:13px 18px; border-radius:16px; font-size:15px}
    .btn-block{width:100%}

    .hero{
      position:relative;
      overflow:hidden;
      padding:52px 0 26px;
      background: linear-gradient(180deg, rgba(247,251,248,1) 0%, rgba(240,248,244,1) 45%, rgba(255,255,255,1) 100%);
    }
    .hero-bg{
      position:absolute; inset:0; pointer-events:none;
      background:var(--grad);
    }
    .gridlines{
      position:absolute; inset:-40px -40px auto -40px;
      height:540px;
      background:
        linear-gradient(to right, rgba(16,55,42,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16,55,42,.06) 1px, transparent 1px);
      background-size:56px 56px;
      mask-image: radial-gradient(closest-side, rgba(0,0,0,.9), rgba(0,0,0,0));
      opacity:.65;
      transform: translateZ(0);
    }
    .mint-orb{
      position:absolute;
      border-radius:50%;
      filter: blur(0px);
      opacity:.55;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 55%),
                  radial-gradient(circle at 55% 60%, rgba(65,184,131,.55), rgba(65,184,131,0) 60%);
      box-shadow: 0 30px 90px rgba(65,184,131,.18);
    }
    .orb1{width:420px; height:420px; left:-140px; top:-160px}
    .orb2{width:300px; height:300px; right:-120px; top:-90px; opacity:.45}
    .orb3{width:260px; height:260px; left:48%; top:160px; opacity:.32}

    .hero-grid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:22px;
      align-items:stretch;
      position:relative;
      z-index:2;
    }

    .eyebrow{
      display:flex; align-items:center; gap:10px;
      color:rgba(16,55,42,.95);
      font-size:13px;
      font-weight:650;
      padding:10px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.60);
      border:1px solid rgba(15,38,34,.10);
      width:max-content;
      box-shadow: 0 12px 40px rgba(0,0,0,.05);
      animation: floatIn .6s ease both;
    }
    @keyframes floatIn{
      from{opacity:0; transform:translateY(10px)}
      to{opacity:1; transform:translateY(0)}
    }
    .eyebrow-dot{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #dfffed, var(--mint));
      box-shadow: 0 10px 30px rgba(65,184,131,.35);
    }

    .hero-title{
      margin:18px 0 12px;
      font-size:40px;
      letter-spacing:-.6px;
      line-height:1.1;
      max-width:680px;
      animation: fadeUp .7s ease both;
    }
    @keyframes fadeUp{
      from{opacity:0; transform:translateY(12px)}
      to{opacity:1; transform:translateY(0)}
    }
    .hero-lead{
      margin:0;
      color:rgba(22,34,38,.86);
      font-size:16px;
      line-height:1.75;
      max-width:640px;
      animation: fadeUp .8s ease both;
      animation-delay:.05s;
    }

    .hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
    .hero-badges{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:16px;
    }
    .badge{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.68);
      color:rgba(15,38,34,.92);
      font-weight:650;
      font-size:13px;
    }
    .badge-icon{
      width:26px; height:26px; border-radius:10px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(65,184,131,.12);
      border:1px solid rgba(65,184,131,.20);
    }

    .hero-mini{
      display:flex; gap:12px; margin-top:18px; flex-wrap:wrap;
    }
    .mini-item{
      flex:1;
      min-width:220px;
      padding:12px 14px;
      border-radius:16px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(15,38,34,.10);
    }
    .mini-k{font-weight:780}
    .mini-v{color:var(--muted); margin-top:4px; font-size:13px}

    .hero-right{
      display:flex; flex-direction:column; gap:14px; align-items:stretch;
    }

    .glass{
      background: rgba(255,255,255,.68);
      border:1px solid rgba(15,38,34,.10);
      box-shadow: 0 18px 60px rgba(0,0,0,.06);
      border-radius:var(--radius2);
      padding:18px;
    }
    .panel-head{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
    .panel-title{font-weight:820; letter-spacing:.1px}
    .panel-note{color:var(--muted); font-size:13px; margin-top:2px}

    .scenario-grid{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
    }
    .scenario-card{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.7);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      cursor:default;
    }
    .scenario-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(0,0,0,.08);
      border-color: rgba(65,184,131,.24);
    }
    .scenario-top{display:flex; align-items:center; gap:10px}
    .ico{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(65,184,131,.12);
      border:1px solid rgba(65,184,131,.18);
      font-size:16px;
    }
    .scenario-name{font-weight:780; font-size:14px}
    .scenario-desc{margin-top:8px; font-size:13px; color:var(--muted); line-height:1.4}

    .panel-foot{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }

    .data-row{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:10px;
    }
    .data-card{
      padding:12px 12px;
      border-radius:18px;
      background: rgba(255,255,255,.66);
      border:1px solid rgba(15,38,34,.10);
      box-shadow: 0 10px 26px rgba(0,0,0,.04);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .data-card:focus{outline:none; box-shadow:var(--focus)}
    .data-card:hover{transform:translateY(-2px); border-color: rgba(65,184,131,.24); box-shadow:0 18px 36px rgba(0,0,0,.08)}
    .data-k{color:var(--muted); font-size:13px; font-weight:650}
    .data-v{margin-top:6px; font-weight:860; letter-spacing:.2px}
    .data-s{margin-top:4px; color:var(--muted2); font-size:12.5px}

    .section{padding:56px 0}
    .section-soft{
      background: linear-gradient(180deg, rgba(240,248,244,.85) 0%, rgba(255,255,255,1) 80%);
      border-top:1px solid rgba(15,38,34,.06);
      border-bottom:1px solid rgba(15,38,34,.06);
    }

    .section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:20px}
    .section-title{
      margin:0;
      font-size:28px;
      letter-spacing:-.3px;
      font-weight:900;
    }
    .section-desc{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      max-width:640px;
      font-size:15px;
    }

    .about-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .about-card{
      padding:18px;
      border-radius:var(--radius);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .about-card:hover{transform: translateY(-2px); box-shadow: 0 18px 60px rgba(0,0,0,.08)}
    .about-card-wide{grid-column: span 3; padding:18px 18px 16px}
    .about-number{
      font-weight:900;
      color:rgba(65,184,131,.95);
      letter-spacing:1px;
    }
    .about-title{margin-top:10px; font-weight:900; font-size:18px}
    .about-text{margin-top:8px; color:var(--muted); line-height:1.7; font-size:14px}

    .about-quote{
      display:flex; gap:14px; align-items:flex-start;
    }
    .quote-mark{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(65,184,131,.12);
      border:1px solid rgba(65,184,131,.18);
      font-size:22px;
      font-weight:900;
      color:rgba(16,55,42,.95);
    }
    .quote-title{font-weight:950; font-size:20px}
    .quote-text{margin-top:6px; color:var(--muted); line-height:1.7; font-size:14px}
    .quote-tags{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
    .tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.75);
      font-size:12.5px;
      color:rgba(15,38,34,.84);
      font-weight:650;
    }
    .about-quick{display:flex; gap:10px; margin-top:16px; flex-wrap:wrap}

    .services-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .service-card{
      padding:18px;
      border-radius:var(--radius);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:250px;
      display:flex; flex-direction:column;
    }
    .service-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(0,0,0,.08); border-color: rgba(65,184,131,.24)}
    .service-icon{
      width:46px; height:46px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(65,184,131,.12);
      border:1px solid rgba(65,184,131,.18);
      font-size:18px;
      margin-bottom:10px;
    }
    .service-title{margin:0; font-size:17px; font-weight:950}
    .service-text{margin-top:8px; color:var(--muted); line-height:1.7; font-size:14px}
    .service-list{margin:12px 0 0; padding-left:18px; color:rgba(15,38,34,.86); line-height:1.8; font-size:13.5px}
    .service-list li{margin:4px 0}
    .models-strip{
      margin-top:18px;
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.66);
    }
    .strip-label{font-weight:900; margin-bottom:10px}
    .strip-chips{display:flex; flex-wrap:wrap; gap:10px}
    .chip{
      display:inline-flex;
      align-items:center;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(65,184,131,.10);
      border:1px solid rgba(65,184,131,.18);
      color:rgba(16,55,42,.95);
      font-weight:720;
      font-size:12.5px;
      white-space:nowrap;
    }
    .chip-soft{
      background: rgba(47,111,237,.08);
      border-color: rgba(47,111,237,.16);
      color: rgba(19,51,115,.96);
    }

    .two-col{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }

    .timeline{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
    }
    .timeline-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .timeline-title{font-weight:950; font-size:18px}
    .timeline-sub{color:var(--muted); font-size:13px; margin-top:4px}
    .timeline-list{margin:14px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:12px}
    .timeline-item{display:flex; gap:12px; align-items:flex-start}
    .t-dot{
      width:14px; height:14px; border-radius:50%;
      background: rgba(65,184,131,1);
      box-shadow: 0 10px 25px rgba(65,184,131,.35);
      margin-top:4px;
      flex:0 0 auto;
    }
    .t-title{font-weight:900}
    .t-text{color:var(--muted); line-height:1.7; margin-top:6px; font-size:14px}

    .side-cards{
      display:flex; flex-direction:column; gap:14px;
    }
    .side-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
    }
    .side-card-muted{
      background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(240,248,244,.72) 100%);
    }
    .side-card-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .side-card-kicker{color:var(--muted); font-weight:700; font-size:13px}
    .side-card-title{font-weight:950; font-size:18px; margin-top:6px}
    .side-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .checklist{margin:12px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
    .check{display:inline-flex; width:22px; height:22px; border-radius:9px; align-items:center; justify-content:center; background: rgba(65,184,131,.12); border:1px solid rgba(65,184,131,.18); color: rgba(16,55,42,.95); font-weight:900; margin-right:8px}
    .checklist li{color:rgba(15,38,34,.88); font-size:14px; line-height:1.5}

    .muted-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}
    .stat-row{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px}
    .stat-k{color:var(--muted)}
    .stat-v{font-weight:900; margin-top:6px}
    .stat{padding:12px; border-radius:16px; border:1px solid rgba(15,38,34,.10); background: rgba(255,255,255,.7)}
    .stat-k{font-size:13px; color:var(--muted)}
    .stat-v{font-size:14px; font-weight:950; margin-top:6px}

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .industry-card{
      padding:18px;
      border-radius:var(--radius);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:220px;
    }
    .industry-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(0,0,0,.08); border-color: rgba(65,184,131,.24)}
    .industry-top{display:flex; align-items:center; gap:12px}
    .industry-icon{
      width:46px; height:46px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(65,184,131,.12);
      border:1px solid rgba(65,184,131,.18);
      font-size:18px;
    }
    .industry-title{font-weight:950; font-size:17px}
    .industry-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}
    .industry-pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .pill{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.7);
      font-size:12.5px;
      font-weight:700;
      color:rgba(15,38,34,.86);
    }

    .process-grid{
      display:grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap:12px;
      align-items:stretch;
    }
    .process-card{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:170px;
      display:flex; flex-direction:column;
    }
    .process-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(0,0,0,.08); border-color: rgba(65,184,131,.24)}
    .process-no{
      width:36px; height:36px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(65,184,131,.12);
      border:1px solid rgba(65,184,131,.18);
      font-weight:950;
      color:rgba(16,55,42,.95);
    }
    .process-title{margin-top:10px; font-weight:950}
    .process-text{margin-top:8px; color:var(--muted); line-height:1.7; font-size:14px}

    .process-actions{display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:18px}

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1.2fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .network-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
    }
    .network-card-mid{background: linear-gradient(180deg, rgba(255,255,255,.76) 0%, rgba(240,248,244,.78) 100%)}
    .network-title{font-weight:950; font-size:18px}
    .network-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}
    .network-tags{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .network-mini{display:grid; grid-template-columns:1fr; gap:12px; margin-top:14px}
    .mini-bubble{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.7);
    }
    .mini-bk{font-weight:900}
    .mini-bv{margin-top:6px; color:var(--muted); font-size:13.5px}

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .case-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:220px;
      display:flex; flex-direction:column;
    }
    .case-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(0,0,0,.08); border-color: rgba(65,184,131,.24)}
    .case-card:focus{outline:none; box-shadow:var(--focus)}
    .case-top{display:flex; justify-content:space-between; gap:10px; align-items:flex-start}
    .case-badge{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(65,184,131,.12);
      border:1px solid rgba(65,184,131,.18);
      font-weight:800;
      font-size:12.5px;
      color:rgba(16,55,42,.95);
    }
    .case-badge-mint{background: rgba(47,111,237,.08); border-color: rgba(47,111,237,.16); color: rgba(19,51,115,.96)}
    .case-badge-blue{background: rgba(123,97,255,.10); border-color: rgba(123,97,255,.18); color: rgba(54,32,130,.98)}
    .case-badge-violet{background: rgba(123,97,255,.10); border-color: rgba(123,97,255,.18); color: rgba(54,32,130,.98)}
    .case-time{color:var(--muted2); font-size:13px; white-space:nowrap}
    .case-title{margin-top:12px; font-weight:950; font-size:17px; line-height:1.3}
    .case-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px; flex:1}
    .case-bottom{margin-top:14px; display:flex; justify-content:space-between; align-items:flex-end; gap:10px; flex-wrap:wrap}
    .case-meta{color:var(--muted2); font-size:13px}
    .link-more{
      text-decoration:none;
      color:rgba(16,55,42,.98);
      font-weight:800;
      font-size:14px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(65,184,131,.18);
      background: rgba(65,184,131,.10);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .link-more:hover{transform:translateY(-1px); background: rgba(65,184,131,.14); box-shadow:0 16px 34px rgba(0,0,0,.08)}

    .compare-wrap{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }

    .rating-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
      position:sticky;
      top:92px;
    }
    .rating-top{display:flex; align-items:center; justify-content:space-between; gap:14px}
    .stars{display:flex; gap:6px}
    .star{color:rgba(65,184,131,1); font-size:18px; filter: drop-shadow(0 6px 16px rgba(65,184,131,.25))}
    .rating-score{display:flex; align-items:baseline; gap:6px}
    .score-num{font-weight:980; font-size:44px; letter-spacing:-1px; color:rgba(15,38,34,.96); line-height:1}
    .score-den{color:var(--muted); font-weight:800}
    .rating-text{margin-top:12px; color:var(--muted); line-height:1.7}
    .rating-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .compare-table-wrap{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
    }
    .table-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .table-title{font-weight:950; font-size:18px}
    .table-note{color:var(--muted); font-size:13px; margin-top:4px}
    .table-scroll{overflow:auto; border-radius:14px}
    .compare-table{
      width:100%;
      min-width:680px;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
    }
    .compare-table th,
    .compare-table td{
      border-bottom:1px solid rgba(15,38,34,.08);
      padding:12px 12px;
      text-align:left;
      vertical-align:top;
      font-size:14px;
    }
    .compare-table th{
      background: rgba(65,184,131,.10);
      color:rgba(15,38,34,.92);
      font-weight:920;
      border-top-left-radius:14px;
      border-top-right-radius:14px;
    }
    .compare-table tr:last-child td{border-bottom:none}
    .good{font-weight:950; color:rgba(16,55,42,.98)}
    .mid{font-weight:950; color:rgba(89,107,107,.95)}

    .table-foot{
      display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
      margin-top:12px;
    }
    .foot-note{color:var(--muted2); font-size:13px; line-height:1.5}

    .faq-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .faq-panel{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
    }
    .faq-toolbar{display:flex; flex-direction:column; gap:6px; margin-bottom:10px}
    .faq-toolbar-title{font-weight:950; font-size:18px}
    .faq-toolbar-sub{color:var(--muted); font-size:13px}
    .faq-actions{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px}
    .faq-list{display:flex; flex-direction:column; gap:10px}
    .faq-item{
      border:1px solid rgba(15,38,34,.10);
      border-radius:16px;
      background: rgba(255,255,255,.74);
      overflow:hidden;
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .faq-item[open]{
      border-color: rgba(65,184,131,.24);
      box-shadow: 0 16px 36px rgba(0,0,0,.08);
      transform: translateY(-1px);
    }
    .faq-summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      font-weight:900;
      font-size:14.5px;
      color:rgba(15,38,34,.95);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      user-select:none;
    }
    .faq-summary::-webkit-details-marker{display:none}
    .faq-summary:after{
      content:"+";
      font-weight:900;
      color:rgba(65,184,131,.95);
      width:28px; height:28px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(65,184,131,.18);
      background: rgba(65,184,131,.10);
      transition: transform .2s ease;
      flex:0 0 auto;
    }
    .faq-item[open] .faq-summary:after{
      content:"–";
      transform: rotate(0deg);
    }
    .faq-answer{
      padding:0 14px 14px;
      color:var(--muted);
      line-height:1.7;
      font-size:14px;
    }

    .faq-aside{display:flex; flex-direction:column; gap:14px}
    .aside-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
    }
    .aside-title{font-weight:950; font-size:18px}
    .aside-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}
    .aside-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .aside-divider{height:1px; background: rgba(15,38,34,.08); margin:14px 0}
    .aside-mini-k{color:var(--muted); font-weight:800; font-size:13px}
    .aside-mini-v{margin-top:6px; font-weight:900}
    .aside-links{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
    .link-pill{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.75);
      color:rgba(15,38,34,.90);
      font-weight:800;
      font-size:13px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .link-pill:hover{transform:translateY(-1px); background: rgba(65,184,131,.10); border-color: rgba(65,184,131,.20)}

    .aside-card-qr .qr-head{display:flex; justify-content:space-between; align-items:flex-start; gap:10px}
    .qr-title{font-weight:950; font-size:18px}
    .qr-sub{color:var(--muted); font-size:13px; margin-top:4px}
    .qr-img{
      width:100%;
      max-width:240px;
      display:block;
      margin:14px auto 8px;
      border-radius:18px;
      border:1px solid rgba(15,38,34,.10);
      background:#fff;
    }
    .qr-note{color:var(--muted); line-height:1.7; font-size:13.5px}

    .match-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }

    .match-box{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
    }
    .match-title{font-weight:950; font-size:18px}
    .match-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}
    .match-kv{
      margin-top:14px;
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    .kv{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.7);
    }
    .kv-k{font-weight:900}
    .kv-v{margin-top:6px; color:var(--muted); font-size:13.5px; line-height:1.5}
    .match-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .card{
      background: rgba(255,255,255,.74);
      border:1px solid rgba(15,38,34,.10);
      border-radius:var(--radius2);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
    }

    .form{padding:18px}
    .form-head{display:flex; flex-direction:column; gap:6px; margin-bottom:10px}
    .form-title{font-weight:950; font-size:18px}
    .form-sub{color:var(--muted); font-size:13px}
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field-full{grid-column: span 2}
    .field-label{font-weight:850; font-size:13.5px; color:rgba(15,38,34,.92)}
    .input{
      width:100%;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.12);
      background: rgba(255,255,255,.9);
      color:rgba(15,38,34,.95);
      font-size:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
    }
    .input:focus{box-shadow:var(--focus); border-color: rgba(65,184,131,.35)}
    .textarea{resize:vertical; min-height:116px}
    .form-foot{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .form-hint{min-height:18px; color:var(--muted); font-size:13.5px; line-height:1.4}

    .note-strip{
      margin-top:12px;
      padding:12px 14px;
      border-radius:18px;
      border:1px dashed rgba(65,184,131,.28);
      background: rgba(65,184,131,.08);
      display:flex; gap:12px; align-items:flex-start;
    }
    .note-dot{
      width:12px; height:12px; border-radius:50%;
      background: rgba(65,184,131,1);
      margin-top:4px;
      box-shadow:0 10px 25px rgba(65,184,131,.35);
    }
    .note-text{color:rgba(16,55,42,.94); font-weight:650; line-height:1.5; font-size:13.5px}

    .pricing-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .pricing-card{padding:18px}
    .pricing-head{display:flex; flex-direction:column; gap:6px}
    .pricing-title{font-weight:950; font-size:18px}
    .pricing-sub{color:var(--muted); font-size:13px}

    .token-table{
      width:100%;
      min-width:680px;
      border-collapse:separate;
      border-spacing:0;
    }
    .token-table th,
    .token-table td{
      border-bottom:1px solid rgba(15,38,34,.08);
      padding:12px 12px;
      text-align:left;
      vertical-align:top;
      font-size:14px;
    }
    .token-table th{
      background: rgba(65,184,131,.10);
      font-weight:920;
    }
    .token-table tr:last-child td{border-bottom:none}

    .pricing-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; justify-content:flex-start}
    .pricing-side{display:flex; flex-direction:column; gap:14px}
    .side-panel{padding:18px}
    .side-panel-title{font-weight:950; font-size:18px}
    .side-panel-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}

    .steps-mini{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .mini-step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.7);
    }
    .mini-step-no{
      width:38px; height:38px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(47,111,237,.08);
      border:1px solid rgba(47,111,237,.16);
      color: rgba(19,51,115,.96);
      font-weight:950;
      flex:0 0 auto;
    }
    .mini-step-title{font-weight:950}
    .mini-step-text{margin-top:6px; color:var(--muted); line-height:1.6; font-size:13.5px}

    .side-panel-foot{margin-top:14px}
    .secure-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
    .secure-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.7);
    }
    .secure-ico{font-size:18px}
    .secure-text{margin-top:6px; font-weight:800; color:rgba(15,38,34,.88); line-height:1.4; font-size:13.5px}

    .kpi-row{display:grid; grid-template-columns:1fr; gap:12px}
    .kpi{
      padding:14px 14px;
      border-radius:var(--radius);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.72);
    }
    .kpi-k{color:var(--muted); font-weight:850; font-size:13px}
    .kpi-v{margin-top:6px; font-weight:980; letter-spacing:.2px}
    .kpi-s{margin-top:6px; color:var(--muted2); font-size:13px; line-height:1.5}

    .training-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:stretch;
    }
    .train-card{padding:18px}
    .train-card-wide{background: linear-gradient(180deg, rgba(255,255,255,.76) 0%, rgba(240,248,244,.82) 100%)}
    .train-title{font-weight:950; font-size:18px}
    .list-plain{margin:12px 0 0; padding-left:18px; color:rgba(15,38,34,.88); line-height:2; font-size:14px}
    .train-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .train-top{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; align-items:flex-start}
    .train-kicker{color:var(--muted); font-weight:800; font-size:13px}
    .train-headline{margin-top:6px; font-weight:980; font-size:20px}
    .train-bullets{display:flex; flex-direction:column; gap:10px; min-width:230px}
    .t-bullet{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.7);
      font-weight:800;
      color:rgba(15,38,34,.9);
    }
    .t-b-ico{display:inline-flex; width:22px; height:22px; border-radius:9px; align-items:center; justify-content:center;
      background: rgba(65,184,131,.12); border:1px solid rgba(65,184,131,.18); margin-right:8px}
    .train-program{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px}
    .program-title{font-weight:950}
    .program-text{margin-top:8px; color:var(--muted); line-height:1.7; font-size:14px}
    .train-bottom{display:flex; justify-content:space-between; gap:12px; align-items:center; flex-wrap:wrap; margin-top:14px}
    .train-tip{color:var(--muted2); font-size:13px}

    .help-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .help-card{padding:18px}
    .help-title{font-weight:950; font-size:18px}
    .help-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}
    .help-list{margin:12px 0 0; padding-left:18px; line-height:2; color:rgba(15,38,34,.88); font-size:14px}
    .help-list li{margin:4px 0}

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .wiki-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
    }
    .wiki-top{display:flex; align-items:center; gap:12px}
    .wiki-icon{
      width:46px; height:46px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(65,184,131,.12);
      border:1px solid rgba(65,184,131,.18);
      font-size:18px;
    }
    .wiki-title{font-weight:950; font-size:17px}
    .wiki-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}

    .topic-cloud{
      margin-top:18px;
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.68);
    }
    .cloud-title{font-weight:950; margin-bottom:10px}
    .cloud-chips{display:flex; flex-wrap:wrap; gap:10px}

    .articles-grid{
      display:grid;
      grid-template-columns: 1fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .article-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
      min-height:250px;
      display:flex; flex-direction:column;
    }
    .article-top{display:flex; align-items:center; gap:10px}
    .article-tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(65,184,131,.18);
      background: rgba(65,184,131,.10);
      font-weight:900;
      font-size:12.5px;
      color:rgba(16,55,42,.95);
    }
    .article-dot{
      width:10px; height:10px; border-radius:50%;
      background: rgba(47,111,237,.8);
      box-shadow: 0 10px 25px rgba(47,111,237,.22);
      flex:0 0 auto;
    }
    .article-title{margin-top:12px; font-weight:980; font-size:20px; line-height:1.3}
    .article-desc{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px; flex:1}
    .article-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
    .article-list{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
      display:flex; flex-direction:column;
    }
    .list-title{font-weight:950; font-size:18px}
    .article-links{margin:12px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
    .article-links a{
      text-decoration:none;
      color:rgba(15,38,34,.92);
      font-weight:850;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.70);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      font-size:14px;
    }
    .article-links a:hover{transform:translateY(-1px); border-color: rgba(65,184,131,.24); box-shadow:0 16px 34px rgba(0,0,0,.08)}
    .article-foot{margin-top:auto; padding-top:14px}
    .join-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .join-card{padding:18px}
    .join-card-muted{
      background: linear-gradient(180deg, rgba(255,255,255,.76) 0%, rgba(240,248,244,.82) 100%);
    }
    .join-title{font-weight:980; font-size:18px}
    .join-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}
    .join-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .price-box{margin-top:14px; padding:12px 12px; border-radius:16px; border:1px solid rgba(15,38,34,.10); background: rgba(255,255,255,.7)}
    .price-k{color:var(--muted); font-weight:850; font-size:13px}
    .price-v{margin-top:6px; font-weight:950}
    .join-quick-links{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .join-tip{margin-top:12px; color:var(--muted2); font-size:13px}

    .contact-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .contact-left{display:flex; flex-direction:column; gap:14px}
    .contact-right{display:flex; flex-direction:column; gap:14px}

    .contact-card{padding:18px}
    .contact-title{font-weight:980; font-size:18px}
    .contact-items{margin-top:12px; display:flex; flex-direction:column; gap:12px}
    .ci{display:flex; justify-content:space-between; gap:12px; border:1px solid rgba(15,38,34,.10); background: rgba(255,255,255,.7); border-radius:16px; padding:12px 12px}
    .ci-k{color:var(--muted); font-weight:850; font-size:13px}
    .ci-v{font-weight:850; text-align:right}
    .contact-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .contact-mini{padding:18px}
    .mini-title{font-weight:980; font-size:18px}
    .mini-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}
    .mini-grid{margin-top:14px; display:grid; grid-template-columns:1fr 1fr; gap:10px}
    .mini-pill{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.7);
      font-weight:900;
      font-size:13.5px;
      color:rgba(15,38,34,.9);
    }
    .mini-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .divider-line{height:1px; background: rgba(15,38,34,.08); margin:18px 0 14px}

    .links-row{
      display:flex; flex-direction:column; gap:10px;
      padding:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.68);
    }
    .links-title{font-weight:980; font-size:16px}
    .links-list{display:flex; gap:10px; flex-wrap:wrap}
    .links-list a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.75);
      color:rgba(15,38,34,.9);
      font-weight:850;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .links-list a:hover{transform:translateY(-1px); border-color: rgba(65,184,131,.24); background: rgba(65,184,131,.10)}

    .reviews-wrap{
      padding:0;
      border-radius:var(--radius2);
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.64);
      box-shadow: 0 14px 40px rgba(0,0,0,.04);
      overflow:hidden;
    }
    .reviews-head{padding:16px 18px; border-bottom:1px solid rgba(15,38,34,.08)}
    .reviews-title{font-weight:980; font-size:18px}
    .reviews-sub{color:var(--muted); margin-top:6px; font-size:13.5px; line-height:1.6}
    .reviews-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px; padding:16px 18px}
    .review-card{
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(15,38,34,.10);
      background: rgba(255,255,255,.75);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .review-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(0,0,0,.08); border-color: rgba(65,184,131,.24)}
    .review-top{display:flex; gap:12px; align-items:flex-start}
    .review-avatar{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(65,184,131,.12);
      border:1px solid rgba(65,184,131,.18);
      font-weight:980;
      color:rgba(16,55,42,.95);
      flex:0 0 auto;
    }
    .review-role{font-weight:950}
    .review-stars{margin-top:6px; color:rgba(65,184,131,1); letter-spacing:1px; font-size:12.5px}
    .review-text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:14px}

    .site-footer{
      background: linear-gradient(180deg, rgba(14,38,32,.98) 0%, rgba(9,28,24,1) 100%);
      color:#eaf5f0;
      border-top:1px solid rgba(255,255,255,.08);
      padding:22px 0;
    }
    .footer-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:start}
    .footer-left{display:flex; flex-direction:column; gap:10px}
    .footer-brand{display:flex; align-items:center; gap:12px}
    .footer-logo{width:44px; height:44px; object-fit:contain; border-radius:14px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10)}
    .footer-title{font-weight:950; font-size:16px; color:#f1fff7}
    .footer-sub{color:rgba(234,245,240,.78); font-size:13px; margin-top:2px}
    .footer-copy{color:rgba(234,245,240,.70); font-size:13px; line-height:1.5}
    .footer-right{display:flex; flex-direction:column; gap:12px; align-items:flex-end}
    .footer-links{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
    .footer-links a{
      text-decoration:none;
      color:rgba(234,245,240,.86);
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      font-weight:850; font-size:13px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .footer-links a:hover{transform:translateY(-1px); border-color: rgba(189,247,216,.45); background: rgba(189,247,216,.12)}
    .footer-home{background: rgba(65,184,131,.18) !important; border-color: rgba(65,184,131,.35) !important}
    .footer-contact{display:flex; flex-direction:column; gap:8px; align-items:flex-end}
    .fc-line{display:flex; gap:10px; align-items:baseline}
    .fc-k{color:rgba(234,245,240,.72); font-weight:850; font-size:13px}
    .fc-v{color:#f1fff7; font-weight:900; text-decoration:none}
    .fc-v a{color:#f1fff7}

    .float-cta{
      position:fixed;
      right:16px; bottom:16px;
      z-index:70;
    }
    .float-link{
      display:flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:18px;
      background: linear-gradient(180deg, rgba(65,184,131,1) 0%, rgba(41,159,116,1) 100%);
      border:1px solid rgba(31,135,98,.35);
      color:#fff;
      text-decoration:none;
      box-shadow: 0 18px 50px rgba(65,184,131,.28);
      transition: transform .18s ease, box-shadow .18s ease;
      font-weight:900;
      user-select:none;
    }
    .float-link:hover{transform: translateY(-2px)}
    .float-ico{font-size:16px}
    .float-text{font-size:14px}

    .to-top{
      position:fixed;
      right:16px; bottom:78px;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(15,38,34,.12);
      background: rgba(255,255,255,.86);
      color:rgba(15,38,34,.92);
      box-shadow: 0 14px 40px rgba(0,0,0,.10);
      cursor:pointer;
      z-index:70;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, opacity .18s ease;
      opacity:0;
      pointer-events:none;
    }
    .to-top.show{opacity:1; pointer-events:auto}
    .to-top:focus{outline:none; box-shadow:var(--focus)}
    .to-top:hover{transform: translateY(-2px)}

    @media (prefers-reduced-motion: reduce){
      *{animation:none !important; transition:none !important; scroll-behavior:auto !important}
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .data-row{grid-template-columns: repeat(3, minmax(0,1fr))}
      .services-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .about-grid{grid-template-columns: 1fr; }
      .about-card-wide{grid-column: span 1}
      .industry-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .process-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .compare-wrap{grid-template-columns: 1fr}
      .rating-card{position:static}
      .faq-grid{grid-template-columns: 1fr}
      .match-grid{grid-template-columns: 1fr}
      .pricing-grid{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: 1fr}
      .wiki-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .articles-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .network-grid{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .reviews-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .footer-right{align-items:flex-start}
      .footer-contact{align-items:flex-start}
      .nav-cta{display:none}
      .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
      .nav-menu{
        position:absolute; right:16px; top:68px;
        width:min(420px, calc(100% - 32px));
        background: rgba(255,255,255,.92);
        border:1px solid rgba(15,38,34,.10);
        border-radius:18px;
        box-shadow: 0 22px 70px rgba(0,0,0,.16);
        padding:10px;
        display:none;
      }
      .nav-menu.open{display:flex; flex-direction:column; align-items:stretch; gap:6px}
      .nav-link{padding:12px 12px; border:1px solid transparent}
      .nav-link:hover{border-color: rgba(65,184,131,.22)}
      .nav-container{padding:12px 16px}
      .brand{min-width:auto}
      .hero-title{font-size:34px}
      .scenario-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
    }

    @media (max-width: 520px){
      .data-row{grid-template-columns: 1fr}
      .scenario-grid{grid-template-columns: 1fr}
      .services-grid{grid-template-columns: 1fr}
      .industry-grid{grid-template-columns: 1fr}
      .process-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .wiki-grid{grid-template-columns: 1fr}
      .hero-title{font-size:30px}
      .hero{padding-top:40px}
      .form-grid{grid-template-columns: 1fr}
      .field-full{grid-column: span 1}
      .mini-grid{grid-template-columns: 1fr}
      .secure-row{grid-template-columns: 1fr}
    }