:root{
      --bg0:#ffffff;
      --bg1:#f7f6ff;
      --bg2:#fff3f6;
      --ink:#1d2433;
      --muted:#5a6376;
      --muted2:#7b849b;
      --line:rgba(18,28,45,.10);
      --card:rgba(255,255,255,.84);
      --shadow:0 18px 50px rgba(25,35,60,.10);
      --shadow2:0 10px 30px rgba(25,35,60,.12);
      --primary:#ff2f6d;
      --primary2:#7c3aed;
      --teal:#14b8a6;
      --amber:#f59e0b;
      --success:#22c55e;
      --radius:18px;
      --radius2:24px;
      --container:1140px;
      --pad:18px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", "Noto Sans", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1000px 600px at 15% -10%, rgba(255,47,109,.10), transparent 55%),
        radial-gradient(900px 620px at 82% 0%, rgba(124,58,237,.10), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 45%, #fff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .skip-link{
      position:absolute; left:10px; top:10px;
      transform:translateY(-200%);
      background:#0f172a; color:#fff; padding:10px 12px;
      border-radius:10px; z-index:9999;
      transition:transform .2s ease;
    }
    .skip-link:focus{transform:translateY(0)}
    .container{width:100%; max-width:var(--container); margin:0 auto; padding:0 var(--pad)}
    .bg-shell{
      position:fixed; inset:0; pointer-events:none; z-index:-1;
    }
    .bg-grid{
      position:absolute; inset:-20px;
      background:
        linear-gradient(to right, rgba(15,23,42,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15,23,42,.06) 1px, transparent 1px);
      background-size:48px 48px;
      mask-image: radial-gradient(closest-side at 50% 20%, rgba(0,0,0,.9), transparent 70%);
      opacity:.55;
    }
    .bg-orb{
      position:absolute; width:560px; height:560px; border-radius:50%;
      filter: blur(26px);
      opacity:.22;
      background: radial-gradient(circle at 30% 30%, #ff2f6d 0%, rgba(255,47,109,.0) 60%);
    }
    .orb-a{left:-220px; top:120px}
    .orb-b{
      right:-240px; top:-80px;
      background: radial-gradient(circle at 30% 30%, #7c3aed 0%, rgba(124,58,237,.0) 60%);
    }
    .bg-stripe{
      position:absolute; left:50%; top:0;
      transform:translateX(-50%);
      width:100%;
      height:420px;
      background: linear-gradient(90deg, rgba(255,47,109,.10), rgba(124,58,237,.10), rgba(20,184,166,.06));
      mask-image: radial-gradient(closest-side at 50% 0%, rgba(0,0,0,.9), transparent 70%);
      opacity:.7;
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(160%) blur(10px);
      background: rgba(255,255,255,.70);
      border-bottom:1px solid rgba(18,28,45,.08);
    }
    .nav-container{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding-top:12px; padding-bottom:12px;
    }
    .brand{display:flex; align-items:center; gap:12px; min-width:260px}
    .brand-link{display:flex; align-items:center; gap:12px}
    .ai-page-logo{width:44px; height:auto}
    .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand-name{font-weight:820; letter-spacing:.2px}
    .brand-sub{font-size:12.5px; color:var(--muted); margin-top:6px; white-space:nowrap}
    .nav-desktop{display:flex; align-items:center; gap:18px}
    .nav-links{display:flex; align-items:center; gap:18px}
    .nav-link{
      font-size:14px; color:rgba(29,36,51,.82);
      padding:10px 8px; border-radius:12px;
      transition:background .2s ease, color .2s ease, transform .2s ease;
    }
    .nav-link:hover{
      background: rgba(255,47,109,.10);
      color:#1b2234;
      transform: translateY(-1px);
    }
    .nav-actions{display:flex; align-items:center; gap:10px}

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      border-radius:14px;
      padding:12px 16px;
      font-weight:760;
      border:1px solid rgba(18,28,45,.10);
      background:#fff;
      color:var(--ink);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 34px rgba(15,23,42,.10);
      border-color: rgba(18,28,45,.18);
    }
    .btn:active{transform: translateY(0px) scale(.99)}
    .btn-block{width:100%}
    .btn-primary{
      background: linear-gradient(135deg, rgba(255,47,109,1), rgba(124,58,237,1));
      border-color: rgba(255,47,109,.30);
      color:#fff;
      box-shadow: 0 18px 40px rgba(255,47,109,.22);
    }
    .btn-ghost{
      background: rgba(255,255,255,.65);
      color:var(--ink);
      box-shadow:none;
      border-color: rgba(18,28,45,.14);
    }
    .btn-lg{padding:14px 18px; border-radius:16px}
    .btn-sm{padding:10px 12px; border-radius:12px; font-size:13.5px}
    .btn-primary.btn-sm{box-shadow: 0 14px 30px rgba(255,47,109,.18)}
    .icon-btn{
      width:46px; height:46px; border-radius:14px;
      border:1px solid rgba(18,28,45,.12);
      background:#fff;
      cursor:pointer;
      display:inline-flex; align-items:center; justify-content:center;
      box-shadow:0 14px 28px rgba(15,23,42,.06);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .icon-btn:hover{transform: translateY(-1px); box-shadow:0 18px 40px rgba(15,23,42,.10)}
    .icon-burger{
      display:block; width:18px; height:2px; background:rgba(29,36,51,.86);
      margin:2px 0;
    }
    .icon-close{
      width:18px; height:18px; position:relative; display:block;
    }
    .icon-close:before,.icon-close:after{
      content:""; position:absolute; inset:0; margin:auto;
      width:18px; height:2px; background:rgba(29,36,51,.86);
      border-radius:10px;
    }
    .icon-close:before{transform:rotate(45deg)}
    .icon-close:after{transform:rotate(-45deg)}
    .nav-mobile{display:none}
    .mobile-menu{
      position:fixed; inset:0; z-index:100;
      background: rgba(15,23,42,.35);
      backdrop-filter: blur(10px);
      display:flex; align-items:flex-start; justify-content:center;
      padding: 74px 16px 16px;
    }
    .mobile-menu-inner{
      width:100%; max-width:560px;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(18,28,45,.12);
      border-radius: 22px;
      box-shadow: var(--shadow2);
      padding: 14px;
    }
    .mobile-menu-top{
      display:flex; align-items:center; justify-content:space-between;
      padding: 6px 6px 10px;
      border-bottom:1px solid rgba(18,28,45,.08);
    }
    .mobile-menu-title{font-weight:840}
    .mobile-menu-links{
      display:flex; flex-direction:column; gap:8px;
      padding: 12px 6px;
    }
    .mobile-menu-link{
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(18,28,45,.10);
      background: rgba(255,255,255,.70);
      transition: transform .15s ease, background .15s ease;
      font-weight:720;
      color: rgba(29,36,51,.88);
    }
    .mobile-menu-link:hover{transform: translateY(-1px); background: rgba(255,47,109,.08)}
    .mobile-menu-bottom{
      display:flex; gap:10px;
      padding: 10px 6px 6px;
    }

    .hero{
      padding: 26px 0 18px;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 20px;
      align-items:start;
      padding-top: 10px;
    }
    .hero-copy{
      padding: 10px 0;
    }
    .hero-kicker{
      display:flex; align-items:center; gap:10px;
      margin-bottom: 14px;
      flex-wrap:wrap;
    }
    .pill{
      padding: 8px 12px;
      background: rgba(255,47,109,.10);
      border:1px solid rgba(255,47,109,.20);
      color:#b0123d;
      border-radius: 999px;
      font-weight:860;
      letter-spacing:.2px;
      font-size:13px;
    }
    .muted{color:var(--muted)}
    .lead{max-width:680px}
    .dot-sep{color:rgba(29,36,51,.35)}
    .hero-title{
      margin: 0;
      font-size: clamp(28px, 3.2vw, 44px);
      line-height:1.08;
      letter-spacing: -0.6px;
    }
    .hero-desc{
      margin: 14px 0 18px;
      color: rgba(29,36,51,.78);
      line-height:1.7;
      font-size: 15.5px;
      max-width: 720px;
    }
    .hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px}
    .hero-metrics{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 10px;
      margin-top: 12px;
    }
    .metric{
      background: rgba(255,255,255,.68);
      border: 1px solid rgba(18,28,45,.10);
      border-radius: 16px;
      padding: 12px 12px;
      box-shadow: 0 14px 28px rgba(15,23,42,.05);
    }
    .metric-value{font-weight:860; font-size:14px}
    .metric-sub{margin-top:6px; font-size:12.7px; color:var(--muted)}
    .hero-trust{
      margin-top: 14px;
    }
    .trust-row{
      display:flex; align-items:center; gap:10px;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(255,47,109,.20);
      background: rgba(255,47,109,.06);
      width:fit-content;
    }
    .trust-icon{
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 10px 24px rgba(255,47,109,.30);
    }
    .trust-text{font-weight:720; color: rgba(29,36,51,.86); font-size:13.5px}

    .hero-side{display:flex; flex-direction:column; gap:12px}
    .side-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 22px;
      padding: 16px;
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .side-card:after{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(500px 220px at 20% 0%, rgba(255,47,109,.20), transparent 55%),
                  radial-gradient(520px 240px at 90% 10%, rgba(124,58,237,.18), transparent 55%);
      opacity:.8;
      pointer-events:none;
    }
    .side-card > *{position:relative; z-index:1}
    .side-card-top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; margin-bottom:12px}
    .side-card-title{font-weight:900; font-size:16px; letter-spacing:-.2px}
    .side-card-chip{
      font-size:12px; font-weight:860;
      padding: 6px 10px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.22);
      background: rgba(124,58,237,.08);
      color:#5b21b6;
      white-space:nowrap;
    }
    .side-list{display:flex; flex-direction:column; gap:10px; margin-bottom:14px}
    .side-item{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 10px;
      border-radius: 16px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.65);
    }
    .side-badge{
      flex:0 0 auto;
      padding: 7px 10px;
      border-radius:999px;
      font-weight:860;
      font-size:12.5px;
      background: rgba(255,47,109,.10);
      border:1px solid rgba(255,47,109,.20);
      color:#a10f37;
      white-space:nowrap;
    }
    .side-desc{font-size:12.8px; color:rgba(29,36,51,.78); line-height:1.5; margin-top:2px}
    .side-card-actions{display:flex; gap:10px; flex-wrap:wrap}

    .data-wall{display:grid; grid-template-columns:1fr; gap:12px}
    .data-card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 20px;
      padding: 14px;
      box-shadow: 0 16px 44px rgba(15,23,42,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .data-card:hover{
      transform: translateY(-2px);
      border-color: rgba(255,47,109,.22);
      box-shadow: 0 20px 60px rgba(255,47,109,.12);
    }
    .data-head{display:flex; align-items:center; gap:10px; margin-bottom:8px}
    .data-icon{
      width:18px; height:18px; border-radius:6px;
      background: linear-gradient(135deg, rgba(255,47,109,1), rgba(124,58,237,1));
      box-shadow: 0 12px 28px rgba(255,47,109,.22);
    }
    .data-icon.icon-alt{background: linear-gradient(135deg, rgba(20,184,166,1), rgba(124,58,237,1))}
    .data-title{font-weight:900}
    .data-big{font-weight:920; font-size:14.7px; margin-bottom:6px}
    .data-sub{font-size:12.8px; color:var(--muted); line-height:1.5}

    .section{padding: 54px 0}
    .section-tight{padding: 26px 0}
    .section-contrast{
      background: linear-gradient(180deg, rgba(255,47,109,.06), rgba(124,58,237,.05) 40%, rgba(255,255,255,.0));
      border-top: 1px solid rgba(18,28,45,.06);
      border-bottom: 1px solid rgba(18,28,45,.06);
    }
    .section-contrast-2{
      background: linear-gradient(180deg, rgba(255,47,109,.04), rgba(20,184,166,.04) 50%, rgba(255,255,255,.0));
      border-top: 1px solid rgba(18,28,45,.06);
      border-bottom: 1px solid rgba(18,28,45,.06);
    }
    .section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom: 18px; flex-wrap:wrap}
    .section-title{margin:0; font-size:22px}
    .h2{margin:0; font-size:28px; letter-spacing:-.4px}
    .h3{margin:0; font-size:17px; letter-spacing:-.2px}
    .section-desc{margin: 12px 0 0; color: rgba(29,36,51,.78); line-height:1.7; max-width: 720px}

    .split-banner{
      display:flex; align-items:flex-start; justify-content:space-between; gap:18px; padding: 18px;
      background: rgba(255,255,255,.80);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 24px;
      box-shadow: var(--shadow);
    }
    .split-left{flex:1}
    .split-right{width: 430px; max-width:100%; display:flex; flex-direction:column; gap:12px; align-items:flex-end}
    .tag-cloud{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
    .tag{
      padding: 8px 12px; border-radius:999px;
      border:1px solid rgba(18,28,45,.12);
      background: rgba(255,255,255,.70);
      font-weight:760; font-size:13px;
      color: rgba(29,36,51,.86);
    }
    .tag.accent{background: rgba(255,47,109,.08); border-color: rgba(255,47,109,.20); color:#a10f37}
    .tag.pink{background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.20); color:#4c1d95}
    .tag.teal{background: rgba(20,184,166,.08); border-color: rgba(20,184,166,.20); color:#0f766e}
    .tag.amber{background: rgba(245,158,11,.10); border-color: rgba(245,158,11,.25); color:#8a4b00}
    .chip{
      display:inline-flex; align-items:center; justify-content:center;
      padding: 6px 10px;
      border-radius: 999px;
      font-weight:860;
      font-size:12.5px;
      border:1px solid rgba(18,28,45,.12);
      background: rgba(255,255,255,.72);
      color: rgba(29,36,51,.88);
      white-space:nowrap;
    }
    .chip-orange{background: rgba(255,47,109,.08); border-color: rgba(255,47,109,.22); color:#a10f37}
    .chip-purple{background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.22); color:#4c1d95}
    .chip-teal{background: rgba(20,184,166,.08); border-color: rgba(20,184,166,.22); color:#0f766e}
    .chip-ink{background: rgba(29,36,51,.06); border-color: rgba(29,36,51,.18); color:#1d2433}
    .chip-rose{background: rgba(236,72,153,.08); border-color: rgba(236,72,153,.22); color:#be185d}
    .chip-mint{background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.22); color:#0f766e}
    .chip-amber{background: rgba(245,158,11,.10); border-color: rgba(245,158,11,.25); color:#8a4b00}

    .grid-3{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
    .feature-card{
      background: rgba(255,255,255,.82);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 22px;
      padding: 16px;
      box-shadow: 0 16px 44px rgba(15,23,42,.06);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .feature-card:hover{transform: translateY(-2px); border-color: rgba(255,47,109,.22); box-shadow: 0 22px 60px rgba(255,47,109,.10)}
    .feature-top{display:flex; align-items:center; gap:10px; margin-bottom:10px}
    .feature-icon{width:18px; height:18px; border-radius:7px}
    .feature-icon.i1{background: linear-gradient(135deg, var(--primary), var(--primary2))}
    .feature-icon.i2{background: linear-gradient(135deg, var(--teal), var(--primary2))}
    .feature-icon.i3{background: linear-gradient(135deg, var(--amber), var(--primary))}
    .p{margin:0; color: rgba(29,36,51,.78); line-height:1.7; font-size:14.2px}

    .service-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
    .service-card{
      border-radius: 24px;
      padding: 16px;
      background: rgba(255,255,255,.84);
      border:1px solid rgba(18,28,45,.10);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      overflow:hidden;
      position:relative;
    }
    .service-card:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(500px 220px at 10% 0%, rgba(255,47,109,.16), transparent 60%),
        radial-gradient(520px 240px at 90% 0%, rgba(124,58,237,.14), transparent 60%);
      opacity:.35;
      pointer-events:none;
    }
    .service-card > *{position:relative}
    .service-title-row{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px}
    .checklist{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
    .checklist-condensed{gap:9px}
    .check{
      width:16px; height:16px; border-radius:6px; display:inline-block;
      background: rgba(34,197,94,.14);
      border:1px solid rgba(34,197,94,.25);
      margin-right:10px; position:relative; top:2px;
    }
    .check:after{
      content:""; position:absolute; left:4px; top:3px;
      width:6px; height:3px;
      border-left:2px solid #16a34a;
      border-bottom:2px solid #16a34a;
      transform: rotate(-45deg);
    }
    .checklist li{color: rgba(29,36,51,.82); line-height:1.55; font-weight:650; font-size:13.7px}

    .scene-list{display:flex; flex-direction:column; gap:10px}
    .scene-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 10px 10px;
      border-radius: 18px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.65);
    }
    .scene-dot{width:12px; height:12px; border-radius:4px; margin-top:6px}
    .dot-a{background: linear-gradient(135deg, var(--primary), var(--primary2))}
    .dot-b{background: linear-gradient(135deg, var(--teal), var(--primary2))}
    .dot-c{background: linear-gradient(135deg, var(--amber), var(--primary))}
    .dot-d{background: linear-gradient(135deg, var(--primary2), var(--teal))}
    .dot-e{background: linear-gradient(135deg, var(--primary), var(--amber))}
    .dot-f{background: linear-gradient(135deg, var(--teal), var(--primary))}
    .scene-name{font-weight:880; font-size:14px}
    .scene-desc{color: rgba(29,36,51,.76); margin-top:4px; line-height:1.45; font-size:12.8px}

    .model-cloud{display:flex; flex-wrap:wrap; gap:10px; padding-top:4px; margin-bottom:12px}
    .service-note{
      display:flex; align-items:flex-start; gap:10px;
      padding: 10px 12px;
      border-radius: 18px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.65);
    }
    .note-icon{width:16px; height:16px; border-radius:6px; background: rgba(124,58,237,.12); border:1px solid rgba(124,58,237,.22); margin-top:2px}
    .note-text{margin:0; color: rgba(29,36,51,.78); line-height:1.55; font-size:12.8px}

    .cta-row{margin-top:14px}
    .cta-outer{
      display:flex; align-items:center; justify-content:space-between;
      gap:18px; padding: 18px;
      background: linear-gradient(135deg, rgba(255,47,109,.10), rgba(124,58,237,.10));
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      box-shadow: 0 18px 60px rgba(255,47,109,.10);
    }
    .cta-copy{flex:1}
    .cta-title{font-weight:920; font-size:18px; letter-spacing:-.2px}
    .cta-sub{margin-top:6px; color: rgba(29,36,51,.78); line-height:1.6}

    .two-col{display:grid; grid-template-columns: 1.15fr .85fr; gap:14px; align-items:start}
    .panel{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
    }
    .panel-steps{display:flex; flex-direction:column; gap:12px; margin-top:12px}
    .panel-step{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 20px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.66);
    }
    .step-num{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:940;
      background: rgba(255,47,109,.10);
      border:1px solid rgba(255,47,109,.20);
      color:#a10f37;
      flex:0 0 auto;
    }
    .step-title{font-weight:900}
    .step-desc{margin-top:5px; color: rgba(29,36,51,.76); line-height:1.55; font-size:13.2px}

    .side-panel{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      overflow:hidden;
      position:relative;
    }
    .side-panel:after{
      content:"";
      position:absolute; right:-90px; top:-90px;
      width:220px; height:220px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(20,184,166,.22), transparent 60%);
      opacity:.9; pointer-events:none;
    }
    .side-panel > *{position:relative}
    .side-panel-top{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px}
    .side-panel-title{font-weight:940}
    .side-panel-chip{padding: 6px 10px; border-radius:999px; border:1px solid rgba(20,184,166,.22); background: rgba(20,184,166,.08); color:#0f766e; font-weight:860; font-size:12.5px}
    .network-list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
    .bullet{width:10px; height:10px; border-radius:4px; background: linear-gradient(135deg, var(--teal), var(--primary2)); display:inline-block; margin-right:10px; position:relative; top:1px}
    .network-list li{color: rgba(29,36,51,.82); font-weight:650; line-height:1.55; font-size:13.6px}
    .side-panel-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
    .micro-cards{display:grid; grid-template-columns:1fr; gap:10px; margin-top:14px}
    .micro-card{
      padding: 12px 12px;
      border-radius: 20px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.68);
    }
    .micro-title{font-weight:920}
    .micro-desc{margin-top:5px; color: rgba(29,36,51,.76); line-height:1.55; font-size:13px}

    .industry-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px}
    .industry-card{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 24px;
      padding: 14px;
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      transition: transform .2s ease, border-color .2s ease;
      min-height: 212px;
    }
    .industry-card:hover{transform: translateY(-2px); border-color: rgba(124,58,237,.22)}
    .industry-top{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:12px}
    .industry-icon{width:18px; height:18px; border-radius:7px}
    .ind-a{background: linear-gradient(135deg, var(--primary), var(--primary2))}
    .ind-b{background: linear-gradient(135deg, rgba(236,72,153,1), var(--primary2))}
    .ind-c{background: linear-gradient(135deg, var(--teal), var(--primary))}
    .ind-d{background: linear-gradient(135deg, var(--amber), var(--primary))}
    .industry-title{font-weight:940}
    .mini-list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:9px}
    .mini-list li{color: rgba(29,36,51,.78); line-height:1.55; font-weight:650; font-size:13.6px}

    .network-map-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 28px;
      padding: 18px;
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .network-map-card:before{
      content:"";
      position:absolute;
      width:520px; height:520px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,47,109,.16), transparent 60%),
                  radial-gradient(circle at 40% 20%, rgba(20,184,166,.12), transparent 62%);
      opacity:.8;
      pointer-events:none;
    }
    .network-map-card{position:relative}
    .map-top{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom: 12px}
    .map-title{font-weight:980; font-size:18px}
    .map-sub{color: rgba(29,36,51,.76); line-height:1.6}
    .map-grid{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px;
    }
    .node{
      padding: 14px 12px;
      border-radius: 22px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.68);
      transition: transform .2s ease, border-color .2s ease;
    }
    .node:hover{transform: translateY(-2px); border-color: rgba(255,47,109,.22)}
    .node-icon{width:18px; height:18px; border-radius:7px; margin-bottom:10px}
    .n1{background: linear-gradient(135deg, var(--primary), var(--primary2))}
    .n2{background: linear-gradient(135deg, var(--teal), var(--primary2))}
    .n3{background: linear-gradient(135deg, var(--amber), var(--primary))}
    .n4{background: linear-gradient(135deg, var(--primary2), var(--teal))}
    .n5{background: linear-gradient(135deg, rgba(99,102,241,1), rgba(236,72,153,1))}
    .n6{background: linear-gradient(135deg, rgba(20,184,166,1), rgba(255,47,109,1))}
    .node-title{font-weight:940}
    .node-desc{margin-top:5px; color: rgba(29,36,51,.76); line-height:1.55; font-size:13.2px}
    .map-bottom{display:flex; gap:12px; justify-content:flex-end; margin-top:14px; flex-wrap:wrap}

    .timeline{
      display:flex; flex-direction:column; gap:12px;
      padding: 12px 0 0;
    }
    .timeline-item{display:flex; gap:12px; align-items:flex-start}
    .timeline-dot{
      width:14px; height:14px; border-radius:6px;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      margin-top:12px;
      box-shadow: 0 16px 40px rgba(255,47,109,.22);
      flex:0 0 auto;
    }
    .timeline-card{
      flex:1;
      background: rgba(255,255,255,.84);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 22px;
      padding: 14px 14px;
      box-shadow: 0 18px 44px rgba(15,23,42,.06);
      transition: transform .2s ease, border-color .2s ease;
    }
    .timeline-card:hover{transform: translateY(-2px); border-color: rgba(124,58,237,.22)}
    .timeline-title{font-weight:960}
    .timeline-desc{margin-top:6px; color: rgba(29,36,51,.78); line-height:1.6; font-size:13.9px}

    .flow-bottom{
      display:flex; justify-content:space-between; align-items:center; gap:16px; margin-top:14px; flex-wrap:wrap;
    }
    .flow-callout{
      display:flex; gap:12px; align-items:flex-start;
      background: rgba(255,255,255,.84);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      max-width: 640px;
      box-shadow: 0 18px 44px rgba(15,23,42,.06);
    }
    .callout-icon{
      width:22px; height:22px; border-radius:9px;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 16px 40px rgba(255,47,109,.22);
      margin-top:2px;
      flex:0 0 auto;
    }
    .callout-title{font-weight:980}
    .callout-desc{margin-top:6px; color: rgba(29,36,51,.78); line-height:1.6; font-size:13.8px}
    .flow-actions{display:flex; gap:12px; flex-wrap:wrap}

    .case-grid{
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .case-card{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      overflow:hidden;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      display:flex; flex-direction:column;
      min-height: 250px;
    }
    .case-card:hover{transform: translateY(-3px); border-color: rgba(255,47,109,.22); box-shadow: 0 26px 70px rgba(255,47,109,.12)}
    .case-media{
      height: 88px;
      background:
        radial-gradient(300px 90px at 15% 20%, rgba(255,47,109,.30), transparent 60%),
        radial-gradient(300px 90px at 70% 10%, rgba(124,58,237,.26), transparent 60%),
        linear-gradient(135deg, rgba(255,47,109,.10), rgba(124,58,237,.08));
      border-bottom:1px solid rgba(18,28,45,.08);
    }
    .case-media.media-b{
      background:
        radial-gradient(320px 90px at 20% 10%, rgba(20,184,166,.28), transparent 60%),
        radial-gradient(320px 90px at 80% 20%, rgba(255,47,109,.24), transparent 60%),
        linear-gradient(135deg, rgba(20,184,166,.10), rgba(255,47,109,.08));
    }
    .case-media.media-c{
      background:
        radial-gradient(320px 90px at 18% 15%, rgba(124,58,237,.30), transparent 60%),
        radial-gradient(320px 90px at 75% 15%, rgba(245,158,11,.22), transparent 60%),
        linear-gradient(135deg, rgba(124,58,237,.10), rgba(245,158,11,.08));
    }
    .case-media.media-d{
      background:
        radial-gradient(320px 90px at 18% 15%, rgba(245,158,11,.26), transparent 60%),
        radial-gradient(320px 90px at 80% 15%, rgba(20,184,166,.22), transparent 60%),
        linear-gradient(135deg, rgba(245,158,11,.10), rgba(20,184,166,.08));
    }
    .case-body{padding: 14px; display:flex; flex-direction:column; gap:10px; flex:1}
    .case-top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
    .case-title{font-weight:980}
    .case-desc{margin:0; color: rgba(29,36,51,.78); line-height:1.6; font-size:13.8px}
    .case-tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:auto}
    .case-bottom{
      margin-top:14px;
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap;
    }
    .case-info-title{font-weight:980; font-size:18px}
    .case-info-desc{margin-top:6px; color: rgba(29,36,51,.78); line-height:1.6; max-width:650px}
    .case-actions{display:flex; gap:12px; flex-wrap:wrap}

    .eval-top{display:grid; grid-template-columns: .55fr .45fr; gap:14px; align-items:start}
    .rating-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .rating-card:after{
      content:""; position:absolute; right:-120px; top:-120px;
      width:260px; height:260px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,47,109,.22), transparent 60%);
      opacity:.9; pointer-events:none;
    }
    .rating-card>*{position:relative}
    .rating-row{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .rating-stars{font-size:20px; letter-spacing:2px; color:#f59e0b}
    .rating-score{text-align:right}
    .score-big{font-weight:980; font-size:34px; letter-spacing:-.5px; line-height:1}
    .score-sub{margin-top:6px; color: rgba(29,36,51,.76); font-weight:720}
    .rating-desc{margin-top:10px; font-weight:860}
    .eval-note{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
    }
    .eval-note-title{font-weight:980; margin-bottom:10px}
    .table-wrap{
      margin-top: 14px;
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 28px;
      padding: 16px;
      box-shadow: var(--shadow);
    }
    .table-head{margin-bottom:10px}
    .table-title{font-weight:980; font-size:16.5px}
    .table-sub{margin-top:6px; color: rgba(29,36,51,.76); line-height:1.6; font-size:13.3px}
    .table-scroll{overflow:auto; border-radius: 18px; border:1px solid rgba(18,28,45,.08)}
    table.compare-table{width:100%; min-width: 680px; border-collapse:collapse; background:#fff}
    .compare-table th,.compare-table td{
      padding: 12px 12px;
      border-bottom:1px solid rgba(18,28,45,.08);
      vertical-align:top;
      font-size:13.6px;
    }
    .compare-table th{
      text-align:left;
      background: linear-gradient(135deg, rgba(255,47,109,.10), rgba(124,58,237,.08));
      color: rgba(29,36,51,.92);
      font-weight:960;
      position:sticky; top:0;
      z-index:1;
    }
    .compare-table td{color: rgba(29,36,51,.78); line-height:1.6; font-weight:650}
    .table-actions{display:flex; gap:12px; margin-top:12px; justify-content:flex-end; flex-wrap:wrap}

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

    .match-grid{display:grid; grid-template-columns: .9fr 1.1fr; gap:14px; align-items:start}
    .match-info{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
    }
    .match-title{font-weight:980; font-size:18px; margin-bottom:12px}
    .checklist li{font-size:13.8px}
    .match-highlights{display:flex; flex-direction:column; gap:10px; margin-top:14px}
    .hl{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 22px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.66);
    }
    .hl-icon{
      width:20px; height:20px; border-radius:8px;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 18px 40px rgba(255,47,109,.20);
      margin-top:2px; flex:0 0 auto;
    }
    .hl-icon.alt{
      background: linear-gradient(135deg, var(--teal), var(--primary2));
      box-shadow: 0 18px 40px rgba(124,58,237,.14);
    }
    .hl-title{font-weight:980}
    .hl-desc{margin-top:6px; color: rgba(29,36,51,.76); line-height:1.6; font-size:13.6px}
    .match-quick{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

    .form-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: var(--shadow);
    }
    .form-head{margin-bottom:10px}
    .form-title{font-weight:980; font-size:18px}
    .form-sub{margin-top:6px; color: rgba(29,36,51,.76); line-height:1.6; font-size:13.5px}
    .form{margin-top:10px}
    .form-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field-full{grid-column: 1 / -1}
    .field-label{font-weight:860; color: rgba(29,36,51,.86); font-size:13.4px}
    .input{
      width:100%;
      border:1px solid rgba(18,28,45,.14);
      background: rgba(255,255,255,.90);
      border-radius: 16px;
      padding: 12px 12px;
      font-size:14px;
      outline:none;
      transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
      color: rgba(29,36,51,.92);
    }
    .textarea{resize:vertical; min-height:120px}
    .input:focus{
      border-color: rgba(255,47,109,.42);
      box-shadow: 0 0 0 4px rgba(255,47,109,.12);
    }
    .form-bottom{
      margin-top:14px;
      display:flex; gap:14px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
    }
    .form-result{
      width:100%;
      margin-top:10px;
      min-height: 22px;
      font-size:13.6px;
      color: rgba(29,36,51,.78);
    }
    .shield{
      width:16px; height:16px; border-radius:6px;
      background: rgba(20,184,166,.12);
      border:1px solid rgba(20,184,166,.22);
      display:inline-block;
      margin-right:8px;
      position:relative; top:2px;
    }
    .form-privacy{
      display:flex; align-items:flex-start; gap:6px;
      color: rgba(29,36,51,.72);
      font-size:13.2px;
      line-height:1.5;
      max-width: 420px;
    }
    .btn-spinner{
      width:14px; height:14px; border-radius:50%;
      border:2px solid rgba(255,255,255,.35);
      border-top-color: rgba(255,255,255,.95);
      display:none;
      animation: spin .8s linear infinite;
    }
    .btn[aria-busy="true"] .btn-spinner{display:inline-block}
    @keyframes spin{to{transform:rotate(360deg)}}

    .pricing-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px; align-items:start}
    .pricing-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: var(--shadow);
    }
    .pricing-top{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:12px}
    .pricing-title{font-weight:980; font-size:18px}
    .pricing-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
    .price-table{
      border-radius: 20px;
      border:1px solid rgba(18,28,45,.08);
      overflow:hidden;
      background:#fff;
    }
    .price-row{display:grid; grid-template-columns: 1fr 1.2fr 1.1fr}
    .price-row.head{
      background: linear-gradient(135deg, rgba(255,47,109,.10), rgba(124,58,237,.08));
      font-weight:980;
      color: rgba(29,36,51,.92);
      border-bottom:1px solid rgba(18,28,45,.08);
    }
    .price-cell{
      padding: 12px 12px;
      border-bottom:1px solid rgba(18,28,45,.08);
      font-size:13.6px;
      font-weight:700;
      color: rgba(29,36,51,.78);
    }
    .price-row:last-child .price-cell{border-bottom:none}
    .price-row:not(.head) .price-cell{background: rgba(255,255,255,.97)}
    .price-foot{
      display:flex; gap:12px; align-items:flex-start;
      margin-top:14px;
      padding: 12px 12px;
      border-radius: 22px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.66);
    }
    .price-icon{
      width:18px; height:18px; border-radius:7px;
      background: linear-gradient(135deg, var(--amber), var(--primary));
      box-shadow: 0 18px 40px rgba(245,158,11,.20);
      flex:0 0 auto; margin-top:2px;
    }
    .price-foot-title{font-weight:980}
    .price-foot-desc{margin-top:6px; color: rgba(29,36,51,.76); line-height:1.6; font-size:13.4px}

    .ticker-wrap{margin-top:14px}
    .ticker{
      display:flex; gap:18px; flex-wrap:wrap;
      padding: 12px 14px;
      border-radius: 24px;
      border:1px solid rgba(18,28,45,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 18px 44px rgba(15,23,42,.06);
    }
    .ticker-item{
      font-weight:860;
      color: rgba(29,36,51,.82);
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.72);
    }

    .training-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
    .training-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: var(--shadow);
    }
    .training-title-row{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:12px}
    .training-title{font-weight:980; font-size:18px; letter-spacing:-.2px}
    .training-pill-grid{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-bottom:12px;
    }
    .pill2{
      padding: 10px 12px;
      border-radius: 999px;
      border:1px solid rgba(18,28,45,.12);
      background: rgba(255,255,255,.72);
      font-weight:860;
      color: rgba(29,36,51,.86);
      font-size:13.2px;
    }
    .role-grid{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:6px}
    .role-item{
      padding: 12px 12px;
      border-radius: 22px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.66);
    }
    .role-head{font-weight:960}
    .role-desc{margin-top:6px; color: rgba(29,36,51,.76); line-height:1.6; font-size:13.2px}
    .training-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
    .training-cta{
      margin-top:14px;
      display:flex; justify-content:space-between; gap:14px; align-items:flex-end; flex-wrap:wrap;
      padding: 14px 14px;
      border-radius: 26px;
      border:1px solid rgba(18,28,45,.10);
      background: linear-gradient(135deg, rgba(255,47,109,.08), rgba(124,58,237,.08));
    }
    .training-cta-title{font-weight:980}
    .training-cta-desc{margin-top:6px; color: rgba(29,36,51,.78); line-height:1.6; font-size:13.6px}

    .help-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
    .help-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .help-card-img:after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(520px 240px at 10% 10%, rgba(255,47,109,.16), transparent 60%),
        radial-gradient(520px 240px at 90% 10%, rgba(20,184,166,.12), transparent 60%);
      opacity:.6; pointer-events:none;
    }
    .help-card>*{position:relative}
    .help-title{font-weight:980; font-size:18px}
    .help-sub{margin-top:6px; color: rgba(29,36,51,.78); line-height:1.6; font-size:13.6px}
    .help-ol{padding-left: 18px; margin: 12px 0; color: rgba(29,36,51,.78); line-height:1.7; font-weight:650}
    .help-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
    .quick-links{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:10px}
    .quick-link{
      padding: 12px 12px;
      border-radius: 18px;
      border:1px solid rgba(18,28,45,.10);
      background: rgba(255,255,255,.70);
      font-weight:860;
      color: rgba(29,36,51,.88);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .quick-link:hover{transform: translateY(-2px); border-color: rgba(255,47,109,.22); background: rgba(255,47,109,.06)}
    .help-banner{
      margin-top: 14px;
      display:flex; justify-content:space-between; gap:14px; align-items:center; flex-wrap:wrap;
      padding: 14px 14px;
      border-radius: 26px;
      border:1px solid rgba(18,28,45,.10);
      background: rgba(255,255,255,.66);
    }
    .help-banner-title{font-weight:980}
    .help-banner-desc{margin-top:6px; color: rgba(29,36,51,.76); line-height:1.6; font-size:13.4px}

    .faq-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
    .faq-col{display:flex; flex-direction:column; gap:12px}
    .faq-item{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 22px;
      padding: 0;
      overflow:hidden;
      box-shadow: 0 18px 44px rgba(15,23,42,.06);
    }
    .faq-q{
      width:100%;
      text-align:left;
      padding: 14px 14px;
      background: transparent;
      border:none;
      cursor:pointer;
      font-weight:920;
      letter-spacing:-.2px;
      color: rgba(29,36,51,.92);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .faq-icon{
      width:30px; height:30px;
      border-radius: 14px;
      border:1px solid rgba(18,28,45,.12);
      background: rgba(255,255,255,.70);
      position:relative; flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease;
    }
    .faq-icon:before,.faq-icon:after{
      content:""; position:absolute;
      left:50%; top:50%;
      width:14px; height:2px;
      background: rgba(29,36,51,.78);
      transform: translate(-50%,-50%);
      border-radius:10px;
    }
    .faq-icon:after{
      width:2px; height:14px;
      background: rgba(29,36,51,.78);
      transition: opacity .2s ease;
    }
    .faq-item[data-open="true"] .faq-icon:after{opacity:0}
    .faq-a{
      padding: 0 14px 14px;
      color: rgba(29,36,51,.78);
      line-height:1.75;
      font-size:13.8px;
      font-weight:650;
    }
    .faq-bottom{margin-top:14px}
    .faq-btm-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: var(--shadow);
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .faq-btm-title{font-weight:980; font-size:18px}
    .faq-btm-desc{margin-top:6px; color: rgba(29,36,51,.78); line-height:1.6; font-size:13.6px}
    .faq-btm-actions{display:flex; gap:12px; flex-wrap:wrap}

    .wiki-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px}
    .wiki-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 14px;
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      transition: transform .2s ease, border-color .2s ease;
    }
    .wiki-card:hover{transform: translateY(-3px); border-color: rgba(124,58,237,.22)}
    .wiki-top{display:flex; align-items:center; gap:12px; margin-bottom:10px}
    .wiki-icon{width:20px; height:20px; border-radius:8px; background: linear-gradient(135deg, var(--primary), var(--primary2)); box-shadow: 0 18px 40px rgba(255,47,109,.18)}
    .wiki-icon.alt{background: linear-gradient(135deg, var(--teal), var(--primary2))}
    .wiki-icon.alt2{background: linear-gradient(135deg, var(--amber), var(--primary))}
    .wiki-icon.alt3{background: linear-gradient(135deg, rgba(99,102,241,1), rgba(20,184,166,1))}
    .wiki-title{font-weight:980}
    .wiki-desc{margin:0; color: rgba(29,36,51,.78); line-height:1.7; font-weight:650; font-size:13.6px}
    .wiki-link{
      display:inline-flex; margin-top:12px;
      padding: 10px 12px;
      border-radius: 18px;
      border:1px solid rgba(18,28,45,.10);
      background: rgba(255,255,255,.70);
      font-weight:860;
      color: rgba(29,36,51,.88);
      transition: transform .15s ease, border-color .15s ease;
    }
    .wiki-link:hover{transform: translateY(-2px); border-color: rgba(255,47,109,.22)}
    .tag-section{margin-top:14px; background: rgba(255,255,255,.86); border:1px solid rgba(18,28,45,.10); border-radius: 26px; padding:16px; box-shadow: 0 18px 50px rgba(15,23,42,.06)}
    .tag-section-title{font-weight:980; margin-bottom:12px}
    .tag.chip-like{font-size:13.2px}

    .news-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start}
    .news-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: var(--shadow);
    }
    .news-top{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:10px; flex-wrap:wrap}
    .news-title{font-weight:980; font-size:18px}
    .news-sub{color: rgba(29,36,51,.76); font-weight:720}
    .news-list{display:flex; flex-direction:column; gap:10px; margin-top:10px}
    .news-item{
      display:flex; align-items:flex-start; gap:12px;
      padding: 12px 12px;
      border-radius: 22px;
      border:1px solid rgba(18,28,45,.10);
      background: rgba(255,255,255,.70);
      transition: transform .2s ease, border-color .2s ease;
    }
    .news-item:hover{transform: translateY(-2px); border-color: rgba(255,47,109,.22)}
    .news-dot{
      width:12px; height:12px; border-radius:4px;
      margin-top:6px;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 18px 40px rgba(255,47,109,.18);
      flex:0 0 auto;
    }
    .news-item-title{font-weight:940; color: rgba(29,36,51,.92)}
    .news-item-meta{margin-top:6px; color: rgba(29,36,51,.70); font-size:13px; font-weight:720}
    .news-more{margin-top:12px}

    .news-side{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: var(--shadow);
    }
    .news-side-title{font-weight:980; font-size:18px; margin-bottom:10px}
    .links-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:10px;
    }
    .links-grid a{
      padding: 10px 12px;
      border-radius: 18px;
      border:1px solid rgba(18,28,45,.10);
      background: rgba(255,255,255,.70);
      font-weight:860;
      color: rgba(29,36,51,.86);
      font-size:13.2px;
      transition: transform .15s ease, border-color .15s ease;
    }
    .links-grid a:hover{transform: translateY(-2px); border-color: rgba(124,58,237,.22)}
    .news-side-tip{
      margin-top:14px;
      padding: 14px 14px;
      border-radius: 26px;
      border:1px solid rgba(18,28,45,.10);
      background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(20,184,166,.08));
      display:flex; gap:12px; align-items:flex-start;
    }
    .tip-icon{
      width:20px; height:20px; border-radius:8px;
      background: linear-gradient(135deg, var(--primary2), var(--teal));
      box-shadow: 0 18px 40px rgba(124,58,237,.16);
      flex:0 0 auto; margin-top:2px;
    }
    .tip-title{font-weight:980}
    .tip-desc{margin-top:6px; color: rgba(29,36,51,.78); line-height:1.6; font-size:13.4px}
    .news-side-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

    .contact-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px; align-items:start}
    .contact-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: var(--shadow);
    }
    .contact-title-row{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px}
    .contact-title{font-weight:980; font-size:18px}

    .contact-items{display:grid; grid-template-columns: 1fr; gap:10px; margin-bottom:14px}
    .contact-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 22px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.66);
    }
    .ci-icon{width:20px; height:20px; border-radius:9px; flex:0 0 auto; margin-top:2px}
    .ci-mail{background: linear-gradient(135deg, rgba(255,47,109,1), rgba(124,58,237,1))}
    .ci-qq{background: linear-gradient(135deg, rgba(20,184,166,1), rgba(124,58,237,1))}
    .ci-wechat{background: linear-gradient(135deg, rgba(245,158,11,1), rgba(255,47,109,1))}
    .ci-video{background: linear-gradient(135deg, rgba(99,102,241,1), rgba(20,184,166,1))}
    .ci-label{color: rgba(29,36,51,.64); font-size:12.8px; font-weight:800}
    .ci-value{margin-top:6px; font-weight:920}
    .link{color: rgba(29,36,51,.92); text-decoration:underline; text-decoration-thickness: 2px; text-underline-offset: 3px}
    .contact-qr{
      display:flex; gap:12px; align-items:center;
      padding: 14px 12px;
      border-radius: 26px;
      border:1px solid rgba(18,28,45,.10);
      background: rgba(255,255,255,.66);
      margin-bottom:14px;
    }
    .qr-img{
      width:92px; height:92px;
      border-radius: 18px;
      object-fit: cover;
      border:1px solid rgba(18,28,45,.12);
      background:#fff;
    }
    .qr-caption{line-height:1.2}
    .qr-title{font-weight:980}
    .qr-desc{margin-top:8px; color: rgba(29,36,51,.78); line-height:1.6; font-size:13.4px}
    .contact-actions{display:flex; gap:12px; flex-wrap:wrap}

    .contact-formsuggest{padding: 12px 12px; border-radius: 26px; border:1px solid rgba(18,28,45,.10); background: rgba(255,255,255,.66); margin-bottom:14px}
    .suggest-title{font-weight:980; margin-bottom:8px}
    .quick-form .quick-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    .field-full textarea{min-height:130px}
    .quick-bottom{display:flex; gap:14px; justify-content:space-between; align-items:center; flex-wrap:wrap; margin-top:14px}
    .quick-right{color: rgba(29,36,51,.72); font-weight:760; display:flex; gap:10px; align-items:center; flex-wrap:wrap}

    .quick-form .form-result{margin-top:12px}
    .contact-banner{
      margin-top:14px;
      padding: 14px 14px;
      border-radius: 26px;
      border:1px solid rgba(18,28,45,.10);
      background: linear-gradient(135deg, rgba(255,47,109,.08), rgba(20,184,166,.08));
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .contact-banner-title{font-weight:980}
    .contact-banner-desc{margin-top:6px; color: rgba(29,36,51,.78); line-height:1.6; font-size:13.4px}

    .join-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start}
    .join-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: var(--shadow);
    }
    .join-title-row{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px}
    .join-title{font-weight:980; font-size:18px}
    .join-model{display:flex; flex-direction:column; gap:12px}
    .join-model-row{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 22px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.66);
    }
    .join-step-num{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.22);
      color:#4c1d95; flex:0 0 auto;
    }
    .join-step-title{font-weight:980}
    .join-step-desc{margin-top:6px; color: rgba(29,36,51,.76); line-height:1.6; font-size:13.4px}
    .join-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
    .join-partners{display:flex; flex-direction:column; gap:12px; margin-top:10px}
    .partner-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 22px;
      border:1px solid rgba(18,28,45,.08);
      background: rgba(255,255,255,.66);
    }
    .partner-icon{width:20px; height:20px; border-radius:9px; flex:0 0 auto; margin-top:2px}
    .p1{background: linear-gradient(135deg, var(--primary), var(--primary2))}
    .p2{background: linear-gradient(135deg, var(--teal), var(--primary2))}
    .p3{background: linear-gradient(135deg, var(--amber), var(--primary))}
    .p4{background: linear-gradient(135deg, rgba(99,102,241,1), rgba(20,184,166,1))}
    .partner-title{font-weight:980}
    .partner-desc{margin-top:6px; color: rgba(29,36,51,.76); line-height:1.6; font-size:13.4px}

    .join-faq{margin-top:14px; padding: 12px 12px; border-radius: 26px; border:1px solid rgba(18,28,45,.10); background: rgba(255,255,255,.66)}
    .join-faq-title{font-weight:980; margin-bottom:10px}
    .choice-grid{display:flex; gap:10px; flex-wrap:wrap}
    .choice{
      padding: 10px 12px; border-radius: 999px;
      border:1px solid rgba(18,28,45,.10);
      background: rgba(255,255,255,.72);
      font-weight:860; color: rgba(29,36,51,.86);
      font-size:13.2px;
    }
    .join-foot{
      margin-top:14px;
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
      padding: 14px 14px;
      border-radius: 26px;
      border:1px solid rgba(18,28,45,.10);
      background: linear-gradient(135deg, rgba(255,47,109,.08), rgba(124,58,237,.08));
    }
    .join-foot-title{font-weight:980}
    .join-foot-desc{margin-top:6px; color: rgba(29,36,51,.78); line-height:1.6; font-size:13.4px}

    .reviews{margin-top:20px}
    .review-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; margin-top:14px}
    .review-card{
      background: rgba(255,255,255,.88);
      border:1px solid rgba(18,28,45,.10);
      border-radius: 26px;
      padding: 14px;
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      transition: transform .2s ease, border-color .2s ease;
      min-height: 214px;
      display:flex; flex-direction:column;
    }
    .review-card:hover{transform: translateY(-3px); border-color: rgba(255,47,109,.22)}
    .review-top{display:flex; gap:12px; align-items:flex-start}
    .avatar{
      width:42px; height:42px; border-radius: 18px;
      background: linear-gradient(135deg, rgba(255,47,109,1), rgba(124,58,237,1));
      box-shadow: 0 18px 40px rgba(255,47,109,.18);
      flex:0 0 auto;
      border:1px solid rgba(18,28,45,.10);
    }
    .avatar-b{background: linear-gradient(135deg, rgba(20,184,166,1), rgba(124,58,237,1))}
    .avatar-c{background: linear-gradient(135deg, rgba(245,158,11,1), rgba(255,47,109,1))}
    .avatar-d{background: linear-gradient(135deg, rgba(99,102,241,1), rgba(20,184,166,1))}
    .avatar-e{background: linear-gradient(135deg, rgba(236,72,153,1), rgba(124,58,237,1))}
    .avatar-f{background: linear-gradient(135deg, rgba(20,184,166,1), rgba(255,47,109,1))}
    .review-name{font-weight:980}
    .review-meta{margin-top:6px; color: rgba(29,36,51,.72); font-size:13px; font-weight:720; line-height:1.4}
    .review-text{margin:12px 0 0; color: rgba(29,36,51,.78); line-height:1.75; font-size:13.6px; font-weight:650}
    .review-stars{margin-top:auto; padding-top:10px; color:#f59e0b; letter-spacing:1px; font-size:16px}

    .site-footer{
      background: rgba(15,23,42,.92);
      color:#fff;
      margin-top:10px;
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .site-footer a{color:#e5e7eb}
    .footer-inner{padding: 28px var(--pad) 18px}
    .footer-top{display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap}
    .footer-brand{display:flex; gap:14px; align-items:flex-start}
    .footer-logo-img{width:44px; height:auto; border-radius: 14px; border:1px solid rgba(255,255,255,.14); background:#fff}
    .footer-brand-name{font-weight:980; font-size:18px}
    .footer-brand-desc{margin-top:6px; color: rgba(229,231,235,.86); line-height:1.6; font-size:13.4px; max-width: 420px}
    .footer-links{display:flex; gap:18px; flex-wrap:wrap}
    .footer-col{min-width: 180px}
    .footer-col-title{font-weight:980; margin-bottom:10px; color:#fff}
    .footer-link{
      display:block; padding: 8px 0;
      color: rgba(229,231,235,.86);
      font-weight:720;
      text-decoration:none;
    }
    .footer-link:hover{color:#fff; text-decoration:underline}
    .footer-bottom{
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,.12);
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .copyright{font-weight:760; color: rgba(229,231,235,.88)}
    .footer-meta{margin-top:8px; display:flex; gap:10px; flex-wrap:wrap; color: rgba(229,231,235,.84); font-weight:720; font-size:13px}
    .sep{opacity:.7}
    .footer-bottom-right{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
    .ai-page-home-link{
      display:inline-flex;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      font-weight:900;
      color:#fff;
    }
    .footer-home-link:hover{background: rgba(255,255,255,.10)}
    .to-top{
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
      color:#fff;
      border-radius: 14px;
      padding: 10px 12px;
      cursor:pointer;
      font-weight:900;
      transition: transform .15s ease, background .15s ease;
    }
    .to-top:hover{transform: translateY(-2px); background: rgba(255,255,255,.10)}

    .float-customer{
      position:fixed; right: 14px; bottom: 16px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-customer-link{
      display:flex; align-items:center; gap:10px;
      padding: 12px 14px;
      border-radius: 18px;
      border:1px solid rgba(255,47,109,.26);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 50px rgba(255,47,109,.16);
      color: rgba(29,36,51,.92);
      font-weight:980;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .float-customer-link:hover{transform: translateY(-2px); box-shadow: 0 24px 70px rgba(255,47,109,.22)}
    .float-icon{
      width:18px; height:18px; border-radius:7px;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 18px 40px rgba(255,47,109,.18);
    }
    .float-icon.i2{
      background: linear-gradient(135deg, var(--teal), var(--primary2));
      box-shadow: 0 18px 40px rgba(124,58,237,.14);
    }
    .float-text{font-size:13.6px}
    .float-whats{
      width:48px; height:48px;
      border-radius: 18px;
      border:1px solid rgba(18,28,45,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 50px rgba(15,23,42,.10);
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease;
    }
    .float-whats:hover{transform: translateY(-2px)}
    .backdrop-top{
      position:fixed; left: 14px; bottom: 16px;
      width:46px; height:46px; border-radius: 18px;
      border:1px solid rgba(18,28,45,.12);
      background: rgba(255,255,255,.88);
      color: rgba(29,36,51,.90);
      box-shadow: 0 18px 50px rgba(15,23,42,.10);
      cursor:pointer;
      font-size:20px;
      font-weight:900;
      z-index:80;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, opacity .15s ease;
      opacity:0;
      pointer-events:none;
    }
    .backdrop-top.show{opacity:1; pointer-events:auto}
    .backdrop-top:hover{transform: translateY(-2px)}

    @media (max-width: 980px){
      .hero-inner{grid-template-columns:1fr; gap:14px}
      .nav-desktop{display:none}
      .nav-mobile{display:block}
      .hero-metrics{grid-template-columns:1fr; gap:10px}
      .grid-3{grid-template-columns:1fr; }
      .service-grid{grid-template-columns:1fr}
      .two-col{grid-template-columns:1fr}
      .industry-grid{grid-template-columns:1fr 1fr}
      .map-grid{grid-template-columns:1fr 1fr}
      .case-grid{grid-template-columns:1fr 1fr}
      .eval-top{grid-template-columns:1fr}
      .match-grid{grid-template-columns:1fr}
      .pricing-grid{grid-template-columns:1fr}
      .training-grid{grid-template-columns:1fr}
      .help-grid{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
      .wiki-grid{grid-template-columns:1fr 1fr}
      .news-grid{grid-template-columns:1fr}
      .contact-grid{grid-template-columns:1fr}
      .join-grid{grid-template-columns:1fr}
      .review-grid{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .quick-grid{grid-template-columns:1fr}
      .role-grid{grid-template-columns:1fr}
    }
    @media (prefers-reduced-motion: reduce){
      .reveal{transition:none}
      .btn{transition:none}
      .data-card, .feature-card, .case-card, .industry-card, .timeline-card{transition:none}
      .backdrop-top{transition:none}
    }