:root{
      --bg0:#fbfbfc;
      --bg1:#f6f7fb;
      --card:#ffffff;
      --text:#1f2329;
      --muted:#5b6572;
      --muted2:#7a8596;
      --line:rgba(20,30,45,.10);
      --shadow:0 14px 40px rgba(17,24,39,.10);
      --shadow2:0 10px 26px rgba(17,24,39,.08);
      --radius:18px;

      --brand1:#6d5efc;
      --brand2:#00c2ff;
      --brand3:#28d7a5;
      --brand4:#ffb86b;
      --brand5:#ff5db1;

      --primary: linear-gradient(90deg, var(--brand1) 0%, var(--brand2) 40%, var(--brand3) 100%);
      --primarySolid:#4f63ff;
      --focus: rgba(79,99,255,.35);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
                   Arial, "Noto Sans SC", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 10% -10%, rgba(109,94,252,.14), transparent 55%),
        radial-gradient(900px 500px at 90% 0%, rgba(0,194,255,.12), transparent 52%),
        radial-gradient(800px 500px at 70% 85%, rgba(40,215,165,.12), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
    }

    .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:10000;
      outline: none;
      box-shadow: 0 12px 30px rgba(0,0,0,.12);
    }

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

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(251,251,252,.7);
      border-bottom:1px solid rgba(20,30,45,.08);
    }

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

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:260px;
    }
    .brand-link{display:flex; align-items:center; gap:10px; text-decoration:none; color:inherit}
    .ai-page-logo{width:42px; height:auto; border-radius:12px}
    .brand-meta{display:flex; flex-direction:column; gap:3px}
    .brand-title{font-weight:800; letter-spacing:.2px; font-size:14px; line-height:1.1}
    .brand-sub{font-size:12px; color:var(--muted); line-height:1.2}

    .nav{display:flex; align-items:center; gap:12px}
    .nav-desktop-actions{display:none; align-items:center; gap:10px}
    .nav-panel{
      display:none;
      position:absolute;
      right:18px;
      top:70px;
      width:min(520px, calc(100vw - 36px));
      background: rgba(255,255,255,.92);
      border:1px solid rgba(20,30,45,.10);
      border-radius:16px;
      box-shadow: var(--shadow2);
      padding:14px;
    }
    .nav-panel.is-open{display:block}
    .nav-links{display:flex; flex-direction:column; gap:10px}
    .nav-link{
      text-decoration:none;
      color:var(--text);
      font-weight:650;
      font-size:14px;
      padding:10px 12px;
      border-radius:12px;
      border:1px solid transparent;
      background: transparent;
    }
    .nav-link:hover{
      background: linear-gradient(180deg, rgba(109,94,252,.08), rgba(0,194,255,.06));
      border-color: rgba(79,99,255,.18);
    }

    .nav-cta{
      display:flex;
      gap:10px;
      margin-top:12px;
      flex-wrap:wrap;
    }

    .nav-toggle{
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(20,30,45,.10);
      background:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      box-shadow: 0 10px 22px rgba(0,0,0,.06);
    }
    .nav-toggle:focus{outline:none; box-shadow:0 0 0 4px var(--focus), 0 10px 22px rgba(0,0,0,.06)}
    .nav-toggle-lines{
      width:18px; height:12px; position:relative;
    }
    .nav-toggle-lines::before,
    .nav-toggle-lines::after{
      content:"";
      position:absolute; left:0; width:100%; height:2px;
      background: #2a2f36;
      border-radius:999px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .nav-toggle-lines::before{top:0}
    .nav-toggle-lines::after{top:10px}
    .nav-toggle-lines{
      background: linear-gradient(#2a2f36,#2a2f36) center/100% 2px no-repeat;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(20,30,45,.12);
      text-decoration:none;
      font-weight:750;
      font-size:14px;
      cursor:pointer;
      transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .btn:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(17,24,39,.10)}
    .btn:active{transform: translateY(0px); box-shadow:none}

    .btn-primary{
      color:#0b1020;
      border-color: rgba(79,99,255,.28);
      background: var(--primary);
      background-size: 180% 180%;
      animation: hueShift 8s ease-in-out infinite;
    }
    @keyframes hueShift{
      0%{background-position: 0% 50%}
      50%{background-position: 100% 50%}
      100%{background-position: 0% 50%}
    }

    .btn-soft{
      background: rgba(255,255,255,.75);
      border-color: rgba(20,30,45,.12);
      color: var(--text);
    }

    .btn-ghost{
      background: rgba(255,255,255,.0);
      border-color: rgba(20,30,45,.14);
      color: var(--text);
    }
    .btn-lg{padding:12px 18px; font-size:15px; border-radius:16px}

    .section{
      padding:74px 0;
      position:relative;
    }
    .section-muted{
      background: linear-gradient(180deg, rgba(246,247,251,.9), rgba(251,251,252,.9));
      border-top: 1px solid rgba(20,30,45,.06);
      border-bottom: 1px solid rgba(20,30,45,.06);
    }

    .section-head{
      margin-bottom:22px;
      text-align:left;
    }
    .section-title{
      margin:0;
      font-size:28px;
      line-height:1.2;
      letter-spacing:-.2px;
    }
    .section-subtitle{
      margin:10px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width:74ch;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:#3a41ff;
      font-weight:800;
      letter-spacing:.2px;
      margin-bottom:10px;
    }

    .lead{
      color:var(--muted);
      font-size:15px;
      line-height:1.9;
      margin:12px 0 0;
    }

    .hero{
      padding:68px 0 44px;
      position:relative;
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:22px;
      align-items:start;
      position:relative;
      z-index:2;
    }

    .hero-left{padding:8px 0}
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.7);
      border-radius:999px;
      padding:10px 14px;
      box-shadow: 0 14px 34px rgba(17,24,39,.06);
      color: var(--text);
      font-weight:750;
      font-size:13px;
    }
    .badge-dot{
      width:10px; height:10px;
      border-radius:50%;
      background: var(--primary);
      box-shadow: 0 0 0 6px rgba(79,99,255,.10);
    }

    .hero-title{
      margin:16px 0 0;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.08;
    }
    .hero-desc{
      margin:14px 0 0;
      color:var(--muted);
      font-size:15px;
      line-height:1.9;
      max-width:58ch;
    }

    .hero-actions{
      display:flex;
      gap:12px;
      margin-top:18px;
      flex-wrap:wrap;
    }

    .hero-mini{
      display:flex;
      gap:12px;
      margin-top:18px;
      flex-wrap:wrap;
    }
    .mini-item{
      flex:1;
      min-width:140px;
      border-radius:16px;
      padding:12px 14px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 30px rgba(17,24,39,.05);
      transform: translateY(0);
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .mini-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .mini-num{font-weight:900; letter-spacing:.1px}
    .mini-label{color:var(--muted); font-size:13px; margin-top:4px}

    .hero-rail{margin-top:18px}
    .rail-title{
      font-weight:850;
      margin-bottom:10px;
      color: var(--text);
      font-size:14px;
    }
    .tag-row{display:flex; flex-wrap:wrap; gap:10px}
    .tag{
      display:inline-flex;
      align-items:center;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(20,30,45,.12);
      background: rgba(255,255,255,.70);
      font-weight:750;
      font-size:13px;
      color: var(--text);
    }
    .tag-soft{
      background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      border-color: rgba(79,99,255,.18);
      color:#2b2f39;
    }
    .tag-strong{
      border-color: rgba(79,99,255,.25);
      background: linear-gradient(90deg, rgba(109,94,252,.14), rgba(0,194,255,.12), rgba(40,215,165,.12));
    }

    .hero-right{
      position:relative;
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .visual-panel{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: var(--shadow2);
      overflow:hidden;
      position:relative;
      transform: translateY(0);
      transition: transform .18s ease, box-shadow .25s ease;
    }
    .visual-panel:hover{transform: translateY(-3px); box-shadow: var(--shadow)}
    .panel-glow{
      position:absolute; inset:-2px;
      background:
        radial-gradient(800px 240px at 0% 0%, rgba(109,94,252,.22), transparent 50%),
        radial-gradient(700px 220px at 100% 0%, rgba(0,194,255,.20), transparent 55%),
        radial-gradient(600px 240px at 60% 100%, rgba(40,215,165,.18), transparent 55%);
      filter: blur(0px);
      pointer-events:none;
      opacity:.85;
    }

    .panel-top{position:relative; z-index:1}
    .panel-title{font-weight:900; letter-spacing:-.2px; font-size:16px}
    .panel-sub{color:var(--muted); font-size:13px; margin-top:6px; line-height:1.6}

    .panel-stats{
      position:relative; z-index:1;
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:14px;
    }
    .stat-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,30,45,.10);
      border-radius:16px;
      padding:12px 12px;
      transition: transform .18s ease, box-shadow .22s ease;
    }
    .visual-panel:hover .stat-card{
      box-shadow: 0 12px 26px rgba(17,24,39,.06);
    }
    .stat-card:hover{transform: translateY(-2px)}
    .stat-k{color:var(--muted); font-size:12px; font-weight:800}
    .stat-v{font-weight:950; margin-top:6px; letter-spacing:-.2px}
    .stat-foot{margin-top:6px; color:var(--muted2); font-size:12px; line-height:1.4}

    .panel-divider{
      position:relative; z-index:1;
      height:1px;
      background: rgba(20,30,45,.10);
      margin:14px 0;
    }

    .panel-list{
      position:relative; z-index:1;
      display:flex; flex-direction:column;
      gap:10px;
    }
    .panel-li{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--text);
      font-weight:750;
      font-size:13px;
      line-height:1.5;
    }
    .li-icon{
      width:22px; height:22px;
      border-radius:9px;
      background: rgba(79,99,255,.12);
      border:1px solid rgba(79,99,255,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      flex:0 0 auto;
      margin-top:1px;
      color:#3a41ff;
    }

    .panel-link{
      position:relative; z-index:1;
      display:flex; align-items:center; justify-content:space-between;
      margin-top:14px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(79,99,255,.18);
      background: rgba(255,255,255,.60);
      text-decoration:none;
      color: var(--text);
      font-weight:900;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    }
    .panel-link:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
    }
    .panel-link-arrow{color:#3a41ff}

    .floating-hint{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,30,45,.10);
      border-radius:18px;
      padding:12px 14px;
      box-shadow: 0 14px 34px rgba(17,24,39,.06);
      display:flex;
      flex-direction:column;
      gap:10px;
      overflow:hidden;
      position:relative;
    }
    .hint-row{display:flex; gap:10px; align-items:flex-start}
    .hint-bullet{
      width:10px; height:10px;
      border-radius:50%;
      background: var(--primary);
      margin-top:6px;
      box-shadow: 0 0 0 6px rgba(79,99,255,.10);
      flex:0 0 auto;
    }
    .hint-text{color:var(--muted); font-size:13px; line-height:1.6; font-weight:650}
    .hint-link{
      text-decoration:none;
      color:#3a41ff;
      font-weight:900;
      align-self:flex-start;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(79,99,255,.18);
      background: rgba(255,255,255,.60);
      transition: transform .12s ease, box-shadow .2s ease;
    }
    .hint-link:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(17,24,39,.10)}

    .hero-surface{position:absolute; inset:0; pointer-events:none; z-index:1}
    .surface-ring{
      position:absolute;
      width:520px; height:520px;
      border-radius:50%;
      border:1px solid rgba(79,99,255,.20);
      left:-170px; top:-220px;
      background: radial-gradient(circle at 30% 30%, rgba(79,99,255,.18), transparent 58%);
      filter: blur(.2px);
      opacity:.65;
      animation: floaty 10s ease-in-out infinite;
    }
    .surface-wave{
      position:absolute;
      width:740px; height:480px;
      right:-260px; top:-160px;
      background:
        radial-gradient(closest-side, rgba(0,194,255,.18), transparent 62%),
        radial-gradient(closest-side, rgba(40,215,165,.14), transparent 62%),
        radial-gradient(closest-side, rgba(255,93,177,.10), transparent 62%);
      opacity:.75;
      animation: floaty2 12s ease-in-out infinite;
    }
    @keyframes floaty{
      0%,100%{transform: translate(0,0)}
      50%{transform: translate(20px,22px)}
    }
    @keyframes floaty2{
      0%,100%{transform: translate(0,0)}
      50%{transform: translate(-18px,16px)}
    }

    .split{
      display:grid;
      grid-template-columns: 1fr;
      gap:18px;
      align-items:start;
      margin-top:8px;
    }

    .glass-card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
    }
    .glass-head{display:flex; flex-direction:column; gap:8px}
    .glass-title{font-weight:950; font-size:16px; letter-spacing:-.2px}
    .glass-sub{color:var(--muted); font-size:13px; line-height:1.6}

    .cap-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:14px;
    }
    .cap{
      border-radius:16px;
      padding:12px 12px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,30,45,.10);
      font-weight:850;
      font-size:13px;
      color: var(--text);
      transition: transform .14s ease, box-shadow .2s ease;
    }
    .cap:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(17,24,39,.08)}
    .glass-foot{
      display:flex;
      gap:12px;
      margin-top:14px;
      border-top:1px solid rgba(20,30,45,.08);
      padding-top:14px;
      flex-wrap:wrap;
    }
    .foot-item{min-width:220px; flex:1}
    .foot-label{color:var(--muted); font-weight:800; font-size:12px}
    .foot-value{margin-top:6px; font-weight:950; font-size:14px; letter-spacing:-.15px}
    .glass-action{
      display:inline-flex;
      margin-top:14px;
      padding:12px 14px;
      border-radius:16px;
      background: rgba(79,99,255,.10);
      border:1px solid rgba(79,99,255,.20);
      text-decoration:none;
      color:#2a2f36;
      font-weight:950;
      transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
    }
    .glass-action:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(17,24,39,.10); background: rgba(79,99,255,.14)}

    .grid-3{display:grid; grid-template-columns:1fr; gap:14px}
    .grid-2{display:grid; grid-template-columns:1fr; gap:14px}

    .data-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .24s ease;
      transform: translateY(10px);
      opacity:.001;
    }
    .in-view{transform: translateY(0); opacity:1; transition: transform .35s ease, opacity .35s ease}
    .data-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .data-icon{
      width:42px; height:42px;
      border-radius:16px;
      background: linear-gradient(180deg, rgba(109,94,252,.16), rgba(0,194,255,.12));
      border:1px solid rgba(79,99,255,.20);
      display:flex; align-items:center; justify-content:center;
      color:#2f36ff;
    }
    .data-title{margin-top:12px; font-weight:980; letter-spacing:-.2px}
    .data-text{margin-top:8px; color:var(--muted); font-size:13.5px; line-height:1.8}

    .service-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .24s ease;
      transform: translateY(10px);
      opacity:.001;
    }
    .service-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .service-top{display:flex; align-items:center; gap:12px}
    .service-icon{
      width:46px; height:46px;
      border-radius:18px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,30,45,.10);
      display:flex; align-items:center; justify-content:center;
      font-size:20px;
      box-shadow: 0 16px 34px rgba(17,24,39,.05);
    }
    .service-title{margin:0; font-size:16px; font-weight:980; letter-spacing:-.2px}
    .service-text{margin:10px 0 0; color:var(--muted); font-size:13.5px; line-height:1.9}
    .service-tags{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-top:14px;
      text-decoration:none;
      color:#3a41ff;
      font-weight:950;
    }
    .text-link:hover{text-decoration:underline}

    .mini-service{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:16px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transform: translateY(10px);
      opacity:.001;
      transition: transform .18s ease, box-shadow .24s ease;
    }
    .mini-service:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .mini-service-head{display:flex; align-items:center; gap:10px}
    .mini-ico{
      width:42px; height:42px;
      border-radius:18px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
    }
    .mini-name{font-weight:980; letter-spacing:-.2px}
    .mini-desc{margin-top:10px; color:var(--muted); font-size:13.5px; line-height:1.8}

    .logos-strip{
      margin-top:18px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      border-radius:22px;
      padding:16px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
    }
    .logos-title{font-weight:980; letter-spacing:-.2px}
    .logos{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .logo-pill{
      font-weight:900;
      font-size:13px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(79,99,255,.18);
      background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
    }

    .stepper-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }
    .step-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .24s ease;
      transform: translateY(10px);
      opacity:.001;
    }
    .step-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .step-num{
      width:56px; height:34px;
      display:flex; align-items:center; justify-content:center;
      border-radius:14px;
      background: rgba(79,99,255,.10);
      border:1px solid rgba(79,99,255,.18);
      font-weight:1000;
      letter-spacing:.6px;
    }
    .step-title{margin:12px 0 0; font-weight:980; letter-spacing:-.2px; font-size:16px}
    .step-text{margin:8px 0 0; color:var(--muted); line-height:1.9; font-size:13.5px}

    .action-bar{
      margin-top:16px;
      border-radius:22px;
      border:1px solid rgba(20,30,45,.10);
      background: linear-gradient(90deg, rgba(109,94,252,.10), rgba(0,194,255,.08), rgba(40,215,165,.08));
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      box-shadow: 0 18px 44px rgba(17,24,39,.06);
    }
    .action-bar-title{font-weight:1000; letter-spacing:-.2px}
    .action-bar-sub{margin-top:6px; color:var(--muted); font-size:13.5px; line-height:1.8}
    .action-bar-actions{display:flex; gap:10px; flex-wrap:wrap}

    .solution-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .24s ease;
      transform: translateY(10px);
      opacity:.001;
    }
    .solution-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .solution-head{display:flex; align-items:center; gap:12px}
    .solution-icon{
      width:46px; height:46px;
      border-radius:18px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,30,45,.10);
      display:flex; align-items:center; justify-content:center;
      font-size:20px;
    }
    .solution-title{margin:0; font-weight:980; letter-spacing:-.2px; font-size:16px}
    .checklist{list-style:none; padding:0; margin:12px 0 0; display:flex; flex-direction:column; gap:10px}
    .checklist li{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:700; line-height:1.7; font-size:13.5px}
    .check{
      width:20px; height:20px;
      border-radius:10px;
      background: rgba(40,215,165,.12);
      border:1px solid rgba(40,215,165,.22);
      flex:0 0 auto;
      position:relative;
      margin-top:1px;
    }
    .check::after{
      content:"";
      position:absolute;
      left:6px; top:4px;
      width:7px; height:10px;
      border-right:2px solid rgba(10,120,80,.9);
      border-bottom:2px solid rgba(10,120,80,.9);
      transform: rotate(40deg);
      opacity:.95;
    }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }
    .network-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transform: translateY(10px);
      opacity:.001;
      transition: transform .18s ease, box-shadow .24s ease;
    }
    .network-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .network-top{display:flex; align-items:center; gap:12px}
    .network-icon{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      font-size:20px;
    }
    .network-title{font-weight:980; letter-spacing:-.2px; font-size:16px}
    .network-text{margin-top:10px; color:var(--muted); line-height:1.9; font-size:13.5px}
    .network-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .timeline{margin-top:14px; display:flex; flex-direction:column; gap:14px}
    .time-item{display:flex; gap:12px; align-items:flex-start}
    .time-dot{
      width:14px; height:14px;
      border-radius:50%;
      background: var(--primary);
      box-shadow: 0 0 0 6px rgba(79,99,255,.10);
      margin-top:4px;
      flex:0 0 auto;
    }
    .time-title{font-weight:980; letter-spacing:-.2px}
    .time-desc{margin-top:6px; color:var(--muted); font-size:13.5px; line-height:1.7}

    .partners-row{
      margin-top:14px;
      display:flex;
      gap:14px;
      align-items:flex-start;
      justify-content:space-between;
      flex-wrap:wrap;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
    }
    .partners-title{font-weight:1000; letter-spacing:-.2px}
    .partners-sub{margin-top:6px; color:var(--muted); font-size:13.5px; line-height:1.8}
    .partners-actions{display:flex; gap:10px; flex-wrap:wrap}

    .flow{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
    }
    .flow-col{display:flex; flex-direction:column; gap:14px}
    .flow-step{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .24s ease;
      transform: translateY(10px);
      opacity:.001;
    }
    .flow-step:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .flow-step-hero{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.62));
      border-color: rgba(79,99,255,.18);
    }
    .flow-step-head{display:flex; align-items:center; gap:12px}
    .flow-step-no{
      width:48px; height:34px;
      border-radius:14px;
      background: rgba(79,99,255,.10);
      border:1px solid rgba(79,99,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      letter-spacing:.6px;
    }
    .flow-step-title{margin:0; font-weight:1000; letter-spacing:-.2px; font-size:16px}
    .flow-step-body{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .flow-point{
      color:var(--muted);
      font-weight:750;
      line-height:1.7;
      font-size:13.5px;
      padding-left:2px;
    }
    .flow-badges{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .flow-bottom{
      margin-top:16px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,30,45,.10);
      background: linear-gradient(90deg, rgba(109,94,252,.10), rgba(0,194,255,.08), rgba(40,215,165,.08));
      box-shadow: 0 18px 44px rgba(17,24,39,.06);
    }
    .flow-bottom-title{font-weight:1000; letter-spacing:-.2px}
    .flow-bottom-sub{margin-top:6px; color:var(--muted); font-size:13.5px; line-height:1.8}
    .flow-bottom-right{display:flex; gap:10px; flex-wrap:wrap}

    .case-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
    }
    .case-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .24s ease;
      transform: translateY(10px);
      opacity:.001;
    }
    .case-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .case-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .case-badge{
      font-weight:950;
      font-size:13px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(79,99,255,.20);
      background: rgba(79,99,255,.10);
      color:#2a2f36;
    }
    .case-mark{
      font-weight:1100;
      color: rgba(58,65,255,.9);
      border:1px solid rgba(79,99,255,.20);
      background: rgba(255,255,255,.62);
      padding:8px 10px;
      border-radius:16px;
    }
    .case-title{margin:14px 0 0; font-weight:1000; letter-spacing:-.2px; font-size:17px}
    .case-text{margin:10px 0 0; color:var(--muted); line-height:1.9; font-size:13.5px}
    .case-foot{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .case-chip{
      font-weight:900;
      font-size:13px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(20,30,45,.12);
      background: rgba(255,255,255,.62);
      color: var(--text);
    }

    .case-bottom{
      margin-top:16px;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .case-bottom-title{font-weight:1000; letter-spacing:-.2px}
    .case-bottom-sub{margin-top:6px; color:var(--muted); font-size:13.5px; line-height:1.8}
    .case-bottom-right{display:flex; gap:10px; flex-wrap:wrap}

    .compare-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
      align-items:start;
    }
    .rating-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transform: translateY(10px);
      opacity:.001;
      transition: transform .18s ease, box-shadow .24s ease;
    }
    .rating-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .rating-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .rating-stars{font-size:18px; letter-spacing:2px; color:#ff8a00}
    .rating-score{font-weight:1100; font-size:22px; letter-spacing:-.2px}
    .score-num{background: var(--primary); -webkit-background-clip:text; background-clip:text; color:transparent}
    .rating-desc{margin-top:10px; color:var(--muted); line-height:1.8; font-weight:700; font-size:13.5px}
    .rating-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .rating-item{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:760; font-size:13.5px; line-height:1.7}
    .td-good{color:#0f7a52; font-weight:950}
    .td-warn{color:#a05a00; font-weight:950}

    .compare-table-wrap{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transform: translateY(10px);
      opacity:.001;
      transition: transform .18s ease, box-shadow .24s ease;
    }
    .compare-table-wrap:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .table-top{display:flex; flex-direction:column; gap:6px}
    .table-title{font-weight:1000; letter-spacing:-.2px}
    .table-sub{color:var(--muted); font-size:13.5px; line-height:1.7}
    .table-scroll{overflow:auto; margin-top:14px; border-radius:16px; border:1px solid rgba(20,30,45,.10)}
    .compare-table{
      width:100%;
      min-width:760px;
      border-collapse:collapse;
      background:#fff;
    }
    .compare-table th,
    .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,30,45,.08);
      text-align:left;
      font-size:13.5px;
      vertical-align:top;
    }
    .compare-table th{
      background: linear-gradient(180deg, rgba(109,94,252,.10), rgba(0,194,255,.06));
      font-weight:1000;
      color: var(--text);
    }
    .compare-table tr:last-child td{border-bottom:none}

    .table-actions{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }

    .match-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
      align-items:start;
    }
    .match-panel{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
    }
    .panel-head{display:flex; flex-direction:column; gap:8px}
    .panel-kicker{
      font-weight:950;
      color:#3a41ff;
      letter-spacing:.2px;
    }
    .panel-title{
      font-weight:1100;
      letter-spacing:-.2px;
      font-size:18px;
    }
    .panel-sub{color:var(--muted); font-size:13.5px; line-height:1.8; font-weight:700}

    .form{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .form-row{display:grid; grid-template-columns:1fr; gap:12px}
    .field{display:flex; flex-direction:column; gap:8px}
    .label-text{font-weight:900; color:var(--text); font-size:13.5px}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,30,45,.14);
      background: rgba(255,255,255,.88);
      color:var(--text);
      font-size:14px;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    textarea{resize:vertical; min-height:120px}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(79,99,255,.35);
      box-shadow: 0 0 0 4px var(--focus);
      background:#fff;
    }

    .form-foot{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-top:2px}
    .form-note{color:var(--muted); font-size:12.5px; line-height:1.6; font-weight:700; max-width:44ch}

    .match-side{display:flex; flex-direction:column; gap:14px}
    .side-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
    }
    .side-card-2{background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.62))}
    .side-card-3{background: rgba(255,255,255,.62)}
    .side-title{font-weight:1100; letter-spacing:-.2px; font-size:16px}
    .side-sub{margin-top:8px; color:var(--muted); font-size:13.5px; line-height:1.7; font-weight:700}

    .segmented{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;
    }
    .seg-btn{
      border-radius:16px;
      padding:11px 12px;
      border:1px solid rgba(20,30,45,.12);
      background: rgba(255,255,255,.70);
      cursor:pointer;
      font-weight:950;
      color:var(--text);
      transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      flex:1;
      min-width:150px;
      text-align:center;
    }
    .seg-btn:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(17,24,39,.10)}
    .seg-btn.is-active{
      border-color: rgba(79,99,255,.28);
      background: linear-gradient(90deg, rgba(109,94,252,.16), rgba(0,194,255,.12), rgba(40,215,165,.12));
    }

    .side-points{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .side-point{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-weight:780;
      font-size:13.5px;
      line-height:1.7;
    }

    .side-cta{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .contact-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .contact-item{display:flex; justify-content:space-between; gap:12px; align-items:flex-start}
    .contact-k{color:var(--muted); font-weight:850; font-size:13px; min-width:84px}
    .contact-v{font-weight:900; font-size:13.5px; line-height:1.6}
    .contact-v a{color:#3a41ff; text-decoration:none}
    .contact-v a:hover{text-decoration:underline}

    .qr-img{
      width:118px;
      border-radius:14px;
      border:1px solid rgba(20,30,45,.10);
      background:#fff;
    }

    .price-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
      align-items:start;
    }
    .price-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transform: translateY(10px);
      opacity:.001;
      transition: transform .18s ease, box-shadow .24s ease;
    }
    .price-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .price-card-2{background: rgba(255,255,255,.62)}
    .price-top{display:flex; gap:12px; align-items:flex-start}
    .price-icon{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      font-size:22px;
      color:#2f36ff;
      flex:0 0 auto;
    }
    .price-title{font-weight:1100; letter-spacing:-.2px; font-size:16px}
    .price-sub{margin-top:8px; color:var(--muted); font-size:13.5px; line-height:1.7; font-weight:700}

    .meter{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .meter-row{display:grid; grid-template-columns:110px 1fr auto; gap:12px; align-items:center}
    .meter-label{font-weight:950; color:var(--text); font-size:13px}
    .meter-bar{
      height:12px;
      border-radius:999px;
      background: rgba(20,30,45,.06);
      border:1px solid rgba(20,30,45,.08);
      overflow:hidden;
      position:relative;
    }
    .meter-fill{
      display:block;
      height:100%;
      width:62%;
      border-radius:999px;
      background: var(--primary);
      filter:saturate(1.05);
      animation: meter 2.8s ease-in-out infinite;
    }
    .meter-fill-1{width:70%}
    .meter-fill-2{width:56%; background: linear-gradient(90deg, var(--brand5), var(--brand2))}
    .meter-fill-3{width:64%; background: linear-gradient(90deg, var(--brand3), var(--brand2))}
    @keyframes meter{
      0%,100%{transform: translateX(-2px)}
      50%{transform: translateX(2px)}
    }
    .meter-value{color:var(--muted); font-weight:900; font-size:12.5px; white-space:nowrap}

    .price-action{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}
    .mini-table{
      margin-top:14px;
      border-radius:16px;
      overflow:hidden;
      border:1px solid rgba(20,30,45,.10);
      background:#fff;
    }
    .mini-tr{
      display:grid;
      grid-template-columns:60px 1fr 130px;
      gap:0;
      border-bottom:1px solid rgba(20,30,45,.08);
    }
    .mini-tr:last-child{border-bottom:none}
    .mini-td{padding:12px 12px; font-size:13.5px; color:var(--text); font-weight:800}
    .mini-head{background: linear-gradient(180deg, rgba(109,94,252,.10), rgba(0,194,255,.06)); font-weight:1000}

    .note-block{
      margin-top:14px;
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
    }
    .note-title{font-weight:1100}
    .note-text{margin-top:8px; color:var(--muted); line-height:1.9; font-size:13.5px; font-weight:700}
    .price-bottom{margin-top:16px; display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; align-items:flex-end}
    .price-bottom-title{font-weight:1100; letter-spacing:-.2px}
    .price-bottom-sub{margin-top:6px; color:var(--muted); font-size:13.5px; line-height:1.8; font-weight:700}

    .training-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
      align-items:start;
    }
    .training-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transform: translateY(10px);
      opacity:.001;
      transition: transform .18s ease, box-shadow .24s ease;
    }
    .training-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .training-card-2{background: rgba(255,255,255,.62)}
    .training-head{display:flex; gap:12px; align-items:flex-start}
    .training-icon{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      font-size:22px;
      flex:0 0 auto;
    }
    .training-title{font-weight:1100; letter-spacing:-.2px; font-size:16px}
    .training-sub{margin-top:8px; color:var(--muted); font-size:13.5px; line-height:1.7; font-weight:700}
    .training-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .t-item{
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,30,45,.10);
      font-weight:950;
      color:var(--text);
    }

    .training-foot{
      margin-top:14px;
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      align-items:center;
      border-top:1px solid rgba(20,30,45,.08);
      padding-top:14px;
    }
    .foot-label{color:var(--muted); font-weight:850; font-size:13px}
    .foot-value{margin-top:6px; font-weight:950; letter-spacing:-.15px}

    .train-steps{margin-top:14px; display:flex; flex-direction:column; gap:14px}
    .train-step{display:flex; gap:12px; align-items:flex-start}
    .train-no{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(79,99,255,.10);
      border:1px solid rgba(79,99,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      flex:0 0 auto;
    }
    .train-title{font-weight:1100; letter-spacing:-.2px}
    .train-desc{margin-top:6px; color:var(--muted); line-height:1.8; font-size:13.5px; font-weight:700}
    .train-actions{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}

    .training-strip{
      margin-top:14px;
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    .strip-item{
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 16px 40px rgba(17,24,39,.05);
      display:flex; gap:12px; align-items:flex-start;
    }
    .strip-ico{
      width:42px; height:42px;
      border-radius:18px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      font-size:20px;
      flex:0 0 auto;
    }
    .strip-title{font-weight:1100; letter-spacing:-.2px}
    .strip-sub{margin-top:6px; color:var(--muted); font-size:13.5px; line-height:1.8; font-weight:700}

    .help-grid{display:grid; grid-template-columns:1fr; gap:14px}
    .help-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transform: translateY(10px);
      opacity:.001;
      transition: transform .18s ease, box-shadow .24s ease;
    }
    .help-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .help-title{font-weight:1100; letter-spacing:-.2px}
    .help-text{margin-top:10px; color:var(--muted); line-height:1.9; font-size:13.5px; font-weight:700}

    .faq-wrap{display:flex; flex-direction:column; gap:10px}
    .faq-card{
      width:100%;
      text-align:left;
      border-radius:18px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.66);
      padding:14px 14px;
      cursor:pointer;
      box-shadow: 0 16px 40px rgba(17,24,39,.05);
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .faq-card:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(17,24,39,.10); border-color: rgba(79,99,255,.18)}
    .faq-q{font-weight:1000; letter-spacing:-.2px}
    .faq-icon{
      width:32px; height:32px;
      border-radius:14px;
      background: rgba(79,99,255,.10);
      border:1px solid rgba(79,99,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
    }
    .faq-panel{
      margin-top:-6px;
      padding:0 10px 12px 10px;
    }
    .faq-a{
      background: rgba(255,255,255,.60);
      border:1px solid rgba(20,30,45,.10);
      border-radius:16px;
      padding:12px 12px;
      color:var(--muted);
      font-weight:720;
      line-height:1.85;
      font-size:13.5px;
    }

    .wiki-grid{display:grid; grid-template-columns:1fr; gap:14px}
    .wiki-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      transform: translateY(10px);
      opacity:.001;
      transition: transform .18s ease, box-shadow .24s ease;
    }
    .wiki-card:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
    .wiki-title{font-weight:1100; letter-spacing:-.2px}
    .wiki-text{margin-top:10px; color:var(--muted); font-size:13.5px; line-height:1.9; font-weight:720}
    .wiki-foot{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .wiki-chip{
      font-weight:950;
      font-size:13px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(20,30,45,.12);
      background: rgba(255,255,255,.62);
      color: var(--text);
    }

    .articles-layout{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
    }
    .article-topbar{display:flex; flex-direction:column; gap:6px; margin-bottom:10px}
    .article-title{font-weight:1100; letter-spacing:-.2px; font-size:16px}
    .article-sub{color:var(--muted); font-size:13.5px; line-height:1.7; font-weight:700}
    .article-ul{list-style:none; padding:0; margin:14px 0 0; display:flex; flex-direction:column; gap:12px}
    .article-li{
      border-radius:18px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      padding:12px 12px;
      transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .article-li:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(17,24,39,.10); border-color: rgba(79,99,255,.18)}
    .article-a{
      display:block;
      text-decoration:none;
      color:var(--text);
      font-weight:1000;
      letter-spacing:-.2px;
      line-height:1.5;
    }
    .article-a:hover{text-decoration:underline}
    .article-meta{margin-top:8px; color:var(--muted); font-size:12.5px; font-weight:850}

    .article-side{display:flex; flex-direction:column; gap:14px}
    .side-hero{
      background: linear-gradient(90deg, rgba(109,94,252,.12), rgba(0,194,255,.10), rgba(40,215,165,.10));
      border:1px solid rgba(79,99,255,.16);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
    }
    .side-hero-title{font-weight:1100; letter-spacing:-.2px; font-size:18px}
    .side-hero-sub{margin-top:8px; color:var(--muted); font-size:13.5px; line-height:1.8; font-weight:700}
    .side-hero-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .side-hero-hint{margin-top:14px; display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:760; font-size:13.5px; line-height:1.8}

    .tag-cloud{margin-top:14px; display:flex; flex-wrap:wrap; gap:10px}

    .contact-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
      align-items:start;
    }
    .contact-card{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,30,45,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
    }
    .contact-card-2{background: rgba(255,255,255,.62)}
    .contact-head{display:flex; gap:12px; align-items:flex-start}
    .contact-icon{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      font-size:22px;
      flex:0 0 auto;
    }
    .contact-title{font-weight:1100; letter-spacing:-.2px; font-size:16px}
    .contact-sub{margin-top:8px; color:var(--muted); font-size:13.5px; line-height:1.7; font-weight:700}

    .contact-items{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .c-row{display:flex; justify-content:space-between; gap:14px; border-radius:16px; padding:12px; border:1px solid rgba(20,30,45,.10); background: rgba(255,255,255,.62)}
    .c-k{color:var(--muted); font-weight:900; min-width:90px; font-size:13px}
    .c-v{font-weight:950; color:var(--text); font-size:13.5px; line-height:1.6}
    .c-v a{color:#3a41ff; text-decoration:none}
    .c-v a:hover{text-decoration:underline}

    .contact-qr{margin-top:14px; padding:14px; border-radius:18px; border:1px solid rgba(20,30,45,.10); background: rgba(255,255,255,.62)}
    .qr-title{font-weight:1100; letter-spacing:-.2px}
    .qr-sub{margin-top:6px; color:var(--muted); font-weight:750; line-height:1.7; font-size:13.5px}
    .agent-block{margin-top:14px}
    .agent-title{font-weight:1100}
    .agent-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .agent-note{margin-top:14px; color:var(--muted); font-weight:720; line-height:1.9; font-size:13.5px}

    .partners-links{margin-top:16px}
    .links-title{font-weight:1100; letter-spacing:-.2px; margin-bottom:10px}
    .links-grid{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-bottom:14px;
    }
    .links-grid > div{
      border-radius:999px;
      border:1px solid rgba(20,30,45,.12);
      background: rgba(255,255,255,.62);
      padding:9px 12px;
      font-weight:950;
      font-size:13px;
      transition: transform .12s ease, box-shadow .2s ease;
    }
    .links-grid > div:hover{transform: translateY(-2px); box-shadow: 0 16px 34px rgba(17,24,39,.10)}
    .links-grid a{
      text-decoration:none; color:var(--text);
    }
    .links-grid a:hover{text-decoration:underline}

    .section-end{padding:52px 0}
    .end-grid{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding:18px;
      border-radius:22px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
    }
    .end-title{font-weight:1100; letter-spacing:-.2px; font-size:18px}
    .end-sub{margin-top:8px; color:var(--muted); font-weight:720; line-height:1.9; font-size:13.5px; max-width:68ch}
    .end-right{display:flex; gap:10px; flex-wrap:wrap}

    .site-footer{
      background: #0f172a;
      color:#e8eefc;
      border-top:1px solid rgba(255,255,255,.08);
      padding:30px 0;
      margin-top:6px;
    }
    .footer-inner{display:flex; flex-direction:column; gap:18px}
    .footer-brand-row{display:flex; gap:12px; align-items:center}
    .footer-logo{
      width:44px; height:auto;
      border-radius:14px;
      background:#fff;
      padding:6px;
      border:1px solid rgba(255,255,255,.18);
    }
    .footer-title{font-weight:1100; letter-spacing:-.2px}
    .footer-sub{color:rgba(232,238,252,.78); font-weight:780; margin-top:6px; font-size:13.5px}
    .footer-desc{margin-top:10px; color:rgba(232,238,252,.78); line-height:1.8; font-weight:720; font-size:13.5px; max-width:70ch}

    .footer-columns{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
      align-items:start;
    }
    .footer-col{
      border-radius:22px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      padding:14px;
    }
    .footer-h{font-weight:1100; letter-spacing:-.2px; margin-bottom:10px}
    .footer-links{display:flex; flex-direction:column; gap:10px}
    .footer-links a{
      color:rgba(232,238,252,.85);
      text-decoration:none;
      font-weight:800;
      line-height:1.6;
    }
    .footer-links a:hover{text-decoration:underline}
    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding-top:6px;
      border-top:1px solid rgba(255,255,255,.10);
    }
    .footer-copy{color:rgba(232,238,252,.78); font-weight:780; font-size:13px}
    .footer-copy-right{display:flex; align-items:center; gap:10px}
    .footer-dot{width:6px; height:6px; border-radius:50%; background: rgba(232,238,252,.35)}
    .footer-quiet{color:rgba(232,238,252,.88); text-decoration:none; font-weight:900}
    .footer-quiet:hover{text-decoration:underline}

    .to-top{
      position:fixed;
      right:16px;
      bottom:16px;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(20,30,45,.12);
      background: rgba(255,255,255,.80);
      box-shadow: 0 18px 44px rgba(17,24,39,.12);
      display:flex; align-items:center; justify-content:center;
      color:var(--text);
      text-decoration:none;
      transform: translateY(18px);
      opacity:0;
      pointer-events:none;
      transition: transform .25s ease, opacity .25s ease, background .2s ease;
      z-index:70;
      font-weight:1100;
    }
    .to-top.is-show{transform: translateY(0); opacity:1; pointer-events:auto}
    .to-top:hover{background:#fff}

    .float-cs{
      position:fixed;
      left:16px;
      bottom:16px;
      z-index:70;
      width:auto;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(79,99,255,.22);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 44px rgba(17,24,39,.12);
      cursor:pointer;
      font-weight:1100;
      color:var(--text);
      display:flex;
      align-items:center;
      gap:10px;
      transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
    }
    .float-cs:hover{transform: translateY(-2px); background:#fff}
    .float-cs-dot{
      width:10px; height:10px; border-radius:50%;
      background: var(--primary);
      box-shadow: 0 0 0 6px rgba(79,99,255,.10);
    }

    .cs-pop{
      position:fixed;
      inset:0;
      background: rgba(8,12,20,.35);
      display:flex;
      align-items:center;
      justify-content:center;
      padding:18px;
      z-index:80;
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease;
    }
    .cs-pop.is-open{
      opacity:1;
      pointer-events:auto;
    }
    .cs-pop > div{max-width:420px}
    .cs-pop{
      backdrop-filter: blur(6px);
    }
    .cs-pop{
      position:fixed;
    }
    .cs-pop{
      padding:18px;
    }
    .cs-pop{
      display:flex;
    }
    .cs-pop{
      justify-content:center;
      align-items:center;
    }
    .cs-pop{
      transition: opacity .18s ease;
    }
    .cs-pop{
      pointer-events:none;
    }
    .cs-pop.is-open{
      pointer-events:auto;
    }
    .cs-pop{
      background: rgba(8,12,20,.35);
    }

    .cs-pop{
      color:var(--text);
    }
    .cs-pop{
      overflow:hidden;
    }
    .cs-pop{
      border-radius:22px;
    }
    .cs-pop-body{
      background: rgba(255,255,255,.92);
      border:1px solid rgba(255,255,255,.22);
      border-radius:22px;
      box-shadow: 0 26px 70px rgba(0,0,0,.28);
      padding:16px;
      width:min(420px, 100%);
    }
    .cs-pop-head{
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
    }
    .cs-pop-title{font-weight:1100; letter-spacing:-.2px}
    .cs-pop-close{
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(20,30,45,.12);
      background:#fff;
      cursor:pointer;
      font-size:18px;
      font-weight:1100;
      transition: transform .12s ease, box-shadow .2s ease;
    }
    .cs-pop-close:hover{transform: translateY(-2px); box-shadow: 0 14px 30px rgba(17,24,39,.12)}
    .cs-pop-qr{
      width:100%;
      max-width:260px;
      display:block;
      margin:0 auto;
      border-radius:18px;
      border:1px solid rgba(20,30,45,.10);
      background:#fff;
    }
    .cs-pop-sub{
      margin-top:10px;
      text-align:center;
      color:var(--muted);
      font-weight:780;
      line-height:1.8;
      font-size:13.5px;
    }
    .cs-pop-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; justify-content:center}

    @media (min-width: 900px){
      .nav-desktop-actions{display:flex}
      .nav-toggle{display:none}
      .nav-panel{display:none}
      .nav{justify-content:flex-end}
      .brand-meta{display:flex}
      .hero-grid{grid-template-columns: 1.1fr .9fr; gap:26px}
      .panel-stats{grid-template-columns: 1fr 1fr 1fr}
      .hero-title{font-size:42px}
      .grid-3{grid-template-columns: repeat(3, 1fr)}
      .grid-2{grid-template-columns: repeat(2, 1fr)}
      .split{grid-template-columns: 1.05fr .95fr}
      .stepper-grid{grid-template-columns: repeat(4, 1fr)}
      .network-grid{grid-template-columns: 1.05fr .95fr}
      .flow{grid-template-columns: 1fr 1fr 1fr}
      .flow-col{gap:14px}
      .case-grid{grid-template-columns: repeat(3, 1fr)}
      .compare-grid{grid-template-columns: .9fr 1.1fr}
      .match-grid{grid-template-columns: 1.1fr .9fr}
      .price-grid{grid-template-columns: 1fr 1fr}
      .training-grid{grid-template-columns: 1fr 1fr}
      .training-strip{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: repeat(4, 1fr)}
      .wiki-grid{grid-template-columns: repeat(3, 1fr)}
      .articles-layout{grid-template-columns: 1.25fr .75fr}
      .contact-grid{grid-template-columns: 1.1fr .9fr}
      .footer-columns{grid-template-columns: repeat(3, 1fr)}
      .end-grid{align-items:center}
      .training-strip{grid-template-columns: 1fr 1fr 1fr}
      .strip-item{margin:0}
      .form-row{grid-template-columns: 1fr 1fr}
      .cs-pop-body{padding:18px}
      .hero-mini .mini-item{min-width:180px}
      .cap-grid{grid-template-columns: 1fr 1fr}
    }

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