:root{
      --bg: #f6f7fb;
      --surface: #ffffff;
      --text: #1e2430;
      --muted: #5a6576;
      --line: rgba(26, 33, 45, .10);
      --shadow: 0 12px 30px rgba(16, 24, 40, .10);
      --shadow2: 0 10px 18px rgba(16, 24, 40, .08);
      --radius: 18px;

      --grad1: #2dd4bf;
      --grad2: #60a5fa;
      --grad3: #a78bfa;
      --grad4: #34d399;

      --brand: #1d4ed8;
      --primary: #2563eb;
      --primary2: #7c3aed;

      --focus: rgba(37, 99, 235, .22);
      --soft: rgba(37, 99, 235, .08);
      --soft2: rgba(124, 58, 237, .08);

      --footerBg: #0b1220;
      --footerText: #e9eef8;
      --footerMuted: rgba(233,238,248,.72);
      --footerLine: rgba(233,238,248,.12);
    }

    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background:
        radial-gradient(1200px 600px at 10% -10%, rgba(45,212,191,.20), transparent 55%),
        radial-gradient(900px 500px at 90% 10%, rgba(124,58,237,.18), transparent 55%),
        linear-gradient(180deg, #f7f8ff 0%, var(--bg) 45%, #f7f8fb 100%);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

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

    .site-header{
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: rgba(246, 247, 251, .72);
      border-bottom: 1px solid rgba(26,33,45,.08);
    }
    .nav-container{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 14px;
      padding: 12px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap: 12px;
      min-width: 240px;
    }
    .brand-link{
      display:block;
      width: 44px; height:44px;
      border-radius: 14px;
      overflow:hidden;
      background: #fff;
      border: 1px solid rgba(26,33,45,.10);
      box-shadow: 0 6px 18px rgba(16,24,40,.06);
      flex: 0 0 auto;
    }
    .brand-link img{ display:block; width: 100%; height: 100%; object-fit: cover; }
    .brand-meta{ display:flex; flex-direction: column; gap: 2px; }
    .brand-name{ font-weight: 800; letter-spacing: .2px; }
    .brand-sub{ font-size: 12px; color: var(--muted); }

    .nav{
      display:flex;
      align-items:center;
      gap: 12px;
      flex: 1 1 auto;
      justify-content: center;
    }
    .nav-toggle{
      display:none;
      align-items:center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(26,33,45,.12);
      background: rgba(255,255,255,.78);
      color: var(--text);
      font-weight: 700;
      cursor:pointer;
    }
    .nav-toggle-icon{
      width: 18px; height: 12px; position: relative; display:inline-block;
    }
    .nav-toggle-icon::before,
    .nav-toggle-icon::after{
      content:"";
      position:absolute; left:0; right:0;
      height:2px; border-radius: 2px;
      background: rgba(30,36,48,.85);
    }
    .nav-toggle-icon::before{ top:0; box-shadow: 0 5px 0 rgba(30,36,48,.85); }
    .nav-toggle-icon::after{ bottom:0; opacity:.0; }

    .nav-menu{
      display:flex;
      align-items:center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav-link{
      font-size: 14px;
      color: rgba(30,36,48,.86);
      padding: 8px 10px;
      border-radius: 12px;
      border: 1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space: nowrap;
    }
    .nav-link:hover{
      background: rgba(255,255,255,.75);
      border-color: rgba(26,33,45,.10);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap: 10px;
      justify-content:flex-end;
      min-width: 260px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      padding: 11px 14px;
      border-radius: 14px;
      border: 1px solid rgba(26,33,45,.12);
      cursor:pointer;
      font-weight: 750;
      color: var(--text);
      background: rgba(255,255,255,.82);
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      user-select: none;
      white-space: nowrap;
    }
    .btn:focus{ outline: 0; box-shadow: 0 0 0 4px var(--focus); }
    .btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(16,24,40,.10); }
    .btn-primary{
      background: linear-gradient(90deg, rgba(37,99,235,1) 0%, rgba(124,58,237,1) 100%);
      border-color: rgba(255,255,255,.20);
      color: #fff;
      box-shadow: 0 14px 30px rgba(37,99,235,.22);
    }
    .btn-primary:hover{ box-shadow: 0 18px 40px rgba(37,99,235,.28); }
    .btn-ghost{
      background: rgba(255,255,255,.72);
    }
    .btn-soft{
      background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
      border-color: rgba(37,99,235,.16);
      color: rgba(30,36,48,.90);
    }
    .btn-mini{ padding: 9px 12px; border-radius: 12px; font-size: 13px; }

    .btn-lg{ padding: 14px 16px; border-radius: 16px; }

    .hero{
      position: relative;
      overflow: hidden;
      padding: 56px 0 34px;
    }
    .hero-bg{
      position:absolute; inset:0;
      pointer-events:none;
    }
    .bg-glow{
      position:absolute;
      width: 520px; height: 520px;
      border-radius: 50%;
      filter: blur(30px);
      opacity: .6;
      transform: translateZ(0);
    }
    .g1{ left: -120px; top: -190px; background: radial-gradient(circle at 30% 30%, rgba(45,212,191,.55), transparent 60%); }
    .g2{ right: -170px; top: -60px; background: radial-gradient(circle at 40% 40%, rgba(124,58,237,.50), transparent 62%); }
    .bg-grid{
      position:absolute; inset:-40px -40px -40px -40px;
      background:
        linear-gradient(to right, rgba(31,41,55,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(31,41,55,.06) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: radial-gradient(closest-side at 50% 10%, rgba(0,0,0,.9), transparent 72%);
      opacity: .55;
    }
    .bg-orb{
      position:absolute;
      width: 220px; height: 220px;
      border-radius: 60px;
      background: linear-gradient(140deg, rgba(45,212,191,.25), rgba(124,58,237,.18));
      border: 1px solid rgba(255,255,255,.35);
      box-shadow: 0 18px 50px rgba(124,58,237,.18);
      transform: rotate(12deg);
      opacity:.7;
      animation: floaty 7s ease-in-out infinite;
    }
    .o1{ right: 7%; top: 22%; }
    .o2{ left: 6%; bottom: -20%; width: 260px; height: 260px; opacity:.55; animation-duration: 9s; }
    @keyframes floaty{
      0%,100%{ transform: translateY(0) rotate(12deg); }
      50%{ transform: translateY(-14px) rotate(10deg); }
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 26px;
      position: relative;
      z-index: 1;
      align-items: start;
    }
    .hero-left{
      padding: 18px 0 10px;
    }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.25);
      background: rgba(255,255,255,.62);
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      color: rgba(30,36,48,.92);
      font-weight: 720;
      font-size: 13px;
      margin-bottom: 14px;
    }
    .dot{
      width: 10px; height: 10px;
      border-radius: 50%;
      background: linear-gradient(90deg, var(--grad1), var(--grad2), var(--grad3));
      box-shadow: 0 0 0 4px rgba(45,212,191,.14);
    }
    .hero-title{
      font-size: clamp(28px, 4.3vw, 44px);
      margin: 0 0 12px;
      letter-spacing: -0.6px;
      line-height: 1.12;
    }
    .hero-desc{
      font-size: 15.5px;
      color: rgba(30,36,48,.82);
      margin: 0 0 18px;
      max-width: 62ch;
    }
    .hero-actions{
      display:flex; gap: 12px; flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .hero-metrics{
      display:flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 10px;
      margin-bottom: 14px;
    }
    .metric{
      flex: 1 1 160px;
      min-width: 160px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(26,33,45,.10);
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      position: relative;
      overflow: hidden;
    }
    .metric::after{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(400px 80px at 10% 0%, rgba(45,212,191,.20), transparent 55%),
                  radial-gradient(400px 90px at 90% 0%, rgba(124,58,237,.18), transparent 58%);
      opacity: .9;
      pointer-events:none;
    }
    .metric > *{ position: relative; z-index:1; }
    .metric-value{
      font-weight: 900;
      font-size: 18px;
      letter-spacing: .2px;
    }
    .num{
      background: linear-gradient(90deg, rgba(37,99,235,1), rgba(124,58,237,1));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .metric-label{ color: var(--muted); font-weight: 650; font-size: 13px; margin-top: 3px; }

    .hero-trust{
      display:flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 10px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(26,33,45,.10);
    }
    .trust-item{
      display:flex; gap: 10px; align-items:center;
      color: rgba(30,36,48,.88);
      font-weight: 650;
      font-size: 14px;
    }
    .trust-icon{
      width: 24px; height:24px;
      border-radius: 10px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(180deg, rgba(45,212,191,.16), rgba(124,58,237,.12));
      border: 1px solid rgba(26,33,45,.08);
    }

    .hero-right{
      position: relative;
      padding-top: 8px;
    }
    .hero-panel{
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(26,33,45,.10);
      border-radius: 22px;
      box-shadow: 0 24px 60px rgba(16,24,40,.10);
      overflow:hidden;
    }
    .panel-head{
      padding: 18px 18px 10px;
      border-bottom: 1px solid rgba(26,33,45,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
    }
    .panel-title{ font-weight: 900; letter-spacing: -0.2px; }
    .panel-sub{ margin-top: 6px; color: var(--muted); font-size: 13px; }
    .scenario-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 14px 14px 12px;
    }
    .scenario{
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(26,33,45,.08);
      border-radius: 16px;
      padding: 12px 12px;
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 96px;
    }
    .scenario:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.18);
    }
    .scenario-icon{ font-size: 20px; }
    .scenario-name{ font-weight: 850; margin-top: 6px; letter-spacing: -.1px; }
    .scenario-desc{ color: var(--muted); font-size: 12.5px; margin-top: 4px; }

    .panel-divider{ height: 1px; background: rgba(26,33,45,.08); margin: 0 14px; }
    .panel-foot{
      padding: 14px 16px 16px;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
    }
    .platform-tags{ display:flex; flex-wrap: wrap; gap: 8px; }
    .tag{
      display:inline-flex;
      align-items:center;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
      color: rgba(30,36,48,.86);
      font-weight: 700;
      font-size: 12px;
      white-space: nowrap;
    }
    .hero-cta-strip{
      margin-top: 14px;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 20px;
      background: linear-gradient(90deg, rgba(255,255,255,.68), rgba(255,255,255,.50));
      border: 1px solid rgba(26,33,45,.10);
      box-shadow: 0 16px 46px rgba(16,24,40,.08);
    }
    .strip-title{ font-weight: 920; letter-spacing: -.3px; }
    .strip-desc{ color: var(--muted); font-size: 13px; margin-top: 4px; }

    .section{
      padding: 54px 0;
    }
    .grad-section{
      position: relative;
      background:
        radial-gradient(800px 420px at 20% 0%, rgba(45,212,191,.14), transparent 55%),
        radial-gradient(720px 420px at 90% 10%, rgba(124,58,237,.16), transparent 58%);
      border-top: 1px solid rgba(26,33,45,.06);
      border-bottom: 1px solid rgba(26,33,45,.06);
    }
    .grad-soft{
      background:
        radial-gradient(900px 520px at 0% 0%, rgba(96,165,250,.16), transparent 55%),
        radial-gradient(800px 420px at 100% 20%, rgba(167,139,250,.15), transparent 55%);
    }
    .grad-section2{
      background:
        radial-gradient(900px 520px at 10% 0%, rgba(45,212,191,.14), transparent 55%),
        radial-gradient(900px 520px at 90% 40%, rgba(96,165,250,.16), transparent 58%);
      border-top: 1px solid rgba(26,33,45,.06);
      border-bottom: 1px solid rgba(26,33,45,.06);
    }

    .section-head{
      margin-bottom: 22px;
      display:flex;
      flex-direction: column;
      gap: 10px;
    }
    .kicker{
      color: rgba(37,99,235,.95);
      font-weight: 850;
      letter-spacing: .2px;
      font-size: 13px;
      text-transform: uppercase;
    }
    .h2{
      margin: 0;
      font-size: clamp(22px, 2.9vw, 34px);
      letter-spacing: -.5px;
      line-height: 1.18;
    }
    .h3{
      margin: 0;
      font-size: 18px;
      letter-spacing: -.2px;
    }
    .lead{
      margin: 0;
      color: rgba(30,36,48,.82);
      font-size: 15.5px;
      max-width: 72ch;
    }
    .p{ margin: 10px 0 0; color: rgba(30,36,48,.82); }

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

    .card{
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(26,33,45,.10);
      border-radius: var(--radius);
      box-shadow: 0 18px 40px rgba(16,24,40,.06);
      padding: 18px;
      overflow:hidden;
    }

    .about-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: start;
    }

    .info-card{ padding: 20px; }
    .check-list{
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      display:grid;
      gap: 10px;
    }
    .check-list li{
      display:flex; gap: 10px; align-items:flex-start;
      color: rgba(30,36,48,.86);
      font-weight: 650;
      font-size: 14px;
    }
    .check{
      width: 22px; height:22px;
      display:inline-flex;
      align-items:center; justify-content:center;
      border-radius: 10px;
      background: linear-gradient(180deg, rgba(45,212,191,.16), rgba(124,58,237,.10));
      border: 1px solid rgba(26,33,45,.08);
      flex: 0 0 auto;
      margin-top: 1px;
    }

    .stats-card{ padding: 20px; }
    .stats-grid{
      display:grid;
      gap: 12px;
      margin-top: 14px;
    }
    .stat{
      padding: 14px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.68);
      border: 1px solid rgba(26,33,45,.08);
      box-shadow: 0 10px 22px rgba(16,24,40,.04);
    }
    .stat-top{
      display:flex; align-items:center; gap: 10px;
      color: rgba(30,36,48,.90);
      font-weight: 900;
    }
    .stat-icon{
      width: 30px; height:30px;
      border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
      border: 1px solid rgba(37,99,235,.16);
    }
    .stat-value{ margin-top: 8px; font-weight: 950; font-size: 18px; letter-spacing: -.2px; }
    .stat-desc{ margin-top: 6px; color: var(--muted); font-weight: 600; font-size: 13px; }
    .stats-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

    .services-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .service-card{
      padding: 20px;
      position: relative;
      min-height: 240px;
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.64));
    }
    .service-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(480px 140px at 20% 0%, rgba(45,212,191,.12), transparent 58%),
        radial-gradient(480px 160px at 90% 20%, rgba(124,58,237,.13), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .service-card > *{ position: relative; z-index: 1; }
    .service-icon{
      width: 44px; height:44px;
      border-radius: 18px;
      background: rgba(255,255,255,.7);
      border: 1px solid rgba(26,33,45,.10);
      display:flex; align-items:center; justify-content:center;
      font-size: 22px;
      box-shadow: 0 14px 28px rgba(16,24,40,.06);
    }
    .pill-row{ display:flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
    .pill{
      display:inline-flex;
      padding: 7px 10px;
      border-radius: 12px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(26,33,45,.10);
      font-weight: 750;
      font-size: 12px;
      color: rgba(30,36,48,.86);
    }
    .inline-list{
      display:flex; gap: 10px; flex-wrap: wrap;
      margin: 14px 0 0;
      padding: 0;
      list-style:none;
      color: rgba(30,36,48,.82);
      font-weight: 700;
      font-size: 13.5px;
    }
    .inline-list li{
      padding: 7px 10px;
      border-radius: 12px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.7);
    }
    .callout{
      margin-top: 14px;
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(37,99,235,.16);
      background: linear-gradient(180deg, rgba(37,99,235,.08), rgba(124,58,237,.06));
    }
    .callout-title{ font-weight: 900; }
    .callout-desc{ margin-top: 6px; color: var(--muted); font-weight: 650; font-size: 13px; }

    .banner-row{
      margin-top: 18px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: 22px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 60px rgba(16,24,40,.08);
    }
    .banner-copy{ padding: 6px; }
    .banner-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; }
    .banner-imgs{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .banner-imgs img{
      width:100%;
      border-radius: 18px;
      border: 1px solid rgba(26,33,45,.10);
      background: #fff;
      box-shadow: 0 16px 40px rgba(16,24,40,.06);
      transition: transform .2s ease;
    }
    .banner-imgs img:hover{ transform: translateY(-2px); }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: start;
    }
    .image-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 14px;
    }
    .img-wrap{
      border-radius: 18px;
      overflow:hidden;
      border: 1px solid rgba(26,33,45,.10);
      background:#fff;
      box-shadow: 0 16px 40px rgba(16,24,40,.06);
    }
    .img-wrap img{
      display:block;
      width:100%;
      height:auto;
      object-fit: contain;
    }
    .aspect-card{ margin-top: 14px; }
    .aspect-wrap{
      border-radius: 18px;
      overflow:hidden;
      border: 1px solid rgba(26,33,45,.10);
      background:#fff;
      box-shadow: 0 16px 40px rgba(16,24,40,.06);
      aspect-ratio: 1 / 1;
      display:flex; align-items:center; justify-content:center;
      padding: 10px;
    }
    .aspect-wrap img{
      width:100%;
      height:100%;
      object-fit: contain;
    }
    .aspect-caption{
      display:flex; align-items:center; gap: 10px;
      margin-top: 12px;
      color: rgba(30,36,48,.82);
      font-weight: 800;
    }
    .cap-dot{
      width: 10px; height:10px;
      border-radius: 50%;
      background: linear-gradient(90deg, var(--grad4), var(--grad2), var(--grad3));
      box-shadow: 0 0 0 4px rgba(96,165,250,.12);
    }
    .quick-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; }

    .timeline{
      margin-top: 18px;
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      align-items: stretch;
    }
    .timeline-item{
      padding: 14px 14px;
      border-radius: 18px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 14px 30px rgba(16,24,40,.05);
      display:flex;
      gap: 12px;
      align-items: flex-start;
    }
    .t-node{
      width: 12px; height:12px;
      border-radius: 6px;
      margin-top: 6px;
      background: linear-gradient(90deg, var(--grad1), var(--grad2), var(--grad3));
      box-shadow: 0 0 0 5px rgba(45,212,191,.10);
      flex: 0 0 auto;
    }
    .t-title{ font-weight: 950; letter-spacing: -.2px; }
    .t-desc{ margin-top: 6px; color: var(--muted); font-weight: 650; font-size: 13px; }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .industry-card{
      padding: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.64));
      min-height: 220px;
      display:flex;
      flex-direction: column;
      gap: 10px;
    }
    .industry-tags{ display:flex; flex-wrap: wrap; gap: 8px; margin-top:auto; }
    .industry-card .p{ margin-top: 4px; }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: start;
    }
    .step-list{
      list-style:none;
      padding:0; margin: 14px 0 0;
      display:grid; gap: 12px;
    }
    .step-list li{
      display:flex; gap: 12px; align-items:flex-start;
      font-weight: 650;
      color: rgba(30,36,48,.86);
    }
    .step-num{
      width: 26px; height:26px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(37,99,235,.12), rgba(124,58,237,.10));
      border: 1px solid rgba(37,99,235,.16);
      display:flex; align-items:center; justify-content:center;
      font-weight: 900;
      flex: 0 0 auto;
      margin-top: 1px;
    }

    .net-map{
      padding: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.60));
    }
    .map-head{ display:flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
    .map-title{ font-weight: 950; letter-spacing: -.2px; }
    .map-sub{ color: var(--muted); font-weight: 650; font-size: 13px; }

    .map-grid{
      position: relative;
      border-radius: 20px;
      border: 1px solid rgba(26,33,45,.10);
      background:
        radial-gradient(700px 320px at 30% 10%, rgba(45,212,191,.12), transparent 60%),
        radial-gradient(700px 320px at 90% 50%, rgba(124,58,237,.12), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.58));
      min-height: 260px;
      overflow:hidden;
      box-shadow: 0 18px 40px rgba(16,24,40,.06);
    }
    .city{
      position:absolute;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.72);
      font-weight: 850;
      font-size: 13px;
      color: rgba(30,36,48,.86);
      white-space: nowrap;
      opacity: .92;
      transform: translateZ(0);
    }
    .c1{ top: 22%; left: 20%; }
    .c2{ top: 12%; left: 52%; }
    .c3{ top: 46%; left: 66%; }
    .c4{ top: 62%; left: 38%; }
    .c5{ top: 55%; left: 16%; }
    .c6{ top: 22%; left: 74%; }

    .node{
      position:absolute;
      width: 12px; height:12px;
      border-radius: 50%;
      background: linear-gradient(90deg, var(--grad1), var(--grad2), var(--grad3));
      box-shadow: 0 0 0 6px rgba(96,165,250,.10);
      opacity:.95;
      animation: pulse 2.6s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{ transform: scale(1); opacity: .9; }
      50%{ transform: scale(1.12); opacity: 1; }
    }
    .n1{ top: 26%; left: 24%; animation-delay: .1s; }
    .n2{ top: 16%; left: 56%; animation-delay: .2s; }
    .n3{ top: 50%; left: 70%; animation-delay: .3s; }
    .n4{ top: 66%; left: 40%; animation-delay: .4s; }
    .n5{ top: 58%; left: 18%; animation-delay: .5s; }
    .n6{ top: 26%; left: 78%; animation-delay: .6s; }

    .link{
      position:absolute;
      height:1px;
      background: linear-gradient(90deg, rgba(45,212,191,.35), rgba(124,58,237,.35));
      opacity:.6;
      transform-origin: left center;
      animation: linkmove 5s ease-in-out infinite;
    }
    @keyframes linkmove{
      0%,100%{ opacity:.45; }
      50%{ opacity:.72; }
    }
    .l1{ top: 24%; left: 30%; width: 180px; transform: rotate(8deg); }
    .l2{ top: 44%; left: 26%; width: 250px; transform: rotate(-12deg); }
    .l3{ top: 56%; left: 45%; width: 180px; transform: rotate(16deg); }
    .l4{ top: 28%; left: 54%; width: 160px; transform: rotate(-6deg); }

    .map-foot{
      margin-top: 12px;
      display:flex; align-items:center; justify-content: space-between;
      gap: 12px;
    }
    .map-micro{ color: rgba(30,36,48,.86); font-weight: 650; }

    .process-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      align-items: stretch;
    }
    .process-card{
      padding: 18px;
      background: rgba(255,255,255,.72);
      min-height: 230px;
      display:flex;
      flex-direction: column;
      gap: 10px;
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .process-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 50px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.16);
    }
    .pc-step{
      font-weight: 950;
      letter-spacing: .3px;
      color: rgba(37,99,235,.95);
      font-size: 12.5px;
      text-transform: uppercase;
    }
    .pc-tags{
      display:flex; flex-wrap: wrap; gap: 8px;
      margin-top:auto;
    }

    .process-bottom{ margin-top: 16px; }
    .callout-line{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 18px;
      border-radius: 22px;
      border: 1px solid rgba(26,33,45,.10);
      background: linear-gradient(90deg, rgba(255,255,255,.74), rgba(255,255,255,.60));
      box-shadow: 0 18px 44px rgba(16,24,40,.08);
    }
    .callout-line-title{ font-weight: 980; letter-spacing: -.3px; }
    .callout-line-desc{ margin-top: 6px; color: var(--muted); font-weight: 650; }
    .callout-line-actions{ display:flex; gap: 12px; flex-wrap: wrap; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .case-card{
      padding: 18px;
      background: rgba(255,255,255,.72);
      min-height: 210px;
      display:flex;
      flex-direction: column;
      gap: 10px;
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .case-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 56px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.16);
    }
    .case-top{ display:flex; gap: 12px; align-items:flex-start; }
    .case-icon{
      width: 40px; height:40px;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.10);
      background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      font-size: 18px;
    }
    .case-title{ font-weight: 950; letter-spacing: -.3px; line-height: 1.25; }
    .case-meta{ display:flex; gap: 10px; flex-wrap: wrap; margin-top:auto; }
    .meta-item{
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
      font-weight: 750;
      font-size: 12.5px;
      color: rgba(30,36,48,.86);
    }

    .compare-top{
      display:grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 16px;
      align-items: start;
      margin-bottom: 16px;
    }
    .rating-card{
      padding: 20px;
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      border-radius: 22px;
    }
    .rating-row{
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
    }
    .stars{
      font-size: 20px;
      letter-spacing: 2px;
      background: linear-gradient(90deg, rgba(37,99,235,1), rgba(124,58,237,1));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-weight: 900;
    }
    .rating-score{
      display:flex; flex-direction: column; align-items:flex-end; gap: 4px;
    }
    .score-num{
      font-size: 40px;
      font-weight: 1000;
      letter-spacing: -.8px;
      background: linear-gradient(90deg, rgba(37,99,235,1), rgba(124,58,237,1));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height:1;
    }
    .score-unit{ color: rgba(30,36,48,.70); font-weight: 750; }
    .rating-title{ margin-top: 10px; font-weight: 980; }
    .rating-desc{ color: var(--muted); font-weight: 650; margin-top: 6px; }

    .compare-keypoints{
      padding: 20px;
      border-radius: 22px;
      background: rgba(255,255,255,.72);
    }
    .key-title{ font-weight: 980; letter-spacing: -.3px; margin-bottom: 10px; }
    .key-list{
      list-style:none; padding:0; margin:0;
      display:grid; gap: 10px;
    }
    .key-list li{
      display:flex; gap: 10px; align-items:flex-start;
      color: rgba(30,36,48,.86);
      font-weight: 650;
    }
    .kdot{
      width: 10px; height:10px;
      border-radius: 50%;
      margin-top: 6px;
      background: linear-gradient(90deg, var(--grad1), var(--grad2), var(--grad3));
      box-shadow: 0 0 0 4px rgba(45,212,191,.10);
      flex: 0 0 auto;
    }

    .compare-table-wrap{
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(26,33,45,.10);
      box-shadow: 0 24px 60px rgba(16,24,40,.08);
    }
    .table-top{ display:flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
    .table-title{ font-weight: 980; letter-spacing: -.3px; }
    .table-sub{ color: var(--muted); font-weight: 650; font-size: 13px; }
    .table-scroll{
      overflow:auto;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
    }
    .compare-table{
      width: 100%;
      border-collapse: collapse;
      min-width: 720px;
    }
    .compare-table th,
    .compare-table td{
      border-bottom: 1px solid rgba(26,33,45,.08);
      padding: 12px 12px;
      text-align: left;
      vertical-align: top;
    }
    .compare-table th{
      position: sticky;
      top: 0;
      background: rgba(255,255,255,.9);
      z-index: 1;
      font-weight: 950;
      color: rgba(30,36,48,.90);
    }
    .compare-table td{ color: rgba(30,36,48,.84); font-weight: 650; }
    .compare-table tr:last-child td{ border-bottom: none; }

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

    .match-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 16px;
      align-items: start;
    }
    .form-card{ padding: 20px; }
    .form-head .form-sub{ color: var(--muted); font-weight: 650; margin-top: 6px; font-size: 13px; }
    .form{ margin-top: 14px; display:flex; flex-direction: column; gap: 12px; }
    .form-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .field{ display:flex; flex-direction: column; gap: 7px; }
    .field-label{ font-weight: 800; color: rgba(30,36,48,.90); font-size: 13px; }
    input, select, textarea{
      width: 100%;
      border-radius: 14px;
      border: 1px solid rgba(26,33,45,.14);
      background: rgba(255,255,255,.88);
      padding: 12px 12px;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: box-shadow .2s ease, border-color .2s ease, transform .15s ease;
    }
    textarea{ resize: vertical; min-height: 120px; }
    input:focus, select:focus, textarea:focus{
      box-shadow: 0 0 0 4px var(--focus);
      border-color: rgba(37,99,235,.35);
    }

    .form-foot{
      display:flex; align-items:center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
      margin-top: 2px;
    }
    .form-note{
      display:flex; align-items:center; gap: 10px;
      color: rgba(30,36,48,.70);
      font-weight: 650;
      font-size: 13px;
    }
    .safe-dot{
      width: 10px; height:10px;
      border-radius: 50%;
      background: linear-gradient(90deg, var(--grad4), var(--grad2));
      box-shadow: 0 0 0 4px rgba(45,212,191,.10);
    }

    .token-box{
      margin-top: 18px;
      padding: 16px;
      border-radius: 20px;
      border: 1px solid rgba(26,33,45,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.60));
    }
    .token-head{ display:flex; flex-direction: column; gap: 6px; }
    .token-title{ font-weight: 980; letter-spacing: -.3px; }
    .token-sub{ color: var(--muted); font-weight: 650; font-size: 13px; }
    .token-grid{
      margin-top: 12px;
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .token-row{
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.72);
      display:flex;
      flex-direction: column;
      gap: 6px;
    }
    .token-k{ font-weight: 950; }
    .token-v{ color: rgba(30,36,48,.86); font-weight: 780; }
    .token-s{ color: var(--muted); font-weight: 650; font-size: 13px; }
    .token-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

    .match-card{
      padding: 20px;
    }
    .faq-like-list{
      list-style:none; padding:0; margin: 14px 0 0;
      display:flex; flex-direction: column; gap: 12px;
    }
    .li-item{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
    }
    .li-ico{
      width: 26px; height:26px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(45,212,191,.16), rgba(124,58,237,.10));
      border: 1px solid rgba(26,33,45,.10);
      font-weight: 950;
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      color: rgba(30,36,48,.90);
      margin-top: 2px;
    }
    .li-title{ font-weight: 950; letter-spacing: -.2px; }
    .li-desc{ color: var(--muted); font-weight: 650; font-size: 13px; margin-top: 6px; }

    .match-samples{ margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(26,33,45,.08); }
    .samples-head{ display:flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
    .samples-title{ font-weight: 980; letter-spacing: -.3px; }
    .samples-sub{ color: var(--muted); font-weight: 650; font-size: 13px; }
    .samples-grid{
      display:flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .chip{
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
      font-weight: 800;
      font-size: 12.5px;
      color: rgba(30,36,48,.86);
    }
    .chip.big{ padding: 10px 12px; }

    .train-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .course-grid{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .course{
      padding: 14px 12px;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
      display:flex; flex-direction: column; gap: 6px;
      min-height: 92px;
    }
    .course-title{ font-weight: 950; letter-spacing: -.2px; }
    .course-desc{ color: var(--muted); font-weight: 650; font-size: 13px; }
    .train-actions{ margin-top: 16px; display:flex; gap: 12px; flex-wrap: wrap; }

    .cert-box{
      margin-top: 14px;
      padding: 14px;
      border-radius: 20px;
      border: 1px solid rgba(37,99,235,.16);
      background: linear-gradient(180deg, rgba(37,99,235,.08), rgba(124,58,237,.06));
    }
    .cert-head{ display:flex; flex-direction: column; gap: 6px; }
    .cert-title{ font-weight: 980; letter-spacing: -.3px; }
    .cert-sub{ color: var(--muted); font-weight: 650; font-size: 13px; }
    .cert-grid{
      margin-top: 12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .cert-item{
      padding: 12px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(26,33,45,.10);
      display:flex; gap: 10px; align-items:center;
    }
    .cert-ico{
      width: 34px; height:34px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
      border: 1px solid rgba(37,99,235,.16);
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
    }
    .cert-text{ font-weight: 900; letter-spacing: -.2px; }

    .help-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 16px;
      align-items: start;
    }
    .help-links{
      display:flex; flex-direction: column; gap: 10px; margin-top: 14px;
    }
    .help-link{
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
      font-weight: 900;
      letter-spacing: -.2px;
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .help-link:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.16);
    }
    .help-box{
      margin-top: 16px;
      padding: 14px;
      border-radius: 20px;
      border: 1px solid rgba(37,99,235,.16);
      background: linear-gradient(180deg, rgba(37,99,235,.08), rgba(124,58,237,.06));
    }
    .help-box-title{ font-weight: 980; letter-spacing: -.3px; }
    .help-box-desc{ margin-top: 8px; color: var(--muted); font-weight: 650; }

    .faq-card{ padding: 20px; }
    .faq-top{ display:flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
    .faq-sub{ color: var(--muted); font-weight: 650; font-size: 13px; }
    .accordion .acc-item{
      width: 100%;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 14px;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
      cursor:pointer;
      margin-top: 10px;
      font-weight: 900;
      color: rgba(30,36,48,.90);
      transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
      text-align: left;
    }
    .accordion .acc-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.16);
    }
    .acc-q{ line-height: 1.3; }
    .acc-icon{
      width: 28px; height:28px;
      border-radius: 14px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.74);
      position: relative;
      flex: 0 0 auto;
    }
    .acc-icon::before,
    .acc-icon::after{
      content:"";
      position:absolute; left: 50%; top: 50%;
      width: 12px; height:2px;
      background: rgba(30,36,48,.86);
      transform: translate(-50%,-50%);
      border-radius: 2px;
    }
    .acc-icon::after{
      width:2px; height:12px;
      transition: transform .2s ease, opacity .2s ease;
      transform: translate(-50%,-50%) scale(1);
      opacity: 1;
    }
    .acc-item[aria-expanded="true"] .acc-icon::after{
      transform: translate(-50%,-50%) scale(0.1);
      opacity: 0;
    }

    .acc-panel{
      max-height: 0px;
      overflow: hidden;
      transition: max-height .28s ease;
    }
    .acc-a{
      padding: 0 14px 0;
      margin-top: -2px;
      color: rgba(30,36,48,.82);
      font-weight: 650;
      background: rgba(255,255,255,.54);
      border-left: 3px solid rgba(37,99,235,.22);
      border-radius: 0 16px 16px 0;
    }
    .acc-panel .acc-a{ padding: 10px 14px 12px; border-top: 1px solid rgba(26,33,45,.06); }

    .faq-bottom{
      margin-top: 14px;
      display:flex; gap: 12px; flex-wrap: wrap;
      justify-content: flex-start;
    }

    .faq-card .btn{ width: auto; }

    .faq-bottom .btn-primary{ margin-right: 0; }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .wiki-card{
      padding: 18px;
      background: rgba(255,255,255,.72);
      min-height: 190px;
      display:flex; flex-direction: column; gap: 10px;
    }
    .wiki-card .p{ margin-top: 4px; }
    .wiki-foot{ margin-top:auto; }

    .mini{ color: var(--muted); font-weight: 700; font-size: 13px; }
    .mini-banner{
      margin-top: 16px;
      padding: 16px 18px;
      border-radius: 22px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 60px rgba(16,24,40,.08);
      display:flex; align-items:center; justify-content: space-between; gap: 14px;
    }
    .mini-banner-title{ font-weight: 980; letter-spacing: -.3px; }
    .mini-banner-desc{ margin-top: 6px; color: var(--muted); font-weight: 650; }

    .article-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 16px;
      align-items: start;
    }
    .article-card{
      padding: 20px;
      background: rgba(255,255,255,.72);
      border-radius: 22px;
      border: 1px solid rgba(26,33,45,.10);
      box-shadow: 0 20px 55px rgba(16,24,40,.06);
    }
    .article-card.right{ padding: 18px; }
    .article-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; }

    .link-list{
      margin: 12px 0 0;
      padding: 0;
      list-style:none;
      display:grid;
      gap: 10px;
    }
    .link-list li a{
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
      display:block;
      font-weight: 900;
      letter-spacing: -.2px;
      color: rgba(30,36,48,.90);
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .link-list li a:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.16);
    }

    .search-like{
      border-radius: 20px;
      padding: 14px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 40px rgba(16,24,40,.06);
    }
    .search-title{ font-weight: 980; letter-spacing: -.3px; }
    .tag-cloud{ margin-top: 10px; display:flex; flex-wrap: wrap; gap: 10px; }
    .tag.cloud{
      font-size: 12.5px;
      padding: 8px 10px;
      background: rgba(255,255,255,.72);
    }
    .feature-box{
      margin-top: 14px;
      padding: 14px;
      border-radius: 20px;
      border: 1px solid rgba(37,99,235,.16);
      background: linear-gradient(180deg, rgba(37,99,235,.08), rgba(124,58,237,.06));
    }
    .feature-title{ font-weight: 980; letter-spacing: -.3px; }
    .check-list.compact{ margin-top: 10px; gap: 9px; }
    .check-list.compact li{ font-size: 13.5px; }

    .divider{
      height: 1px;
      background: rgba(26,33,45,.08);
      margin: 18px 0;
    }
    .partners{
      display:flex; align-items:flex-start; justify-content: space-between; gap: 18px;
      flex-wrap: wrap;
    }
    .partners-left{ min-width: 220px; }
    .partners-title{ font-weight: 980; letter-spacing: -.3px; }
    .partners-sub{ margin-top: 6px; color: var(--muted); font-weight: 650; font-size: 13px; }
    .partner-links{
      display:flex; gap: 10px; flex-wrap: wrap;
      justify-content: flex-end;
    }
    .partner-links a{
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
      font-weight: 850;
      font-size: 13px;
      color: rgba(30,36,48,.86);
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .partner-links a:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.16);
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .review-card{
      padding: 18px;
      border-radius: 22px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 20px 55px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .review-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.16);
    }
    .review-top{ display:flex; gap: 12px; align-items:flex-start; }
    .avatar{
      width: 44px; height:44px;
      border-radius: 18px;
      border: 1px solid rgba(26,33,45,.10);
      background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
      display:flex; align-items:center; justify-content:center;
      font-weight: 980;
      letter-spacing: -.4px;
      color: rgba(30,36,48,.90);
      flex: 0 0 auto;
    }
    .who-name{ font-weight: 980; letter-spacing: -.3px; }
    .who-meta{ margin-top: 6px; color: var(--muted); font-weight: 650; font-size: 13px; }
    .review-foot{ margin-top: 12px; }

    .partner-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .partner-chips{
      display:flex; flex-wrap: wrap; gap: 10px;
      margin-top: 14px;
    }
    .partner-note{
      margin-top: 16px;
      padding: 14px;
      border-radius: 20px;
      border: 1px solid rgba(37,99,235,.16);
      background: linear-gradient(180deg, rgba(37,99,235,.08), rgba(124,58,237,.06));
    }
    .note-title{ font-weight: 980; letter-spacing: -.3px; }
    .note-desc{ margin-top: 8px; color: var(--muted); font-weight: 650; }
    .partner-actions{ margin-top: 16px; display:flex; gap: 12px; flex-wrap: wrap; }

    .contact-section{
      padding-bottom: 64px;
    }
    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: start;
    }
    .contact-list{
      margin-top: 14px;
      display:grid;
      gap: 12px;
    }
    .contact-item{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
    }
    .ci-ico{
      width: 40px; height:40px;
      border-radius: 18px;
      border: 1px solid rgba(26,33,45,.10);
      background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      font-size: 18px;
    }
    .ci-title{ font-weight: 980; letter-spacing: -.2px; }
    .ci-link{
      display:inline-block;
      margin-top: 6px;
      color: rgba(37,99,235,.95);
      font-weight: 900;
    }
    .ci-text{ display:inline-block; margin-top: 6px; color: rgba(30,36,48,.80); font-weight: 780; }
    .contact-quick{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

    .qr-wrap{
      margin-top: 14px;
      display:flex; flex-direction: column; gap: 12px;
      align-items:center;
      justify-content:center;
    }
    .qr-wrap img{
      width: 180px;
      max-width: 100%;
      border-radius: 20px;
      border: 1px solid rgba(26,33,45,.10);
      background: #fff;
      box-shadow: 0 22px 56px rgba(16,24,40,.10);
    }
    .qr-caption{
      color: var(--muted);
      font-weight: 700;
      text-align:center;
      font-size: 13.5px;
      padding: 0 8px;
    }
    .contact-mini{
      margin-top: 14px;
      padding: 14px;
      border-radius: 20px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.70);
    }
    .mini-row{ display:flex; gap: 10px; align-items:flex-start; margin-top: 10px; }
    .mini-row:first-child{ margin-top: 0; }
    .mini-ico{
      width: 28px; height:28px;
      border-radius: 14px;
      border: 1px solid rgba(26,33,45,.10);
      background: linear-gradient(180deg, rgba(45,212,191,.14), rgba(124,58,237,.10));
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
    }
    .mini-txt{ color: rgba(30,36,48,.82); font-weight: 650; font-size: 13.5px; }

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

    .site-footer{
      background: var(--footerBg);
      color: var(--footerText);
      border-top: 1px solid rgba(233,238,248,.12);
      padding: 26px 0 18px;
    }
    .footer-container{ padding: 0 0; }
    .footer-top{
      display:flex; align-items:flex-start; justify-content: space-between; gap: 18px;
      flex-wrap: wrap;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--footerLine);
      margin-bottom: 14px;
    }
    .footer-brand{ max-width: 520px; }
    .footer-name{ font-weight: 1000; letter-spacing: -.4px; font-size: 18px; }
    .footer-desc{ margin-top: 8px; color: var(--footerMuted); font-weight: 650; }
    .footer-links{
      display:flex; flex-wrap: wrap; gap: 10px;
      justify-content: flex-end;
    }
    .footer-links a{
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid var(--footerLine);
      background: rgba(255,255,255,.04);
      color: var(--footerText);
      font-weight: 850;
      font-size: 13px;
      transition: transform .18s ease, background .2s ease, border-color .2s ease;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.08);
      border-color: rgba(233,238,248,.22);
    }

    .footer-bottom{
      display:flex; align-items:center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
    }
    .footer-legal{
      color: var(--footerMuted);
      font-weight: 650;
      display:flex; flex-direction: column; gap: 6px;
    }
    .footer-legal a{ color: #b9d3ff; font-weight: 900; }
    .footer-legal-right{ color: var(--footerMuted); }

    .footer-cta{ display:flex; gap: 12px; flex-wrap: wrap; }
    .site-footer .btn{
      border-color: rgba(233,238,248,.18);
      background: rgba(255,255,255,.06);
      color: var(--footerText);
      box-shadow: none;
    }
    .site-footer .btn:hover{ box-shadow: 0 18px 44px rgba(0,0,0,.35); }
    .site-footer .btn-primary{
      background: linear-gradient(90deg, rgba(37,99,235,1) 0%, rgba(124,58,237,1) 100%);
      border-color: rgba(255,255,255,.18);
      color: #fff;
    }
    .site-footer .btn-ghost{
      background: rgba(255,255,255,.06);
    }

    .float-chat{
      position: fixed;
      right: 14px;
      bottom: 14px;
      z-index: 90;
      display:flex;
      flex-direction: column;
      align-items:flex-end;
      gap: 10px;
    }
    .float-btn{
      border: 1px solid rgba(26,33,45,.12);
      background: rgba(255,255,255,.85);
      border-radius: 18px;
      padding: 12px 14px;
      display:flex;
      align-items:center;
      gap: 10px;
      font-weight: 950;
      cursor:pointer;
      box-shadow: 0 18px 44px rgba(16,24,40,.18);
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .float-btn:hover{ transform: translateY(-2px); box-shadow: 0 26px 70px rgba(16,24,40,.22); }
    .float-ico{
      width: 32px; height:32px;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.10);
      background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
    }
    .float-panel{
      width: 260px;
      max-width: calc(100vw - 28px);
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(26,33,45,.12);
      border-radius: 20px;
      box-shadow: 0 26px 70px rgba(16,24,40,.20);
      padding: 14px 14px;
      transform-origin: bottom right;
      transform: scale(.98);
      opacity: 0;
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .float-panel.open{
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }
    .float-title{ font-weight: 1000; letter-spacing: -.3px; margin-bottom: 10px; }
    .float-actions{ display:flex; flex-direction: column; gap: 10px; }
    .float-link{
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.10);
      background: rgba(255,255,255,.78);
      font-weight: 900;
      color: rgba(30,36,48,.90);
      transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .float-link:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,24,40,.10);
      border-color: rgba(37,99,235,.16);
    }
    .float-sub{
      margin-top: 10px;
      color: var(--muted);
      font-weight: 650;
      font-size: 13px;
      border-top: 1px solid rgba(26,33,45,.08);
      padding-top: 10px;
    }

    .to-top{
      position: fixed;
      right: 14px;
      bottom: 92px;
      z-index: 80;
      width: 44px; height:44px;
      border-radius: 16px;
      border: 1px solid rgba(26,33,45,.12);
      background: rgba(255,255,255,.86);
      color: rgba(30,36,48,.92);
      font-weight: 950;
      cursor:pointer;
      box-shadow: 0 18px 44px rgba(16,24,40,.18);
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .to-top.show{
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .nav{ justify-content: flex-start; }
      .nav-cta{ min-width: auto; }
      .services-grid{ grid-template-columns: 1fr; }
      .banner-row{ grid-template-columns: 1fr; }
      .about-grid{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .timeline{ grid-template-columns: 1fr 1fr; }
      .industry-grid{ grid-template-columns: 1fr 1fr; }
      .network-grid{ grid-template-columns: 1fr; }
      .process-grid{ grid-template-columns: 1fr 1fr; }
      .case-grid{ grid-template-columns: 1fr 1fr; }
      .compare-top{ grid-template-columns: 1fr; }
      .match-grid{ grid-template-columns: 1fr; }
      .train-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr 1fr; }
      .article-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .partner-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .hero-cta-strip{ flex-direction: column; align-items:flex-start; }
    }

    @media (max-width: 820px){
      .nav-toggle{ display:inline-flex; }
      .nav-menu{
        display:none;
        width: 100%;
        padding: 12px 0;
      }
      .nav-menu.open{
        display:flex;
        flex-direction: column;
        align-items:flex-start;
        gap: 6px;
      }
      .nav-container{ align-items:flex-start; }
      .nav-cta{ display:none; }
      .brand-meta .brand-sub{ display:none; }
      .hero{ padding-top: 40px; }
      .scenario-grid{ grid-template-columns: 1fr 1fr; }
    }

    @media (prefers-reduced-motion: reduce){
      * { scroll-behavior: auto !important; }
      .bg-orb, .node, .link { animation: none !important; }
      .reveal{ transition: none !important; }
      .to-top, .float-panel, .btn { transition: none !important; }
    }

    html{ scroll-behavior: smooth; }