:root{
      --bg:#fbfbfe;
      --paper:#ffffff;
      --ink:#1f2937;
      --muted:#667085;
      --muted2:#7a879c;
      --line:rgba(15,23,42,.10);
      --shadow:0 10px 30px rgba(15,23,42,.10);
      --shadow2:0 14px 40px rgba(15,23,42,.14);
      --radius:18px;

      --brandA:#6d28d9; /* 紫 */
      --brandB:#e11d48; /* 玫红 */
      --brandC:#2563eb; /* 蓝 */
      --brandD:#f97316; /* 橙 */
      --good:#0ea5e9;
      --accent:#7c3aed;

      --btn:#121826;
      --btnText:#ffffff;

      --container:1160px;
      --gutter:20px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:
        radial-gradient(1200px 520px at 12% -10%, rgba(124,58,237,.14), rgba(124,58,237,0) 60%),
        radial-gradient(900px 430px at 95% 0%, rgba(225,29,72,.14), rgba(225,29,72,0) 55%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfe 30%, #f7f8ff 100%);
      color:var(--ink);
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      line-height:1.6;
    }
    a{color:inherit; text-decoration:none}
    .container{max-width:var(--container); margin:0 auto; padding:0 var(--gutter)}
    .skip-link{
      position:absolute; left:-999px; top:8px;
      background:#111827; color:#fff; padding:10px 12px; border-radius:12px;
      z-index:9999;
    }
    .skip-link:focus{left:12px}

    .site-header{
      position:sticky; top:0; z-index:50;
      background:rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .nav-container{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:16px;
    }
    .brand{display:flex; align-items:center; gap:12px; min-width:220px}
    .brand-link{display:flex; align-items:center; gap:12px}
    .ai-page-logo{
      width:46px; height:46px; object-fit:contain;
      background:rgba(255,255,255,.9);
      border-radius:14px;
      padding:6px;
      box-shadow:0 10px 26px rgba(17,24,39,.08);
      border:1px solid rgba(17,24,39,.08);
    }
    .brand-text{display:flex; flex-direction:column; gap:2px}
    .brand-name{font-weight:800; letter-spacing:.2px}
    .brand-sub{font-size:12px; color:var(--muted); white-space:nowrap}

    .desktop-nav{
      display:flex; align-items:center; gap:14px;
      flex-wrap:nowrap;
      overflow:hidden;
      mask-image: linear-gradient(90deg, #000 70%, transparent 100%);
    }
    .desktop-nav a{
      font-size:14px; color:rgba(31,41,55,.92);
      padding:8px 10px; border-radius:12px;
      border:1px solid transparent;
      transition:transform .2s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .desktop-nav a:hover{
      background:rgba(124,58,237,.08);
      border-color:rgba(124,58,237,.18);
      transform:translateY(-1px);
    }

    .nav-actions{display:flex; align-items:center; gap:10px; justify-content:flex-end}
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:#fff;
      color:#111827;
      font-weight:700;
      font-size:14px;
      cursor:pointer;
      transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform:translateY(1px)}
    .btn-primary{
      background:linear-gradient(135deg, var(--brandA), var(--brandB));
      border-color:rgba(124,58,237,.25);
      color:#fff;
      box-shadow:0 14px 30px rgba(124,58,237,.22);
    }
    .btn-primary:hover{box-shadow:0 18px 44px rgba(225,29,72,.20)}
    .btn-outline{
      background:rgba(255,255,255,.75);
      border-color:rgba(17,24,39,.18);
    }
    .btn-outline:hover{background:#fff; border-color:rgba(124,58,237,.30)}
    .btn-secondary{
      background:linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.12));
      border-color:rgba(37,99,235,.25);
      color:#0b1b3a;
    }
    .btn-secondary:hover{background:rgba(37,99,235,.14)}
    .btn-ghost{
      background:transparent;
      border-color:rgba(17,24,39,.14);
    }
    .btn-ghost:hover{background:rgba(124,58,237,.08); border-color:rgba(124,58,237,.22)}
    .btn-lg{padding:12px 18px; border-radius:16px; font-size:15px}
    .w-100{width:100%}

    .burger{
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.14);
      background:#fff;
      display:none;
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .16s ease, background .16s ease;
    }
    .burger span{
      display:block; width:18px; height:2px; background:#111827; border-radius:999px;
      margin:3px 0; transition:transform .2s ease, opacity .2s ease;
    }
    .mobile-menu{
      display:none;
      background:rgba(255,255,255,.9);
      border-bottom:1px solid rgba(17,24,39,.10);
    }

    .section{padding:64px 0}
    .section.alt{
      background:
        radial-gradient(900px 380px at 10% 0%, rgba(225,29,72,.10), rgba(225,29,72,0) 55%),
        radial-gradient(880px 420px at 90% 10%, rgba(37,99,235,.10), rgba(37,99,235,0) 55%);
      border-top:1px solid rgba(15,23,42,.06);
      border-bottom:1px solid rgba(15,23,42,.06);
    }
    .section-head{margin-bottom:22px}
    .section-title{
      margin:0;
      font-size:30px;
      letter-spacing:-.4px;
    }
    .section-sub{
      margin:10px 0 0;
      color:var(--muted);
      max-width:740px;
    }

    .hero{
      position:relative;
      padding:46px 0 44px;
      overflow:hidden;
      border-bottom:1px solid rgba(15,23,42,.06);
    }
    .hero-bg{
      position:absolute; inset:-220px -120px auto -120px;
      height:520px;
      background:
        radial-gradient(600px 240px at 15% 30%, rgba(124,58,237,.30), rgba(124,58,237,0) 60%),
        radial-gradient(520px 220px at 70% 15%, rgba(225,29,72,.24), rgba(225,29,72,0) 62%),
        radial-gradient(600px 240px at 90% 55%, rgba(37,99,235,.18), rgba(37,99,235,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,0));
      pointer-events:none;
      transform: translateZ(0);
      filter:saturate(1.05);
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:22px;
      align-items:start;
    }
    .hero-copy{padding:12px 0}
    .eyebrow{
      display:flex; align-items:center; gap:10px;
      color:rgba(31,41,55,.90);
      font-weight:700;
      letter-spacing:.2px;
      margin-bottom:16px;
    }
    .dot{
      width:12px; height:12px; border-radius:999px;
      background:linear-gradient(135deg, var(--brandA), var(--brandB));
      box-shadow:0 10px 24px rgba(124,58,237,.25);
    }
    .hero-title{
      margin:0;
      font-size:44px;
      line-height:1.15;
      letter-spacing:-.9px;
      max-width:760px;
    }
    .hero-desc{
      margin:16px 0 0;
      color:rgba(31,41,55,.86);
      max-width:640px;
      font-size:16px;
    }

    .hero-ctas{display:flex; gap:12px; margin-top:22px; flex-wrap:wrap}
    .hero-badges{
      margin-top:18px;
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .badge{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:12px;
      display:flex; gap:10px; align-items:flex-start;
      box-shadow:0 10px 25px rgba(15,23,42,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:92px;
    }
    .badge:hover{transform:translateY(-2px); box-shadow:0 18px 44px rgba(15,23,42,.10); border-color:rgba(124,58,237,.22)}
    .badge-ic{
      color:rgba(124,58,237,.95);
      width:34px; height:34px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(124,58,237,.12), rgba(225,29,72,.08));
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(124,58,237,.16);
      flex:0 0 auto;
    }
    .badge-title{font-weight:850; font-size:13.5px}
    .badge-sub{font-size:12.5px; color:var(--muted); margin-top:2px}

    .trust-strip{
      margin-top:16px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .trust-item{
      display:flex; align-items:center; gap:10px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      padding:10px 12px;
      border-radius:16px;
      box-shadow:0 10px 20px rgba(15,23,42,.05);
    }
    .trust-pill{
      font-size:12px; font-weight:850;
      color:rgba(31,41,55,.92);
      background:linear-gradient(135deg, rgba(124,58,237,.14), rgba(225,29,72,.10));
      border:1px solid rgba(124,58,237,.18);
      padding:6px 10px;
      border-radius:999px;
    }
    .trust-pill-2{
      background:linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.10));
      border-color:rgba(37,99,235,.22);
    }
    .trust-pill-3{
      background:linear-gradient(135deg, rgba(249,115,22,.15), rgba(225,29,72,.10));
      border-color:rgba(249,115,22,.24);
    }
    .trust-label{font-size:13px; color:rgba(31,41,55,.86); font-weight:750}

    .hero-panel{
      position:relative;
      background:rgba(255,255,255,.75);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      box-shadow:0 18px 60px rgba(15,23,42,.10);
      padding:16px;
      overflow:hidden;
      transform: translateZ(0);
    }
    .hero-panel:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(240px 140px at 15% 10%, rgba(124,58,237,.22), rgba(124,58,237,0) 60%),
        radial-gradient(260px 160px at 80% 20%, rgba(225,29,72,.18), rgba(225,29,72,0) 60%),
        radial-gradient(260px 160px at 65% 85%, rgba(37,99,235,.16), rgba(37,99,235,0) 60%);
      pointer-events:none;
      z-index:0;
    }
    .hero-panel > *{position:relative; z-index:1}
    .panel-top{margin-bottom:12px}
    .panel-title{font-weight:900; font-size:16px}
    .panel-note{color:var(--muted); font-size:13px; margin-top:6px}

    .metrics{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      margin-top:10px;
    }
    .metric-card{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:12px;
      display:flex; gap:12px; align-items:flex-start;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .metric-card:hover{transform:translateY(-2px); box-shadow:0 18px 44px rgba(15,23,42,.10)}
    .metric-ic{
      width:38px; height:38px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(124,58,237,.14), rgba(225,29,72,.10));
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      color:rgba(124,58,237,.95);
      flex:0 0 auto;
    }
    .metric-ic-2{background:linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.10)); border-color:rgba(37,99,235,.22); color:rgba(37,99,235,.95)}
    .metric-ic-3{background:linear-gradient(135deg, rgba(249,115,22,.16), rgba(225,29,72,.10)); border-color:rgba(249,115,22,.24); color:rgba(249,115,22,.95)}

    .metric-value{font-weight:950; letter-spacing:-.2px}
    .metric-sub{color:var(--muted); font-size:13px; margin-top:4px}

    .panel-bottom{margin-top:12px; display:flex; flex-direction:column; gap:12px}
    .micro-list{display:flex; flex-direction:column; gap:10px}
    .micro-item{display:flex; gap:10px; align-items:flex-start; color:rgba(31,41,55,.86); font-weight:650}
    .check{
      width:22px; height:22px;
      display:inline-flex; align-items:center; justify-content:center;
      border-radius:10px;
      background:rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.18);
      color:rgba(124,58,237,.95);
      font-weight:900;
      flex:0 0 auto;
      margin-top:1px;
    }

    .container{position:relative}

    .about-grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:stretch}
    .about-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .about-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(15,23,42,.12); border-color:rgba(124,58,237,.22)}
    .about-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .kpi-pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.20);
      font-weight:900;
      font-size:12.5px;
      color:rgba(73,30,180,.95);
    }
    .kpi-pill-2{background:rgba(37,99,235,.10); border-color:rgba(37,99,235,.20); color:rgba(29,78,216,.95)}
    .kpi-pill-3{background:rgba(249,115,22,.12); border-color:rgba(249,115,22,.24); color:rgba(194,65,12,.95)}
    .kpi-pill-4{background:rgba(225,29,72,.10); border-color:rgba(225,29,72,.20); color:rgba(190,18,60,.95)}

    .about-icon{
      width:42px; height:42px;
      border-radius:18px;
      background:linear-gradient(135deg, rgba(124,58,237,.12), rgba(225,29,72,.08));
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      color:rgba(124,58,237,.95);
      flex:0 0 auto;
    }
    .about-icon-2{
      background:linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.08));
      border-color:rgba(37,99,235,.22);
      color:rgba(37,99,235,.95);
    }

    .card-title{margin:12px 0 0; font-size:18px; font-weight:950; letter-spacing:-.3px}
    .card-desc{color:var(--muted); margin:10px 0 0}
    .chip-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
    .chip{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      font-weight:850;
      font-size:12.5px;
    }
    .chip-2{border-color:rgba(124,58,237,.18); background:rgba(124,58,237,.08)}
    .chip-3{border-color:rgba(37,99,235,.18); background:rgba(37,99,235,.08)}
    .chip-4{border-color:rgba(249,115,22,.22); background:rgba(249,115,22,.10)}

    .about-list{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .about-li{display:flex; gap:12px; align-items:flex-start}
    .li-dot{
      width:12px; height:12px; border-radius:4px;
      background:linear-gradient(135deg, var(--brandA), var(--brandB));
      margin-top:7px;
      flex:0 0 auto;
    }
    .li-dot-2{background:linear-gradient(135deg, var(--brandC), var(--brandA))}
    .li-dot-3{background:linear-gradient(135deg, var(--brandD), var(--brandB))}
    .li-title{font-weight:950}
    .li-sub{color:var(--muted); font-size:13px; margin-top:4px}

    .btn-linkish{
      display:inline-flex; align-items:center; gap:10px;
      margin-top:14px;
      font-weight:900;
      color:rgba(124,58,237,.95);
      padding:10px 0;
    }
    .btn-linkish:after{
      content:"→";
      transition:transform .2s ease;
    }
    .btn-linkish:hover:after{transform:translateX(3px)}

    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      margin-top:10px;
    }
    .service-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex;
      flex-direction:column;
      gap:12px;
      min-height:318px;
    }
    .service-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(15,23,42,.12); border-color:rgba(124,58,237,.22)}
    .service-ic{
      width:44px; height:44px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:linear-gradient(135deg, rgba(124,58,237,.14), rgba(225,29,72,.08));
      display:flex; align-items:center; justify-content:center;
      color:rgba(124,58,237,.95);
    }
    .service-ic-2{background:linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.08)); color:rgba(37,99,235,.95)}
    .service-ic-3{background:linear-gradient(135deg, rgba(249,115,22,.16), rgba(225,29,72,.08)); color:rgba(249,115,22,.95)}
    .service-title{margin:0; font-size:18px; font-weight:980}
    .service-desc{margin:0; color:var(--muted); font-size:14px}
    .service-ul{margin:0; padding-left:18px; color:rgba(31,41,55,.86); font-weight:650; font-size:13.5px; display:flex; flex-direction:column; gap:8px}
    .service-link{
      margin-top:auto;
      display:inline-flex; align-items:center;
      font-weight:950;
      color:rgba(17,24,39,.90);
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .service-link:hover{transform:translateY(-1px); border-color:rgba(124,58,237,.22); background:#fff}

    .modes-row{display:flex; gap:12px; margin-top:16px; flex-wrap:wrap}
    .mode-pill{
      flex:1 1 220px;
      border-radius:20px;
      padding:14px 14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 14px 42px rgba(15,23,42,.06);
      display:flex; flex-direction:column; gap:6px;
    }
    .mode-pill-1{background:linear-gradient(135deg, rgba(124,58,237,.11), rgba(225,29,72,.07)), rgba(255,255,255,.78); border-color:rgba(124,58,237,.18)}
    .mode-pill-2{background:linear-gradient(135deg, rgba(37,99,235,.11), rgba(124,58,237,.07)), rgba(255,255,255,.78); border-color:rgba(37,99,235,.18)}
    .mode-pill-3{background:linear-gradient(135deg, rgba(249,115,22,.14), rgba(225,29,72,.06)), rgba(255,255,255,.78); border-color:rgba(249,115,22,.22)}
    .mode-title{font-weight:980}
    .mode-sub{color:var(--muted); font-size:13.5px}

    .two-col{display:grid; grid-template-columns: .95fr 1.05fr; gap:16px}
    .timeline{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .timeline-head{margin-bottom:14px}
    .timeline-title{font-size:18px; font-weight:980; margin-top:8px}
    .timeline-sub{color:var(--muted); margin-top:6px}
    .timeline-list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px}
    .t-item{display:flex; gap:12px; align-items:flex-start}
    .t-step{
      width:42px; height:42px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(135deg, rgba(124,58,237,.14), rgba(225,29,72,.08));
      border:1px solid rgba(124,58,237,.18);
      color:rgba(124,58,237,.95);
      font-weight:980;
      flex:0 0 auto;
    }
    .t-step span{font-size:12px}
    .t-step-2{background:linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.08)); border-color:rgba(37,99,235,.20); color:rgba(37,99,235,.95)}
    .t-step-3{background:linear-gradient(135deg, rgba(249,115,22,.16), rgba(225,29,72,.08)); border-color:rgba(249,115,22,.22); color:rgba(249,115,22,.95)}
    .t-step-4{background:linear-gradient(135deg, rgba(225,29,72,.14), rgba(124,58,237,.08)); border-color:rgba(225,29,72,.18); color:rgba(225,29,72,.95)}
    .t-title{font-weight:980}
    .t-desc{color:var(--muted); font-size:13.5px; margin-top:6px}

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

    .capability{display:flex; flex-direction:column; gap:14px}
    .capability-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .cap-head{margin-bottom:12px}
    .cap-title{font-weight:980; font-size:18px}
    .cap-sub{color:var(--muted); margin-top:6px}

    .cap-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:6px;
    }
    .cap-item{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      padding:12px;
    }
    .cap-item-title{font-weight:980}
    .cap-item-desc{color:var(--muted); font-size:13.5px; margin-top:6px}

    .platform-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .platform-top{margin-bottom:12px}
    .platform-title{font-size:18px; font-weight:980}
    .platform-sub{color:var(--muted); margin-top:6px}

    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:10px 0 4px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      font-weight:850;
      font-size:12.5px;
      color:rgba(31,41,55,.92);
      transition: transform .16s ease, border-color .16s ease;
    }
    .tag:hover{transform:translateY(-1px); border-color:rgba(124,58,237,.22)}
    .tag-2{border-color:rgba(124,58,237,.18); background:rgba(124,58,237,.08)}
    .tag-3{border-color:rgba(37,99,235,.18); background:rgba(37,99,235,.08)}
    .tag-4{border-color:rgba(249,115,22,.22); background:rgba(249,115,22,.10)}
    .tag-5{border-color:rgba(225,29,72,.18); background:rgba(225,29,72,.08)}

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

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .industry-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      display:flex; flex-direction:column; gap:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:210px;
    }
    .industry-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(15,23,42,.12); border-color:rgba(124,58,237,.22)}
    .industry-title{font-weight:980; font-size:16.5px}
    .industry-desc{color:var(--muted); font-size:14px}
    .industry-meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:auto}
    .meta-pill{
      font-weight:900;
      font-size:12.5px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
    }
    .meta-pill-2{border-color:rgba(124,58,237,.18); background:rgba(124,58,237,.08)}
    .meta-pill-3{border-color:rgba(37,99,235,.18); background:rgba(37,99,235,.08)}
    .industry-link{
      margin-top:10px;
      display:inline-flex; align-items:center;
      font-weight:950;
      color:rgba(124,58,237,.95);
    }

    .network-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
    .network-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .network-card-2{
      background:
        radial-gradient(420px 220px at 10% 20%, rgba(124,58,237,.12), rgba(124,58,237,0) 60%),
        rgba(255,255,255,.78);
    }
    .network-title{font-size:18px; font-weight:980}
    .network-desc{color:var(--muted); margin-top:8px}
    .network-list{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .network-row{display:flex; align-items:center; gap:10px; font-weight:750; color:rgba(31,41,55,.90)}
    .network-ic{
      width:22px; height:22px; border-radius:10px;
      background:rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.18);
      color:rgba(124,58,237,.95);
      display:inline-flex; align-items:center; justify-content:center;
      font-weight:980;
      flex:0 0 auto;
    }

    .contact-pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
    .contact-pill{
      font-weight:900;
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
    }
    .contact-pill-2{border-color:rgba(37,99,235,.18); background:rgba(37,99,235,.08)}
    .contact-pill-3{border-color:rgba(249,115,22,.22); background:rgba(249,115,22,.10)}
    .network-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

    .logos-strip{
      margin-top:14px;
      display:flex; gap:12px; flex-wrap:wrap;
      justify-content:space-between;
    }
    .signal{
      flex:1 1 240px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:12px 14px;
      display:flex; align-items:center; gap:12px;
      box-shadow:0 14px 42px rgba(15,23,42,.05);
      color:rgba(31,41,55,.90);
      font-weight:800;
    }
    .signal-dot{
      width:10px; height:10px; border-radius:999px;
      background:linear-gradient(135deg, var(--brandA), var(--brandB));
      box-shadow:0 10px 26px rgba(124,58,237,.25);
    }
    .signal-dot-2{background:linear-gradient(135deg, var(--brandC), var(--brandA))}
    .signal-dot-3{background:linear-gradient(135deg, var(--brandD), var(--brandB))}

    .process-grid{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
    .process-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .process-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(15,23,42,.12); border-color:rgba(124,58,237,.22)}
    .process-step{font-weight:980; color:rgba(124,58,237,.95); font-size:12.5px}
    .process-title{margin-top:10px; font-weight:980; font-size:18px}
    .process-desc{color:var(--muted); margin-top:8px; font-size:14px}
    .process-tags{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .case-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:250px;
    }
    .case-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(15,23,42,.12); border-color:rgba(124,58,237,.22)}
    .case-top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
    .case-badge{
      display:inline-flex; align-items:center;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.18);
      background:rgba(124,58,237,.08);
      font-weight:950;
      font-size:12.5px;
      color:rgba(124,58,237,.95);
    }
    .case-badge-2{border-color:rgba(37,99,235,.18); background:rgba(37,99,235,.08); color:rgba(37,99,235,.95)}
    .case-badge-3{border-color:rgba(249,115,22,.22); background:rgba(249,115,22,.10); color:rgba(194,65,12,.95)}
    .case-badge-4{border-color:rgba(225,29,72,.18); background:rgba(225,29,72,.08); color:rgba(190,18,60,.95)}
    .case-kicker{color:var(--muted); font-size:13px; text-align:right}
    .case-title{margin:0; font-weight:1000; letter-spacing:-.3px; font-size:16.5px}
    .case-desc{color:var(--muted); margin:0; font-size:14px}
    .case-foot{margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:10px}
    .case-metric{font-weight:850; font-size:13px; color:rgba(31,41,55,.86)}
    .case-link{
      font-weight:950;
      color:rgba(124,58,237,.95);
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      white-space:nowrap;
    }
    .case-link:hover{transform:translateY(-1px); border-color:rgba(124,58,237,.22); background:#fff}

    .case-cta{
      margin-top:18px;
      background:rgba(255,255,255,.75);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:16px;
    }
    .case-cta-title{font-weight:1000; font-size:18px}
    .case-cta-sub{color:var(--muted); margin-top:6px}
    .case-cta-actions{display:flex; gap:12px; flex-wrap:wrap}

    .compare-top{
      display:grid; grid-template-columns: .95fr 1.05fr; gap:14px;
      align-items:stretch;
    }
    .rating-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      position:relative;
      overflow:hidden;
    }
    .rating-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 220px at 15% 20%, rgba(124,58,237,.20), rgba(124,58,237,0) 55%),
        radial-gradient(420px 220px at 75% 20%, rgba(225,29,72,.16), rgba(225,29,72,0) 55%);
      pointer-events:none;
    }
    .rating-card > *{position:relative; z-index:1}
    .rating-title{font-weight:980}
    .stars{margin-top:10px; display:flex; gap:6px; color:rgba(225,29,72,.95); font-size:22px; letter-spacing:1px}
    .rating-score{margin-top:8px; display:flex; align-items:baseline; gap:10px}
    .score-num{font-size:46px; font-weight:1100; letter-spacing:-1.2px; color:rgba(31,41,55,.96)}
    .score-unit{color:var(--muted); font-weight:900}
    .rating-foot{margin-top:10px; color:var(--muted); font-size:13.5px; font-weight:650}

    .compare-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      display:flex; flex-direction:column; gap:12px;
    }
    .compare-card-title{font-weight:1000; font-size:18px}
    .compare-card-sub{color:var(--muted); margin-top:6px}
    .compare-checks{display:flex; flex-direction:column; gap:10px}
    .check-line{display:flex; gap:10px; align-items:flex-start; font-weight:750; color:rgba(31,41,55,.90)}
    .check-ic{
      width:22px; height:22px; border-radius:10px;
      background:rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.18);
      color:rgba(124,58,237,.95);
      display:inline-flex; align-items:center; justify-content:center;
      font-weight:1100; flex:0 0 auto;
      margin-top:1px;
    }
    .compare-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:auto}

    .compare-table-wrap{margin-top:14px}
    .table-hint{color:var(--muted); font-size:13px; font-weight:650; margin:8px 0 10px}
    .table-scroll{overflow:auto; border-radius:18px; border:1px solid rgba(15,23,42,.10); background:rgba(255,255,255,.70)}
    .compare-table{
      width:100%; min-width:680px;
      border-collapse:collapse;
      font-size:14px;
    }
    .compare-table th, .compare-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
    }
    .compare-table thead th{
      text-align:left;
      background:linear-gradient(135deg, rgba(124,58,237,.10), rgba(225,29,72,.06));
      font-weight:1000;
      color:rgba(31,41,55,.92);
      border-bottom:1px solid rgba(15,23,42,.10);
    }
    .compare-table tbody tr:last-child td{border-bottom:none}
    .good{font-weight:950; color:rgba(22,163,74,.95)}
    .compare-bottom{
      margin-top:14px;
      background:rgba(255,255,255,.75);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:16px;
    }
    .compare-bottom-title{font-weight:1000; font-size:18px}
    .compare-bottom-sub{color:var(--muted); margin-top:6px}
    .compare-bottom-actions{display:flex; gap:12px; flex-wrap:wrap}

    .token-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px; align-items:start}
    .token-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .token-title{font-weight:1000; font-size:18px}
    .token-desc{color:var(--muted); margin-top:8px}
    .token-tips{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .tip{display:flex; gap:12px; align-items:flex-start}
    .tip-ic{
      width:30px; height:30px; border-radius:14px;
      background:rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:rgba(124,58,237,.95);
      flex:0 0 auto;
      margin-top:2px;
    }
    .tip-ic-2{background:rgba(37,99,235,.12); border-color:rgba(37,99,235,.20); color:rgba(37,99,235,.95)}
    .tip-ic-3{background:rgba(249,115,22,.14); border-color:rgba(249,115,22,.24); color:rgba(194,65,12,.95)}
    .tip-title{font-weight:1000}
    .tip-sub{color:var(--muted); font-size:13.5px; margin-top:6px}

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

    .token-compare{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .token-compare-head{margin-bottom:12px}
    .token-compare-title{font-weight:1000; font-size:18px}
    .token-compare-sub{color:var(--muted); margin-top:6px}
    .token-pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
    .pill-btn{
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.75);
      font-weight:950;
      font-size:13.5px;
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .pill-btn:hover{transform:translateY(-1px); border-color:rgba(124,58,237,.22)}
    .pill-btn.is-active{
      border-color:rgba(124,58,237,.30);
      background:linear-gradient(135deg, rgba(124,58,237,.14), rgba(225,29,72,.10));
      color:rgba(31,41,55,.95);
    }
    .token-table{
      margin-top:14px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      overflow:hidden;
      background:rgba(255,255,255,.70);
    }
    .token-row{
      display:grid;
      grid-template-columns: 1.1fr .9fr .6fr;
      gap:12px;
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      align-items:center;
      font-size:14px;
      color:rgba(31,41,55,.92);
    }
    .token-row:last-child{border-bottom:none}
    .token-row-head{
      font-weight:1000;
      background:linear-gradient(135deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
    }
    .cost-good{font-weight:1000; color:rgba(2,132,199,.95)}
    .cost-mid{font-weight:1000; color:rgba(124,58,237,.95)}
    .cost-warn{font-weight:1000; color:rgba(249,115,22,.95)}
    .token-row.is-show{display:grid}
    .token-row:not(.is-show){display:none}
    .sc-1{ }
    .sc-2{ }
    .sc-3{ }
    .sc-4{ }

    .token-cta-mini{
      margin-top:14px;
      padding-top:14px;
      border-top:1px dashed rgba(15,23,42,.16);
      display:flex; align-items:center; justify-content:space-between; gap:14px;
    }
    .mini-title{font-weight:1000; font-size:16px}
    .mini-sub{color:var(--muted); margin-top:6px; font-size:13.5px}

    .training-grid{display:grid; grid-template-columns: 1.08fr .92fr; gap:14px}
    .training-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .training-title{font-weight:1000; font-size:18px}
    .training-desc{color:var(--muted); margin-top:8px}
    .training-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .train-item{display:flex; gap:12px; align-items:center; font-weight:850; color:rgba(31,41,55,.90)}
    .train-dot{
      width:10px; height:10px; border-radius:4px;
      background:linear-gradient(135deg, var(--brandA), var(--brandB));
    }
    .train-dot-2{background:linear-gradient(135deg, var(--brandC), var(--brandA))}
    .train-dot-3{background:linear-gradient(135deg, var(--brandB), var(--brandD))}
    .train-dot-4{background:linear-gradient(135deg, var(--brandD), var(--brandC))}
    .train-dot-5{background:linear-gradient(135deg, var(--brandA), var(--brandD))}
    .training-cta{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}

    .training-side{display:flex; flex-direction:column; gap:14px}
    .cert-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      position:relative;
      overflow:hidden;
    }
    .cert-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 220px at 20% 10%, rgba(124,58,237,.18), rgba(124,58,237,0) 55%),
        radial-gradient(420px 220px at 80% 25%, rgba(37,99,235,.16), rgba(37,99,235,0) 55%);
      pointer-events:none;
    }
    .cert-card > *{position:relative; z-index:1}
    .cert-head{margin-bottom:12px}
    .cert-title{margin-top:10px; font-weight:1000; font-size:18px}
    .cert-sub{color:var(--muted); margin-top:6px}
    .cert-points{display:flex; flex-direction:column; gap:12px}
    .cert-point{display:flex; gap:12px; align-items:flex-start}
    .cert-ic{
      width:30px; height:30px; border-radius:14px;
      background:rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.20);
      color:rgba(124,58,237,.95);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100; flex:0 0 auto;
      margin-top:2px;
    }
    .cert-ic-2{background:rgba(37,99,235,.12); border-color:rgba(37,99,235,.20); color:rgba(37,99,235,.95)}
    .cert-ic-3{background:rgba(249,115,22,.14); border-color:rgba(249,115,22,.24); color:rgba(194,65,12,.95)}
    .cert-point-title{font-weight:1000}
    .cert-point-sub{color:var(--muted); margin-top:6px; font-size:13.5px}
    .cert-actions{margin-top:14px}

    .mini-network{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .mini-network-title{font-weight:1000; font-size:18px}
    .mini-network-sub{color:var(--muted); margin-top:6px}
    .person-tags{margin-top:14px; display:flex; flex-wrap:wrap; gap:10px}
    .mini-network-foot{color:var(--muted); margin-top:14px; font-weight:650}

    .article-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:start}
    .article-main{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .article-cover{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(520px 240px at 20% 30%, rgba(124,58,237,.16), rgba(124,58,237,0) 60%),
        radial-gradient(520px 240px at 85% 20%, rgba(225,29,72,.12), rgba(225,29,72,0) 60%),
        rgba(255,255,255,.70);
    }
    .cover-mark{font-weight:1000; color:rgba(124,58,237,.95)}
    .cover-title{margin-top:8px; font-size:18px; font-weight:1000; letter-spacing:-.3px}
    .cover-sub{color:var(--muted); margin-top:6px}
    .article-list{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .article-item{
      border-radius:18px;
      padding:14px 14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
    }
    .article-item:hover{transform:translateY(-2px); border-color:rgba(124,58,237,.22); box-shadow:0 18px 44px rgba(15,23,42,.10)}
    .article-left{display:flex; flex-direction:column; gap:8px}
    .article-tag{
      display:inline-flex; width:max-content;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      color:rgba(124,58,237,.95);
      font-weight:1000; font-size:12.5px;
    }
    .article-tag-2{background:rgba(37,99,235,.10); border-color:rgba(37,99,235,.18); color:rgba(37,99,235,.95)}
    .article-tag-3{background:rgba(249,115,22,.12); border-color:rgba(249,115,22,.22); color:rgba(194,65,12,.95)}
    .article-tag-4{background:rgba(225,29,72,.10); border-color:rgba(225,29,72,.18); color:rgba(190,18,60,.95)}
    .article-tag-5{background:rgba(124,58,237,.08); border-color:rgba(17,24,39,.14); color:rgba(17,24,39,.92)}
    .article-title{font-weight:950; letter-spacing:-.2px}
    .article-right{flex:0 0 auto}
    .article-more{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 12px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      font-weight:1000;
      color:rgba(31,41,55,.92);
    }
    .article-actions{display:flex; gap:12px; margin-top:14px; flex-wrap:wrap}

    .article-side{display:flex; flex-direction:column; gap:14px}
    .side-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .side-card-2{
      background:
        radial-gradient(420px 220px at 25% 0%, rgba(37,99,235,.14), rgba(37,99,235,0) 60%),
        rgba(255,255,255,.78);
    }
    .side-title{font-weight:1000; font-size:18px}
    .side-sub{color:var(--muted); margin-top:8px}
    .quick-grid{margin-top:14px; display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    .quick-item{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      padding:12px;
      display:flex; flex-direction:column; gap:8px;
      font-weight:950;
      transition: transform .16s ease, border-color .16s ease;
    }
    .quick-item:hover{transform:translateY(-2px); border-color:rgba(124,58,237,.22)}
    .quick-ic{
      width:30px; height:30px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(135deg, rgba(124,58,237,.12), rgba(225,29,72,.08));
      border:1px solid rgba(124,58,237,.18);
      color:rgba(124,58,237,.95);
    }

    .tag-cloud.compact .tag{padding:7px 10px; font-size:12px}

    .side-foot{margin-top:14px}

    .faq-layout{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px; align-items:start}
    .faq-left{display:flex; flex-direction:column; gap:14px}
    .faq-intro-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .faq-intro-title{font-weight:1000; font-size:18px}
    .faq-intro-sub{color:var(--muted); margin-top:8px}
    .faq-search{margin-top:14px; display:flex; gap:12px; align-items:center}
    input[type="search"], input[type="tel"], input[type="text"], select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.14);
      background:rgba(255,255,255,.85);
      color:var(--ink);
      outline:none;
      transition:border-color .16s ease, box-shadow .16s ease;
      font-size:14px;
    }
    input:focus, select:focus, textarea:focus{
      border-color:rgba(124,58,237,.35);
      box-shadow:0 0 0 4px rgba(124,58,237,.12);
    }
    .faq-search input{flex:1 1 auto}
    .sr-only{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
    }

    .faq-kv{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .kv-row{display:flex; gap:12px; align-items:center; font-weight:850; color:rgba(31,41,55,.90)}
    .kv-ic{
      width:34px; height:34px; border-radius:16px;
      background:rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      color:rgba(124,58,237,.95);
      flex:0 0 auto;
    }
    .kv-ic-2{background:rgba(37,99,235,.10); border-color:rgba(37,99,235,.18); color:rgba(37,99,235,.95)}

    .faq-callout{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .callout-title{font-weight:1000; font-size:18px}
    .callout-desc{color:var(--muted); margin-top:8px}
    .faq-right{
      background:transparent;
      display:flex; flex-direction:column; gap:14px;
    }
    .faq-panel{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:10px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .faq-item{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.70);
      margin:10px 6px;
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      text-align:left;
      background:transparent;
      border:none;
      padding:14px 14px;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:950;
      color:rgba(31,41,55,.95);
      font-size:14.5px;
    }
    .faq-plus{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.80);
      position:relative;
      flex:0 0 auto;
    }
    .faq-plus:before, .faq-plus:after{
      content:"";
      position:absolute; left:50%; top:50%;
      width:14px; height:2px;
      background:rgba(31,41,55,.85);
      transform:translate(-50%,-50%);
      border-radius:999px;
      transition: transform .2s ease;
    }
    .faq-plus:after{
      width:2px; height:14px;
      background:rgba(31,41,55,.85);
    }
    .faq-item[aria-expanded="true"] .faq-plus:after{
      transform:translate(-50%,-50%) rotate(90deg);
      opacity:0;
    }
    .faq-a{
      padding:0 14px 14px;
      color:var(--muted);
      font-weight:650;
      font-size:14px;
    }

    .faq-more{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .faq-more-title{font-weight:1000; font-size:18px}
    .faq-more-sub{color:var(--muted); margin-top:8px}
    .faq-more .btn{margin-top:14px}

    .match-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; align-items:start}
    .match-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .match-title{font-weight:1000; font-size:20px; letter-spacing:-.3px}
    .match-sub{color:var(--muted); margin-top:8px}
    .form{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .form-row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    label > span{display:block; font-weight:900; font-size:13.5px; color:rgba(31,41,55,.92); margin-bottom:8px}
    .form-label-2 > span{margin-bottom:8px}
    textarea{resize:vertical; min-height:120px}
    .form-foot{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-top:4px}
    .form-note{color:var(--muted); font-weight:650; font-size:13.5px}

    .match-side{display:flex; flex-direction:column}
    .side-stack{display:flex; flex-direction:column; gap:14px}
    .side-emph{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .side-emph-top{display:flex; flex-direction:column; gap:10px}
    .side-emph-title{font-weight:1000; font-size:18px}
    .side-emph-list{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .emph-item{display:flex; gap:12px; align-items:flex-start}
    .emph-ic{
      width:30px; height:30px; border-radius:14px;
      background:rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.20);
      color:rgba(124,58,237,.95);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100; flex:0 0 auto; margin-top:2px;
    }
    .emph-ic-2{background:rgba(37,99,235,.12); border-color:rgba(37,99,235,.20); color:rgba(37,99,235,.95)}
    .emph-ic-3{background:rgba(249,115,22,.14); border-color:rgba(249,115,22,.24); color:rgba(194,65,12,.95)}
    .emph-title{font-weight:1000}
    .emph-sub{color:var(--muted); margin-top:6px; font-size:13.5px}

    .side-quick{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .side-quick-title{font-weight:1000; font-size:18px}
    .side-quick-sub{color:var(--muted); margin-top:6px}
    .quick-links{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .quicklink{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      font-weight:950;
      transition: transform .16s ease, border-color .16s ease;
    }
    .quicklink:hover{transform:translateY(-2px); border-color:rgba(124,58,237,.22)}
    .quicklink-ic{
      width:34px; height:34px; border-radius:16px;
      background:linear-gradient(135deg, rgba(124,58,237,.12), rgba(225,29,72,.08));
      border:1px solid rgba(124,58,237,.18);
      color:rgba(124,58,237,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-right:10px;
    }

    .side-contact{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .side-contact-title{font-weight:1000; font-size:18px}
    .side-contact-sub{color:var(--muted); margin-top:6px}
    .qr-row{margin-top:14px; display:flex; gap:12px; align-items:center}
    .qr-img{width:98px; height:98px; border-radius:18px; border:1px solid rgba(15,23,42,.10); background:#fff; padding:6px; object-fit:cover}
    .qr-copy{flex:1}
    .qr-name{font-weight:1000}
    .qr-sub{color:var(--muted); margin-top:6px}
    .qr-actions{margin-top:10px}
    .side-contact-meta{margin-top:12px; color:var(--muted); font-weight:650; font-size:13.5px}
    .meta-line{margin-top:6px}

    .review-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
    .review-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:210px;
      display:flex; flex-direction:column; gap:12px;
    }
    .review-card:hover{transform:translateY(-2px); box-shadow:0 18px 60px rgba(15,23,42,.12); border-color:rgba(124,58,237,.22)}
    .review-top{display:flex; gap:12px; align-items:center}
    .avatar{
      width:42px; height:42px;
      border-radius:18px;
      background:linear-gradient(135deg, rgba(124,58,237,.14), rgba(225,29,72,.08));
      border:1px solid rgba(124,58,237,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      color:rgba(124,58,237,.95);
      flex:0 0 auto;
    }
    .review-name{font-weight:1000}
    .review-meta{color:var(--muted); margin-top:4px; font-weight:700; font-size:13px}
    .review-text{color:rgba(31,41,55,.86); font-weight:650}
    .review-foot{margin-top:auto; display:flex; gap:10px; flex-wrap:wrap}
    .review-pill{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      font-weight:950;
      font-size:12.5px;
    }
    .review-pill-2{border-color:rgba(37,99,235,.18); background:rgba(37,99,235,.08)}
    .agent-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start}
    .agent-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .agent-card-2{
      background:
        radial-gradient(520px 240px at 10% 15%, rgba(225,29,72,.12), rgba(225,29,72,0) 55%),
        rgba(255,255,255,.78);
    }
    .agent-title{font-weight:1000; font-size:20px; letter-spacing:-.3px}
    .agent-desc{color:var(--muted); margin-top:10px; font-weight:650}
    .agent-desc-2{margin-top:10px}
    .agent-points{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .agent-point{display:flex; gap:12px; align-items:flex-start; font-weight:850; color:rgba(31,41,55,.92)}
    .agent-ic{
      width:22px; height:22px; border-radius:10px;
      background:rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.18);
      color:rgba(124,58,237,.95);
      display:inline-flex; align-items:center; justify-content:center;
      font-weight:1100; flex:0 0 auto; margin-top:1px;
    }
    .agent-ic-2{background:rgba(37,99,235,.12); border-color:rgba(37,99,235,.20); color:rgba(37,99,235,.95)}
    .agent-ic-3{background:rgba(249,115,22,.14); border-color:rgba(249,115,22,.24); color:rgba(194,65,12,.95)}
    .agent-actions{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}
    .mini-table{width:100%; min-width:680px; border-collapse:collapse; font-size:14px}
    .mini-table th, .mini-table td{padding:14px; border-bottom:1px solid rgba(15,23,42,.08); text-align:left}
    .mini-table thead th{
      background:linear-gradient(135deg, rgba(124,58,237,.10), rgba(225,29,72,.06));
      font-weight:1000;
      border-bottom:1px solid rgba(15,23,42,.10);
    }
    .mini-table tbody tr:last-child td{border-bottom:none}
    .agent-cta-mini{
      margin-top:14px;
      padding-top:14px;
      border-top:1px dashed rgba(15,23,42,.16);
      display:flex; align-items:center; justify-content:space-between; gap:14px;
    }

    .contact-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start}
    .contact-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .contact-card-2{
      background:
        radial-gradient(560px 260px at 10% 0%, rgba(124,58,237,.14), rgba(124,58,237,0) 55%),
        rgba(255,255,255,.78);
    }
    .contact-title{font-weight:1000; font-size:20px; letter-spacing:-.3px}
    .contact-desc{color:var(--muted); margin-top:10px; font-weight:650}
    .contact-ways{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .way{display:flex; gap:12px; align-items:center}
    .way-ic{
      width:42px; height:42px; border-radius:18px;
      background:rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      color:rgba(124,58,237,.95);
      flex:0 0 auto;
      font-weight:1100;
    }
    .way-ic-2{background:rgba(37,99,235,.10); border-color:rgba(37,99,235,.18); color:rgba(37,99,235,.95)}
    .way-ic-3{background:rgba(249,115,22,.12); border-color:rgba(249,115,22,.22); color:rgba(194,65,12,.95)}
    .way-ic-4{background:rgba(225,29,72,.10); border-color:rgba(225,29,72,.18); color:rgba(190,18,60,.95)}
    .way-title{font-weight:1000}
    .way-sub{color:var(--muted); margin-top:4px; font-weight:700}

    .contact-qrcode{margin-top:16px; padding-top:14px; border-top:1px dashed rgba(15,23,42,.16)}
    .qrcode-title{font-weight:1000}
    .contact-qr{width:170px; height:170px; border-radius:28px; border:1px solid rgba(15,23,42,.10); background:#fff; padding:10px; object-fit:cover; margin-top:12px}
    .qrcode-sub{color:var(--muted); margin-top:10px; font-weight:650}

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

    .list-card{margin-top:16px; background:rgba(255,255,255,.70); border:1px solid rgba(15,23,42,.10); border-radius:22px; padding:16px}
    .list-card-title{font-weight:1000; font-size:18px}
    .two-list{margin-top:12px; display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    .list-col{display:flex; flex-direction:column; gap:10px}
    .list-item{display:flex; gap:10px; align-items:center; font-weight:850; color:rgba(31,41,55,.92)}
    .list-ic{
      width:22px; height:22px; border-radius:10px;
      background:rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.18);
      color:rgba(124,58,237,.95);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100; flex:0 0 auto;
    }
    .list-ic-2{background:rgba(37,99,235,.12); border-color:rgba(37,99,235,.20); color:rgba(37,99,235,.95)}
    .list-ic-3{background:rgba(249,115,22,.14); border-color:rgba(249,115,22,.24); color:rgba(194,65,12,.95)}
    .list-ic-4{background:rgba(225,29,72,.12); border-color:rgba(225,29,72,.18); color:rgba(190,18,60,.95)}

    .platform-intro-card{
      margin-top:14px;
      background:rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
    }
    .platform-intro-title{font-weight:1000; font-size:18px}
    .platform-intro-sub{color:var(--muted); margin-top:10px; font-weight:650}
    .intro-bullets{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .intro-bullet{display:flex; gap:12px; align-items:center; font-weight:900; color:rgba(31,41,55,.92)}
    .intro-ic{
      width:30px; height:30px; border-radius:14px;
      background:rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.20);
      color:rgba(124,58,237,.95);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100; flex:0 0 auto;
    }
    .intro-ic-2{background:rgba(37,99,235,.12); border-color:rgba(37,99,235,.20); color:rgba(37,99,235,.95)}
    .intro-ic-3{background:rgba(249,115,22,.14); border-color:rgba(249,115,22,.24); color:rgba(194,65,12,.95)}
    .intro-ic-4{background:rgba(225,29,72,.12); border-color:rgba(225,29,72,.18); color:rgba(190,18,60,.95)}
    .intro-ic-5{background:rgba(124,58,237,.10); border-color:rgba(15,23,42,.14); color:rgba(17,24,39,.92)}
    .intro-ic-6{background:rgba(37,99,235,.10); border-color:rgba(15,23,42,.14); color:rgba(17,24,39,.92)}
    .intro-ic-7{background:rgba(249,115,22,.12); border-color:rgba(15,23,42,.14); color:rgba(17,24,39,.92)}
    .intro-foot-actions{margin-top:14px; display:flex; gap:12px; flex-wrap:wrap}

    .form-inline{margin-top:14px; padding-top:14px; border-top:1px dashed rgba(15,23,42,.16)}
    .form-inline-title{font-weight:1000}
    .form-inline-sub{color:var(--muted); margin-top:8px; font-weight:650; margin-bottom:14px}

    .links-section{padding:36px 0 46px}
    .links-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 42px rgba(15,23,42,.08);
    }
    .links-title{font-weight:1000; font-size:18px}
    .links-title-2{margin-top:14px; font-weight:1000; font-size:16.5px}
    .links-list{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:12px;
    }
    .links-list a{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      font-weight:900;
      color:rgba(31,41,55,.92);
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .links-list a:hover{transform:translateY(-2px); border-color:rgba(124,58,237,.22); background:#fff}

    .site-footer{
      background:#0b1220;
      color:#e5e7eb;
      border-top:1px solid rgba(255,255,255,.08);
      padding:34px 0 26px;
    }
    .footer-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:20px; align-items:start}
    .footer-brand{display:flex; gap:12px; align-items:center}
    .footer-logo{width:44px; height:44px; object-fit:contain; padding:6px; border-radius:16px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.10)}
    .footer-name{font-weight:1100; letter-spacing:-.2px}
    .footer-sub{color:rgba(229,231,235,.78); margin-top:6px; font-weight:650; font-size:13.5px}
    .footer-contact{margin-top:14px; color:rgba(229,231,235,.86); font-weight:650; font-size:13.5px; display:flex; flex-direction:column; gap:6px}
    .footer-links{display:flex; flex-wrap:wrap; gap:12px; justify-content:flex-end}
    .footer-links a{
      color:rgba(229,231,235,.86);
      font-weight:850;
      font-size:13.5px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      transition: transform .16s ease, background .16s ease, border-color .16s ease;
    }
    .footer-links a:hover{transform:translateY(-2px); background:rgba(255,255,255,.08); border-color:rgba(124,58,237,.30)}
    .footer-actions{display:flex; gap:12px; justify-content:flex-end; margin-top:14px; flex-wrap:wrap}
    .footer-home-link{
      color:#fff;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      font-weight:1000;
    }
    .footer-meta{margin-top:16px; color:rgba(229,231,235,.78); font-weight:650; font-size:13px; text-align:right}
    .footer-right{display:flex; flex-direction:column; align-items:flex-end}

    .to-top{
      position:fixed; right:18px; bottom:18px;
      z-index:80;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.82);
      backdrop-filter: blur(10px);
      box-shadow:0 14px 40px rgba(15,23,42,.14);
      padding:10px 12px;
      cursor:pointer;
      display:flex; align-items:center; gap:10px;
      font-weight:950;
      color:#111827;
      transform: translateY(10px);
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .to-top.show{opacity:1; transform: translateY(0); pointer-events:auto}
    .to-top span{font-size:13.5px}
    .to-top:hover{border-color:rgba(124,58,237,.22)}

    .float-kefu{
      position:fixed; left:18px; bottom:18px;
      z-index:80;
      width:54px; height:54px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.12);
      background:linear-gradient(135deg, rgba(124,58,237,.14), rgba(225,29,72,.10)), rgba(255,255,255,.86);
      box-shadow:0 18px 50px rgba(124,58,237,.20);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, box-shadow .18s ease;
      overflow:hidden;
    }
    .float-kefu:hover{transform:translateY(-2px); box-shadow:0 22px 70px rgba(124,58,237,.26)}
    .float-ring{
      position:absolute; inset:-18px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.35), rgba(124,58,237,0) 60%);
      animation: ring 2.2s ease-in-out infinite;
      opacity:.7;
    }
    @keyframes ring{
      0%,100%{transform:scale(.95); opacity:.55}
      50%{transform:scale(1.05); opacity:.85}
    }
    .float-ic{color:rgba(124,58,237,.95); display:flex; align-items:center; justify-content:center; z-index:1}
    .float-text{display:none}

    .kefu-pop{
      position:fixed; inset:0;
      z-index:120;
      display:flex; align-items:center; justify-content:center;
      padding:18px;
    }
    .kefu-backdrop{
      position:absolute; inset:0;
      background:rgba(0,0,0,.35);
      border:none;
      cursor:pointer;
    }
    .kefu-pop-inner{
      position:relative;
      width:min(560px, 100%);
      background:rgba(255,255,255,.90);
      border:1px solid rgba(15,23,42,.12);
      border-radius:24px;
      box-shadow:0 30px 90px rgba(0,0,0,.25);
      padding:16px;
      z-index:1;
      backdrop-filter: blur(10px);
      animation: popIn .18s ease-out;
    }
    @keyframes popIn{
      from{transform: translateY(10px) scale(.99); opacity:.7}
      to{transform: translateY(0) scale(1); opacity:1}
    }
    .kefu-pop-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .kefu-pop-title{font-weight:1000; font-size:18px}
    .kefu-pop-sub{color:var(--muted); margin-top:6px; font-weight:650}
    .icon-btn{
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.12);
      background:#fff;
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease;
      display:flex; align-items:center; justify-content:center;
      color:#111827;
    }
    .icon-btn:hover{transform:translateY(-2px); border-color:rgba(124,58,237,.22)}
    .kefu-pop-body{display:flex; gap:16px; align-items:center; margin-top:14px}
    .kefu-pop-qr{
      width:160px; height:160px;
      border-radius:28px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      padding:10px;
      object-fit:cover;
      flex:0 0 auto;
    }
    .kefu-pop-meta{flex:1; display:flex; flex-direction:column; gap:10px}
    .kefu-pop-row{display:flex; gap:12px; align-items:center; justify-content:flex-start; padding:10px 12px; border-radius:18px; border:1px solid rgba(15,23,42,.10); background:rgba(255,255,255,.70); font-weight:850}
    .kefu-pop-key{color:rgba(31,41,55,.78)}
    .kefu-pop-val{color:rgba(31,41,55,.95)}
    .kefu-pop-foot{margin-top:14px}

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

    @media (max-width: 980px){
      .desktop-nav{display:none}
      .burger{display:flex}
      .mobile-menu{display:block}
      .mobile-menu.show{display:block}
      .hero-grid{grid-template-columns: 1fr; gap:16px}
      .hero-title{font-size:36px}
      .hero-badges{grid-template-columns: 1fr; }
      .service-grid{grid-template-columns: 1fr; }
      .about-grid{grid-template-columns: 1fr}
      .two-col{grid-template-columns: 1fr}
      .industry-grid{grid-template-columns: 1fr 1fr}
      .process-grid{grid-template-columns: 1fr 1fr}
      .case-grid{grid-template-columns: 1fr 1fr}
      .token-grid{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .compare-top{grid-template-columns: 1fr}
      .article-grid{grid-template-columns: 1fr}
      .faq-layout{grid-template-columns: 1fr}
      .match-grid{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .footer-links{justify-content:flex-start}
      .footer-right{align-items:flex-start}
      .footer-meta{text-align:left}
      .hero-panel{padding:14px}
      .float-text{display:none}
      .form-row{grid-template-columns: 1fr}
      .two-list{grid-template-columns: 1fr}
      .kefu-pop-body{flex-direction:column; align-items:flex-start}
      .kefu-pop-qr{width:140px; height:140px}
    }

    .mobile-menu-inner{padding:12px 0 18px}
    .mobile-top{display:flex; justify-content:space-between; align-items:center; gap:10px}
    .mobile-title{font-weight:1000}
    .mobile-links{
      margin-top:12px;
      display:flex; flex-direction:column; gap:8px;
    }
    .mobile-links a{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      font-weight:950;
    }
    .mobile-cta{display:flex; flex-direction:column; gap:10px; margin-top:14px}