:root{
      --bg:#f7f6f1;
      --panel:#ffffff;
      --text:#1f2328;
      --muted:#6b7280;
      --border:rgba(15,23,42,.10);
      --shadow:0 14px 40px rgba(2,6,23,.08);
      --shadow2:0 10px 30px rgba(2,6,23,.10);
      --ring:rgba(255,176,0,.35);
      --primary:#ffb100;
      --primary2:#ffcf4a;
      --primaryDeep:#e89b00;
      --accent:#0d2b66;
      --accent2:#143b8f;
      --good:#0f766e;
      --goodBg:rgba(15,118,110,.12);
      --radius:18px;
      --radius2:24px;
      --container:1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 480px at 10% -5%, rgba(255,177,0,.22), transparent 60%),
        radial-gradient(900px 480px at 90% 0%, rgba(20,59,143,.14), transparent 55%),
        linear-gradient(#faf8f0, var(--bg));
    }

    .skip-link{
      position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
    }
    .skip-link:focus{
      left:16px;top:16px;width:auto;height:auto;padding:10px 12px;background:var(--panel);
      border:1px solid var(--border);border-radius:12px;z-index:9999;
    }

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

    .site-header{
      position:sticky;top:0;z-index:60;
      background:rgba(250,248,240,.72);
      backdrop-filter:saturate(140%) blur(10px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .header-wrap{
      display:flex;align-items:center;justify-content:space-between;
      gap:14px; padding:12px 0;
    }
    .brand{display:flex;align-items:center;gap:12px;min-width:240px}
    .brand-link{display:flex;align-items:center;gap:12px;text-decoration:none}
    .ai-page-logo{width:52px}
    .brand-meta{display:flex;flex-direction:column;line-height:1.1}
    .brand-name{font-weight:800;letter-spacing:.2px}
    .brand-sub{font-size:12px;color:var(--muted);margin-top:4px}

    .nav{display:flex;align-items:center;gap:12px}
    .nav-toggle{
      display:none;
      width:44px;height:44px;border-radius:12px;border:1px solid var(--border);
      background:var(--panel);cursor:pointer;align-items:center;justify-content:center;
      box-shadow:0 8px 20px rgba(2,6,23,.06);
    }
    .nav-toggle .bar{
      display:block;width:18px;height:2px;background:var(--text);
      border-radius:2px;margin:3px 0;
    }
    .menu{
      display:flex;align-items:center;gap:16px;flex-wrap:wrap;justify-content:flex-end;
    }
    .menu-link{
      text-decoration:none;color:rgba(31,35,40,.92);
      font-weight:650;font-size:13px; padding:10px 8px;border-radius:12px;
      transition:background .2s ease, transform .2s ease;
    }
    .menu-link:hover{background:rgba(255,177,0,.12); transform: translateY(-1px)}
    .menu-link.primary{
      background:linear-gradient(180deg, rgba(255,177,0,.20), rgba(255,177,0,.08));
      border:1px solid rgba(255,177,0,.30);
      padding:9px 10px;
    }

    .header-cta{display:flex;align-items:center;gap:10px;min-width:250px;justify-content:flex-end}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      padding:11px 14px;border-radius:14px;text-decoration:none;
      border:1px solid var(--border);background:var(--panel);color:var(--text);
      font-weight:760;font-size:14px;cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      white-space:nowrap;
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 5px var(--ring)}
    .btn:hover{transform: translateY(-1px); box-shadow:0 12px 30px rgba(2,6,23,.10)}
    .btn-solid{
      background:linear-gradient(180deg, var(--primary2), var(--primary));
      border-color:rgba(232,155,0,.55);
      box-shadow:0 14px 34px rgba(255,177,0,.24);
      color:#1a1200;
    }
    .btn-solid:hover{box-shadow:0 18px 44px rgba(255,177,0,.30)}
    .btn-ghost{
      background:rgba(255,255,255,.55);
    }
    .btn-soft{
      background:linear-gradient(180deg, rgba(20,59,143,.10), rgba(20,59,143,.04));
      border-color:rgba(20,59,143,.18);
      color:var(--accent2);
    }
    .btn-small{padding:9px 12px;border-radius:12px;font-size:13px}
    .btn-lg{padding:13px 18px;border-radius:16px}
    .link-cta{
      color:var(--accent2);text-decoration:none;font-weight:780;
      display:inline-flex;gap:8px;align-items:center;
      padding:8px 0;border-bottom:1px dashed rgba(20,59,143,.25);
    }
    .link-cta:hover{border-bottom-style:solid}

    .header-glow{
      position:absolute;inset:auto 0 0 0;height:1px;background:linear-gradient(90deg, rgba(255,177,0,.0), rgba(255,177,0,.55), rgba(255,177,0,.0));
      pointer-events:none;
      opacity:.55;
    }

    .hero{
      padding:46px 0 26px;
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;inset:-220px -120px auto -120px;
      height:480px;
      background:
        radial-gradient(circle at 30% 40%, rgba(255,177,0,.30), transparent 55%),
        radial-gradient(circle at 70% 35%, rgba(20,59,143,.18), transparent 55%);
      filter:saturate(120%);
      pointer-events:none;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:22px;
      align-items:start;
      position:relative;
    }
    .hero-left{padding:6px 0}
    .eyebrow{
      display:flex;align-items:center;gap:10px;flex-wrap:wrap;
      margin-bottom:14px;
    }
    .chip{
      display:inline-flex;align-items:center;gap:8px;
      background:rgba(255,177,0,.14);
      border:1px solid rgba(255,177,0,.28);
      padding:8px 12px;border-radius:999px;
      font-weight:850;color:#2a1900;
      box-shadow:0 12px 24px rgba(255,177,0,.12);
    }
    .dot-sep{width:6px;height:6px;border-radius:50%;background:rgba(20,59,143,.22)}
    .eyebrow-text{font-weight:780;color:rgba(31,35,40,.92)}
    .hero-title{
      margin:0;
      font-size:40px;
      line-height:1.08;
      letter-spacing:-.6px;
      max-width:620px;
    }
    .hero-desc{
      margin:14px 0 18px;
      color:rgba(31,35,40,.82);
      font-size:15.5px;
      line-height:1.75;
      max-width:620px;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:6px}
    .hero-badges{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:20px;
    }
    .badge{
      background:rgba(255,255,255,.58);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:14px 14px;
      display:flex;gap:12px;align-items:flex-start;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow:0 10px 26px rgba(2,6,23,.06);
    }
    .badge:hover{transform: translateY(-2px); box-shadow:0 18px 44px rgba(2,6,23,.10); border-color:rgba(255,177,0,.35)}
    .badge-ic{
      width:34px;height:34px;border-radius:12px;background:linear-gradient(180deg, rgba(255,177,0,.20), rgba(255,177,0,.06));
      border:1px solid rgba(255,177,0,.30);
      display:flex;align-items:center;justify-content:center;font-weight:950;color:#2a1900;
      flex:0 0 auto;
    }
    .badge-title{font-weight:900}
    .badge-sub{font-size:12.5px;color:var(--muted);margin-top:4px;line-height:1.4}

    .hero-note{
      margin-top:16px;
      background:linear-gradient(180deg, rgba(255,177,0,.12), rgba(255,177,0,.04));
      border:1px solid rgba(255,177,0,.24);
      border-radius:16px;
      padding:12px 14px;
      display:flex;gap:10px;align-items:flex-start;
      color:rgba(31,35,40,.82);
      font-weight:700;
    }
    .note-ic{width:28px;height:28px;border-radius:10px;display:flex;align-items:center;justify-content:center;background:rgba(255,177,0,.18);border:1px solid rgba(255,177,0,.28)}
    .hero-right{position:relative}
    .metrics-wrap{position:relative}
    .metrics-grid{
      display:grid;grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .metric-card{
      background:rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:14px 14px;
      box-shadow:0 10px 26px rgba(2,6,23,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:120px;
    }
    .metric-card:hover{transform: translateY(-2px); box-shadow:0 18px 44px rgba(2,6,23,.10); border-color:rgba(255,177,0,.35)}
    .metric-top{display:flex;align-items:center;gap:10px}
    .metric-ic{
      width:34px;height:34px;border-radius:14px;background:rgba(20,59,143,.08);
      border:1px solid rgba(20,59,143,.16);
      display:flex;align-items:center;justify-content:center;font-weight:950;color:var(--accent2);
      flex:0 0 auto;
    }
    .metric-tag{font-size:12.5px;color:var(--muted);font-weight:800}
    .metric-value{margin-top:10px;font-weight:950;letter-spacing:-.2px}
    .metric-desc{margin-top:6px;color:var(--muted);font-size:12.5px;line-height:1.5}

    .floating-panel{
      margin-top:12px;
      background:linear-gradient(180deg, rgba(255,177,0,.14), rgba(255,177,0,.04));
      border:1px solid rgba(255,177,0,.26);
      border-radius:18px;
      padding:14px;
      box-shadow:0 18px 44px rgba(255,177,0,.14);
    }
    .panel-head{display:flex;flex-direction:column;gap:6px}
    .panel-title{font-weight:950}
    .panel-sub{color:var(--muted);font-size:13px;line-height:1.5}
    .panel-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
    .btn.btn-small{font-size:13px}
    .panel-foot{display:flex;align-items:center;justify-content:space-between;margin-top:10px;gap:10px}
    .muted{color:var(--muted)}
    .hero-markers .marker{
      position:absolute;inset:auto auto 0 auto;
      width:160px;height:160px;border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(255,177,0,.35), transparent 60%);
      opacity:.18;
      pointer-events:none;
      filter: blur(0px);
    }
    .hero-markers .m1{right:-60px;bottom:80px}
    .hero-markers .m2{right:40px;bottom:10px; width:120px;height:120px; opacity:.14}
    .hero-markers .m3{right:-10px;bottom:-20px;width:220px;height:220px;opacity:.10}

    .section{
      padding:56px 0;
      position:relative;
    }
    .section.alt{
      background:
        radial-gradient(700px 420px at 0% 30%, rgba(255,177,0,.12), transparent 55%),
        radial-gradient(700px 420px at 100% 10%, rgba(20,59,143,.10), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.40), rgba(255,255,255,.12));
      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:28px;
      letter-spacing:-.3px;
      line-height:1.2;
    }
    .section-desc{
      margin:10px 0 0;
      color:rgba(31,35,40,.78);
      line-height:1.7;
      max-width:740px;
      font-size:14.5px;
    }
    .kicker{
      display:inline-flex;align-items:center;gap:10px;
      font-weight:900;color:#2a1900;
      background:rgba(255,177,0,.14);
      border:1px solid rgba(255,177,0,.26);
      padding:7px 12px;border-radius:999px;
      width:max-content;
      margin-bottom:12px;
    }
    .section-head .kicker{margin-bottom:10px}

    .feature-split{
      display:grid;
      grid-template-columns: 1.02fr .98fr;
      gap:16px;
      align-items:start;
    }
    .list-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
      padding:16px;
    }
    .list-card-head{display:flex;flex-direction:column;gap:8px;margin-bottom:12px}
    .list-card-title{font-weight:950;font-size:18px}
    .tick-list{
      list-style:none;margin:0;padding:0;
      display:flex;flex-direction:column;gap:10px;
      color:rgba(31,35,40,.82);
      font-weight:700;
    }
    .tick-list li{
      display:flex;gap:10px;align-items:flex-start;
    }
    .tick{color:var(--good); font-weight:950; width:18px;flex:0 0 auto}
    .inline-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}

    .timeline-card{
      background:rgba(255,255,255,.66);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
    }
    .timeline-head{margin-bottom:12px}
    .timeline-title{font-weight:950;font-size:18px}
    .timeline{display:flex;flex-direction:column;gap:12px;margin-top:10px}
    .step{
      display:flex;gap:12px;align-items:flex-start;
      padding:12px 12px;border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.55);
      transition: transform .18s ease, border-color .18s ease;
    }
    .step:hover{transform: translateY(-2px); border-color:rgba(255,177,0,.35)}
    .step-num{
      width:42px;height:42px;border-radius:16px;
      background:linear-gradient(180deg, rgba(255,177,0,.20), rgba(255,177,0,.06));
      border:1px solid rgba(255,177,0,.30);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;color:#2a1900;flex:0 0 auto;
    }
    .step-title{font-weight:950}
    .step-desc{color:var(--muted);margin-top:6px;line-height:1.55;font-weight:650;font-size:13px}
    .timeline-foot{margin-top:12px;display:flex;justify-content:space-between;align-items:flex-start;gap:12px;flex-wrap:wrap}
    .tag-row{display:flex;gap:8px;flex-wrap:wrap}
    .tag{
      display:inline-flex;align-items:center;justify-content:center;
      padding:8px 10px;border-radius:999px;
      background:rgba(255,255,255,.60);
      border:1px solid rgba(15,23,42,.10);
      color:rgba(31,35,40,.88);
      font-weight:800;font-size:12.5px;
    }
    .tag-hi{
      background:rgba(255,177,0,.18);
      border-color:rgba(255,177,0,.34);
      color:#2a1900;
    }

    .cards-grid{
      display:grid;grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .cap-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:210px;
    }
    .cap-card:hover{transform: translateY(-3px); box-shadow:0 26px 66px rgba(2,6,23,.12); border-color:rgba(255,177,0,.35)}
    .cap-ic{
      width:46px;height:46px;border-radius:18px;
      background:linear-gradient(180deg, rgba(255,177,0,.22), rgba(255,177,0,.06));
      border:1px solid rgba(255,177,0,.30);
      display:flex;align-items:center;justify-content:center;
      font-size:18px;
      margin-bottom:12px;
    }
    .cap-title{font-weight:1000;font-size:16px;margin:0}
    .cap-desc{color:rgba(31,35,40,.78);line-height:1.7;margin:10px 0 14px;font-size:13.5px;font-weight:650}
    .cap-tags{display:flex;gap:8px;flex-wrap:wrap}
    .pill{
      display:inline-flex;align-items:center;justify-content:center;
      padding:7px 10px;border-radius:999px;
      background:rgba(20,59,143,.06);
      border:1px solid rgba(20,59,143,.14);
      color:var(--accent2);
      font-weight:850;font-size:12px;
    }

    .services-row{
      display:grid;
      grid-template-columns: 1.06fr .94fr;
      gap:14px;
      margin-top:16px;
      align-items:stretch;
    }
    .info-callout{
      background:rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
    }
    .callout-title{font-weight:1000}
    .callout-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
      margin-top:12px;
    }
    .callout-item{
      padding:12px 12px;border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.55);
      font-weight:820;color:rgba(31,35,40,.82);
      transition: transform .18s ease, border-color .18s ease;
    }
    .callout-item:hover{transform: translateY(-2px); border-color:rgba(255,177,0,.35)}
    .match-mini{
      background:linear-gradient(180deg, rgba(255,177,0,.14), rgba(255,177,0,.04));
      border:1px solid rgba(255,177,0,.25);
      border-radius:20px;
      padding:16px;
      box-shadow:0 26px 66px rgba(255,177,0,.14);
    }
    .mini-head{display:flex;flex-direction:column;gap:8px;margin-bottom:10px}
    .mini-title{font-weight:1000;font-size:18px}
    .mini-desc{color:rgba(31,35,40,.78);line-height:1.7;font-weight:650}
    .mini-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
    .mini-foot{margin-top:12px}

    .steps-grid{
      display:grid;grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
      align-items:stretch;
    }
    .flow-step{
      background:rgba(255,255,255,.66);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.07);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:170px;
    }
    .flow-step:hover{transform: translateY(-3px); box-shadow:0 26px 66px rgba(2,6,23,.11); border-color:rgba(255,177,0,.35)}
    .flow-num{
      width:44px;height:44px;border-radius:18px;
      background:rgba(20,59,143,.08);
      border:1px solid rgba(20,59,143,.18);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;color:var(--accent2);
      margin-bottom:12px;
      box-shadow:0 12px 24px rgba(20,59,143,.08);
    }
    .flow-title{font-weight:1000}
    .flow-desc{color:var(--muted);line-height:1.65;margin-top:8px;font-weight:650;font-size:13.5px}

    .split-2{
      display:grid;
      grid-template-columns: 1.06fr .94fr;
      gap:14px;
      margin-top:16px;
      align-items:stretch;
    }
    .panel-card{
      background:rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
    }
    .panel-card.gold{
      background:linear-gradient(180deg, rgba(255,177,0,.18), rgba(255,177,0,.06));
      border-color:rgba(255,177,0,.30);
      box-shadow:0 30px 80px rgba(255,177,0,.15);
    }
    .panel-title{font-weight:1000;font-size:16px;margin:0 0 10px}
    .simple-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:10px;color:rgba(31,35,40,.82);font-weight:700}
    .simple-list li{padding-left:14px;position:relative}
    .simple-list li::before{
      content:"";
      position:absolute;left:0;top:10px;width:7px;height:7px;border-radius:50%;
      background:rgba(255,177,0,.70);
      box-shadow:0 0 0 3px rgba(255,177,0,.15);
    }
    .panel-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}

    .gold-grid{display:grid;gap:12px;margin-top:8px}
    .gold-item{display:flex;gap:12px;align-items:flex-start}
    .gold-ic{
      width:38px;height:38px;border-radius:16px;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(255,177,0,.30);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;color:#2a1900;flex:0 0 auto;
    }
    .gold-title{font-weight:1000}
    .gold-desc{color:var(--muted);margin-top:5px;line-height:1.6;font-weight:650;font-size:13.5px}

    .industry-grid{
      display:grid;grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .industry-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.07);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:190px;
    }
    .industry-card:hover{transform: translateY(-3px); box-shadow:0 26px 66px rgba(2,6,23,.11); border-color:rgba(255,177,0,.35)}
    .industry-top{display:flex;align-items:center;gap:12px;margin-bottom:10px}
    .industry-ic{
      width:46px;height:46px;border-radius:18px;background:rgba(255,177,0,.16);
      border:1px solid rgba(255,177,0,.30);
      display:flex;align-items:center;justify-content:center;
      font-size:18px;
    }
    .industry-title{font-weight:1000;font-size:15.5px}
    .industry-desc{margin:0;color:rgba(31,35,40,.78);line-height:1.7;font-weight:650;font-size:13.5px}
    .industry-tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}

    .network-grid{
      display:grid;grid-template-columns: 1fr 1fr 1.1fr;
      gap:12px;align-items:stretch;
    }
    .network-card{
      background:rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
    }
    .network-card.highlight{
      background:linear-gradient(180deg, rgba(20,59,143,.12), rgba(20,59,143,.04));
      border-color:rgba(20,59,143,.22);
    }
    .network-list{display:flex;flex-direction:column;gap:10px;margin-top:10px}
    .network-item{display:flex;gap:10px;align-items:flex-start;color:rgba(31,35,40,.80);font-weight:700;line-height:1.55}
    .bullet{
      width:10px;height:10px;border-radius:50%;
      background:rgba(255,177,0,.80);
      box-shadow:0 0 0 4px rgba(255,177,0,.16);
      margin-top:6px;flex:0 0 auto;
    }
    .network-desc{margin:10px 0 0;color:rgba(31,35,40,.78);line-height:1.7;font-weight:650}
    .network-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
    .network-mini{margin-top:14px;display:flex;flex-direction:column;gap:10px}
    .mini-row{display:flex;gap:10px;align-items:center;color:rgba(31,35,40,.82);font-weight:800}
    .mini-ic{
      width:28px;height:28px;border-radius:12px;background:rgba(255,177,0,.14);
      border:1px solid rgba(255,177,0,.26);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;
    }

    .case-grid{
      display:grid;grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .case-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.07);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:220px;
      display:flex;flex-direction:column;
    }
    .case-card:hover{transform: translateY(-3px); box-shadow:0 26px 66px rgba(2,6,23,.11); border-color:rgba(255,177,0,.35)}
    .case-top{display:flex;flex-direction:column;gap:10px}
    .case-badge{
      width:max-content;
      background:rgba(255,177,0,.14);
      border:1px solid rgba(255,177,0,.28);
      padding:7px 10px;border-radius:999px;
      font-weight:950;color:#2a1900;
    }
    .case-title{margin:0;font-size:15.5px;font-weight:1000;letter-spacing:-.2px}
    .case-desc{margin:10px 0 0;color:rgba(31,35,40,.78);line-height:1.7;font-weight:650;font-size:13.5px}
    .case-meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
    .meta-chip{
      padding:7px 10px;border-radius:999px;
      background:rgba(20,59,143,.06);
      border:1px solid rgba(20,59,143,.14);
      color:var(--accent2);
      font-weight:850;font-size:12px;
    }
    .case-link{
      margin-top:auto;
      text-decoration:none;color:var(--accent2);font-weight:900;
      padding-top:12px;
      border-top:1px solid rgba(15,23,42,.08);
    }
    .case-link:hover{color:#0b2a6b}

    .article-block{
      margin-top:18px;
      background:rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.07);
    }
    .article-head{display:flex;justify-content:space-between;align-items:flex-end;gap:12px;flex-wrap:wrap;margin-bottom:12px}
    .article-list{display:flex;flex-direction:column;gap:10px}
    .article-item{
      display:flex;gap:12px;align-items:center;
      text-decoration:none;color:inherit;
      padding:12px 12px;border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.55);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .article-item:hover{transform: translateY(-2px); border-color:rgba(255,177,0,.35); box-shadow:0 18px 44px rgba(2,6,23,.10)}
    .article-num{
      width:44px;height:44px;border-radius:18px;
      background:rgba(255,177,0,.16);
      border:1px solid rgba(255,177,0,.30);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;color:#2a1900;flex:0 0 auto;
    }
    .article-body{flex:1}
    .article-title{font-weight:1000;letter-spacing:-.2px}
    .article-desc{color:var(--muted);margin-top:6px;line-height:1.55;font-weight:650;font-size:13.5px}
    .article-arrow{font-weight:1000;color:rgba(20,59,143,.9)}

    .eval-grid{
      display:grid;grid-template-columns: .95fr 1.05fr;gap:14px;align-items:start;
    }
    .eval-score{
      background:linear-gradient(180deg, rgba(255,177,0,.18), rgba(255,177,0,.06));
      border:1px solid rgba(255,177,0,.30);
      border-radius:20px;
      padding:16px;
      box-shadow:0 30px 80px rgba(255,177,0,.15);
    }
    .score-top{display:flex;flex-direction:column;gap:8px}
    .score-star{color:#0b2a6b;font-size:18px;letter-spacing:2px}
    .score-label{color:rgba(31,35,40,.78);font-weight:800}
    .score-value{margin-top:10px;font-weight:1000;font-size:40px;letter-spacing:-.8px;line-height:1}
    .score-sub{margin-top:10px;color:rgba(31,35,40,.78);font-weight:800}
    .score-bullets{margin-top:14px;display:flex;flex-direction:column;gap:10px}
    .sb-item{display:flex;gap:10px;align-items:center; padding:10px 10px; border-radius:16px; background:rgba(255,255,255,.55); border:1px solid rgba(15,23,42,.08)}
    .sb-ic{
      width:30px;height:30px;border-radius:12px;background:rgba(255,177,0,.18);
      border:1px solid rgba(255,177,0,.30);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;color:#2a1900; flex:0 0 auto;
    }
    .eval-table-wrap{
      background:rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
    }
    .table-head{margin-bottom:12px}
    .table-scroll{overflow:auto;border-radius:16px;border:1px solid rgba(15,23,42,.08)}
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width:680px;
      background:rgba(255,255,255,.55);
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      text-align:left;
      vertical-align:top;
      font-weight:750;
      color:rgba(31,35,40,.86);
    }
    .compare-table thead th{
      position:sticky;top:0;background:rgba(255,177,0,.12);
      backdrop-filter: blur(4px);
      border-bottom:1px solid rgba(255,177,0,.22);
      font-size:13.5px;
      color:#2a1900;
    }
    .compare-table tbody td:first-child{font-weight:900}
    .t-good{
      display:inline-flex;align-items:center;justify-content:center;
      padding:6px 10px;border-radius:999px;
      background:var(--goodBg); border:1px solid rgba(15,118,110,.22);
      color:var(--good); font-weight:1000;
      margin-right:8px;
      font-size:12.5px;
    }
    .table-foot{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end;margin-top:14px}

    .price-grid{
      display:grid;grid-template-columns: 1fr 1fr;gap:14px;
      align-items:stretch;
    }
    .price-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
    }
    .alt-card{
      background:linear-gradient(180deg, rgba(20,59,143,.10), rgba(20,59,143,.04));
      border-color:rgba(20,59,143,.18);
    }
    .ordered{
      margin:0;padding-left:18px; color:rgba(31,35,40,.82); font-weight:750; line-height:1.7;
    }
    .ordered li{margin:8px 0}
    .price-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
    .tag-cloud{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
    .price-mini-table{
      margin-top:14px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      overflow:hidden;
      background:rgba(255,255,255,.55);
    }
    .mini-row-head{
      display:grid;grid-template-columns: 1fr 1.4fr;
      padding:12px 12px;background:rgba(255,177,0,.12);
      color:#2a1900;font-weight:1000;border-bottom:1px solid rgba(15,23,42,.08);
    }
    .mini-row{
      display:grid;grid-template-columns: 1fr 1.4fr;
      padding:12px 12px;border-bottom:1px solid rgba(15,23,42,.08);
      font-weight:750;color:rgba(31,35,40,.86);
    }
    .mini-row:last-child{border-bottom:none}
    .price-foot{margin-top:10px}

    .training-grid{
      display:grid;grid-template-columns: 1fr 1fr;gap:14px;align-items:stretch;
    }
    .train-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
    }
    .gold2{
      background:linear-gradient(180deg, rgba(255,177,0,.18), rgba(255,177,0,.06));
      border-color:rgba(255,177,0,.30);
      box-shadow:0 30px 80px rgba(255,177,0,.14);
    }
    .train-desc{color:rgba(31,35,40,.78);line-height:1.7;font-weight:650}
    .train-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
    .gold-list{display:flex;flex-direction:column;gap:12px;margin-top:10px}
    .goldli{display:flex;gap:12px;align-items:flex-start}
    .golddot{
      width:12px;height:12px;border-radius:50%;
      background:rgba(255,177,0,.78);
      box-shadow:0 0 0 4px rgba(255,177,0,.18);
      margin-top:6px;flex:0 0 auto;
    }
    .goldli-title{font-weight:1000}
    .goldli-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:650;font-size:13.5px}
    .train-foot{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}

    .review-band{
      margin-top:16px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.07);
    }
    .band-head{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:12px}
    .review-grid{
      display:grid;grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .review-card{
      background:rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:14px;
      box-shadow:0 12px 30px rgba(2,6,23,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:160px;
    }
    .review-card:hover{transform: translateY(-3px); box-shadow:0 26px 66px rgba(2,6,23,.11); border-color:rgba(255,177,0,.35)}
    .review-top{display:flex;gap:12px;align-items:flex-start}
    .review-avatar{
      width:44px;height:44px;border-radius:18px;
      background:rgba(255,177,0,.16);
      border:1px solid rgba(255,177,0,.30);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
      color:#2a1900;
    }
    .review-name{font-weight:1000}
    .review-stars{color:#0b2a6b;letter-spacing:1px;margin-top:6px}
    .review-text{margin:12px 0 0;color:rgba(31,35,40,.78);line-height:1.7;font-weight:650;font-size:13.5px}

    .form-split{
      display:grid;grid-template-columns: 1.05fr .95fr; gap:14px; align-items:start;
    }
    .form-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
    }
    .form-head{margin-bottom:12px}
    .form{display:flex;flex-direction:column;gap:12px}
    .grid-2{display:grid;grid-template-columns: 1fr 1fr;gap:12px}
    .field{display:flex;flex-direction:column;gap:8px}
    .field-label{font-weight:950;font-size:13px}
    input, select, textarea{
      width:100%;
      padding:12px 12px;border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background:rgba(255,255,255,.70);
      color:var(--text);
      font-size:14px;
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease;
    }
    textarea{resize:vertical;min-height:120px}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(255,177,0,.55);
      box-shadow:0 0 0 5px rgba(255,177,0,.20);
    }
    .field-hint{display:none}
    .form-foot{
      display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:4px;
    }
    .privacy{display:flex;align-items:center;gap:10px;color:var(--muted);font-weight:750}
    .privacy-dot{width:10px;height:10px;border-radius:50%;background:rgba(20,59,143,.22);border:1px solid rgba(20,59,143,.22)}
    .form-mini{
      display:flex;gap:12px;flex-wrap:wrap;margin-top:4px
    }
    .mini-kv{
      display:flex;gap:10px;align-items:center;
      padding:10px 12px;border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.55);
      color:rgba(31,35,40,.82);
      font-weight:800;
      font-size:13.5px;
    }
    .mini-ic{
      width:26px;height:26px;border-radius:12px;background:rgba(255,177,0,.14);
      border:1px solid rgba(255,177,0,.26);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;color:#2a1900;
    }

    .side-card{
      background:linear-gradient(180deg, rgba(255,177,0,.14), rgba(255,177,0,.04));
      border:1px solid rgba(255,177,0,.25);
      border-radius:20px;
      padding:16px;
      box-shadow:0 30px 80px rgba(255,177,0,.14);
      position:sticky; top:86px;
    }
    .side-head{margin-bottom:12px}
    .side-title{font-weight:1000;font-size:18px}
    .side-list{display:flex;flex-direction:column;gap:12px}
    .side-item{
      display:flex;gap:12px;align-items:flex-start;
      padding:12px 12px;border-radius:18px;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(15,23,42,.08);
      transition: transform .18s ease, border-color .18s ease;
    }
    .side-item:hover{transform: translateY(-2px); border-color:rgba(255,177,0,.35)}
    .side-ic{
      width:40px;height:40px;border-radius:18px;
      background:rgba(20,59,143,.08);
      border:1px solid rgba(20,59,143,.18);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;color:var(--accent2);
      flex:0 0 auto;
    }
    .side-item-title{font-weight:1000}
    .side-item-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:650;font-size:13.5px}
    .side-divider{height:1px;background:rgba(15,23,42,.10);margin:14px 0}
    .quick-links{display:flex;gap:10px;flex-wrap:wrap}
    .pill-link{
      text-decoration:none;
      padding:10px 12px;border-radius:999px;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(15,23,42,.10);
      color:rgba(31,35,40,.86);
      font-weight:900;font-size:13px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .pill-link:hover{transform: translateY(-2px); border-color:rgba(255,177,0,.35)}
    .side-contact{margin-top:14px;display:flex;flex-direction:column;gap:10px}
    .contact-row{display:flex;gap:10px;align-items:center;font-weight:850;color:rgba(31,35,40,.84)}
    .contact-ic{
      width:32px;height:32px;border-radius:14px;background:rgba(255,177,0,.14);
      border:1px solid rgba(255,177,0,.26);
      display:flex;align-items:center;justify-content:center;font-weight:1000;color:#2a1900;
      flex:0 0 auto;
    }
    .contact-text{font-weight:850}
    .side-bottom{display:flex;flex-direction:column}

    .agent-grid{
      display:grid;grid-template-columns: 1.02fr .98fr;gap:14px;
    }
    .agent-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
    }
    .agent-card.gold3{
      background:linear-gradient(180deg, rgba(20,59,143,.10), rgba(20,59,143,.04));
      border-color:rgba(20,59,143,.18);
    }
    .agent-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
    .agent-chips{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
    .network-mini2{margin-top:14px;display:flex;flex-direction:column;gap:12px}
    .mini2-item{display:flex;gap:12px;align-items:flex-start;padding:12px 12px;border-radius:18px;background:rgba(255,255,255,.55);border:1px solid rgba(15,23,42,.08)}
    .mini2-ic{width:42px;height:42px;border-radius:18px;background:rgba(255,177,0,.16);border:1px solid rgba(255,177,0,.30);display:flex;align-items:center;justify-content:center;font-weight:1000;color:#2a1900;flex:0 0 auto}
    .mini2-title{font-weight:1000}
    .mini2-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:650;font-size:13.5px}

    .help-grid{
      display:grid;grid-template-columns: 1.05fr .95fr 1fr;gap:12px;align-items:stretch;
    }
    .help-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .help-card:hover{transform: translateY(-3px); box-shadow:0 26px 66px rgba(2,6,23,.11); border-color:rgba(255,177,0,.35)}
    .help-desc{color:rgba(31,35,40,.78);line-height:1.7;font-weight:650;margin-top:10px}
    .help-tags{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
    .help-metrics{display:flex;flex-direction:column;gap:12px;margin-top:12px}
    .hm{display:flex;gap:12px;align-items:flex-start}
    .hm-ic{
      width:40px;height:40px;border-radius:18px;background:rgba(255,177,0,.16);
      border:1px solid rgba(255,177,0,.30);
      display:flex;align-items:center;justify-content:center;font-weight:1000;color:#2a1900;flex:0 0 auto;
    }
    .hm-title{font-weight:1000}
    .hm-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:650;font-size:13.5px}
    .help-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
    .help-links{display:flex;flex-direction:column;gap:10px;margin-top:12px}

    .faq-grid{
      display:grid;grid-template-columns: 1fr 1fr;gap:14px;
      align-items:start;
    }
    .faq-col{background:rgba(255,255,255,.65);border:1px solid rgba(15,23,42,.10);border-radius:20px;padding:14px;box-shadow:0 18px 44px rgba(2,6,23,.07)}
    .sub-title{margin:4px 4px 10px;font-weight:1000}
    .faq-list{display:flex;flex-direction:column;gap:10px}
    .faq-item{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.55);
      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,35,40,.92);
    }
    .faq-q:focus{outline:none; box-shadow: inset 0 0 0 3px rgba(255,177,0,.25)}
    .faq-icon{
      width:34px;height:34px;border-radius:14px;
      background:rgba(255,177,0,.14);
      border:1px solid rgba(255,177,0,.28);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;color:#2a1900;
      flex:0 0 auto;
      transition: transform .2s ease;
    }
    .faq-a{
      padding:0 14px 14px;
      color:rgba(31,35,40,.78);
      line-height:1.75;
      font-weight:650;
      font-size:13.8px;
    }
    .faq-cta{
      margin-top:14px;
      border-radius:20px;
      padding:16px;
      border:1px solid rgba(255,177,0,.26);
      background:linear-gradient(180deg, rgba(255,177,0,.16), rgba(255,177,0,.04));
      box-shadow:0 30px 80px rgba(255,177,0,.14);
      display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;
    }
    .faq-cta-title{font-weight:1000;font-size:16px}
    .faq-cta-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,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:180px;
      display:flex;flex-direction:column;
    }
    .wiki-card:hover{transform: translateY(-3px); box-shadow:0 26px 66px rgba(2,6,23,.11); border-color:rgba(255,177,0,.35)}
    .wiki-title{font-weight:1000;margin:0}
    .wiki-desc{color:rgba(31,35,40,.78);line-height:1.7;font-weight:650;margin:10px 0 0; font-size:13.5px}
    .wiki-link{margin-top:auto;text-decoration:none;color:var(--accent2);font-weight:950;padding-top:14px;border-top:1px solid rgba(15,23,42,.08)}
    .wiki-link:hover{color:#0b2a6b}

    .news-grid{
      display:grid;grid-template-columns: repeat(3, minmax(0,1fr));gap:12px;
    }
    .news-item{
      text-decoration:none;color:inherit;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:120px;
      display:flex;flex-direction:column;
      justify-content:space-between;
    }
    .news-item:hover{transform: translateY(-3px); box-shadow:0 26px 66px rgba(2,6,23,.11); border-color:rgba(255,177,0,.35)}
    .news-date{color:rgba(31,35,40,.70);font-weight:850;font-size:13px}
    .news-title{font-weight:1000;letter-spacing:-.2px;margin-top:10px}
    .news-foot{color:var(--accent2);font-weight:950;margin-top:14px}

    .mini-gallery{margin-top:16px}
    .gallery-head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:12px}
    .gallery-grid{display:grid;grid-template-columns: repeat(3, minmax(0,1fr));gap:12px}
    .gal{
      margin:0;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .gal:hover{transform: translateY(-3px); box-shadow:0 26px 66px rgba(2,6,23,.11); border-color:rgba(255,177,0,.35)}
    .gal-media{padding:12px 12px 0}
    .gal-media img{width:100%;display:block;border-radius:14px;border:1px solid rgba(15,23,42,.06); background:#fff}
    .gal-media.square img{aspect-ratio:1/1; object-fit:cover}
    .gal-cap{
      padding:12px 14px 14px;
      color:rgba(31,35,40,.78);
      font-weight:750; line-height:1.5;
      border-top:1px solid rgba(15,23,42,.08);
      font-size:13.5px;
    }

    .contact-grid{
      display:grid;grid-template-columns: 1fr 1fr;gap:14px;align-items:start;
    }
    .contact-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 18px 44px rgba(2,6,23,.08);
    }
    .alt-contact{
      background:linear-gradient(180deg, rgba(20,59,143,.10), rgba(20,59,143,.04));
      border-color:rgba(20,59,143,.18);
    }
    .contact-head{margin-bottom:12px}
    .panel-title{font-weight:1000}
    .contact-lines{display:flex;flex-direction:column;gap:12px}
    .line-row{display:flex;gap:12px;align-items:flex-start}
    .line-ic{
      width:42px;height:42px;border-radius:18px;
      background:rgba(255,177,0,.16);
      border:1px solid rgba(255,177,0,.30);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;color:#2a1900;flex:0 0 auto;
    }
    .line-title{color:rgba(31,35,40,.78);font-weight:900}
    .line-value{margin-top:6px;font-weight:850;color:rgba(31,35,40,.92);line-height:1.5}
    .contact-qr{
      margin-top:14px;
      display:flex;gap:14px;align-items:center;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(15,23,42,.08);
      border-radius:20px;
      padding:12px 12px;
    }
    .contact-qr img{width:120px;height:auto;border-radius:14px;border:1px solid rgba(15,23,42,.08);background:#fff}
    .qr-tip{color:rgba(31,35,40,.78);font-weight:850;line-height:1.5}

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

    .contact-links{
      display:grid;grid-template-columns: 1fr 1fr;gap:12px;
      margin-top:10px;
    }
    .contact-link{
      text-decoration:none;
      padding:12px 12px;border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.55);
      font-weight:950;color:rgba(31,35,40,.88);
      transition: transform .18s ease, border-color .18s ease;
      text-align:center;
    }
    .contact-link:hover{transform: translateY(-2px); border-color:rgba(255,177,0,.35)}
    .contact-divider{height:1px;background:rgba(15,23,42,.12);margin:14px 0}
    .contact-mini .friend-links{
      display:flex;flex-direction:column;gap:10px;margin-top:10px;
    }
    .friend-links a{
      text-decoration:none;
      color:rgba(31,35,40,.86);
      font-weight:850;
      padding:10px 12px;border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.55);
      transition: transform .18s ease, border-color .18s ease;
    }
    .friend-links a:hover{transform: translateY(-2px); border-color:rgba(255,177,0,.35)}
    .contact-ask{margin-top:14px}
    .ask-title{font-weight:1000;font-size:16px}
    .ask-desc{margin-top:8px;color:rgba(31,35,40,.78);line-height:1.7;font-weight:650}
    .ask-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}

    .footer-top{padding:24px 0 10px}
    .footer-brief{
      background:linear-gradient(180deg, rgba(255,177,0,.18), rgba(255,177,0,.05));
      border:1px solid rgba(255,177,0,.30);
      border-radius:22px;
      padding:16px;
      box-shadow:0 30px 80px rgba(255,177,0,.14);
      display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;
    }
    .footer-title{font-weight:1000;font-size:18px}
    .footer-desc{margin-top:8px;color:rgba(31,35,40,.78);line-height:1.7;font-weight:650}

    .site-footer{
      background:linear-gradient(180deg, rgba(13,43,102,.98), rgba(13,43,102,.95));
      color:#e5e7eb;
      border-top:1px solid rgba(255,255,255,.12);
    }
    .footer-wrap{
      padding:26px 0;
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:18px;
      align-items:start;
    }
    .footer-col .footer-title{color:#fff;font-weight:1000;margin-bottom:12px}
    .footer-brand{display:flex;gap:12px;align-items:center}
    .footer-logo{width:46px}
    .footer-brand-name{color:#fff;font-weight:1000}
    .footer-brand-sub{color:rgba(229,231,235,.85);font-weight:750;font-size:13px;margin-top:6px;line-height:1.5}
    .footer-muted{color:rgba(229,231,235,.85);margin-top:10px;font-weight:750}
    .footer-links-grid{display:flex;flex-wrap:wrap;gap:10px}
    .footer-links-grid a{
      color:rgba(229,231,235,.92);
      text-decoration:none;
      padding:10px 12px;border-radius:14px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.06);
      font-weight:850;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .footer-links-grid a:hover{transform: translateY(-2px); background:rgba(255,177,0,.16); border-color:rgba(255,177,0,.35)}
    .footer-contact{display:flex;flex-direction:column;gap:10px}
    .footer-link{color:rgba(229,231,235,.92);text-decoration:none;font-weight:900;padding:10px 12px;border-radius:14px;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.06)}
    .footer-link:hover{background:rgba(255,177,0,.16); border-color:rgba(255,177,0,.35)}
    .footer-copyright{margin-top:14px;color:rgba(229,231,235,.80);font-weight:750}

    .to-top{
      position:fixed;
      right:16px;
      bottom:92px;
      width:44px;height:44px;border-radius:16px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(13,43,102,.92);
      color:#fff;
      box-shadow:0 18px 44px rgba(2,6,23,.22);
      cursor:pointer;
      display:none;
      transition: transform .18s ease, opacity .18s ease;
      z-index:70;
    }
    .to-top:hover{transform: translateY(-2px)}

    .float-chat{
      position:fixed;right:16px;bottom:140px;z-index:75;
      display:flex;align-items:flex-end;gap:10px;
    }
    .chat-btn{
      width:54px;height:54px;border-radius:20px;
      border:1px solid rgba(255,177,0,.35);
      background:linear-gradient(180deg, rgba(255,207,74,.95), rgba(255,177,0,.92));
      color:#1a1200;
      box-shadow:0 24px 66px rgba(255,177,0,.26);
      text-decoration:none;
      display:flex;align-items:center;justify-content:center;flex-direction:column;gap:4px;
      font-weight:1000;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .chat-btn:hover{transform: translateY(-3px); box-shadow:0 34px 90px rgba(255,177,0,.34)}
    .chat-ic{font-size:12.5px;font-weight:1000}
    .chat-text{font-size:12px;font-weight:950}

    .chat-pop{
      width:300px;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(15,23,42,.12);
      border-radius:22px;
      box-shadow:0 30px 90px rgba(2,6,23,.18);
      overflow:hidden;
      transform-origin: right bottom;
      animation: popIn .18s ease both;
    }
    @keyframes popIn{
      from{opacity:0;transform: translateY(8px) scale(.98)}
      to{opacity:1;transform: translateY(0) scale(1)}
    }
    .chat-pop-head{
      padding:12px 12px;
      background:linear-gradient(180deg, rgba(255,177,0,.16), rgba(255,177,0,.06));
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex;align-items:center;justify-content:space-between;gap:10px;
    }
    .chat-pop-title{font-weight:1000}
    .chat-close{
      width:34px;height:34px;border-radius:14px;border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.65);cursor:pointer;
      font-size:18px;line-height:0;
    }
    .chat-pop-body{padding:12px 12px}
    .chat-pop-body img{width:100%;height:auto;display:block;border-radius:16px;border:1px solid rgba(15,23,42,.08);background:#fff}
    .chat-pop-desc{margin-top:10px;color:rgba(31,35,40,.78);font-weight:800;line-height:1.5}
    .chat-pop-actions{padding:12px 12px 14px;display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end;border-top:1px solid rgba(15,23,42,.08)}

    .toast{
      position:fixed;
      left:50%;
      top:18px;
      transform: translateX(-50%);
      background:rgba(13,43,102,.95);
      color:#fff;
      border:1px solid rgba(255,255,255,.14);
      padding:10px 14px;
      border-radius:16px;
      box-shadow:0 24px 66px rgba(2,6,23,.22);
      z-index:80;
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
      font-weight:850;
    }
    .toast.show{
      opacity:1;
      transform: translateX(-50%) translateY(6px);
    }

    .mobile-bottom-bar{
      display:none;
      position:fixed;left:0;right:0;bottom:0;
      background:rgba(250,248,240,.92);
      backdrop-filter: blur(10px);
      border-top:1px solid rgba(15,23,42,.10);
      z-index:65;
      padding:10px 12px;
      gap:10px;
    }
    .mb-link{
      flex:1;
      text-align:center;
      text-decoration:none;
      color:rgba(31,35,40,.88);
      font-weight:950;
      padding:12px 10px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.55);
    }
    .mb-link.solid{
      background:linear-gradient(180deg, var(--primary2), var(--primary));
      border-color:rgba(232,155,0,.55);
      color:#1a1200;
    }

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

    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; gap:16px}
      .hero-title{font-size:34px}
      .hero-badges{grid-template-columns: 1fr; }
      .metrics-grid{grid-template-columns: 1fr 1fr}
      .feature-split{grid-template-columns: 1fr}
      .cards-grid{grid-template-columns: 1fr 1fr}
      .services-row{grid-template-columns: 1fr}
      .steps-grid{grid-template-columns: 1fr 1fr}
      .split-2{grid-template-columns: 1fr}
      .industry-grid{grid-template-columns: 1fr 1fr}
      .network-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr 1fr}
      .eval-grid{grid-template-columns: 1fr}
      .price-grid{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr 1fr}
      .form-split{grid-template-columns: 1fr}
      .side-card{position:relative; top:auto}
      .agent-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}
      .gallery-grid{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .footer-wrap{grid-template-columns: 1fr; gap:16px}
      .float-chat{bottom:110px}
    }

    @media (max-width: 720px){
      .header-wrap{align-items:flex-start}
      .brand-meta{display:none}
      .brand{min-width:auto}
      .header-cta{min-width:auto}
      .menu{display:none}
      .nav-toggle{display:flex}
      .menu.show{display:flex}
      .menu{
        position:absolute;left:0;right:0;top:64px;
        background:rgba(250,248,240,.96);
        border-bottom:1px solid rgba(15,23,42,.10);
        padding:12px 18px 16px;
        justify-content:flex-start;
        flex-wrap:wrap;
        gap:10px;
      }
      .menu-link{padding:10px 12px;background:rgba(255,255,255,.55);border:1px solid rgba(15,23,42,.10)}
      .hero-title{font-size:30px}
      .cards-grid{grid-template-columns: 1fr}
      .metrics-grid{grid-template-columns: 1fr}
      .steps-grid{grid-template-columns: 1fr}
      .industry-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .contact-links{grid-template-columns: 1fr}
      .mobile-bottom-bar{display:flex}
      .to-top{bottom:92px}
      .float-chat{right:12px; bottom:132px}
      .chat-pop{width:280px}
      .site-footer{padding-bottom:84px}
    }