:root{
      --bg:#fbf7f2;
      --panel:#ffffff;
      --text:#1f2937;
      --muted:#5b6473;
      --line:rgba(17,24,39,.10);
      --shadow:0 10px 30px rgba(17,24,39,.08);
      --shadow2:0 12px 45px rgba(17,24,39,.10);
      --brand1:#6d28d9;
      --brand2:#0ea5e9;
      --brand3:#f97316;
      --brand4:#22c55e;
      --focus:rgba(14,165,233,.25);
      --radius:18px;
      --radius-sm:14px;
      --max:1140px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, "Noto Sans", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 500px at 15% -10%, rgba(109,40,217,.18), transparent 60%),
        radial-gradient(800px 450px at 90% 10%, rgba(14,165,233,.16), transparent 60%),
        radial-gradient(700px 400px at 50% 0%, rgba(249,115,22,.12), transparent 58%),
        linear-gradient(180deg, #fff 0%, var(--bg) 26%, #fff 78%, #fbf7f2 100%);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
      outline:3px solid var(--focus);
      outline-offset:2px;
    }

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

    .sr-only{
      position:absolute; width:1px; height:1px;
      padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0);
      border:0;
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      background:rgba(255,255,255,.75);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(17,24,39,.08);
    }

    .nav-container{
      display:flex; align-items:center; justify-content:space-between;
      height:72px;
      gap:14px;
    }

    .brand-link{display:flex; align-items:center}
    .ai-page-logo{width:150px; max-width:150px}
    @media (max-width:560px){ .ai-page-logo{width:128px; max-width:128px} }

    .nav-desktop{
      display:flex; align-items:center; gap:18px;
      flex:1;
      justify-content:center;
    }
    .nav-link{
      font-size:14px;
      color:rgba(31,41,55,.86);
      padding:10px 8px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:rgba(17,24,39,.05);
      color:rgba(31,41,55,1);
      transform:translateY(-1px);
    }

    .nav-actions{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:10px 14px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
      color:rgba(31,41,55,.92);
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      user-select:none;
      font-weight:650;
      font-size:14px;
      line-height:1;
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 12px 25px rgba(17,24,39,.10)}
    .btn:active{transform:translateY(0px); box-shadow:none}
    .btn-primary{
      border-color:rgba(109,40,217,.22);
      background:linear-gradient(135deg, rgba(109,40,217,.95), rgba(14,165,233,.95));
      color:#fff;
      box-shadow:0 12px 28px rgba(109,40,217,.20);
    }
    .btn-primary:hover{box-shadow:0 16px 40px rgba(109,40,217,.26)}
    .btn-ghost{
      background:rgba(255,255,255,.75);
      border-color:rgba(17,24,39,.12);
      box-shadow:none;
    }
    .btn-soft{
      background:rgba(14,165,233,.08);
      border-color:rgba(14,165,233,.20);
      color:rgba(15,23,42,.95);
      box-shadow:none;
    }
    .btn-soft:hover{background:rgba(14,165,233,.12); box-shadow:0 12px 25px rgba(14,165,233,.12)}
    .btn-lg{padding:12px 18px; border-radius:16px; font-size:15px}
    .btn-full{width:100%}

    .nav-toggle{display:none}
    .nav-toggle-text{font-weight:700}
    .burger{
      width:18px; height:12px; position:relative; display:inline-block;
    }
    .burger::before,.burger::after{
      content:""; position:absolute; left:0; right:0; height:2px; background:currentColor; border-radius:3px;
    }
    .burger::before{top:0}
    .burger::after{bottom:0}
    .burger{
      border-top:2px solid currentColor;
      border-bottom:2px solid currentColor;
      box-sizing:border-box;
      padding:2px 0;
    }
    .burger::after{bottom:-2px}
    .burger::before{top:-2px}

    @media (max-width:980px){
      .nav-desktop{display:none}
      .nav-toggle{display:inline-flex}
      .nav-actions .btn-primary{display:none}
    }

    .nav-mobile{
      display:none;
      border-bottom:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.86);
      backdrop-filter: blur(10px);
    }
    .nav-mobile-inner{
      padding:14px 18px 18px;
    }
    .nav-mobile-head{
      display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;
    }
    .nav-mobile-title{font-weight:800}
    .nav-close{padding:10px 12px}
    .nav-mobile-links{
      display:grid; gap:10px;
      padding:10px 0 14px;
    }
    .nav-mobile-link{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      font-weight:700;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .nav-mobile-link:hover{transform:translateY(-1px); box-shadow:0 12px 25px rgba(17,24,39,.10); background:#fff}
    .nav-mobile-ctas{display:grid; gap:10px}
    @media (max-width:980px){
      .nav-mobile[data-open="true"]{display:block}
    }

    .hero{
      position:relative;
      padding:56px 0 22px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:26px;
      align-items:start;
      padding-top:6px;
    }
    @media (max-width:980px){
      .hero{padding:36px 0 10px}
      .hero-grid{grid-template-columns:1fr; gap:18px}
    }

    .hero-left{
      padding:8px 0;
    }

    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.68);
      box-shadow:0 10px 25px rgba(17,24,39,.06);
      font-weight:750;
      color:rgba(31,41,55,.92);
      letter-spacing:.2px;
    }

    .hero-title{
      margin:16px 0 10px;
      font-size:44px;
      line-height:1.08;
      letter-spacing:-.6px;
    }
    @media (max-width:560px){ .hero-title{font-size:34px} }

    .hero-sub{
      margin:0;
      color:rgba(31,41,55,.78);
      font-size:16px;
      line-height:1.7;
      max-width:62ch;
    }

    .hero-cta-row{
      display:flex; gap:12px; margin-top:18px; flex-wrap:wrap;
    }

    .hero-fast{
      margin-top:18px;
      display:grid; gap:12px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    @media (max-width:860px){ .hero-fast{grid-template-columns:1fr; } }

    .fast-item{
      display:flex; align-items:flex-start; gap:12px;
      padding:14px 14px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .fast-item:hover{transform:translateY(-2px); box-shadow:0 18px 38px rgba(17,24,39,.10); background:rgba(255,255,255,.80)}
    .fast-icon{
      width:34px; height:34px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      color:rgba(109,40,217,.95);
      background:
        radial-gradient(14px 14px at 30% 25%, rgba(14,165,233,.30), transparent 55%),
        linear-gradient(135deg, rgba(109,40,217,.18), rgba(14,165,233,.12));
      border:1px solid rgba(109,40,217,.18);
      flex:0 0 auto;
    }
    .fast-title{font-weight:850; font-size:14px; margin-bottom:4px}
    .fast-desc{font-size:13px; color:rgba(31,41,55,.72); line-height:1.4}

    .hero-right{
      position:relative;
      padding-top:6px;
    }

    .data-panel{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.10);
      border-radius:22px;
      box-shadow:var(--shadow);
      padding:18px 16px 14px;
      overflow:hidden;
    }
    .data-panel::before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(220px 160px at 20% 0%, rgba(109,40,217,.20), transparent 55%),
        radial-gradient(240px 180px at 90% 20%, rgba(14,165,233,.18), transparent 55%),
        radial-gradient(180px 120px at 40% 100%, rgba(249,115,22,.12), transparent 55%);
      pointer-events:none;
    }
    .data-title{
      position:relative;
      font-weight:900;
      margin-bottom:12px;
      letter-spacing:.2px;
    }
    .data-grid{
      position:relative;
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    @media (max-width:980px){ .data-grid{grid-template-columns:repeat(2, minmax(0, 1fr)); } }
    @media (max-width:560px){ .data-grid{grid-template-columns:1fr; } }

    .metric-card{
      position:relative;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      border-radius:18px;
      padding:14px 14px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      min-height:108px;
    }
    .metric-card:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,.88);
      box-shadow:0 18px 40px rgba(17,24,39,.10);
    }
    .metric-top{display:flex; align-items:center; gap:10px; margin-bottom:8px}
    .metric-dot{
      width:10px; height:10px; border-radius:99px;
      background:linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow:0 0 0 4px rgba(109,40,217,.12);
    }
    .metric-label{font-size:13px; color:rgba(31,41,55,.75); font-weight:750}
    .metric-value{font-size:18px; font-weight:920; margin:2px 0 6px}
    .metric-desc{font-size:13px; color:rgba(31,41,55,.70); line-height:1.4}

    .data-foot{position:relative; margin-top:12px}
    .pill-row{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-bottom:10px;
    }
    .pill{
      font-size:12px;
      font-weight:750;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.70);
      color:rgba(31,41,55,.80);
    }
    .micro-cta{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
    .link-btn{
      font-weight:800;
      color:rgba(109,40,217,.95);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(109,40,217,.18);
      background:rgba(109,40,217,.06);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      display:inline-flex; align-items:center;
    }
    .link-btn:hover{transform:translateY(-1px); box-shadow:0 14px 30px rgba(109,40,217,.14); background:rgba(109,40,217,.10)}
    .sep{width:1px; height:18px; background:rgba(17,24,39,.12); margin:0 2px}

    .hero-note{
      margin-top:14px;
      border-radius:18px;
      border:1px dashed rgba(109,40,217,.25);
      background:rgba(255,255,255,.55);
      padding:14px 14px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .note-mark{
      width:34px; height:34px; border-radius:14px;
      background:linear-gradient(135deg, rgba(109,40,217,.20), rgba(14,165,233,.18));
      border:1px solid rgba(109,40,217,.18);
      box-shadow:0 16px 35px rgba(109,40,217,.10);
      flex:0 0 auto;
      position:relative;
      overflow:hidden;
    }
    .note-mark::after{
      content:"";
      position:absolute; inset:-30px;
      background:conic-gradient(from 180deg, rgba(109,40,217,.35), rgba(14,165,233,.32), rgba(249,115,22,.22), rgba(109,40,217,.35));
      animation: spin 7s linear infinite;
      opacity:.8;
    }
    .note-text{
      color:rgba(31,41,55,.78);
      font-weight:650;
      line-height:1.55;
      font-size:14px;
      margin-top:4px;
    }

    @keyframes spin{
      from{transform:rotate(0deg)}
      to{transform:rotate(360deg)}
    }

    .hero-wave{
      position:absolute; left:0; right:0; bottom:-40px; height:90px;
      background:
        radial-gradient(600px 60px at 20% 20%, rgba(109,40,217,.20), transparent 70%),
        radial-gradient(520px 60px at 80% 10%, rgba(14,165,233,.20), transparent 70%),
        linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.55));
      pointer-events:none;
      filter:saturate(1.1);
    }

    .section{
      padding:56px 0;
    }
    .section-soft{
      background:linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.55));
      border-top:1px solid rgba(17,24,39,.06);
      border-bottom:1px solid rgba(17,24,39,.06);
    }
    @media (max-width:560px){ .section{padding:42px 0} }

    .section-head{
      text-align:left;
      margin-bottom:22px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      font-weight:850;
      color:rgba(31,41,55,.84);
      font-size:13px;
      letter-spacing:.2px;
      margin-bottom:12px;
    }
    .section-title{
      margin:0 0 10px;
      font-size:30px;
      line-height:1.2;
      letter-spacing:-.4px;
    }
    @media (max-width:560px){ .section-title{font-size:24px} }

    .section-sub{
      margin:0;
      color:rgba(31,41,55,.74);
      line-height:1.7;
      max-width:76ch;
    }

    .two-col{
      display:grid; gap:14px;
      grid-template-columns: 1fr 1fr;
      align-items:stretch;
    }
    @media (max-width:980px){ .two-col{grid-template-columns:1fr} }

    .three-col{
      display:grid; gap:12px;
      grid-template-columns: repeat(3, minmax(0,1fr));
      margin-top:14px;
    }
    @media (max-width:980px){ .three-col{grid-template-columns:1fr} }

    .card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.10);
      border-radius:var(--radius);
      box-shadow:none;
    }

    .card.lift, .lift{
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    }
    .card.lift:hover, .lift:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow2);
      background:rgba(255,255,255,.88);
      border-color:rgba(109,40,217,.20);
    }

    .card-icon{
      width:46px; height:46px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(135deg, rgba(109,40,217,.16), rgba(14,165,233,.12));
      border:1px solid rgba(109,40,217,.16);
      color:rgba(109,40,217,.95);
      margin-bottom:14px;
    }
    .card-title{
      margin:0 0 8px;
      font-size:18px;
      letter-spacing:-.2px;
      font-weight:920;
    }
    .card-text{
      margin:0;
      color:rgba(31,41,55,.74);
      line-height:1.7;
      font-weight:620;
      font-size:14px;
    }
    .mini-list{
      margin-top:14px;
      display:grid; gap:8px;
    }
    .mini-li{
      font-size:13px;
      color:rgba(31,41,55,.78);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.55);
      border-radius:14px;
      padding:10px 12px;
      font-weight:680;
    }
    .check-list{
      list-style:none; padding:0; margin:12px 0 0;
      display:grid; gap:10px;
    }
    .check{
      display:inline-flex; align-items:center; justify-content:center;
      width:18px; height:18px;
      border-radius:6px;
      background:rgba(34,197,94,.14);
      color:rgba(21,128,61,.95);
      font-weight:900;
      margin-right:10px;
      font-size:12px;
    }
    .check-list li{
      font-weight:700;
      color:rgba(31,41,55,.78);
      font-size:14px;
      display:flex; align-items:flex-start;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.55);
    }
    .check-list-2 li{background:rgba(255,255,255,.62)}

    .value-tile{
      padding:16px 16px;
      border-radius:20px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.68);
    }
    .tile-top{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px}
    .tile-num{
      font-weight:980;
      font-size:16px;
      letter-spacing:.2px;
      color:rgba(31,41,55,.95);
    }
    .tile-tag{
      font-weight:900;
      font-size:13px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      color:rgba(31,41,55,.78);
      white-space:nowrap;
    }
    .tile-desc{
      color:rgba(31,41,55,.74);
      line-height:1.6;
      font-weight:650;
      font-size:14px;
    }

    .service-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(2, minmax(0,1fr));
    }
    @media (max-width:980px){ .service-grid{grid-template-columns:1fr} }

    .service-card{
      padding:16px 16px;
      border-radius:20px;
    }
    .service-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .service-icon{
      width:44px; height:44px; border-radius:16px;
      border:1px solid rgba(109,40,217,.18);
      background:linear-gradient(135deg, rgba(109,40,217,.16), rgba(14,165,233,.12));
      color:rgba(109,40,217,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .service-title{
      margin:0;
      font-weight:950;
      font-size:17px;
      letter-spacing:-.2px;
      flex:1;
    }
    .service-desc{
      margin:10px 0 12px;
      color:rgba(31,41,55,.74);
      line-height:1.7;
      font-size:14px;
      font-weight:640;
    }
    .service-tags{display:flex; flex-wrap:wrap; gap:8px}
    .tag{
      font-size:12px;
      font-weight:780;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      color:rgba(31,41,55,.78);
    }

    .callout-row{margin-top:18px}
    .callout{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      padding:16px 16px;
      border-radius:22px;
      background:
        radial-gradient(420px 220px at 15% 0%, rgba(109,40,217,.20), transparent 58%),
        radial-gradient(420px 240px at 90% 20%, rgba(14,165,233,.18), transparent 58%),
        rgba(255,255,255,.70);
    }
    @media (max-width:900px){ .callout{flex-direction:column} }
    .callout-title{margin:0 0 8px; font-size:20px; letter-spacing:-.25px; font-weight:980}
    .callout-text{margin:0; color:rgba(31,41,55,.74); line-height:1.7; font-weight:640; max-width:62ch}
    .callout-right{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
    @media (max-width:900px){ .callout-right{justify-content:flex-start} }

    .steps-wrap{
      display:grid; gap:12px;
      grid-template-columns: repeat(4, minmax(0,1fr));
    }
    @media (max-width:1080px){ .steps-wrap{grid-template-columns:repeat(2, minmax(0,1fr))} }
    @media (max-width:560px){ .steps-wrap{grid-template-columns:1fr} }

    .step-card{
      padding:16px 16px;
      border-radius:20px;
      background:rgba(255,255,255,.70);
    }
    .step-num{
      font-weight:980;
      color:rgba(109,40,217,.95);
      letter-spacing:.6px;
      margin-bottom:10px;
      display:inline-block;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(109,40,217,.16);
      background:rgba(109,40,217,.08);
    }
    .step-title{margin:0 0 8px; font-size:16px; font-weight:950}
    .step-text{margin:0; color:rgba(31,41,55,.74); line-height:1.65; font-weight:630; font-size:14px}
    .step-points{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
    .chip{
      font-size:12px; font-weight:780;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      color:rgba(31,41,55,.78);
    }

    .timeline{
      margin-top:16px;
      border-radius:24px;
      border:1px solid rgba(17,24,39,.08);
      background:
        radial-gradient(600px 240px at 30% 0%, rgba(14,165,233,.12), transparent 60%),
        radial-gradient(580px 260px at 80% 30%, rgba(249,115,22,.10), transparent 58%),
        rgba(255,255,255,.60);
      padding:16px 16px;
    }
    .timeline-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .timeline-title{margin:0; font-size:18px; font-weight:980; letter-spacing:-.2px}
    .timeline-sub{color:rgba(31,41,55,.74); font-weight:650}
    .timeline-row{
      display:grid; gap:12px;
      grid-template-columns: repeat(4, minmax(0,1fr));
      margin-top:12px;
    }
    @media (max-width:980px){ .timeline-row{grid-template-columns:1fr 1fr} }
    @media (max-width:560px){ .timeline-row{grid-template-columns:1fr} }

    .time-point{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:14px 14px;
      display:flex; flex-direction:column; gap:8px;
    }
    .time-dot{
      width:12px; height:12px; border-radius:99px;
      background:linear-gradient(135deg, rgba(109,40,217,.95), rgba(14,165,233,.95));
      box-shadow:0 0 0 5px rgba(109,40,217,.12);
    }
    .time-title{font-weight:900}
    .time-desc{color:rgba(31,41,55,.74); font-weight:650; line-height:1.6; font-size:14px}

    .industry-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(4, minmax(0,1fr));
    }
    @media (max-width:1080px){ .industry-grid{grid-template-columns:repeat(2, minmax(0,1fr))} }
    @media (max-width:560px){ .industry-grid{grid-template-columns:1fr} }

    .industry-card{
      padding:16px 16px;
      border-radius:22px;
      background:
        radial-gradient(260px 160px at 20% 0%, rgba(109,40,217,.14), transparent 60%),
        rgba(255,255,255,.70);
    }
    .industry-title{font-weight:980; font-size:16px; margin-bottom:8px}
    .industry-text{margin:0 0 14px; color:rgba(31,41,55,.74); line-height:1.7; font-weight:640; font-size:14px}
    .industry-actions{display:flex; gap:10px; flex-wrap:wrap}

    .network-grid{
      display:grid; gap:14px; grid-template-columns: 1.1fr .9fr; align-items:stretch;
    }
    @media (max-width:980px){ .network-grid{grid-template-columns:1fr} }

    .map-card{padding:16px 16px; border-radius:24px; position:relative; overflow:hidden}
    .map-title{font-weight:980; font-size:18px; margin-bottom:10px; letter-spacing:-.2px}
    .map-legend{
      color:rgba(31,41,55,.70);
      font-weight:700;
      font-size:13px;
      display:flex; flex-wrap:wrap;
      gap:12px;
      margin-bottom:12px;
    }
    .legend-dot{width:10px; height:10px; border-radius:99px; display:inline-block; margin-right:8px; vertical-align:middle}
    .legend-a{background:rgba(109,40,217,.95)}
    .legend-b{background:rgba(14,165,233,.95)}
    .legend-c{background:rgba(249,115,22,.95)}
    .legend-d{background:rgba(34,197,94,.95)}

    .map-lines{
      position:relative;
      border-radius:20px;
      border:1px solid rgba(17,24,39,.08);
      background:
        radial-gradient(400px 240px at 40% 0%, rgba(14,165,233,.10), transparent 58%),
        radial-gradient(380px 220px at 80% 80%, rgba(109,40,217,.10), transparent 58%),
        rgba(255,255,255,.55);
      height:220px;
      overflow:hidden;
    }
    .line{
      position:absolute;
      left:50%;
      top:20%;
      width:320px;
      height:2px;
      background:linear-gradient(90deg, rgba(109,40,217,.35), rgba(14,165,233,.35));
      transform-origin:left center;
      opacity:.85;
    }
    .l1{transform:translateX(-170px) rotate(10deg)}
    .l2{transform:translateX(-220px) rotate(-10deg); top:45%}
    .l3{transform:translateX(-130px) rotate(18deg); top:70%}

    .node{
      position:absolute;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      font-weight:900;
      color:rgba(31,41,55,.86);
      box-shadow:0 18px 40px rgba(17,24,39,.08);
      font-size:13px;
    }
    .n1{left:16px; top:34px}
    .n2{left:42%; top:18px}
    .n3{left:58%; top:92px}
    .n4{right:16px; bottom:18px}

    .map-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .network-list{padding:16px 16px; border-radius:24px}
    .network-list-head{display:flex; flex-direction:column; gap:6px; margin-bottom:10px}
    .network-sub{color:rgba(31,41,55,.72); font-weight:680; font-size:13px}

    .bullet-list{list-style:none; padding:0; margin:10px 0 14px; display:grid; gap:10px}
    .bullet-list li{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.55);
      color:rgba(31,41,55,.78);
      font-weight:700;
      line-height:1.6;
      font-size:14px;
    }

    .network-mini{
      display:grid; grid-template-columns:repeat(3, minmax(0,1fr));
      gap:10px;
      margin-top:6px;
    }
    @media (max-width:560px){ .network-mini{grid-template-columns:1fr} }
    .mini-stat{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:12px 12px;
    }
    .mini-stat-num{font-weight:980; font-size:14px; color:rgba(109,40,217,.95); margin-bottom:4px}
    .mini-stat-text{font-weight:850; color:rgba(31,41,55,.80)}
    .network-links{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

    .process-grid{
      display:grid; gap:12px;
      grid-template-columns: repeat(4, minmax(0,1fr));
    }
    @media (max-width:1080px){ .process-grid{grid-template-columns:repeat(2, minmax(0,1fr))} }
    @media (max-width:560px){ .process-grid{grid-template-columns:1fr} }
    .process-item{
      padding:16px 16px; border-radius:22px;
      background:
        radial-gradient(260px 160px at 30% 0%, rgba(249,115,22,.10), transparent 60%),
        rgba(255,255,255,.70);
    }
    .process-num{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:980; color:rgba(31,41,55,.92);
      background:rgba(255,255,255,.65);
      border:1px solid rgba(17,24,39,.10);
      margin-bottom:10px;
    }
    .process-title{margin:0 0 8px; font-size:16px; font-weight:950}
    .process-desc{margin:0; color:rgba(31,41,55,.74); font-weight:640; line-height:1.7; font-size:14px}

    .process-cta{margin-top:16px}
    .process-cta-card{
      padding:16px 16px;
      border-radius:26px;
      background:
        radial-gradient(520px 260px at 20% 0%, rgba(109,40,217,.18), transparent 58%),
        radial-gradient(520px 260px at 80% 30%, rgba(14,165,233,.16), transparent 58%),
        rgba(255,255,255,.68);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .process-cta-title{font-weight:980; font-size:18px; letter-spacing:-.2px; margin-bottom:6px}
    .process-cta-sub{color:rgba(31,41,55,.74); font-weight:650}
    .process-cta-right{display:flex; gap:10px; flex-wrap:wrap}

    .case-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(2, minmax(0,1fr));
    }
    @media (max-width:980px){ .case-grid{grid-template-columns:1fr} }

    .case-card{
      padding:16px 16px;
      border-radius:24px;
      background:
        radial-gradient(280px 200px at 10% 0%, rgba(14,165,233,.12), transparent 60%),
        rgba(255,255,255,.70);
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height:240px;
    }
    .case-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .case-badge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      font-weight:900;
      font-size:13px;
    }
    .case-kpi{
      font-weight:900; color:rgba(109,40,217,.95); font-size:13px;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(109,40,217,.16);
      background:rgba(109,40,217,.08);
      white-space:nowrap;
    }
    .case-title{margin:0; font-size:18px; letter-spacing:-.2px; font-weight:980}
    .case-desc{margin:0; color:rgba(31,41,55,.74); line-height:1.7; font-weight:650}
    .case-meta{display:flex; flex-wrap:wrap; gap:8px; margin-top:auto}
    .meta-item{
      font-size:12px;
      font-weight:780;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      color:rgba(31,41,55,.78);
    }
    .case-link{
      margin-top:6px;
      display:inline-flex;
      align-items:center;
      width:max-content;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(109,40,217,.18);
      background:rgba(109,40,217,.06);
      color:rgba(109,40,217,.95);
      font-weight:900;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .case-link:hover{transform:translateY(-1px); box-shadow:0 16px 35px rgba(109,40,217,.16); background:rgba(109,40,217,.10)}

    .compare-wrap{
      display:grid; gap:14px;
      grid-template-columns: .9fr 1.1fr;
      align-items:start;
    }
    @media (max-width:980px){ .compare-wrap{grid-template-columns:1fr} }

    .score-card{
      padding:16px 16px; border-radius:26px;
      background:
        radial-gradient(520px 240px at 20% 0%, rgba(109,40,217,.20), transparent 58%),
        radial-gradient(520px 240px at 90% 20%, rgba(14,165,233,.18), transparent 58%),
        rgba(255,255,255,.70);
    }
    .score-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .stars{font-size:20px; letter-spacing:2px; color:rgba(249,115,22,.95)}
    .score-value{display:flex; align-items:flex-end; gap:6px}
    .score-num{font-size:44px; font-weight:1000; line-height:1; color:rgba(31,41,55,.95)}
    .score-den{font-weight:900; color:rgba(31,41,55,.72); padding-bottom:6px}
    .score-desc{margin:10px 0 14px; color:rgba(31,41,55,.74); font-weight:650; line-height:1.7}
    .score-actions{display:flex; gap:10px; flex-wrap:wrap}

    .compare-table-wrap{
      padding:16px 16px;
      border-radius:26px;
      background:rgba(255,255,255,.68);
      position:relative;
      overflow:hidden;
    }

    .compare-table-wrap::before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(420px 220px at 15% 0%, rgba(109,40,217,.16), transparent 55%),
        radial-gradient(420px 260px at 90% 20%, rgba(14,165,233,.14), transparent 58%);
      pointer-events:none;
    }
    .table-head{position:relative; margin-bottom:10px}
    .table-title{font-weight:980; font-size:18px; margin-bottom:4px}
    .table-sub{color:rgba(31,41,55,.72); font-weight:650}

    .table-scroll{
      position:relative;
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      scrollbar-width:thin;
    }
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width:760px;
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:top;
      text-align:left;
      font-size:14px;
      line-height:1.55;
    }
    .compare-table th{background:rgba(255,255,255,.72); font-weight:950}
    .compare-table tbody tr:hover td{background:rgba(109,40,217,.04)}
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      font-weight:900;
      color:rgba(31,41,55,.84);
      white-space:nowrap;
    }
    .badge-good{
      border-color:rgba(34,197,94,.20);
      background:rgba(34,197,94,.10);
      color:rgba(21,128,61,.95);
    }
    .table-foot{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-top:12px;
      padding-top:12px;
      border-top:1px solid rgba(17,24,39,.08);
    }
    @media (max-width:700px){ .table-foot{flex-direction:column} }
    .table-foot-title{font-weight:980; margin-bottom:6px}
    .table-foot-text{color:rgba(31,41,55,.72); font-weight:650; line-height:1.7}

    .match-grid{
      display:grid; gap:14px;
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }
    @media (max-width:980px){ .match-grid{grid-template-columns:1fr} }

    .match-left, .match-right{padding:16px 16px; border-radius:26px}
    .fields-preview{margin-top:12px; border-radius:18px; border:1px solid rgba(17,24,39,.10); background:rgba(255,255,255,.60); padding:12px 12px}
    .preview-line{display:flex; gap:10px; padding:10px 10px; border-radius:14px; border:1px solid rgba(17,24,39,.08); background:rgba(255,255,255,.55); margin-bottom:10px}
    .preview-line:last-child{margin-bottom:0}
    .preview-label{font-weight:950; color:rgba(109,40,217,.95); min-width:90px}
    .preview-value{color:rgba(31,41,55,.74); font-weight:650; line-height:1.6}

    .match-quick{margin-top:14px; display:grid; gap:10px}
    .quick-item{
      display:flex; gap:12px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:12px 12px;
    }
    .quick-icon{width:34px; height:34px; border-radius:14px; background:rgba(109,40,217,.10); border:1px solid rgba(109,40,217,.18); display:flex; align-items:center; justify-content:center; font-size:16px}
    .quick-title{font-weight:980}
    .quick-sub{color:rgba(31,41,55,.72); font-weight:650; margin-top:4px; font-size:14px; line-height:1.5}

    .card-title-row{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom:12px}
    .card-sub{color:rgba(31,41,55,.68); font-weight:700; font-size:13px}

    .form{display:flex; flex-direction:column; gap:12px}
    .form-grid{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
    }
    @media (max-width:560px){ .form-grid{grid-template-columns:1fr} }

    .field{display:flex; flex-direction:column; gap:8px}
    .field-label{font-size:13px; font-weight:900; color:rgba(31,41,55,.82)}
    input, select, textarea{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.70);
      padding:12px 12px;
      font-size:14px;
      color:rgba(31,41,55,.92);
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
      outline:none;
    }
    textarea{resize:vertical; min-height:120px}
    input::placeholder, textarea::placeholder{color:rgba(31,41,55,.46); font-weight:650}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(14,165,233,.40);
      box-shadow:0 0 0 4px rgba(14,165,233,.14);
      background:#fff;
    }

    .form-foot{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
    @media (max-width:560px){ .form-foot{flex-direction:column} }
    .form-agree{
      display:flex; align-items:center; gap:10px;
      color:rgba(31,41,55,.70);
      font-weight:680;
      line-height:1.5;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.55);
    }
    .lock-dot{
      width:12px; height:12px; border-radius:99px;
      background:linear-gradient(135deg, rgba(14,165,233,.95), rgba(109,40,217,.95));
      box-shadow:0 0 0 5px rgba(14,165,233,.12);
    }
    .form-hint{min-height:18px; color:rgba(21,128,61,.95); font-weight:850; margin-top:6px}

    .token-grid{
      display:grid; gap:14px;
      grid-template-columns: 1.05fr .95fr;
    }
    @media (max-width:980px){ .token-grid{grid-template-columns:1fr} }
    .token-card,.token-compare{padding:16px 16px; border-radius:26px}

    .token-title{font-weight:980; font-size:18px; margin-bottom:6px}
    .token-sub{color:rgba(31,41,55,.70); font-weight:650}
    .token-table-wrap{
      margin-top:12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      overflow:hidden;
    }
    .token-row{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:10px;
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .token-row:last-child{border-bottom:none}
    @media (max-width:560px){ .token-row{grid-template-columns:1fr} }
    .token-key{font-size:12px; font-weight:950; color:rgba(109,40,217,.95); margin-bottom:4px}
    .token-val{font-size:14px; font-weight:750; color:rgba(31,41,55,.82); line-height:1.5}

    .token-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .token-compare-head{margin-bottom:12px}
    .token-compare-title{font-weight:980; font-size:18px; margin-bottom:6px}
    .token-compare-sub{color:rgba(31,41,55,.70); font-weight:650; line-height:1.7}

    .token-grid-mini{
      display:grid; gap:10px;
      grid-template-columns: 1fr 1fr 1fr;
      margin-top:12px;
    }
    @media (max-width:560px){ .token-grid-mini{grid-template-columns:1fr} }
    .mini-cap{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
    }
    .mini-cap-num{font-weight:1000; color:rgba(109,40,217,.95); margin-bottom:6px}
    .mini-cap-text{font-weight:850; color:rgba(31,41,55,.82)}

    .token-compare-foot{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

    .training-grid{
      display:grid; gap:14px; grid-template-columns: 1fr 1fr;
      align-items:start;
    }
    @media (max-width:980px){ .training-grid{grid-template-columns:1fr} }
    .training-left,.training-right{padding:16px 16px; border-radius:26px}

    .training-sub{color:rgba(31,41,55,.72); font-weight:650; line-height:1.7; margin-bottom:10px}
    .course-list{display:grid; gap:10px; margin-top:12px}
    .course-item{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:12px 12px;
    }
    .course-title{font-weight:980; margin-bottom:6px}
    .course-desc{color:rgba(31,41,55,.72); font-weight:650; line-height:1.6}

    .training-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .training-right-head{margin-bottom:8px}
    .audience-grid{display:grid; gap:10px; grid-template-columns:1fr; margin-top:12px}
    .audience{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:12px 12px;
    }
    .audience-top{display:flex; align-items:center; gap:10px; margin-bottom:8px}
    .audience-icon{
      width:38px; height:38px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(109,40,217,.18);
      background:rgba(109,40,217,.08);
      flex:0 0 auto;
    }
    .audience-title{font-weight:980}
    .audience-desc{color:rgba(31,41,55,.72); font-weight:650; line-height:1.6}

    .training-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
    .notice{
      margin-top:14px;
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px dashed rgba(14,165,233,.25);
      background:rgba(255,255,255,.55);
      color:rgba(31,41,55,.74);
      font-weight:650;
      line-height:1.6;
    }
    .notice-dot{
      width:12px; height:12px; border-radius:99px;
      background:linear-gradient(135deg, rgba(14,165,233,.95), rgba(109,40,217,.95));
      box-shadow:0 0 0 5px rgba(14,165,233,.12);
      margin-top:3px;
      flex:0 0 auto;
    }

    .help-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(3, minmax(0,1fr));
    }
    @media (max-width:980px){ .help-grid{grid-template-columns:1fr} }
    .help-card{
      padding:16px 16px; border-radius:26px;
      background:rgba(255,255,255,.68);
    }
    .help-title{margin:0 0 8px; font-weight:980; font-size:18px}
    .help-desc{margin:0 0 14px; color:rgba(31,41,55,.74); line-height:1.7; font-weight:650}
    .help-link{
      color:rgba(109,40,217,.95);
      font-weight:950;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(109,40,217,.18);
      background:rgba(109,40,217,.06);
      display:inline-flex;
      width:max-content;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .help-link:hover{transform:translateY(-1px); box-shadow:0 16px 35px rgba(109,40,217,.16); background:rgba(109,40,217,.10)}

    .faq-wrap{display:grid; gap:10px}
    .faq-item{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      text-align:left;
      padding:14px 14px;
      border:0; background:transparent; cursor:pointer;
      font-weight:950;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      color:rgba(31,41,55,.92);
    }
    .faq-icon{
      width:14px; height:14px; border-radius:6px;
      border:1px solid rgba(17,24,39,.15);
      background:rgba(255,255,255,.7);
      position:relative;
      flex:0 0 auto;
    }
    .faq-icon::before,.faq-icon::after{
      content:"";
      position:absolute; left:50%; top:50%;
      width:8px; height:2px; background:rgba(31,41,55,.82);
      transform:translate(-50%,-50%);
      border-radius:2px;
      transition: transform .2s ease;
    }
    .faq-icon::after{transform:translate(-50%,-50%) rotate(90deg)}
    .faq-item[data-open="true"] .faq-icon::after{
      transform:translate(-50%,-50%) rotate(0deg);
    }
    .faq-a{
      padding:0 14px 14px;
      color:rgba(31,41,55,.74);
      font-weight:650;
      line-height:1.7;
      font-size:14px;
    }

    .dict-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(3, minmax(0,1fr));
    }
    @media (max-width:980px){ .dict-grid{grid-template-columns:1fr 1fr} }
    @media (max-width:560px){ .dict-grid{grid-template-columns:1fr} }

    .dict-card{
      padding:16px 16px;
      border-radius:24px;
      background:
        radial-gradient(280px 200px at 10% 0%, rgba(109,40,217,.12), transparent 60%),
        rgba(255,255,255,.68);
    }
    .dict-term{
      font-weight:1000;
      font-size:18px;
      letter-spacing:-.2px;
      margin-bottom:8px;
    }
    .dict-desc{margin:0; color:rgba(31,41,55,.74); line-height:1.7; font-weight:650}

    .article-grid{
      display:grid; gap:14px;
      grid-template-columns: 1.15fr .85fr;
      align-items:start;
    }
    @media (max-width:980px){ .article-grid{grid-template-columns:1fr} }

    .article-card,.article-side{padding:16px 16px; border-radius:26px}
    .article-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px; flex-wrap:wrap}
    .article-title{font-weight:1000; font-size:18px}
    .article-more{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      font-weight:850;
      color:rgba(31,41,55,.78);
    }

    .article-list{
      list-style:none; padding:0; margin:0; display:grid; gap:10px;
    }
    .article-item{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:12px 12px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .article-item:hover{transform:translateY(-2px); box-shadow:0 18px 40px rgba(17,24,39,.10); background:#fff}
    .article-link{font-weight:980; color:rgba(31,41,55,.92)}
    .article-meta{margin-top:6px; color:rgba(31,41,55,.70); font-weight:700; font-size:13px; line-height:1.4}
    .article-links{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

    .article-side .side-title{font-weight:1000; font-size:18px}
    .source-sub{color:rgba(31,41,55,.70); font-weight:650; margin-top:6px; line-height:1.6}
    .source-box{
      margin-top:12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:12px 12px;
    }
    .source-chip{
      display:inline-flex; padding:10px 12px;
      border-radius:14px;
      border:1px dashed rgba(109,40,217,.26);
      background:rgba(109,40,217,.06);
      font-weight:950;
      color:rgba(109,40,217,.95);
      margin-bottom:10px;
      max-width:100%;
    }
    .source-links{
      display:grid; gap:10px;
    }
    .source-links a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      font-weight:900;
      color:rgba(31,41,55,.80);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .source-links a:hover{transform:translateY(-1px); box-shadow:0 16px 35px rgba(17,24,39,.10); background:#fff}
    .side-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .review-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(3, minmax(0,1fr));
    }
    @media (max-width:980px){ .review-grid{grid-template-columns:1fr} }
    .review-card{
      padding:16px 16px;
      border-radius:26px;
      background:
        radial-gradient(280px 200px at 0% 0%, rgba(249,115,22,.10), transparent 60%),
        rgba(255,255,255,.68);
    }
    .review-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .avatar{
      width:46px; height:46px; border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:rgba(109,40,217,.95);
      flex:0 0 auto;
    }
    .review-name{font-weight:980; margin-bottom:4px}
    .review-role{color:rgba(31,41,55,.68); font-weight:700; font-size:13px}
    .review-stars{color:rgba(249,115,22,.95); font-weight:1000}
    .review-text{margin-top:12px; color:rgba(31,41,55,.74); line-height:1.7; font-weight:650; font-size:14px}

    .contact-grid{
      display:grid; gap:14px;
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }
    @media (max-width:980px){ .contact-grid{grid-template-columns:1fr} }

    .contact-card{padding:16px 16px; border-radius:26px}
    .contact-sub{color:rgba(31,41,55,.70); font-weight:650; line-height:1.6; margin:6px 0 12px}

    .contact-line{
      display:flex; align-items:flex-start; justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      margin-bottom:10px;
    }
    .contact-line:last-of-type{margin-bottom:0}
    .contact-key{font-weight:950; color:rgba(109,40,217,.95)}
    .contact-val{font-weight:800; color:rgba(31,41,55,.80); text-align:right}
    .contact-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .qr-wrap{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:14px 14px;
      display:flex;
      justify-content:center;
      align-items:center;
    }
    .qr-img{
      width:160px;
      max-width:100%;
      height:auto;
      border-radius:16px;
      display:block;
    }
    .contact-links{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

    .contact-bottom{margin-top:14px; display:grid; gap:12px}
    .partner-card{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding:16px 16px;
      border-radius:26px;
      background:
        radial-gradient(520px 240px at 15% 0%, rgba(109,40,217,.16), transparent 58%),
        rgba(255,255,255,.68);
    }
    .partner-title{font-weight:1000; font-size:18px; margin-bottom:6px}
    .partner-sub{color:rgba(31,41,55,.70); font-weight:650; line-height:1.6}
    .partner-right{display:flex; gap:10px; flex-wrap:wrap}
    .partner-right a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      font-weight:900;
      color:rgba(31,41,55,.80);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .partner-right a:hover{transform:translateY(-1px); box-shadow:0 16px 35px rgba(17,24,39,.10); background:#fff}

    .link-row{
      padding:14px 16px;
      border-radius:26px;
      background:rgba(255,255,255,.66);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .link-row-left{font-weight:1000}
    .link-row-right{display:flex; gap:10px; flex-wrap:wrap}
    .link-row-right a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      font-weight:900;
      color:rgba(31,41,55,.80);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .link-row-right a:hover{transform:translateY(-1px); box-shadow:0 16px 35px rgba(17,24,39,.10); background:#fff}

    .join-grid{
      display:grid; gap:14px;
      grid-template-columns: 1.1fr .9fr;
      align-items:start;
    }
    @media (max-width:980px){ .join-grid{grid-template-columns:1fr} }

    .join-card,.join-right{padding:16px 16px; border-radius:26px}

    .join-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .join-note{
      margin-top:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px dashed rgba(109,40,217,.25);
      background:rgba(109,40,217,.06);
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(31,41,55,.74);
      font-weight:650; line-height:1.6;
    }
    .join-note-dot{
      width:12px; height:12px; border-radius:99px;
      background:linear-gradient(135deg, rgba(109,40,217,.95), rgba(14,165,233,.95));
      box-shadow:0 0 0 5px rgba(109,40,217,.12);
      margin-top:4px;
      flex:0 0 auto;
    }

    .footer-gap{padding:22px 0 44px}
    .footer{
      border-radius:30px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(17,24,39,.10);
      box-shadow:0 18px 50px rgba(17,24,39,.08);
      padding:18px 16px 14px;
    }
    .footer-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
      flex-wrap:wrap;
    }
    .footer-brand{min-width:220px; max-width:360px}
    .footer-logo{width:140px; height:auto; border-radius:14px; border:1px solid rgba(17,24,39,.10); background:#fff; padding:8px}
    .footer-desc{margin-top:10px; color:rgba(31,41,55,.72); font-weight:650; line-height:1.6}

    .footer-cols{
      display:grid; gap:14px;
      grid-template-columns: 1fr 1fr 1fr;
      min-width:540px;
    }
    @media (max-width:980px){
      .footer-cols{min-width:unset; width:100%; grid-template-columns:1fr}
    }
    .footer-col{padding:10px 0}
    .footer-title{font-weight:1000; margin-bottom:10px}
    .footer-link{
      display:block;
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.55);
      font-weight:850;
      color:rgba(31,41,55,.82);
      margin-bottom:10px;
      width:max-content;
      max-width:100%;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .footer-link:hover{transform:translateY(-1px); box-shadow:0 16px 35px rgba(17,24,39,.10); background:#fff}
    .footer-muted{color:rgba(31,41,55,.72); font-weight:650; margin-bottom:10px}

    .footer-divider{height:1px; background:rgba(17,24,39,.08); margin:14px 0}
    .footer-bottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding-top:8px;
    }
    .footer-copy{color:rgba(31,41,55,.72); font-weight:700}
    .footer-right{display:flex; align-items:center; gap:10px}
    .footer-mini-link{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      font-weight:900;
      color:rgba(31,41,55,.80);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .footer-mini-link:hover{transform:translateY(-1px); box-shadow:0 16px 35px rgba(17,24,39,.10); background:#fff}
    .footer-mini-sep{color:rgba(31,41,55,.35); font-weight:900}

    .floating-cs{
      position:fixed;
      right:16px;
      bottom:18px;
      z-index:80;
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:10px;
    }
    .cs-btn{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:linear-gradient(135deg, rgba(109,40,217,.95), rgba(14,165,233,.95));
      color:#fff;
      padding:12px 14px;
      box-shadow:0 18px 40px rgba(109,40,217,.26);
      transition: transform .18s ease, box-shadow .18s ease;
      display:flex; align-items:center; gap:10px;
      cursor:pointer;
      font-weight:950;
    }
    .cs-btn:hover{transform:translateY(-2px); box-shadow:0 22px 55px rgba(109,40,217,.30)}
    .cs-icon{display:flex; align-items:center; justify-content:center}
    .cs-text{font-size:14px}

    .cs-panel{
      width:320px;
      max-width:calc(100vw - 32px);
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.86);
      backdrop-filter: blur(10px);
      box-shadow:0 22px 60px rgba(17,24,39,.18);
      overflow:hidden;
    }
    .cs-panel-head{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:14px 14px;
      border-bottom:1px solid rgba(17,24,39,.08);
      background:
        radial-gradient(420px 220px at 20% 0%, rgba(109,40,217,.16), transparent 58%),
        radial-gradient(420px 240px at 90% 20%, rgba(14,165,233,.14), transparent 58%),
        rgba(255,255,255,.75);
    }
    .cs-panel-title{font-weight:1000}
    .cs-close{padding:10px 12px}
    .cs-panel-body{padding:14px 14px}
    .cs-row{
      display:flex; justify-content:space-between; gap:12px;
      border-radius:18px; border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      padding:10px 12px;
      margin-bottom:10px;
    }
    .cs-row-key{font-weight:950; color:rgba(109,40,217,.95)}
    .cs-row-val{font-weight:750; color:rgba(31,41,55,.78); text-align:right}
    .cs-panel-body a{color:inherit}

    .to-top{
      position:fixed;
      left:16px;
      bottom:18px;
      z-index:70;
      width:44px; height:44px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 40px rgba(17,24,39,.10);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, opacity .18s ease;
      opacity:0;
      pointer-events:none;
    }
    .to-top.show{opacity:1; pointer-events:auto}
    .to-top:hover{transform:translateY(-2px)}
    .to-top span{font-size:20px; font-weight:1000; color:rgba(31,41,55,.82)}

    [data-animate]{
      opacity:0;
      transform:translateY(14px);
      transition: opacity .6s ease, transform .6s ease;
    }
    [data-animate].in{
      opacity:1;
      transform:translateY(0);
    }

    @media (prefers-reduced-motion: reduce){
      [data-animate]{transition:none}
      .card.lift:hover, .lift:hover, .btn:hover, .to-top:hover, .cs-btn:hover{transform:none}
      .note-mark::after{animation:none}
    }