:root{
      --bg0:#ffffff;
      --bg1:#fbf7ff;
      --bg2:#f5f7ff;
      --text:#1f2937;
      --muted:#5b6475;
      --muted2:#6b7280;
      --border:rgba(20,24,38,.10);
      --shadow:0 12px 35px rgba(20,24,38,.10);
      --shadow2:0 10px 25px rgba(20,24,38,.12);
      --primary1:#6d5efc;
      --primary2:#1bb7ff;
      --primary3:#22c55e;
      --grad:linear-gradient(120deg, #6d5efc 0%, #1bb7ff 40%, #22c55e 100%);
      --grad2:linear-gradient(120deg, rgba(109,94,252,.18), rgba(27,183,255,.16), rgba(34,197,94,.14));
      --card:#ffffff;
      --card2:#fbfbff;
      --chip:#f3f4f6;
      --focus:rgba(109,94,252,.35);
      --radius:18px;
      --radius2:22px;
      --container:1160px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 500px at 12% -10%, rgba(109,94,252,.18), transparent 60%),
        radial-gradient(900px 520px at 88% -18%, rgba(27,183,255,.16), transparent 55%),
        radial-gradient(760px 520px at 80% 20%, rgba(34,197,94,.12), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fbfbff 35%, #ffffff 100%);
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute; left:-9999px; top:10px;
      padding:10px 14px; background:#111827; color:#fff; border-radius:10px;
      z-index:9999;
    }
    .skip-link:focus{ left:12px; outline:2px solid var(--focus); }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      background:rgba(255,255,255,.72);
      backdrop-filter:saturate(180%) blur(10px);
      border-bottom:1px solid rgba(20,24,38,.08);
    }

    .nav-wrap{
      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; text-decoration:none; gap:12px; }
    .ai-page-logo{ width:44px; height:44px; object-fit:contain; }
    .brand-meta{ line-height:1.1; }
    .brand-name{ font-weight:850; letter-spacing:.2px; }
    .brand-sub{ font-size:12px; color:var(--muted); margin-top:4px; }

    .desktop-nav{
      display:flex; align-items:center; gap:18px;
      padding:0 10px;
      flex:1;
      justify-content:center;
      flex-wrap:wrap;
    }
    .nav-link{
      color:var(--muted);
      text-decoration:none;
      font-weight:650;
      font-size:13px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:rgba(109,94,252,.08);
      border-color:rgba(109,94,252,.18);
      color:#1f2a44;
      transform:translateY(-1px);
    }

    .nav-actions{ display:flex; align-items:center; gap:10px; }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:8px;
      border-radius:14px;
      padding:10px 14px;
      text-decoration:none;
      font-weight:780;
      border:1px solid rgba(20,24,38,.10);
      transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      cursor:pointer;
      user-select:none;
      background:#fff;
      color:#111827;
      white-space:nowrap;
    }
    .btn:focus{ outline:2px solid var(--focus); outline-offset:2px; }
    .btn-lg{ padding:12px 18px; border-radius:16px; font-size:15px; }
    .btn-block{ width:100%; }

    .btn-primary{
      background:var(--grad);
      border-color:rgba(255,255,255,.25);
      color:#fff;
      box-shadow:0 16px 35px rgba(109,94,252,.20);
    }
    .btn-primary:hover{ transform:translateY(-1px); box-shadow:0 18px 45px rgba(109,94,252,.26); }
    .btn-ghost{
      background:rgba(255,255,255,.70);
      border-color:rgba(20,24,38,.12);
      color:#111827;
    }
    .btn-ghost:hover{
      transform:translateY(-1px);
      background:rgba(109,94,252,.08);
      border-color:rgba(109,94,252,.20);
      box-shadow:0 10px 20px rgba(20,24,38,.08);
    }

    .hamburger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.12);
      background:rgba(255,255,255,.75);
      align-items:center; justify-content:center;
      cursor:pointer;
      gap:4px;
      flex-direction:column;
      padding:10px;
    }
    .ham-line{
      display:block;
      width:18px; height:2px;
      background:#111827;
      border-radius:999px;
      opacity:.9;
    }

    .mobile-menu{
      display:none;
      position:fixed; inset:0;
      z-index:80;
      background:rgba(10,12,20,.38);
      padding:14px;
    }
    .mobile-menu.open{ display:block; }
    .mobile-menu-inner{
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
      border:1px solid rgba(255,255,255,.35);
      border-radius:20px;
      box-shadow:0 30px 80px rgba(0,0,0,.18);
      padding:14px;
      height:calc(100vh - 28px);
      overflow:auto;
    }
    .mobile-top{ display:flex; align-items:center; justify-content:space-between; padding:4px 2px 10px; }
    .mobile-title{ font-weight:850; }
    .mobile-close{
      background:rgba(255,255,255,.7);
      border:1px solid rgba(20,24,38,.12);
      border-radius:12px;
      padding:8px 10px;
      cursor:pointer;
      font-weight:750;
    }
    .mobile-links{ display:flex; flex-direction:column; gap:8px; padding:10px 0; }
    .mobile-link{
      text-decoration:none;
      padding:11px 12px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.75);
      color:#111827;
      font-weight:760;
    }
    .mobile-link:hover{ border-color:rgba(109,94,252,.20); background:rgba(109,94,252,.08); }
    .mobile-cta{ display:flex; flex-direction:column; gap:10px; padding-top:10px; }

    .hero{
      position:relative;
      overflow:hidden;
      padding:42px 0 30px;
    }
    .hero-bg{ position:absolute; inset:-80px -120px auto -120px; height:520px; pointer-events:none; }
    .orb{
      position:absolute;
      width:380px; height:380px;
      border-radius:50%;
      filter:blur(18px);
      opacity:.85;
      transform:translateZ(0);
      animation: floaty 10s ease-in-out infinite;
    }
    .orb-a{
      left:-120px; top:40px;
      background:radial-gradient(circle at 30% 30%, rgba(109,94,252,.55), rgba(109,94,252,0) 60%);
    }
    .orb-b{
      right:-160px; top:-40px;
      background:radial-gradient(circle at 60% 30%, rgba(27,183,255,.48), rgba(27,183,255,0) 62%);
      animation-duration:12s;
    }
    .grid-fade{
      position:absolute; inset:0;
      background:
        linear-gradient(to right, rgba(20,24,38,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(20,24,38,.05) 1px, transparent 1px);
      background-size:56px 56px;
      mask-image:radial-gradient(circle at 30% 25%, rgba(0,0,0,1) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,0) 75%);
      opacity:.6;
    }
    .glow-line{
      position:absolute;
      left:-10%;
      top:240px;
      width:120%;
      height:2px;
      background:linear-gradient(90deg, transparent, rgba(109,94,252,.65), rgba(27,183,255,.45), rgba(34,197,94,.45), transparent);
      opacity:.5;
      transform:rotate(-6deg);
    }

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

    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:22px;
      align-items:start;
    }

    .hero-copy{
      padding:22px 0;
    }

    .hero-badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(20,24,38,.10);
      border-radius:999px;
      box-shadow:0 12px 26px rgba(20,24,38,.08);
      margin-bottom:16px;
      color:#1f2a44;
      font-weight:740;
      font-size:13px;
    }
    .badge-dot{
      width:10px; height:10px; border-radius:50%;
      background:var(--grad);
      box-shadow:0 0 0 6px rgba(109,94,252,.14);
    }

    .hero-title{
      font-size:44px;
      line-height:1.08;
      margin:0 0 14px;
      letter-spacing:-.6px;
      font-weight:920;
    }

    .hero-desc{
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
      margin:0 0 18px;
      max-width:62ch;
      font-weight:560;
    }

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

    .hero-quick{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:16px;
    }
    .quick-item{
      display:flex; gap:10px;
      padding:12px 12px;
      background:rgba(255,255,255,.68);
      border:1px solid rgba(20,24,38,.10);
      border-radius:16px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow:0 12px 24px rgba(20,24,38,.06);
      min-height:70px;
    }
    .quick-item:hover{
      transform:translateY(-2px);
      box-shadow:0 20px 35px rgba(20,24,38,.10);
      border-color:rgba(109,94,252,.20);
    }
    .quick-icon{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#111827;
      background:linear-gradient(180deg, rgba(109,94,252,.18), rgba(27,183,255,.14));
      border:1px solid rgba(109,94,252,.18);
      flex:0 0 auto;
    }
    .quick-title{ font-weight:870; font-size:13px; margin-top:2px; }
    .quick-sub{ font-size:12px; color:var(--muted); margin-top:4px; font-weight:620; }

    .hero-panel{
      position:relative;
      background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.75));
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 22px 55px rgba(20,24,38,.12);
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute; inset:-2px;
      background:var(--grad2);
      opacity:.55;
      pointer-events:none;
      mask-image:radial-gradient(circle at 40% 10%, rgba(0,0,0,1), rgba(0,0,0,0) 65%);
    }
    .panel-top{ position:relative; z-index:1; }
    .panel-title{ font-weight:900; font-size:16px; letter-spacing:-.2px; }
    .panel-sub{ color:var(--muted); margin-top:6px; font-weight:620; font-size:13px; }

    .panel-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
      margin-top:14px;
    }
    .data-card{
      background:rgba(255,255,255,.70);
      border:1px solid rgba(20,24,38,.09);
      border-radius:18px;
      padding:12px 12px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:88px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .data-card:hover{
      transform:translateY(-2px);
      border-color:rgba(109,94,252,.20);
      box-shadow:0 16px 30px rgba(20,24,38,.10);
    }
    .data-label{ font-size:12px; color:var(--muted); font-weight:720; }
    .data-value{ font-weight:950; font-size:18px; letter-spacing:-.2px; margin-top:8px; }
    .data-foot{ font-size:12px; color:var(--muted2); font-weight:620; margin-top:8px; line-height:1.4; }

    .panel-actions{
      position:relative; z-index:1;
      display:flex; gap:10px; margin-top:14px;
    }
    .panel-actions .btn{ flex:1; }

    .panel-note{
      position:relative; z-index:1;
      margin-top:10px;
      color:#0f172a;
      font-weight:780;
      font-size:13px;
    }

    .section{
      padding:64px 0;
    }
    .section.alt{
      background:linear-gradient(180deg, rgba(109,94,252,.05), rgba(27,183,255,.03));
      border-top:1px solid rgba(20,24,38,.06);
      border-bottom:1px solid rgba(20,24,38,.06);
    }
    .section-head{
      margin-bottom:22px;
      text-align:left;
    }
    .kicker{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(109,94,252,.08);
      border:1px solid rgba(109,94,252,.16);
      color:#1f2a44;
      font-weight:850;
      font-size:12px;
      letter-spacing:.2px;
      margin-bottom:10px;
    }
    h2{
      margin:0;
      font-size:30px;
      line-height:1.18;
      letter-spacing:-.45px;
      font-weight:920;
    }
    .lead{
      margin:12px 0 0;
      color:var(--muted);
      line-height:1.8;
      font-weight:600;
      max-width:74ch;
      font-size:15px;
    }

    .about-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .about-card{
      background:var(--card);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 40px rgba(20,24,38,.07);
      position:relative;
      overflow:hidden;
    }
    .about-card:after{
      content:"";
      position:absolute; inset:-120px -180px auto auto;
      width:320px; height:320px;
      background:radial-gradient(circle at 40% 40%, rgba(109,94,252,.25), transparent 60%);
      transform:rotate(20deg);
      pointer-events:none;
    }
    .about-card.subtle{
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,251,255,.88));
    }
    .about-icon{
      width:42px; height:42px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(180deg, rgba(109,94,252,.15), rgba(27,183,255,.10));
      border:1px solid rgba(109,94,252,.16);
      font-size:18px;
      margin-bottom:12px;
      position:relative;
      z-index:1;
    }
    .about-card h3{
      margin:0 0 10px;
      font-weight:920;
      letter-spacing:-.2px;
      font-size:16px;
      position:relative; z-index:1;
    }
    .about-card p{
      margin:0 0 12px;
      color:var(--muted);
      line-height:1.7;
      font-weight:610;
      position:relative; z-index:1;
    }
    .check-list{
      list-style:none;
      padding:0; margin:10px 0 0;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:8px 10px;
      position:relative; z-index:1;
    }
    .check-list li{
      display:flex; align-items:flex-start; gap:8px;
      color:#111827;
      font-weight:720;
      font-size:13px;
    }
    .check-mark{
      width:18px; height:18px;
      border-radius:8px;
      background:rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.22);
      display:flex; align-items:center; justify-content:center;
      font-size:12px;
      flex:0 0 auto;
      margin-top:2px;
      color:#0f3a22;
    }

    .step-mini{ position:relative; z-index:1; display:flex; flex-direction:column; gap:10px; margin-top:10px; }
    .mini-row{
      display:flex; gap:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.09);
      background:rgba(255,255,255,.70);
      transition:transform .18s ease, border-color .18s ease;
    }
    .mini-row:hover{ transform:translateY(-2px); border-color:rgba(109,94,252,.20); }
    .mini-num{
      width:32px; height:32px;
      border-radius:14px;
      background:rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.18);
      font-weight:950;
      display:flex; align-items:center; justify-content:center;
      color:#1f2a44;
      flex:0 0 auto;
    }
    .mini-title{ font-weight:910; margin-top:2px; }
    .mini-sub{ color:var(--muted); font-weight:620; margin-top:4px; font-size:13px; line-height:1.45; }

    .about-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; position:relative; z-index:1; }
    .about-actions .btn{ flex:1; min-width:160px; }

    .logos-strip{
      margin-top:16px;
      background:linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.60));
      border:1px solid rgba(20,24,38,.09);
      border-radius:22px;
      padding:14px;
      box-shadow:0 18px 38px rgba(20,24,38,.06);
    }
    .logos-title{ font-weight:900; margin-bottom:10px; }
    .pill-row{ display:flex; flex-wrap:wrap; gap:10px; }
    .pill{
      padding:10px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      font-weight:770;
      color:#111827;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      font-size:13px;
    }
    .pill:hover{
      transform:translateY(-2px);
      border-color:rgba(109,94,252,.22);
      box-shadow:0 14px 28px rgba(20,24,38,.08);
    }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .service-card{
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,251,255,.88));
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 18px 40px rgba(20,24,38,.07);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:240px;
      display:flex; flex-direction:column;
    }
    .service-card:hover{
      transform:translateY(-3px);
      box-shadow:0 26px 60px rgba(20,24,38,.12);
      border-color:rgba(109,94,252,.22);
    }
    .service-top{ display:flex; align-items:flex-start; gap:12px; margin-bottom:10px; }
    .service-icon{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.18);
      font-size:18px;
      flex:0 0 auto;
    }
    .service-card h3{ margin:2px 0 0; font-size:16px; font-weight:920; letter-spacing:-.2px; }
    .service-card p{ margin:0 0 14px; color:var(--muted); line-height:1.7; font-weight:610; font-size:14px; }
    .service-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:auto; }
    .tag{
      padding:8px 10px;
      border-radius:999px;
      background:rgba(243,244,246,.85);
      border:1px solid rgba(20,24,38,.09);
      color:#111827;
      font-weight:760;
      font-size:12.5px;
    }
    .card-link{
      margin-top:12px;
      display:inline-flex; align-items:center; gap:8px;
      color:#2b2f3a;
      font-weight:860;
      text-decoration:none;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.65);
      transition:transform .18s ease, background .18s ease, border-color .18s ease;
      width:fit-content;
    }
    .card-link:hover{ transform:translateY(-2px); background:rgba(109,94,252,.08); border-color:rgba(109,94,252,.20); }

    .timeline{
      position:relative;
      margin-top:16px;
      padding:20px 0 6px;
      display:grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap:12px;
      align-items:stretch;
    }
    .timeline-line{
      position:absolute;
      left:0; right:0;
      top:58px;
      height:2px;
      background:linear-gradient(90deg, transparent, rgba(109,94,252,.35), rgba(27,183,255,.30), rgba(34,197,94,.28), transparent);
      opacity:.9;
      mask-image:linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    }
    .timeline-item{
      position:relative;
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 16px 34px rgba(20,24,38,.06);
      min-height:130px;
      transition:transform .18s ease, border-color .18s ease;
    }
    .timeline-item:hover{ transform:translateY(-2px); border-color:rgba(109,94,252,.22); }
    .t-step{
      font-weight:950;
      letter-spacing:-.2px;
      margin-bottom:10px;
      font-size:14px;
      position:relative;
    }
    .t-desc{
      color:var(--muted);
      font-weight:610;
      line-height:1.7;
      font-size:13.5px;
    }

    .capability-strip{
      margin-top:18px;
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:16px;
      align-items:stretch;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,38,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72));
      box-shadow:0 18px 40px rgba(20,24,38,.07);
    }
    .subhead{ margin:0 0 8px; font-weight:920; font-size:16px; letter-spacing:-.2px; }
    .muted{ color:var(--muted); }
    .capability-left p{ margin:0; line-height:1.7; font-weight:610; }

    .chips{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:6px;
    }
    .chip{
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.76);
      font-weight:780;
      font-size:12.5px;
      color:#111827;
      transition:transform .15s ease, border-color .15s ease;
    }
    .chip:hover{ transform:translateY(-2px); border-color:rgba(109,94,252,.20); }
    .capability-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

    .solution-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .solution-card{
      background:rgba(255,255,255,.76);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 18px 40px rgba(20,24,38,.06);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:180px;
      display:flex; flex-direction:column;
    }
    .solution-card:hover{
      transform:translateY(-3px);
      border-color:rgba(109,94,252,.22);
      box-shadow:0 26px 60px rgba(20,24,38,.12);
    }
    .solution-title{
      font-weight:950;
      font-size:16px;
      letter-spacing:-.2px;
      margin-bottom:10px;
    }
    .solution-card p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-weight:610;
      font-size:14px;
    }
    .solution-footer{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px; margin-top:auto; padding-top:14px;
    }
    .mini-badge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(243,244,246,.75);
      color:#111827;
      font-weight:760;
      font-size:12px;
      white-space:nowrap;
    }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .network-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 40px rgba(20,24,38,.06);
      position:relative;
      overflow:hidden;
    }
    .network-card.subtle{
      background:linear-gradient(180deg, rgba(255,255,255,.90), rgba(251,251,255,.86));
    }
    .network-icon{
      width:46px; height:46px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(27,183,255,.10);
      border:1px solid rgba(27,183,255,.18);
      font-size:18px;
      margin-bottom:12px;
    }
    .network-card h3{
      margin:0 0 10px;
      font-weight:920;
      letter-spacing:-.2px;
      font-size:16px;
    }
    .network-card p{ margin:0 0 14px; color:var(--muted); font-weight:610; line-height:1.7; }
    .network-points{ display:flex; flex-direction:column; gap:10px; }
    .point{ display:flex; gap:10px; align-items:flex-start; }
    .point-dot{
      width:10px; height:10px;
      border-radius:50%;
      margin-top:6px;
      background:var(--grad);
      box-shadow:0 0 0 6px rgba(109,94,252,.12);
      flex:0 0 auto;
    }
    .region-list{ display:flex; flex-direction:column; gap:10px; }
    .region-item{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.09);
      background:rgba(255,255,255,.70);
    }
    .region-name{ font-weight:900; letter-spacing:-.2px; }
    .region-meta{ margin-top:6px; color:var(--muted); font-weight:610; line-height:1.5; font-size:13px; }
    .network-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .network-actions .btn{ flex:1; min-width:170px; }

    .marquee-row{ margin-top:14px; border-radius:22px; border:1px solid rgba(20,24,38,.10); background:rgba(255,255,255,.70); overflow:hidden; box-shadow:0 18px 40px rgba(20,24,38,.06); }
    .marquee{ display:flex; gap:30px; padding:12px 0; white-space:nowrap; animation: marquee 18s linear infinite; }
    .marquee span{ font-weight:900; color:#1f2a44; opacity:.85; }
    @keyframes marquee{
      from{ transform:translateX(0); }
      to{ transform:translateX(-50%); }
    }

    .process-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
      align-items:stretch;
    }
    .process-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 18px 40px rgba(20,24,38,.06);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:220px;
      display:flex; flex-direction:column;
    }
    .process-card:hover{ transform:translateY(-3px); border-color:rgba(109,94,252,.22); box-shadow:0 28px 65px rgba(20,24,38,.12); }
    .process-step{
      font-weight:950;
      font-size:12px;
      color:#1f2a44;
      background:rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.18);
      border-radius:999px;
      padding:8px 10px;
      width:fit-content;
      margin-bottom:12px;
    }
    .process-card h3{ margin:0 0 10px; font-weight:920; letter-spacing:-.2px; font-size:16px; }
    .process-card p{ margin:0 0 12px; color:var(--muted); font-weight:610; line-height:1.7; font-size:14px; }
    .small-list{ margin:0; padding-left:18px; color:#111827; font-weight:720; }
    .small-list li{ margin:7px 0; color:var(--muted2); font-weight:650; line-height:1.45; font-size:13.5px; }

    .cta-band{
      margin-top:18px;
      padding:16px;
      border-radius:24px;
      background:linear-gradient(120deg, rgba(109,94,252,.14), rgba(27,183,255,.12), rgba(34,197,94,.10));
      border:1px solid rgba(20,24,38,.10);
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      box-shadow:0 22px 55px rgba(20,24,38,.08);
    }
    .cta-title{ font-weight:950; font-size:18px; letter-spacing:-.25px; }
    .cta-sub{ margin-top:6px; color:var(--muted); font-weight:620; }
    .cta-right{ display:flex; gap:10px; flex-wrap:wrap; }
    .cta-right .btn{ min-width:180px; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      align-items:stretch;
    }
    .case-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      overflow:hidden;
      box-shadow:0 18px 40px rgba(20,24,38,.06);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex; flex-direction:column;
      min-height:420px;
    }
    .case-card:hover{ transform:translateY(-3px); border-color:rgba(109,94,252,.22); box-shadow:0 28px 65px rgba(20,24,38,.12); }
    .case-media{
      padding:12px;
      background:linear-gradient(180deg, rgba(109,94,252,.10), rgba(255,255,255,0));
      border-bottom:1px solid rgba(20,24,38,.08);
    }
    .case-media img{
      width:100%;
      height:auto;
      object-fit:contain;
      border-radius:16px;
      display:block;
      background:#fff;
    }
    .case-body{ padding:16px; display:flex; flex-direction:column; gap:10px; }
    .case-body h3{ margin:0; font-weight:920; letter-spacing:-.2px; font-size:16px; }
    .case-desc{ margin:0; color:var(--muted); font-weight:610; line-height:1.7; font-size:14px; }
    .case-meta{ display:flex; flex-wrap:wrap; gap:8px; margin-top:2px; }
    .meta-pill{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(243,244,246,.80);
      font-weight:780;
      font-size:12px;
      color:#111827;
    }

    .article-split{
      margin-top:18px;
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .article-left, .article-right{ }
    .subhead{ font-weight:930; letter-spacing:-.25px; margin:0 0 10px; font-size:18px; }
    .articles{ background:rgba(255,255,255,.74); border:1px solid rgba(20,24,38,.10); border-radius:22px; padding:14px; box-shadow:0 18px 40px rgba(20,24,38,.06); }
    .article-item{
      display:flex; gap:12px; padding:12px 6px;
      border-bottom:1px dashed rgba(20,24,38,.10);
      align-items:flex-start;
    }
    .article-item:last-of-type{ border-bottom:none; }
    .article-dot{
      width:10px; height:10px; border-radius:50%;
      background:var(--grad);
      margin-top:7px;
      box-shadow:0 0 0 6px rgba(109,94,252,.12);
      flex:0 0 auto;
    }
    .article-link{ color:#111827; font-weight:880; text-decoration:none; line-height:1.45; }
    .article-link:hover{ text-decoration:underline; text-underline-offset:3px; }
    .article-meta{ margin-top:6px; color:var(--muted); font-weight:650; font-size:12.5px; }

    .aside-card{
      background:rgba(255,255,255,.76);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 18px 40px rgba(20,24,38,.06);
    }
    .aside-title{ font-weight:930; letter-spacing:-.25px; font-size:16px; margin-bottom:12px; }
    .aside-row{ display:flex; gap:12px; align-items:flex-start; padding:10px 0; }
    .aside-icon{
      width:38px; height:38px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,24,38,.10);
      background:linear-gradient(180deg, rgba(27,183,255,.10), rgba(255,255,255,.0));
      font-weight:950;
      flex:0 0 auto;
    }
    .aside-head{ font-weight:920; letter-spacing:-.2px; }
    .aside-sub{ margin-top:4px; color:var(--muted); font-weight:610; line-height:1.5; font-size:13px; }
    .aside-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
    .aside-actions .btn{ flex:1; min-width:180px; }

    .aside-logos{ margin-top:14px; background:rgba(255,255,255,.76); border:1px solid rgba(20,24,38,.10); border-radius:22px; padding:14px; box-shadow:0 18px 40px rgba(20,24,38,.06); }
    .aside-logos-title{ font-weight:930; letter-spacing:-.25px; margin-bottom:12px; }
    .links-grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:10px; }
    .links-grid a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      color:#111827;
      font-weight:860;
      font-size:13px;
      text-align:center;
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .links-grid a:hover{ transform:translateY(-2px); border-color:rgba(109,94,252,.20); background:rgba(109,94,252,.08); }

    .rating-card{
      background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(251,251,255,.82));
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 45px rgba(20,24,38,.07);
      min-height:260px;
    }
    .rating-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:14px; }
    .stars{ color:#f59e0b; font-size:16px; letter-spacing:2px; font-weight:950; }
    .rating-score{ text-align:right; }
    .score-num{ font-weight:980; font-size:36px; letter-spacing:-.6px; }
    .score-max{ font-weight:850; color:var(--muted); margin-left:6px; }
    .rating-desc{ margin:12px 0 0; color:var(--muted); font-weight:620; line-height:1.7; }
    .rating-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
    .badge-bubble{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      font-weight:860;
      font-size:13px;
    }

    .compare-card{
      background:rgba(255,255,255,.76);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .compare-head h3{ margin:0 0 6px; font-weight:930; letter-spacing:-.25px; font-size:16px; }
    .muted-txt{ color:var(--muted2); font-weight:650; }
    .good{ font-weight:900; color:#0f172a; }
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width:640px;
    }
    .table-wrap{ overflow:auto; border-radius:16px; border:1px solid rgba(20,24,38,.10); background:rgba(255,255,255,.6); padding:0; }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,24,38,.08);
      text-align:left;
      vertical-align:top;
      font-size:13.5px;
      line-height:1.45;
    }
    .compare-table th{
      background:rgba(109,94,252,.08);
      font-weight:950;
      color:#0f172a;
      position:sticky; top:0;
      z-index:2;
    }
    .compare-table tr:last-child td{ border-bottom:none; }
    .compare-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .compare-actions .btn{ flex:1; min-width:200px; }

    .compare-grid{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:stretch;
    }

    .mini-cards{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .mini-metric{
      background:rgba(255,255,255,.76);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .mini-metric-num{ font-weight:950; letter-spacing:-.25px; font-size:16px; }
    .mini-metric-desc{ margin-top:10px; color:var(--muted); font-weight:620; line-height:1.7; }

    .price-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .price-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .price-card h3{ margin:0 0 8px; font-weight:930; letter-spacing:-.25px; font-size:16px; }
    .price-table-wrap{ margin-top:12px; }
    .price-row{
      display:flex; justify-content:space-between; align-items:center;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.09);
      background:rgba(255,255,255,.70);
      margin-top:10px;
    }
    .price-key{ font-weight:900; letter-spacing:-.2px; color:#111827; }
    .price-val{ color:#111827; font-weight:950; }
    .price-range{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(109,94,252,.08);
    }
    .price-hint{
      display:flex; gap:10px; align-items:flex-start;
      margin-top:14px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.65));
    }
    .hint-icon{
      width:26px; height:26px;
      border-radius:10px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.18);
      font-weight:950;
      flex:0 0 auto;
    }
    .price-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .price-actions .btn{ flex:1; min-width:200px; }

    .price-side{ display:flex; flex-direction:column; gap:14px; }
    .side-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .side-card h3{ margin:0 0 10px; font-weight:930; letter-spacing:-.25px; font-size:16px; }
    .side-steps{ display:flex; flex-direction:column; gap:12px; margin-top:6px; }
    .side-step{ display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:18px; border:1px solid rgba(20,24,38,.10); background:rgba(255,255,255,.70); }
    .side-num{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(27,183,255,.10);
      border:1px solid rgba(27,183,255,.18);
      font-weight:950;
      flex:0 0 auto;
    }
    .side-title{ font-weight:930; }
    .side-desc{ margin-top:6px; color:var(--muted); font-weight:620; line-height:1.6; font-size:13.5px; }
    .side-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .btn-block{ }
    .subtle{ background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(251,251,255,.80)); }
    .net-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }

    .join-card{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      padding:16px;
      border-radius:24px;
      border:1px solid rgba(20,24,38,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(251,251,255,.78));
      box-shadow:0 24px 65px rgba(20,24,38,.08);
      overflow:hidden;
    }
    .join-left{
      padding:6px;
    }
    .join-title{
      font-size:28px;
      margin:10px 0 10px;
    }
    .join-desc{ color:var(--muted); line-height:1.8; font-weight:620; margin:0; }
    .join-features{
      margin-top:16px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
    }
    .feature{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:20px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
    }
    .feature-icon{
      width:28px; height:28px; border-radius:12px;
      background:rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      flex:0 0 auto;
      margin-top:2px;
      color:#0f3a22;
    }
    .feature-text{ font-weight:900; letter-spacing:-.2px; }

    .join-right{
      padding:6px;
    }
    .join-form{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .form-title{ font-weight:950; letter-spacing:-.25px; font-size:16px; }
    .form-sub{ margin-top:6px; font-weight:620; line-height:1.6; }

    .form{
      margin-top:12px;
      display:flex; flex-direction:column; gap:12px;
    }
    .field-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:7px;
    }
    .label{ font-weight:860; font-size:13px; }
    input, select, textarea{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(20,24,38,.14);
      background:rgba(255,255,255,.90);
      padding:11px 12px;
      font-weight:650;
      color:#111827;
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }
    textarea{ resize:vertical; min-height:110px; }
    input:focus, select:focus, textarea:focus{
      border-color:rgba(109,94,252,.40);
      box-shadow:0 0 0 4px rgba(109,94,252,.16);
    }
    .form-actions{ margin-top:2px; }
    .form-foot{
      font-size:12.5px;
      font-weight:640;
      line-height:1.6;
    }

    .training-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .training-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .training-card h3{ margin:0 0 10px; font-weight:930; letter-spacing:-.25px; font-size:16px; }
    .tag-list{
      margin:0; padding-left:18px; color:#111827;
      font-weight:800;
      display:grid; gap:8px;
    }
    .tag-list li{ color:var(--muted2); font-weight:700; }
    .training-note{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      margin-top:14px;
    }
    .training-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .training-actions .btn{ flex:1; min-width:200px; }

    .training-side{ display:flex; flex-direction:column; gap:14px; }
    .cert-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .cert-title{ font-weight:950; letter-spacing:-.25px; font-size:16px; }
    .cert-list{ margin-top:12px; display:flex; flex-direction:column; gap:12px; }
    .cert-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
    }
    .cert-icon{
      width:36px; height:36px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,24,38,.10);
      background:linear-gradient(180deg, rgba(34,197,94,.10), rgba(255,255,255,0));
      flex:0 0 auto;
      font-weight:950;
    }
    .cert-head{ font-weight:930; letter-spacing:-.2px; }
    .cert-sub{ margin-top:6px; color:var(--muted); font-weight:620; line-height:1.6; font-size:13.5px; }
    .cert-foot{ margin-top:12px; }
    .cert-badge{
      display:inline-flex;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(109,94,252,.08);
      font-weight:880;
      color:#111827;
      font-size:13px;
    }

    .skills-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .skills-title{ font-weight:930; letter-spacing:-.25px; font-size:16px; }
    .skills-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
    .skills-actions{ display:flex; flex-direction:column; gap:10px; margin-top:14px; }

    .help-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .help-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .help-card h3{ margin:0 0 10px; font-weight:930; letter-spacing:-.25px; font-size:16px; }
    .help-links{ display:flex; flex-direction:column; gap:10px; margin-top:8px; }
    .help-link{
      text-decoration:none;
      font-weight:900;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      border-radius:18px;
      padding:12px 12px;
      color:#111827;
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .help-link:hover{ transform:translateY(-2px); border-color:rgba(109,94,252,.22); background:rgba(109,94,252,.08); }
    .help-note{ margin-top:12px; font-weight:650; }

    .issue-list{ display:flex; flex-direction:column; gap:12px; margin-top:10px; }
    .issue{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
    }
    .issue-dot{
      width:12px; height:12px; border-radius:50%;
      background:var(--grad);
      margin-top:7px;
      box-shadow:0 0 0 6px rgba(109,94,252,.12);
      flex:0 0 auto;
    }
    .issue-title{ font-weight:930; letter-spacing:-.2px; }
    .issue-sub{ margin-top:6px; color:var(--muted); font-weight:620; line-height:1.6; font-size:13.5px; }
    .help-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .help-actions .btn{ flex:1; min-width:200px; }

    .faq-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .faq-left, .faq-right{ }
    .faq-intro-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .faq-intro-card h3{ margin:0 0 10px; font-weight:930; letter-spacing:-.25px; font-size:16px; }
    .faq-intro-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .faq-intro-actions .btn{ flex:1; min-width:180px; }

    .reviews-mini{
      margin-top:14px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:14px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .review-mini-head{ font-weight:930; letter-spacing:-.25px; margin-bottom:10px; }
    .review-mini-list{ display:flex; flex-direction:column; gap:12px; }
    .review-mini{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
    }
    .review-avatar{
      width:36px; height:36px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,24,38,.10);
      background:linear-gradient(180deg, rgba(109,94,252,.14), rgba(27,183,255,.08));
      font-weight:950;
      flex:0 0 auto;
    }
    .review-name{ font-weight:920; letter-spacing:-.2px; }
    .review-text{ margin-top:6px; color:var(--muted); font-weight:620; line-height:1.6; font-size:13.5px; }

    .accordion{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:10px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .acc-item{ border-bottom:1px solid rgba(20,24,38,.08); }
    .acc-item:last-child{ border-bottom:none; }
    .acc-btn{
      width:100%;
      text-align:left;
      background:transparent;
      border:0;
      padding:14px 12px;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      font-weight:900;
      letter-spacing:-.2px;
      color:#111827;
      font-size:14px;
    }
    .acc-btn:focus{ outline:2px solid var(--focus); outline-offset:2px; border-radius:14px; }
    .acc-icon{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(243,244,246,.75);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      flex:0 0 auto;
    }
    .acc-panel{ padding:0 12px 14px 12px; }
    .acc-content{ color:var(--muted); font-weight:620; line-height:1.7; font-size:13.8px; }

    .faq-bottom-cta{
      margin-top:14px;
      padding:16px;
      border-radius:24px;
      border:1px solid rgba(20,24,38,.10);
      background:linear-gradient(120deg, rgba(109,94,252,.14), rgba(27,183,255,.10), rgba(34,197,94,.10));
      box-shadow:0 22px 55px rgba(20,24,38,.08);
      display:flex; align-items:center; justify-content:space-between; gap:14px;
    }
    .faq-cta-title{ font-weight:950; letter-spacing:-.25px; font-size:18px; }
    .faq-cta-sub{ margin-top:6px; color:var(--muted); font-weight:620; }
    .faq-bottom-right{ display:flex; gap:10px; flex-wrap:wrap; }
    .faq-bottom-right .btn{ min-width:190px; }

    .reviews-grid{
      margin-top:18px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .review-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:210px;
      display:flex; flex-direction:column; gap:10px;
    }
    .review-card:hover{ transform:translateY(-3px); border-color:rgba(109,94,252,.22); box-shadow:0 28px 65px rgba(20,24,38,.12); }
    .review-top{ display:flex; gap:12px; align-items:flex-start; }
    .review-meta{ margin-top:4px; color:var(--muted); font-weight:620; font-size:12.5px; }
    .review-name{ font-weight:950; letter-spacing:-.25px; }
    .review-score{ margin-left:auto; color:#f59e0b; font-weight:950; }
    .review-text{ margin:0; color:var(--muted); font-weight:620; line-height:1.75; font-size:13.8px; }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .wiki-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:175px;
      display:flex; flex-direction:column;
    }
    .wiki-card:hover{ transform:translateY(-3px); border-color:rgba(109,94,252,.22); box-shadow:0 28px 65px rgba(20,24,38,.12); }
    .wiki-card h3{ margin:0 0 10px; font-weight:930; letter-spacing:-.25px; font-size:16px; }
    .wiki-card p{ margin:0; color:var(--muted); font-weight:620; line-height:1.7; }
    .wiki-footer{ margin-top:auto; padding-top:12px; display:flex; align-items:center; justify-content:space-between; gap:12px; }

    .news-grid{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:start;
    }
    .news-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
      margin-bottom:14px;
    }
    .news-card h3{ margin:0 0 10px; font-weight:930; letter-spacing:-.25px; font-size:16px; }
    .news-list{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:14px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .news-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 6px;
      border-bottom:1px dashed rgba(20,24,38,.10);
    }
    .news-item:last-of-type{ border-bottom:none; }
    .news-dot{
      width:10px; height:10px; border-radius:50%;
      margin-top:7px;
      background:var(--grad);
      box-shadow:0 0 0 6px rgba(109,94,252,.12);
      flex:0 0 auto;
    }
    .news-link{
      text-decoration:none;
      color:#111827;
      font-weight:900;
      line-height:1.45;
    }
    .news-link:hover{ text-decoration:underline; text-underline-offset:3px; }
    .news-meta{ margin-top:6px; color:var(--muted); font-weight:650; font-size:12.5px; }

    .contact-grid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:14px;
      align-items:start;
    }
    .contact-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
    }
    .contact-card h3{ margin:0 0 10px; font-weight:930; letter-spacing:-.25px; font-size:16px; }
    .contact-mini{
      margin-top:14px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,38,.10);
      border-radius:22px;
      padding:14px;
      box-shadow:0 18px 45px rgba(20,24,38,.06);
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .mini-item{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
    }
    .mini-k{ color:var(--muted); font-weight:750; font-size:12.5px; }
    .mini-v{ margin-top:8px; font-weight:950; color:#111827; text-decoration:none; display:block; }

    .qr-wrap{ display:flex; gap:14px; align-items:center; margin-top:12px; }
    .qr-wrap img{
      width:118px;
      height:auto;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:#fff;
      flex:0 0 auto;
    }
    .qr-title{ font-weight:950; letter-spacing:-.25px; }
    .qr-sub{ margin-top:6px; color:var(--muted); font-weight:620; line-height:1.6; font-size:13.5px; }
    .contact-actions{ margin-top:14px; display:flex; flex-direction:column; gap:10px; }

    .links-block{ margin-top:10px; }
    .links-col{}
    .links-head{ font-weight:930; letter-spacing:-.25px; margin-bottom:10px; }
    .links-list{ display:flex; flex-direction:column; gap:10px; }
    .links-list a{
      color:#111827; text-decoration:none;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
      font-weight:880;
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .links-list a:hover{ transform:translateY(-2px); border-color:rgba(109,94,252,.22); background:rgba(109,94,252,.08); }

    .network-cta{ margin-top:14px; display:flex; flex-direction:column; gap:10px; }

    .site-footer{
      background:linear-gradient(180deg, rgba(255,255,255,.75), rgba(245,247,255,.92));
      border-top:1px solid rgba(20,24,38,.10);
      padding:26px 0 34px;
      color:#111827;
    }
    .footer-inner{ }
    .footer-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }
    .footer-brand{
      display:flex; gap:12px; align-items:flex-start;
      min-width:280px;
    }
    .footer-logo{
      width:46px; height:46px; border-radius:18px;
      object-fit:contain;
      background:#fff;
      border:1px solid rgba(20,24,38,.10);
    }
    .footer-name{ font-weight:980; letter-spacing:-.35px; font-size:16px; }
    .footer-sub{ color:var(--muted); font-weight:620; margin-top:6px; line-height:1.6; font-size:13.5px; max-width:46ch; }

    .footer-links{
      display:flex;
      gap:16px;
      flex-wrap:wrap;
    }
    .footer-col{
      min-width:190px;
      padding:12px;
      border-radius:22px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.70);
    }
    .footer-head{ font-weight:950; letter-spacing:-.25px; margin-bottom:10px; }
    .footer-col a{
      display:block;
      text-decoration:none;
      color:#111827;
      font-weight:780;
      padding:8px 0;
      line-height:1.25;
    }
    .footer-col a:hover{ text-decoration:underline; text-underline-offset:3px; }
    .ai-page-home-link-footer{ margin-top:2px; }

    .footer-bottom{
      margin-top:18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color:var(--muted);
      font-weight:650;
      font-size:13px;
    }
    .footer-mini-links{ display:flex; align-items:center; gap:10px; }
    .footer-mini-links a{ color:var(--muted); text-decoration:none; font-weight:780; }
    .footer-mini-links a:hover{ text-decoration:underline; text-underline-offset:3px; }
    .dot{ opacity:.6; }

    .float-customer{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:90;
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:10px;
    }
    .float-btn{
      width:54px; height:54px;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.12);
      background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow:0 18px 45px rgba(20,24,38,.18);
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; align-items:center; justify-content:center;
      padding:10px;
      position:relative;
    }
    .float-btn:hover{ transform:translateY(-2px); border-color:rgba(109,94,252,.22); box-shadow:0 24px 70px rgba(20,24,38,.22); }
    .float-icon{
      font-weight:950;
      color:#111827;
      background:var(--grad);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      letter-spacing:.3px;
      font-size:12px;
      text-shadow:0 0 0 rgba(0,0,0,0);
    }
    .float-btn.active{ transform:translateY(-2px); border-color:rgba(109,94,252,.30); }
    .float-pop{
      width:280px;
      border-radius:22px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.92);
      box-shadow:0 30px 90px rgba(0,0,0,.18);
      overflow:hidden;
      animation: popIn .18s ease-out;
    }
    @keyframes popIn{
      from{ transform:translateY(8px); opacity:.4; }
      to{ transform:translateY(0); opacity:1; }
    }
    .float-pop-head{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      background:linear-gradient(120deg, rgba(109,94,252,.10), rgba(27,183,255,.08), rgba(34,197,94,.06));
      border-bottom:1px solid rgba(20,24,38,.08);
    }
    .float-pop-title{ font-weight:950; letter-spacing:-.25px; }
    .float-pop-close{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,24,38,.10);
      background:rgba(255,255,255,.75);
      cursor:pointer;
      font-weight:950;
    }
    .float-pop-body{ padding:12px; display:flex; flex-direction:column; gap:10px; }
    .float-pop-body img{
      width:100%;
      height:auto;
      border-radius:18px;
      border:1px solid rgba(20,24,38,.10);
      background:#fff;
    }
    .muted{ color:var(--muted); }

    .back-top{
      position:fixed;
      left:16px;
      bottom:16px;
      z-index:85;
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(20,24,38,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 45px rgba(20,24,38,.18);
      cursor:pointer;
      font-weight:950;
      transform:translateY(8px);
      opacity:0;
      pointer-events:none;
      transition:opacity .18s ease, transform .18s ease;
    }
    .back-top.show{
      opacity:1;
      pointer-events:auto;
      transform:translateY(0);
    }

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

    @media (max-width: 980px){
      .desktop-nav{ display:none; }
      .hamburger{ display:flex; }
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-quick{ grid-template-columns: 1fr; }
      .panel-actions .btn{ min-width:0; }
      .service-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .about-grid{ grid-template-columns: 1fr; }
      .timeline{ grid-template-columns: 1fr; }
      .timeline-line{ top:56px; display:none; }
      .capability-strip{ grid-template-columns: 1fr; }
      .solution-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .network-grid{ grid-template-columns: 1fr; }
      .process-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .case-grid{ grid-template-columns: 1fr; }
      .article-split{ grid-template-columns: 1fr; }
      .compare-grid{ grid-template-columns: 1fr; }
      .mini-cards{ grid-template-columns: 1fr; }
      .price-grid{ grid-template-columns: 1fr; }
      .join-card{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .reviews-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .news-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .field-row{ grid-template-columns: 1fr; }
      .links-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .footer-links{ width:100%; }
    }

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