:root{
      --bg0:#0b0714;
      --bg1:#120a26;
      --bg2:#1a1033;
      --card:#ffffff;
      --text:#1f2430;
      --muted:#5a6476;
      --muted2:#7a8599;
      --line:rgba(18,18,32,.12);
      --shadow: 0 16px 50px rgba(22, 12, 45, .10);
      --shadow2: 0 10px 28px rgba(22, 12, 45, .12);
      --radius:18px;

      --p1:#6d28ff;
      --p2:#a855f7;
      --p3:#3b82f6;
      --p4:#22c55e;
      --p5:#f97316;

      --btnText:#ffffff;
      --container:1120px;

      --headerH:72px;
      --ease:cubic-bezier(.2,.9,.2,1);
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 20% -10%, rgba(168,85,247,.20), rgba(255,255,255,0) 60%),
        radial-gradient(900px 500px at 80% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, #fbfbff 0%, #ffffff 30%, #f7f7ff 100%);
      overflow-x:hidden;
    }

    .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:#0b0714; color:#fff; border-radius:12px; z-index:9999;
      outline:2px solid rgba(168,85,247,.7);
    }

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

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.76);
      border-bottom:1px solid rgba(18,18,32,.08);
    }
    .nav-container{
      height:var(--headerH);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:nowrap;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:260px;
    }
    .brand-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;height:44px;
      border-radius:14px;
      background:
        radial-gradient(60% 60% at 30% 20%, rgba(255,255,255,.75), rgba(255,255,255,0) 65%),
        linear-gradient(135deg, rgba(109,40,255,.25), rgba(168,85,247,.10));
      border:1px solid rgba(109,40,255,.18);
      box-shadow: 0 10px 24px rgba(109,40,255,.10);
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-text{ line-height:1.15; }
    .brand-name{ font-weight:800; letter-spacing:.2px; }
    .brand-sub{ font-size:12px; color:var(--muted); margin-top:3px; }

    .nav-desktop{
      display:flex;
      gap:14px;
      align-items:center;
      flex-wrap:nowrap;
      justify-content:center;
    }
    .nav-link{
      text-decoration:none;
      color:var(--muted);
      font-weight:650;
      font-size:14px;
      padding:10px 8px;
      border-radius:12px;
      transition: background .2s var(--ease), color .2s var(--ease);
      white-space:nowrap;
    }
    .nav-link:hover{
      background: rgba(109,40,255,.08);
      color:#2a2f3d;
    }

    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:flex-end;
      min-width:260px;
    }
    .pill-link{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      font-weight:750;
      background: rgba(109,40,255,.08);
      border:1px solid rgba(109,40,255,.18);
      color:#3c2a5e;
      transition: transform .18s var(--ease), background .18s var(--ease);
      white-space:nowrap;
    }
    .pill-link:hover{ transform: translateY(-1px); background: rgba(109,40,255,.11); }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:14px;
      text-decoration:none;
      font-weight:800;
      border:1px solid transparent;
      cursor:pointer;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{ transform: translateY(0px) scale(.99); }

    .btn-primary{
      color:var(--btnText);
      background:
        radial-gradient(90% 90% at 25% 15%, rgba(255,255,255,.22), rgba(255,255,255,0) 55%),
        linear-gradient(135deg, var(--p1), var(--p2));
      box-shadow: 0 18px 40px rgba(109,40,255,.22);
      border-color: rgba(109,40,255,.22);
    }
    .btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 24px 60px rgba(109,40,255,.28); }

    .btn-secondary{
      color:#2c2f40;
      background: rgba(255,255,255,.74);
      border-color: rgba(18,18,32,.14);
      box-shadow: 0 14px 34px rgba(20, 12, 45, .10);
    }
    .btn-secondary:hover{ transform: translateY(-2px); border-color: rgba(109,40,255,.26); }

    .btn-ghost{
      background: rgba(109,40,255,.06);
      border-color: rgba(109,40,255,.16);
      color:#3b2a63;
      box-shadow:none;
    }
    .btn-ghost:hover{ transform: translateY(-2px); background: rgba(109,40,255,.10); }

    .btn-block{ width:100%; }

    .icon-btn{
      width:46px;height:46px;
      border-radius:14px;
      border:1px solid rgba(18,18,32,.14);
      background: rgba(255,255,255,.78);
      cursor:pointer;
      display:none;
      align-items:center;
      justify-content:center;
      transition: transform .18s var(--ease);
    }
    .icon-btn:hover{ transform: translateY(-2px); }
    .icon-lines{
      width:18px;height:12px; position:relative;
      display:block;
    }
    .icon-lines:before,.icon-lines:after{
      content:"";
      position:absolute; left:0; right:0;
      height:2px; background:#2a2f3d; border-radius:3px;
      transition: transform .2s var(--ease), top .2s var(--ease), opacity .2s var(--ease);
    }
    .icon-lines:before{ top:1px; }
    .icon-lines:after{ top:auto; bottom:1px; }

    .mobile-nav{
      display:none;
      padding:0 0 18px;
      border-bottom:1px solid rgba(18,18,32,.08);
      background: rgba(255,255,255,.9);
      backdrop-filter: blur(12px);
    }
    .mobile-nav-inner{ padding-top:16px; }
    .mobile-links{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px 14px;
    }
    .mobile-links a{
      text-decoration:none;
      color:#2a2f3d;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.7);
      font-weight:750;
      font-size:14px;
    }
    .mobile-links a:hover{
      border-color: rgba(109,40,255,.22);
      background: rgba(109,40,255,.06);
    }
    .mobile-actions{
      display:flex;
      gap:12px;
      margin-top:14px;
      justify-content:flex-end;
      flex-wrap:wrap;
    }

    .hero{
      position:relative;
      padding:54px 0 36px;
      overflow:hidden;
    }
    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:26px;
      align-items:start;
      z-index:2;
    }
    .hero-left{ padding-top:10px; }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(109,40,255,.22);
      background: rgba(255,255,255,.65);
      box-shadow: 0 18px 42px rgba(109,40,255,.12);
      color:#2a2f3d;
      font-weight:850;
    }
    .badge-dot{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--p1), var(--p2));
      box-shadow: 0 10px 24px rgba(109,40,255,.25);
    }

    .hero-title{
      margin:18px 0 10px;
      font-size:44px;
      line-height:1.08;
      letter-spacing:-.6px;
      font-weight:950;
    }
    .hero-lead{
      margin:0;
      color:var(--muted);
      font-size:16px;
      line-height:1.8;
      max-width:56ch;
    }

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

    .hero-meta{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-top:18px;
    }
    .meta-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.70);
    }
    .meta-top{ font-weight:900; color:#2a2f3d; }
    .meta-bottom{ margin-top:5px; color:var(--muted); font-size:13px; }

    .glass-panel{
      border-radius:22px;
      border:1px solid rgba(109,40,255,.18);
      background:
        radial-gradient(1000px 280px at 20% 0%, rgba(168,85,247,.16), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .glass-panel:before{
      content:"";
      position:absolute; inset:-2px;
      background: linear-gradient(135deg, rgba(109,40,255,.22), rgba(168,85,247,.08), rgba(59,130,246,.10));
      opacity:.35;
      filter: blur(18px);
      pointer-events:none;
    }
    .panel-head{ position:relative; z-index:1; }
    .panel-title{ font-weight:950; font-size:16px; }
    .panel-sub{ margin-top:6px; color:var(--muted); font-weight:700; font-size:13px; line-height:1.5; }

    .kpi-grid{
      position:relative; z-index:1;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      margin-top:14px;
    }
    .kpi-card{
      border-radius:18px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      padding:14px 14px;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
      outline:none;
    }
    .kpi-card:hover{
      transform: translateY(-3px);
      border-color: rgba(109,40,255,.26);
      box-shadow: 0 18px 40px rgba(109,40,255,.14);
    }
    .kpi-icon{
      color: #4b2a85;
      width:36px;height:36px;
      display:flex; align-items:center; justify-content:center;
      border-radius:14px;
      background: rgba(109,40,255,.10);
      border:1px solid rgba(109,40,255,.20);
      margin-bottom:10px;
    }
    .kpi-value{ font-weight:950; }
    .kpi-desc{ color:var(--muted); font-size:13px; margin-top:6px; line-height:1.5; }

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

    .scene-title{ font-weight:950; position:relative; z-index:1; }
    .chips{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
      position:relative; z-index:1;
    }
    .chip{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(109,40,255,.18);
      background: rgba(255,255,255,.66);
      color:#3c2a5e;
      font-weight:800;
      font-size:13px;
    }
    .chip.soft{
      border-color: rgba(18,18,32,.10);
      background: rgba(255,255,255,.62);
      color:#394152;
    }

    .panel-actions{
      position:relative; z-index:1;
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:16px;
    }

    .hero-bg{
      position:absolute; inset:0;
      z-index:1;
      pointer-events:none;
      background:
        radial-gradient(900px 400px at 20% 10%, rgba(109,40,255,.20), rgba(255,255,255,0) 60%),
        radial-gradient(700px 380px at 80% 0%, rgba(168,85,247,.18), rgba(255,255,255,0) 58%),
        linear-gradient(180deg, rgba(109,40,255,.08), rgba(255,255,255,0) 45%);
    }
    .orb{
      position:absolute;
      width:520px; height:520px;
      border-radius:50%;
      filter: blur(40px);
      opacity:.55;
      transform: translate3d(0,0,0);
      animation: floaty 7s var(--ease) infinite;
    }
    .orb-a{
      left:-250px; top:60px;
      background: radial-gradient(circle at 30% 30%, rgba(168,85,247,.55), rgba(109,40,255,.05) 60%, rgba(255,255,255,0) 70%);
    }
    .orb-b{
      right:-260px; top:-80px;
      width:560px; height:560px;
      background: radial-gradient(circle at 40% 30%, rgba(59,130,246,.35), rgba(168,85,247,.06) 62%, rgba(255,255,255,0) 72%);
      animation-delay:1.1s;
    }
    .gridlines{
      position:absolute; inset:-80px -80px -80px -80px;
      background:
        linear-gradient(to right, rgba(109,40,255,.10) 1px, rgba(255,255,255,0) 1px),
        linear-gradient(to bottom, rgba(168,85,247,.08) 1px, rgba(255,255,255,0) 1px);
      background-size: 58px 58px;
      opacity:.14;
      transform: rotate(-8deg);
    }

    @keyframes floaty{
      0%,100%{ transform: translateY(0px); }
      50%{ transform: translateY(18px); }
    }

    .section{
      padding:56px 0;
    }
    .section-soft{
      background: linear-gradient(180deg, rgba(109,40,255,.06), rgba(255,255,255,0) 70%);
      border-top:1px solid rgba(18,18,32,.05);
      border-bottom:1px solid rgba(18,18,32,.05);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      margin-bottom:22px;
    }
    .section-title{
      margin:0;
      font-size:30px;
      font-weight:950;
      letter-spacing:-.3px;
    }
    .section-sub{
      margin:8px 0 0;
      color:var(--muted);
      line-height:1.8;
      max-width:70ch;
      font-size:15px;
      font-weight:650;
    }

    .data-row{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
      margin-top:18px;
    }
    .data-card{
      border-radius:18px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      padding:18px 16px;
      box-shadow: 0 14px 32px rgba(22,12,45,.08);
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
      opacity:.95;
    }
    .data-card.in-view{ animation: riseIn .6s var(--ease) both; }
    @keyframes riseIn{
      from{ transform: translateY(14px); opacity:0; }
      to{ transform: translateY(0); opacity:1; }
    }
    .data-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 52px rgba(109,40,255,.14);
      border-color: rgba(109,40,255,.22);
    }
    .data-num{ font-weight:950; font-size:16px; }
    .data-desc{ margin-top:10px; color:var(--muted); line-height:1.7; font-weight:650; font-size:14px; }

    .quick-actions{
      margin-top:20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding:14px 16px;
      border-radius:20px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 42px rgba(22,12,45,.08);
    }
    .qa-title{ font-weight:950; font-size:16px; }
    .qa-sub{ margin-top:6px; color:var(--muted); font-weight:650; }

    .two-col{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:20px;
      align-items:start;
    }
    .feature-list{ margin-top:18px; display:flex; flex-direction:column; gap:14px; }
    .feature-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 30px rgba(22,12,45,.07);
    }
    .feature-mark{
      width:34px;height:34px;border-radius:14px;
      background: rgba(109,40,255,.10);
      border:1px solid rgba(109,40,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:950; color:#3c2a5e; flex:0 0 auto;
    }
    .feature-title{ font-weight:950; }
    .feature-desc{ margin-top:6px; color:var(--muted); font-weight:650; line-height:1.7; font-size:14px; }

    .about-card{
      border-radius:22px;
      border:1px solid rgba(109,40,255,.18);
      background:
        radial-gradient(850px 280px at 30% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.65));
      box-shadow: var(--shadow);
      padding:18px;
    }
    .about-tag{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(109,40,255,.22);
      background: rgba(109,40,255,.08);
      font-weight:900;
      color:#3c2a5e;
      margin-bottom:12px;
    }
    .about-title{ font-weight:1000; font-size:18px; line-height:1.35; }
    .about-desc{ margin-top:10px; color:var(--muted); font-weight:650; line-height:1.75; }

    .about-grid{
      margin-top:16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .about-mini{
      border-radius:18px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      padding:12px 12px;
      min-height:74px;
    }
    .mini-k{ font-weight:950; }
    .mini-v{ margin-top:6px; color:var(--muted); font-weight:650; font-size:13px; line-height:1.5; }

    .about-bottom{
      display:flex;
      gap:12px;
      margin-top:16px;
      flex-wrap:wrap;
    }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:14px;
    }
    .service-card{
      border-radius:20px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      box-shadow: 0 14px 32px rgba(22,12,45,.08);
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
      position:relative;
      overflow:hidden;
      min-height:196px;
    }
    .service-card:after{
      content:"";
      position:absolute;
      right:-30px; top:-40px;
      width:120px; height:120px;
      background: radial-gradient(circle at 30% 30%, rgba(168,85,247,.35), rgba(109,40,255,.0) 60%);
      opacity:.55;
      filter: blur(6px);
      pointer-events:none;
    }
    .service-card:hover{
      transform: translateY(-4px);
      border-color: rgba(109,40,255,.26);
      box-shadow: 0 26px 60px rgba(109,40,255,.16);
    }
    .service-icon{
      width:44px;height:44px;border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(109,40,255,.18);
      background: rgba(109,40,255,.10);
      color:#4b2a85;
      position:relative; z-index:1;
    }
    .service-title{ margin:12px 0 8px; font-weight:1000; font-size:16px; position:relative; z-index:1; }
    .service-desc{ margin:0; color:var(--muted); line-height:1.75; font-weight:650; font-size:14px; position:relative; z-index:1; }
    .link-more{
      display:inline-flex;
      margin-top:14px;
      text-decoration:none;
      color:#4b2a85;
      font-weight:950;
      position:relative; z-index:1;
    }
    .link-more:after{
      content:"";
      width:100%;
      height:1px;
      background: linear-gradient(90deg, rgba(109,40,255,.0), rgba(109,40,255,.55));
      position:absolute;
      left:0; bottom:-4px;
      transform: scaleX(.7);
      transform-origin:left;
      transition: transform .2s var(--ease), opacity .2s var(--ease);
      opacity:.9;
    }
    .service-card:hover .link-more:after{ transform: scaleX(1); opacity:1; }

    .service-logos{
      margin-top:22px;
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      box-shadow: 0 18px 42px rgba(22,12,45,.08);
    }
    .service-logos-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .service-logos-title{ font-weight:1000; }
    .service-logos-sub{ color:var(--muted); font-weight:700; }
    .logo-cloud{
      margin-top:14px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      font-weight:900;
      color:#2b2f3f;
      font-size:13px;
    }
    .tag.small{ font-size:12px; padding:7px 10px; }
    .service-logos-foot{
      margin-top:14px;
      display:flex;
      justify-content:flex-end;
      gap:12px;
      flex-wrap:wrap;
    }

    .three-col{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
      align-items:stretch;
    }
    .step-card{
      border-radius:20px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:16px;
      transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
      opacity:.95;
    }
    .step-card.in-view{ animation: riseIn .6s var(--ease) both; }
    .step-card:hover{
      transform: translateY(-4px);
      border-color: rgba(109,40,255,.26);
      box-shadow: 0 26px 62px rgba(109,40,255,.16);
    }
    .step-top{ display:flex; align-items:center; gap:12px; }
    .step-num{
      width:40px;height:40px;border-radius:16px;
      background: rgba(109,40,255,.10);
      border:1px solid rgba(109,40,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:#4b2a85;
      flex:0 0 auto;
    }
    .step-title{ font-weight:1000; font-size:16px; }
    .step-desc{ margin-top:12px; color:var(--muted); font-weight:650; line-height:1.75; }

    .media-row{
      margin-top:22px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .media-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 42px rgba(22,12,45,.08);
      padding:16px;
      overflow:hidden;
    }
    .media-label{ font-weight:1000; margin-bottom:12px; }
    .media-images{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .media-images.single{
      grid-template-columns: 1fr;
    }
    .img-frame{
      margin:0;
      border-radius:18px;
      border:1px solid rgba(18,18,32,.10);
      overflow:hidden;
      background: rgba(255,255,255,.7);
      transition: transform .22s var(--ease), box-shadow .22s var(--ease);
    }
    .img-frame:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 58px rgba(109,40,255,.14);
    }
    .img-frame img{
      width:100%;
      display:block;
      height:auto;
      max-width:100%;
      object-fit:contain;
      aspect-ratio: 16 / 9;
      background: rgba(18,18,32,.03);
    }
    .media-images.single .img-frame img{
      aspect-ratio: 1 / 1;
    }
    .img-frame figcaption{
      padding:10px 12px;
      color:var(--muted);
      font-weight:700;
      font-size:13px;
      border-top:1px solid rgba(18,18,32,.08);
    }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:14px;
    }
    .industry-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:16px;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
      min-height:178px;
    }
    .industry-card:hover{
      transform: translateY(-4px);
      border-color: rgba(109,40,255,.26);
      box-shadow: 0 26px 62px rgba(109,40,255,.16);
    }
    .industry-title{ font-weight:1000; font-size:16px; }
    .industry-desc{ margin-top:10px; color:var(--muted); font-weight:650; line-height:1.75; font-size:14px; }
    .industry-pills{ margin-top:12px; display:flex; flex-wrap:wrap; gap:10px; }
    .pill{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      font-weight:900;
      color:#2b2f3f;
      font-size:13px;
    }

    .cta-strip{
      margin-top:18px;
      border-radius:22px;
      border:1px solid rgba(109,40,255,.18);
      background:
        radial-gradient(1000px 280px at 20% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .cta-title{ font-weight:1000; font-size:16px; }
    .cta-sub{ margin-top:6px; color:var(--muted); font-weight:700; line-height:1.7; }
    .cta-strip-right{ display:flex; gap:12px; flex-wrap:wrap; }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .network-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:16px;
    }
    .network-title{ font-weight:1000; font-size:16px; margin-bottom:10px; }
    .network-desc{ color:var(--muted); font-weight:650; line-height:1.75; }
    .checklist{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .checklist li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#2b2f3f;
      font-weight:750;
      line-height:1.6;
    }
    .check{
      width:20px;height:20px;border-radius:8px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.22);
      color:#1f7a3a;
      font-weight:1000;
      flex:0 0 auto;
      margin-top:1px;
    }

    .social-row{
      margin-top:14px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }

    .qr-wrap{
      margin-top:14px;
      border-radius:20px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      padding:14px;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
    }
    .qr-label{ font-weight:1000; }
    .qr-img{
      width:160px;
      height:auto;
      border-radius:16px;
      border:1px solid rgba(18,18,32,.10);
      background:#fff;
    }
    .qr-sub{ color:var(--muted); font-weight:700; font-size:13px; text-align:center; line-height:1.5; }

    .timeline{
      display:flex;
      flex-direction:column;
      gap:12px;
      padding:10px 0 2px;
    }
    .timeline-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 14px;
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 32px rgba(22,12,45,.07);
    }
    .t-dot{
      width:12px; height:12px;
      border-radius:50%;
      margin-top:6px;
      background: linear-gradient(135deg, var(--p1), var(--p2));
      box-shadow: 0 10px 20px rgba(109,40,255,.22);
      flex:0 0 auto;
    }
    .t-title{ font-weight:1000; }
    .t-desc{ margin-top:6px; color:var(--muted); font-weight:650; line-height:1.7; }

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

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:14px;
    }
    .case-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:16px;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
      min-height:198px;
    }
    .case-card:hover{
      transform: translateY(-4px);
      border-color: rgba(109,40,255,.26);
      box-shadow: 0 28px 70px rgba(109,40,255,.16);
    }
    .case-top{ display:flex; flex-direction:column; gap:10px; }
    .case-badge{
      width:fit-content;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(109,40,255,.20);
      background: rgba(109,40,255,.08);
      font-weight:950;
      color:#3c2a5e;
      font-size:13px;
    }
    .case-title{ font-weight:1000; font-size:16px; }
    .case-desc{ margin-top:10px; color:var(--muted); font-weight:650; line-height:1.75; font-size:14px; }
    .case-tags{ margin-top:12px; display:flex; flex-wrap:wrap; gap:10px; }
    .case-foot{ margin-top:14px; display:flex; justify-content:flex-start; }

    .compare-top{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:stretch;
    }
    .rating-card{
      border-radius:22px;
      border:1px solid rgba(109,40,255,.18);
      background:
        radial-gradient(900px 280px at 20% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 62%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
      padding:18px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:14px;
    }
    .rating-head{ display:flex; flex-direction:column; gap:10px; }
    .rating-stars{ font-size:18px; letter-spacing:2px; color:#f59e0b; }
    .rating-reco{ font-weight:1000; color:#2a2f3d; }
    .rating-value{
      display:flex; align-items:baseline; gap:10px;
      margin-top:8px;
    }
    .rating-num{
      font-size:52px; font-weight:1000; letter-spacing:-1px;
      background: linear-gradient(135deg, var(--p1), var(--p2));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .rating-unit{ font-weight:950; color:#2a2f3d; font-size:18px; }
    .rating-sub{ color:var(--muted); font-weight:700; line-height:1.7; }

    .compare-intro{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:18px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:14px;
    }
    .intro-title{ font-weight:1000; font-size:16px; }
    .intro-desc{ color:var(--muted); font-weight:650; line-height:1.85; margin-top:10px; }
    .table-wrap{
      margin-top:14px;
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 42px rgba(22,12,45,.08);
      overflow:auto;
    }
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width:860px;
    }
    .compare-table th, .compare-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(18,18,32,.08);
      text-align:left;
      vertical-align:top;
      font-weight:750;
      color:#2b2f3f;
      line-height:1.6;
    }
    .compare-table th{
      background: linear-gradient(180deg, rgba(109,40,255,.09), rgba(255,255,255,0));
      font-weight:1000;
      position:sticky;
      top:0;
      z-index:1;
    }
    .badge{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      font-weight:950;
      font-size:13px;
      white-space:nowrap;
    }
    .badge.good{
      border-color: rgba(34,197,94,.25);
      background: rgba(34,197,94,.08);
      color:#1f7a3a;
    }
    .badge.warn{
      border-color: rgba(245,158,11,.25);
      background: rgba(245,158,11,.10);
      color:#8a5a00;
    }

    .compare-bottom{
      margin-top:16px;
      border-radius:22px;
      border:1px solid rgba(109,40,255,.18);
      background:
        radial-gradient(1000px 280px at 20% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .compare-bottom-title{ font-weight:1000; }
    .compare-bottom-sub{ margin-top:6px; color:var(--muted); font-weight:700; line-height:1.7; }

    .match-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .match-card{
      border-radius:22px;
      border:1px solid rgba(109,40,255,.18);
      background:
        radial-gradient(900px 280px at 20% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 62%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
      padding:18px;
    }
    .match-title{ font-weight:1000; font-size:16px; }
    .match-desc{ margin-top:10px; color:var(--muted); font-weight:650; line-height:1.75; }

    .side-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:16px;
      margin-bottom:14px;
    }
    .side-card.subtle{
      background: rgba(255,255,255,.70);
    }
    .side-title{ font-weight:1000; font-size:16px; margin-bottom:10px; }
    .side-actions{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

    .mini-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:10px;
    }
    .mini-link{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      color:#2b2f3f;
      font-weight:900;
      font-size:13px;
      transition: transform .18s var(--ease), border-color .18s var(--ease);
    }
    .mini-link:hover{
      transform: translateY(-2px);
      border-color: rgba(109,40,255,.26);
    }

    .form{ margin-top:14px; }
    .form-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-bottom:12px;
    }
    .field{ display:flex; flex-direction:column; gap:8px; }
    .field-label{
      font-weight:900;
      color:#2b2f3f;
      font-size:13px;
    }
    input, select, textarea{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(18,18,32,.14);
      background: rgba(255,255,255,.86);
      padding:12px 12px;
      font-size:14px;
      color:#1f2430;
      outline:none;
      transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
    }
    textarea{ resize:vertical; min-height:120px; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(109,40,255,.38);
      box-shadow: 0 0 0 4px rgba(109,40,255,.14);
    }
    .form-foot{
      display:flex;
      align-items:flex-start;
      gap:12px;
      margin-top:14px;
      flex-wrap:wrap;
    }
    .form-hint{
      color:var(--muted);
      font-weight:650;
      line-height:1.6;
      margin-top:10px;
      font-size:13px;
      max-width:42ch;
    }

    .quote-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .quote-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .quote-card.highlight{
      border-color: rgba(109,40,255,.18);
      background:
        radial-gradient(900px 280px at 20% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 62%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
    }
    .quote-title{ font-weight:1000; font-size:16px; }
    .quote-desc{ margin-top:10px; color:var(--muted); font-weight:650; line-height:1.85; }
    .quote-steps{ margin-top:14px; display:flex; flex-direction:column; gap:10px; }
    .qstep{
      display:flex; align-items:center; gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.74);
      font-weight:850; color:#2b2f3f;
    }
    .qnum{
      width:30px;height:30px;border-radius:14px;
      background: rgba(109,40,255,.10);
      border:1px solid rgba(109,40,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:#4b2a85; flex:0 0 auto;
    }
    .quote-actions{
      margin-top:16px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-start;
    }
    .quote-subtitle{ margin-top:6px; color:var(--muted); font-weight:700; }

    .price-table-wrap{ margin-top:14px; border-radius:18px; overflow:hidden; border:1px solid rgba(18,18,32,.10); }
    .mini-table{
      width:100%;
      border-collapse:collapse;
      min-width:560px;
    }
    .mini-table th, .mini-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(18,18,32,.08);
      text-align:left;
      vertical-align:top;
      font-weight:800;
      color:#2b2f3f;
      line-height:1.6;
      font-size:14px;
    }
    .mini-table th{
      background: linear-gradient(180deg, rgba(109,40,255,.09), rgba(255,255,255,0));
      position:sticky;
      top:0;
      z-index:1;
      font-weight:1000;
    }
    .quote-foot{ margin-top:10px; }
    .quote-foot-note{ color:var(--muted2); font-weight:650; font-size:12px; line-height:1.6; }

    .training-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .training-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:18px;
    }
    .training-card.highlight{
      border-color: rgba(109,40,255,.18);
      background:
        radial-gradient(900px 280px at 20% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 62%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
    }
    .training-title{ font-weight:1000; font-size:16px; }
    .training-desc{ margin-top:10px; color:var(--muted); font-weight:650; line-height:1.85; }
    .training-list{ margin-top:14px; display:flex; flex-direction:column; gap:12px; }
    .train-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:20px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
    }
    .train-mark{
      width:34px;height:34px;border-radius:14px;
      background: rgba(109,40,255,.10);
      border:1px solid rgba(109,40,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:#4b2a85; flex:0 0 auto;
      margin-top:2px;
    }
    .train-name{ font-weight:1000; }
    .train-sub{ margin-top:6px; color:var(--muted); font-weight:700; font-size:13px; line-height:1.6; }

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

    .train-benefits{ margin-top:14px; display:flex; flex-direction:column; gap:12px; }
    .benefit{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:20px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.74);
    }
    .benefit-icon{
      width:42px;height:42px;border-radius:16px;
      border:1px solid rgba(109,40,255,.18);
      background: rgba(109,40,255,.10);
      display:flex; align-items:center; justify-content:center;
      color:#4b2a85;
      flex:0 0 auto;
      margin-top:2px;
    }
    .benefit-title{ font-weight:1000; }
    .benefit-sub{ margin-top:6px; color:var(--muted); font-weight:700; font-size:13px; line-height:1.6; }

    .training-bottom{ margin-top:16px; }
    .training-chip-row{ display:flex; flex-wrap:wrap; gap:10px; }
    .training-bottom .btn{ margin-top:12px; }

    .help-grid{
      display:grid;
      grid-template-columns: 1fr 1.15fr;
      gap:14px;
      align-items:start;
    }
    .help-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:18px;
    }
    .help-title{ font-weight:1000; font-size:16px; margin-bottom:10px; }
    .help-desc{ color:var(--muted); font-weight:650; line-height:1.85; }
    .help-list{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px; }
    .help-list a{
      text-decoration:none;
      color:#2b2f3f;
      font-weight:900;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
      display:inline-flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .help-list a:hover{
      transform: translateY(-2px);
      border-color: rgba(109,40,255,.26);
      background: rgba(109,40,255,.06);
    }
    .help-action-row{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faq-item{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.07);
      margin-bottom:12px;
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      text-align:left;
      padding:14px 16px;
      border:0;
      background: transparent;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:950;
      color:#2b2f3f;
      font-size:15px;
    }
    .faq-icon{
      width:28px;height:28px;border-radius:12px;
      border:1px solid rgba(18,18,32,.12);
      background: rgba(255,255,255,.72);
      position:relative;
      flex:0 0 auto;
    }
    .faq-icon:before,.faq-icon:after{
      content:"";
      position:absolute;
      left:50%; top:50%;
      width:14px; height:2px;
      background:#3b2a63;
      border-radius:3px;
      transform: translate(-50%,-50%);
      transition: transform .22s var(--ease);
    }
    .faq-icon:after{
      width:2px; height:14px;
    }
    .faq-item .faq-a{
      padding:0 16px 14px;
      color:var(--muted);
      font-weight:650;
      line-height:1.85;
      font-size:14px;
    }
    .faq-item .faq-q[aria-expanded="true"] .faq-icon:after{
      transform: translate(-50%,-50%) rotate(90deg);
      opacity:.25;
    }
    .faq-col .faq-item{ margin-bottom:12px; }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .wiki-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:18px;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
    }
    .wiki-card:hover{
      transform: translateY(-4px);
      border-color: rgba(109,40,255,.26);
      box-shadow: 0 28px 70px rgba(109,40,255,.16);
    }
    .wiki-title{ font-weight:1000; font-size:16px; }
    .wiki-desc{ margin-top:10px; color:var(--muted); font-weight:650; line-height:1.85; }
    .tag-cloud{
      margin-top:18px;
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:16px;
    }
    .tag-cloud-head{ font-weight:1000; margin-bottom:10px; }

    .news-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .news-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:18px;
    }
    .news-card.highlight{
      border-color: rgba(109,40,255,.18);
      background:
        radial-gradient(900px 280px at 20% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 62%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
    }
    .news-title{ font-weight:1000; font-size:16px; }
    .news-desc{ margin-top:8px; color:var(--muted); font-weight:650; line-height:1.75; }

    .article-list{ margin-top:14px; display:flex; flex-direction:column; gap:10px; }
    .article-item{
      text-decoration:none;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:20px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
    }
    .article-item:hover{
      transform: translateY(-2px);
      border-color: rgba(109,40,255,.26);
      box-shadow: 0 18px 42px rgba(109,40,255,.14);
    }
    .article-dot{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--p1), var(--p2));
      box-shadow: 0 10px 20px rgba(109,40,255,.22);
      flex:0 0 auto;
    }
    .article-body{ flex:1; }
    .article-name{ font-weight:1000; color:#2b2f3f; }
    .article-meta{ margin-top:6px; color:var(--muted); font-weight:700; font-size:13px; line-height:1.5; }
    .article-arrow{ color:#4b2a85; font-weight:1000; }

    .news-foot{
      margin-top:14px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:space-between;
      align-items:center;
    }
    .fine-print{
      color:var(--muted2);
      font-weight:650;
      font-size:12px;
      line-height:1.6;
      margin-top:10px;
    }

    .link-cloud{
      margin-top:14px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .link-pill{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      color:#2b2f3f;
      font-weight:950;
      font-size:13px;
      transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
    }
    .link-pill:hover{
      transform: translateY(-2px);
      border-color: rgba(109,40,255,.26);
      background: rgba(109,40,255,.06);
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .review-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:18px;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
      opacity:.98;
    }
    .review-card:hover{
      transform: translateY(-4px);
      border-color: rgba(109,40,255,.26);
      box-shadow: 0 28px 70px rgba(109,40,255,.16);
    }
    .review-card.in-view{ animation: riseIn .6s var(--ease) both; }
    .review-top{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .avatar{
      width:44px;height:44px;border-radius:18px;
      background: rgba(109,40,255,.10);
      border:1px solid rgba(109,40,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#4b2a85;
      flex:0 0 auto;
    }
    .review-name{ font-weight:1000; }
    .review-meta{ margin-top:6px; color:var(--muted); font-weight:700; font-size:13px; line-height:1.5; }
    .review-text{
      margin-top:12px;
      color:var(--muted);
      font-weight:650;
      line-height:1.85;
      font-size:14px;
    }
    .review-stars{
      margin-top:14px;
      color:#f59e0b;
      letter-spacing:2px;
      font-weight:1000;
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .contact-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:18px;
    }
    .contact-card.mini{ padding:16px; }
    .contact-card.mini.subtle{
      background: rgba(255,255,255,.72);
    }
    .contact-card:first-child{
      border-color: rgba(109,40,255,.18);
      background:
        radial-gradient(900px 280px at 20% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 62%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
    }
    .contact-title{ font-weight:1000; font-size:16px; }
    .contact-sub{ margin-top:8px; color:var(--muted); font-weight:650; line-height:1.75; }
    .contact-lines{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .contact-line{ display:flex; justify-content:space-between; gap:12px; border-bottom:1px dashed rgba(18,18,32,.12); padding-bottom:10px; }
    .contact-line:last-child{ border-bottom:0; padding-bottom:0; }
    .contact-k{ color:var(--muted); font-weight:750; font-size:13px; min-width:92px; }
    .contact-v{ font-weight:900; }
    .contact-v a{ color:#2b2f3f; text-decoration:none; border-bottom:1px solid rgba(109,40,255,.25); }
    .contact-v a:hover{ border-bottom-color: rgba(109,40,255,.55); }

    .contact-side-actions{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-start; }

    .contact-small-links{ margin-top:12px; display:flex; flex-wrap:wrap; gap:10px; }
    .contact-small-links a{
      text-decoration:none;
      color:#2b2f3f;
      font-weight:900;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
      font-size:13px;
    }
    .contact-small-links a:hover{
      border-color: rgba(109,40,255,.26);
      background: rgba(109,40,255,.06);
    }

    .join-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .join-card{
      border-radius:22px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(22,12,45,.08);
      padding:18px;
    }
    .join-card.highlight{
      border-color: rgba(109,40,255,.18);
      background:
        radial-gradient(900px 280px at 20% 0%, rgba(109,40,255,.18), rgba(255,255,255,0) 62%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
    }
    .join-title{ font-weight:1000; font-size:16px; }
    .join-desc{ margin-top:10px; color:var(--muted); font-weight:650; line-height:1.85; }
    .join-actions{ margin-top:16px; display:flex; gap:12px; flex-wrap:wrap; }
    .join-pills{ margin-top:14px; display:flex; flex-wrap:wrap; gap:10px; }

    .join-table-wrap{
      margin-top:14px;
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(18,18,32,.10);
      background: rgba(255,255,255,.72);
    }
    .join-note{
      margin-top:14px;
      color:var(--muted2);
      font-weight:650;
      line-height:1.7;
      font-size:12px;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .note-dot{
      width:10px;height:10px;border-radius:50%;
      margin-top:6px;
      background: rgba(109,40,255,.35);
      border:1px solid rgba(109,40,255,.25);
    }

    .site-footer{
      background: #0f0a1f;
      color:#eef0ff;
      border-top:1px solid rgba(255,255,255,.10);
      padding:28px 0 22px;
    }
    .footer-inner{ padding:0 18px; }
    .footer-top{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:18px;
      align-items:start;
      margin-bottom:18px;
    }
    .footer-brand-name{ font-weight:1000; font-size:18px; }
    .footer-brand-sub{ margin-top:4px; color:rgba(238,240,255,.72); font-weight:700; font-size:13px; }
    .footer-title-row{ display:flex; gap:12px; align-items:center; }
    .footer-desc{ margin-top:12px; color:rgba(238,240,255,.76); font-weight:650; line-height:1.85; max-width:60ch; }

    .footer-cols{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap:12px; }
    .footer-col-title{ font-weight:1000; color:#fff; margin-bottom:10px; }
    .footer-links{ display:flex; flex-direction:column; gap:10px; }
    .site-footer a{
      color: rgba(238,240,255,.82);
      text-decoration:none;
      font-weight:750;
    }
    .site-footer a:hover{
      color:#fff;
      text-decoration:underline;
      text-decoration-color: rgba(168,85,247,.7);
      text-underline-offset:4px;
    }

    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.10);
      flex-wrap:wrap;
    }
    .footer-left{ color:rgba(238,240,255,.70); font-weight:700; }
    .footer-top-link{
      display:inline-flex;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
    }
    .footer-top-link:hover{
      background: rgba(168,85,247,.14);
      border-color: rgba(168,85,247,.35);
    }

    .to-top{
      position:fixed;
      right:14px;
      bottom:14px;
      width:44px;height:44px;
      border-radius:16px;
      border:1px solid rgba(18,18,32,.14);
      background: rgba(255,255,255,.85);
      color:#2b2f3f;
      box-shadow: 0 18px 42px rgba(22,12,45,.16);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1000;
      opacity:0;
      pointer-events:none;
      transform: translateY(10px);
      transition: opacity .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
      z-index:60;
    }
    .to-top.show{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }
    .to-top:hover{ background: rgba(109,40,255,.10); border-color: rgba(109,40,255,.26); }

    .float-kefu{
      position:fixed;
      right:14px;
      bottom:68px;
      z-index:70;
      display:flex;
      align-items:flex-end;
      gap:10px;
    }
    .float-kefu-btn{
      width:54px;height:54px;
      border-radius:20px;
      border:1px solid rgba(109,40,255,.22);
      background:
        radial-gradient(90% 90% at 25% 15%, rgba(255,255,255,.22), rgba(255,255,255,0) 55%),
        linear-gradient(135deg, rgba(109,40,255,.95), rgba(168,85,247,.88));
      color:#fff;
      font-weight:1000;
      box-shadow: 0 26px 70px rgba(109,40,255,.26);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      transition: transform .18s var(--ease);
      padding:0;
    }
    .float-kefu-btn:hover{ transform: translateY(-3px); }
    .float-dot{
      position:absolute;
      width:10px;height:10px;border-radius:50%;
      background: rgba(34,197,94,.95);
      right:10px; top:10px;
      box-shadow: 0 10px 22px rgba(34,197,94,.28);
      border:1px solid rgba(255,255,255,.45);
    }

    .float-kefu-panel{
      width:260px;
      border-radius:22px;
      border:1px solid rgba(18,18,32,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 28px 80px rgba(22,12,45,.22);
      padding:14px;
    }
    .float-title{ font-weight:1000; margin-bottom:10px; }
    .float-kefu-panel img{
      width:100%;
      height:auto;
      border-radius:18px;
      border:1px solid rgba(18,18,32,.10);
      background:#fff;
      display:block;
    }
    .float-sub{ color:var(--muted); font-weight:700; line-height:1.6; font-size:13px; margin:10px 0 12px; }

    @media (max-width: 980px){
      .nav-desktop{ display:none; }
      .icon-btn{ display:flex; }
      .mobile-nav{ display:block; }
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-title{ font-size:36px; }
      .hero-meta{ grid-template-columns: 1fr; }
      .data-row{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .service-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .industry-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .case-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .compare-top{ grid-template-columns: 1fr; }
      .match-grid{ grid-template-columns: 1fr; }
      .quote-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr; }
      .news-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .footer-top{ grid-template-columns: 1fr; }
      .footer-cols{ grid-template-columns: 1fr; }
      .float-kefu{ bottom:16px; right:16px; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior:auto !important; }
      .orb{ animation:none !important; }
      .data-card.in-view, .review-card.in-view, .step-card.in-view{ animation:none !important; }
    }

    @media (max-width: 460px){
      .brand{ min-width:auto; }
      .brand-sub{ display:none; }
      .hero-title{ font-size:32px; }
      .service-grid{ grid-template-columns: 1fr; }
      .industry-grid{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .media-row{ grid-template-columns: 1fr; }
      .form-row{ grid-template-columns: 1fr; }
      .float-kefu-panel{ width:220px; }
    }