:root{
      --bg0:#ffffff;
      --bg1:#fbf7ff;
      --bg2:#f7fbff;
      --text:#1b1f2a;
      --muted:#5b6476;
      --muted2:#7a8398;
      --line:rgba(28,40,64,.12);
      --card:rgba(255,255,255,.86);
      --shadow:0 18px 55px rgba(16,24,40,.10);
      --shadow2:0 10px 26px rgba(16,24,40,.10);
      --shadow3:0 6px 16px rgba(16,24,40,.10);
      --brand1:#6d2cff;
      --brand2:#ff2b6d;
      --brand3:#18a0fb;
      --brand4:#ffb020;
      --ok:#13b981;
      --radius-xl:22px;
      --radius-lg:16px;
      --radius-md:12px;
      --radius-sm:10px;
      --container:1120px;
    }

    *{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","Noto Sans CJK SC", Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(900px 420px at 15% -10%, rgba(109,44,255,.12), transparent 55%),
        radial-gradient(700px 380px at 70% 0%, rgba(255,43,109,.10), transparent 58%),
        radial-gradient(800px 420px at 85% 35%, rgba(24,160,251,.10), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fbfbff 45%, #ffffff 100%);
      overflow-x:hidden;
    }

    .container{max-width:var(--container); margin:0 auto; padding:0 18px}
    .skip-link{
      position:absolute; left:-999px; top:10px;
      background:#0f172a; color:#fff; padding:10px 12px; border-radius:10px; z-index:9999;
    }
    .skip-link:focus{left:14px}

    .site-header{
      position:sticky; top:0; z-index:60;
      background:rgba(255,255,255,.70);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(28,40,64,.08);
    }
    .header-inner{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding:12px 0;
    }
    .brand{display:flex; align-items:center; gap:12px; text-decoration:none}
    .ai-page-logo{width:128px; max-height:44px}
    .nav{display:flex; align-items:center; justify-content:flex-start; gap:10px}
    .nav-toggle{
      display:none;
      align-items:center; gap:10px;
      border:1px solid rgba(28,40,64,.14);
      background:rgba(255,255,255,.7);
      border-radius:14px;
      padding:10px 12px;
      color:var(--text);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      box-shadow:0 6px 16px rgba(16,24,40,.06);
    }
    .nav-toggle:active{transform:scale(.98)}
    .nav-toggle-lines{
      width:18px; height:12px; position:relative; display:inline-block;
    }
    .nav-toggle-lines::before,.nav-toggle-lines::after{
      content:""; position:absolute; left:0; right:0; height:2px; background:linear-gradient(90deg, var(--brand1), var(--brand2));
      border-radius:2px;
    }
    .nav-toggle-lines::before{top:0}
    .nav-toggle-lines::after{bottom:0}
    .nav-toggle-lines{background:rgba(28,40,64,.18)}
    .nav-toggle-text{font-weight:700; font-size:13px}

    .nav-panel{
      display:flex; align-items:center; gap:14px;
      padding:0;
      margin:0;
    }
    .nav-link{
      text-decoration:none;
      color:var(--muted);
      font-weight:650;
      font-size:13px;
      padding:10px 10px;
      border-radius:12px;
      transition: background .15s ease, color .15s ease, transform .15s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:rgba(109,44,255,.08);
      color:#2b2f3c;
      transform: translateY(-1px);
    }
    .nav-link-accent{
      color:#2b2f3c;
      background:linear-gradient(135deg, rgba(109,44,255,.12), rgba(255,43,109,.10));
      border:1px solid rgba(109,44,255,.18);
    }

    .header-actions{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:8px;
      border-radius:14px;
      padding:10px 14px;
      text-decoration:none;
      font-weight:750;
      border:1px solid rgba(28,40,64,.14);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      color:var(--text);
      user-select:none;
      line-height:1;
      background:#fff;
    }
    .btn:active{transform:scale(.98)}
    .btn:focus{outline:3px solid rgba(109,44,255,.25); outline-offset:2px}

    .btn-primary{
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      border-color: rgba(109,44,255,.25);
      color:#fff;
      box-shadow:0 14px 35px rgba(109,44,255,.18);
    }
    .btn-primary:hover{box-shadow:0 18px 45px rgba(109,44,255,.22)}
    .btn-secondary{
      background: linear-gradient(135deg, rgba(24,160,251,.18), rgba(255,176,32,.14));
      border-color: rgba(24,160,251,.20);
      color:#1a2740;
    }
    .btn-secondary:hover{box-shadow:0 14px 35px rgba(24,160,251,.14)}
    .btn-ghost{
      background: rgba(255,255,255,.65);
      border-color: rgba(28,40,64,.16);
      color:var(--text);
      box-shadow:0 10px 26px rgba(16,24,40,.06);
    }
    .btn-ghost:hover{box-shadow:0 16px 40px rgba(16,24,40,.10); transform: translateY(-1px)}
    .btn-quiet{
      background: rgba(255,255,255,.55);
      border-color: rgba(28,40,64,.14);
      color:var(--muted);
      box-shadow:0 10px 26px rgba(16,24,40,.06);
      font-weight:740;
    }
    .btn-quiet:hover{color:#1c2333; transform: translateY(-1px); box-shadow:0 14px 35px rgba(16,24,40,.10)}
    .btn-lg{padding:12px 18px; border-radius:16px}
    .btn-block{width:100%}

    .top-subbar{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      padding:10px 0 14px;
      color:var(--muted);
      font-size:13px;
    }
    .subbar-left{display:flex; align-items:center; gap:12px; flex-wrap:wrap}
    .subbar-divider{width:1px; height:18px; background:rgba(28,40,64,.14)}
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      border-radius:999px;
      padding:7px 11px;
      font-weight:800;
      font-size:12px;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.65);
      color:#2a3242;
      white-space:nowrap;
    }
    .pill-solid{
      background:linear-gradient(135deg, rgba(109,44,255,.14), rgba(255,43,109,.12));
      border-color:rgba(109,44,255,.22);
      color:#222b3d;
    }
    .pill-strong{
      background:linear-gradient(135deg, rgba(109,44,255,.22), rgba(255,43,109,.18));
      border-color:rgba(109,44,255,.30);
      color:#1e2434;
    }
    .pill-outline{
      background:rgba(255,255,255,.55);
      border-color:rgba(28,40,64,.14);
      color:#2a3242;
    }
    .subbar-right a{
      color:var(--muted);
      text-decoration:none;
      font-weight:750;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.6);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }
    .subbar-right a:hover{
      transform: translateY(-1px);
      box-shadow:0 14px 35px rgba(16,24,40,.10);
      background:#fff;
      color:#1b2333;
    }

    .hero{
      position:relative;
      padding:44px 0 20px;
    }
    .hero-bg{
      position:absolute; inset:-120px 0 auto 0; height:720px;
      pointer-events:none;
      overflow:hidden;
    }
    .hero-grid{
      position:absolute; inset:0;
      background:
        linear-gradient(to right, rgba(28,40,64,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(28,40,64,.06) 1px, transparent 1px);
      background-size:56px 56px;
      mask-image: radial-gradient(closest-side at 50% 25%, black 35%, transparent 72%);
      opacity:.8;
    }
    .hero-orb{
      position:absolute;
      border-radius:999px;
      filter: blur(18px);
      opacity:.55;
      transform: translateZ(0);
      animation: floatOrb 8s ease-in-out infinite;
    }
    .orb-1{width:220px; height:220px; left:5%; top:100px; background: radial-gradient(circle at 30% 30%, rgba(109,44,255,.95), rgba(109,44,255,.05));}
    .orb-2{width:260px; height:260px; left:62%; top:40px; background: radial-gradient(circle at 30% 30%, rgba(255,43,109,.95), rgba(255,43,109,.05)); animation-delay:-1.2s;}
    .orb-3{width:220px; height:220px; left:70%; top:250px; background: radial-gradient(circle at 30% 30%, rgba(24,160,251,.95), rgba(24,160,251,.05)); animation-delay:-2.2s;}
    @keyframes floatOrb{
      0%,100%{transform: translate3d(0,0,0)}
      50%{transform: translate3d(0,-18px,0)}
    }

    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:22px;
      align-items:start;
    }
    .hero-copy{padding:10px 0}
    .hero-kicker{
      display:flex; align-items:center; gap:10px;
      color:var(--muted);
      font-weight:800;
      letter-spacing:.2px;
      font-size:13px;
      margin-bottom:14px;
    }
    .kicker-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow:0 0 0 6px rgba(109,44,255,.10);
    }
    .hero-title{
      margin:0 0 12px;
      font-size:44px;
      line-height:1.12;
      letter-spacing:-.6px;
    }
    .hero-lead{
      margin:0 0 18px;
      color:var(--muted);
      font-size:16px;
      line-height:1.75;
      max-width:620px;
    }
    .hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 18px}
    .hero-trust{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:8px;
    }
    .trust-item{
      border:1px solid rgba(28,40,64,.12);
      border-radius:16px;
      background:rgba(255,255,255,.6);
      padding:12px 12px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      display:flex; gap:10px; align-items:flex-start;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .trust-item:hover{
      transform: translateY(-3px);
      box-shadow:0 18px 45px rgba(16,24,40,.10);
      background:rgba(255,255,255,.78);
    }
    .trust-icon{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      background: linear-gradient(135deg, rgba(109,44,255,.18), rgba(255,43,109,.14));
      border:1px solid rgba(109,44,255,.18);
      color:#241c35;
      flex:0 0 auto;
    }
    .trust-title{font-weight:900; font-size:14px; margin-bottom:2px}
    .trust-desc{color:var(--muted); font-weight:650; font-size:12.5px; line-height:1.45}

    .hero-side{display:flex; flex-direction:column; gap:12px; padding-top:6px}
    .stat-card{
      background: rgba(255,255,255,.75);
      border:1px solid rgba(28,40,64,.12);
      border-radius:22px;
      box-shadow:var(--shadow2);
      padding:14px 14px;
      overflow:hidden;
      position:relative;
    }
    .stat-card::after{
      content:""; position:absolute; inset:-2px -2px auto -2px; height:140px;
      background: radial-gradient(500px 120px at 20% 0%, rgba(109,44,255,.20), transparent 55%),
                  radial-gradient(420px 120px at 80% 10%, rgba(255,43,109,.18), transparent 60%);
      pointer-events:none;
    }
    .stat-head{display:flex; align-items:flex-end; justify-content:space-between; gap:10px; position:relative}
    .stat-badge{
      font-weight:900; font-size:12px; color:#fff;
      padding:7px 10px; border-radius:999px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      border:1px solid rgba(255,255,255,.15);
      box-shadow:0 14px 35px rgba(109,44,255,.18);
    }
    .stat-sub{color:var(--muted); font-weight:750; font-size:12px}
    .stat-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
      margin-top:12px;
      position:relative;
    }
    .stat-block{
      border-radius:16px;
      border:1px solid rgba(28,40,64,.10);
      background:rgba(255,255,255,.65);
      padding:12px 12px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .stat-block:hover{transform: translateY(-2px); box-shadow:0 16px 40px rgba(16,24,40,.10)}
    .stat-value{
      font-size:26px;
      font-weight:980;
      letter-spacing:-.5px;
      color:#0f172a;
      margin-bottom:4px;
    }
    .stat-label{color:var(--muted); font-weight:750; font-size:12.5px; line-height:1.35}
    .stat-foot{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:12px;
      position:relative;
    }
    .chip{
      display:inline-flex; align-items:center; justify-content:center;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.62);
      color:var(--muted);
      font-weight:800;
      font-size:12.5px;
    }
    .chip-strong{
      background: linear-gradient(135deg, rgba(109,44,255,.16), rgba(255,43,109,.13));
      border-color:rgba(109,44,255,.22);
      color:#1e2434;
    }

    .card-lite{
      border:1px solid rgba(28,40,64,.12);
      border-radius:22px;
      background: rgba(255,255,255,.72);
      box-shadow:var(--shadow3);
    }
    .card-lite.reveal{opacity:0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease}
    .reveal.in{opacity:1; transform: translateY(0)}
    .card-lite-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:10px;
      padding:14px 14px 0;
    }
    .card-lite-title{font-weight:950; font-size:14px}
    .card-lite-note{color:var(--muted); font-weight:760; font-size:12.5px}

    .mini-form{padding:14px 14px}
    .mini-form-title{
      font-weight:950;
      font-size:14.5px;
      margin-bottom:10px;
    }
    .mini-form-row{margin-bottom:10px}
    .mini-form-actions{display:flex; gap:10px}
    .field{display:flex; flex-direction:column; gap:7px; margin:0}
    .field-label{font-weight:850; font-size:12.5px; color:#3a465a}
    .field-control{
      width:100%;
      padding:11px 12px;
      border-radius:14px;
      border:1px solid rgba(28,40,64,.14);
      background:rgba(255,255,255,.88);
      color:var(--text);
      font-weight:720;
      outline:none;
      transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }
    .field-control:focus{
      border-color: rgba(109,44,255,.35);
      box-shadow:0 0 0 5px rgba(109,44,255,.14);
    }
    .mini-form .btn-block{padding:12px 14px}
    .mini-form-note{
      color:rgba(91,100,118,.95);
      font-weight:720;
      font-size:12px;
      margin-top:10px;
    }

    .section{padding:46px 0}
    .section-soft{
      background: linear-gradient(180deg, rgba(109,44,255,.06), rgba(255,43,109,.04) 35%, rgba(24,160,251,.04));
      border-top:1px solid rgba(28,40,64,.06);
      border-bottom:1px solid rgba(28,40,64,.06);
    }
    .section-head{
      margin-bottom:22px;
      display:flex; flex-direction:column; gap:10px;
    }
    .section-head-tight{margin-bottom:16px}
    .h2-title{
      margin:0;
      font-size:28px;
      letter-spacing:-.4px;
      line-height:1.2;
    }
    .section-desc{
      margin:0;
      color:var(--muted);
      line-height:1.75;
      font-weight:680;
      max-width:820px;
    }
    .h3-title{margin:0; font-size:16px; letter-spacing:-.2px}
    .three-cards{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .feature-card{
      padding:16px 16px;
      border-radius:22px;
      background: rgba(255,255,255,.74);
      border:1px solid rgba(28,40,64,.10);
      box-shadow:0 14px 35px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      position:relative;
      overflow:hidden;
    }
    .feature-card:hover{transform: translateY(-4px); box-shadow:0 24px 60px rgba(16,24,40,.12); background:rgba(255,255,255,.85)}
    .feature-card::after{
      content:""; position:absolute; inset:auto -30px -40px -30px; height:120px;
      background: radial-gradient(closest-side at 50% 30%, rgba(255,43,109,.12), transparent 70%);
      pointer-events:none;
    }
    .feature-top{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; position:relative}
    .feature-icon{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:900; font-size:18px;
      background: linear-gradient(135deg, rgba(109,44,255,.18), rgba(255,43,109,.12));
      border:1px solid rgba(109,44,255,.16);
    }
    .feature-desc{margin:0 0 12px; color:var(--muted); font-weight:700; line-height:1.7}
    .checklist{
      margin:0;
      padding-left:18px;
      color:#2b3550;
      font-weight:730;
      line-height:1.8;
      font-size:13.5px;
    }
    .checklist-compact{font-size:13px}
    .feature-cta{margin-top:12px}

    .services-grid{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .svc-card{
      padding:16px 16px;
      border-radius:22px;
      border:1px solid rgba(28,40,64,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 14px 35px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease;
      position:relative; overflow:hidden;
    }
    .svc-card:hover{transform: translateY(-4px); box-shadow:0 24px 60px rgba(16,24,40,.12)}
    .svc-card::before{
      content:""; position:absolute; inset:-2px auto auto -2px; width:110px; height:110px;
      background: radial-gradient(circle at 30% 30%, rgba(24,160,251,.18), transparent 60%);
      pointer-events:none;
    }
    .svc-top{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; position:relative}
    .svc-tag{
      font-size:12px; font-weight:920; color:#fff;
      padding:7px 10px;
      border-radius:999px;
      background: linear-gradient(135deg, rgba(24,160,251,.9), rgba(109,44,255,.95));
      box-shadow:0 14px 35px rgba(24,160,251,.16);
      border:1px solid rgba(255,255,255,.18);
      white-space:nowrap;
    }
    .svc-desc{margin:0 0 12px; color:var(--muted); font-weight:700; line-height:1.7; position:relative}
    .svc-foot{position:relative}
    .link-accent{
      color: #2a2f42;
      text-decoration:none;
      font-weight:850;
      display:inline-flex;
      align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(109,44,255,.16);
      background: linear-gradient(135deg, rgba(109,44,255,.10), rgba(255,43,109,.08));
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .link-accent:hover{transform: translateY(-2px); box-shadow:0 16px 40px rgba(109,44,255,.14)}
    .link-accent::after{content:"→"; font-weight:950}

    .two-col{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }

    .timeline{padding:14px 14px}
    .card-lite-head + .timeline-item{margin-top:10px}
    .timeline .card-lite-head{padding:14px 14px 0}
    .timeline-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 0;
      border-top:1px dashed rgba(28,40,64,.12);
    }
    .timeline-item:first-of-type{border-top:none; padding-top:10px}
    .timeline-dot{
      width:12px; height:12px; border-radius:50%;
      margin-top:4px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow:0 0 0 6px rgba(109,44,255,.10);
      flex:0 0 auto;
    }
    .timeline-title{font-weight:950; margin-bottom:4px}
    .timeline-desc{color:var(--muted); font-weight:720; line-height:1.6; font-size:13.5px}

    .right-rail{display:flex; flex-direction:column; gap:12px}
    .tagcloud{padding:14px 14px}
    .tagcloud-title{font-weight:950; margin-bottom:10px}
    .tagcloud-tags{display:flex; flex-wrap:wrap; gap:10px}
    .tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.70);
      font-weight:850;
      font-size:12.5px;
      color:#2c3650;
      transition: transform .15s ease, background .15s ease;
      cursor:default;
      user-select:none;
    }
    .tag:hover{transform: translateY(-2px); background:#fff}
    .tag-soft{background: linear-gradient(135deg, rgba(109,44,255,.10), rgba(24,160,251,.08))}

    .callout{padding:14px 14px}
    .callout-title{font-weight:980; font-size:16px; margin-bottom:8px}
    .callout-desc{color:var(--muted); font-weight:720; line-height:1.7; margin:0 0 12px}
    .callout-actions{display:flex; gap:10px; flex-wrap:wrap}
    .network{padding:14px 14px}
    .network-head{display:flex; align-items:flex-end; justify-content:space-between; gap:10px; margin-bottom:10px}
    .network-sub{color:var(--muted); font-weight:760; font-size:12.5px}
    .network-rows{display:flex; flex-direction:column; gap:10px}
    .network-row{display:flex; gap:10px; align-items:center; color:#1f2a3f; font-weight:850}
    .network-dot{width:10px; height:10px; border-radius:50%; background:linear-gradient(135deg, var(--brand3), var(--brand1)); box-shadow:0 0 0 6px rgba(24,160,251,.10)}

    .industry-grid{
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .industry-card{
      padding:16px 16px;
      border-radius:22px;
      border:1px solid rgba(28,40,64,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 14px 35px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .industry-card:hover{transform: translateY(-4px); box-shadow:0 24px 60px rgba(16,24,40,.12)}
    .industry-icon{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      background: linear-gradient(135deg, rgba(255,43,109,.12), rgba(109,44,255,.10));
      border:1px solid rgba(255,43,109,.16);
    }
    .industry-top{display:flex; align-items:center; gap:12px; margin-bottom:10px}
    .bullet-list{margin:0; padding-left:18px; color:var(--muted); font-weight:740; line-height:1.8; font-size:13.5px}

    .steps-grid{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .step-card{
      padding:16px 16px;
      border-radius:22px;
      border:1px solid rgba(28,40,64,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 14px 35px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .step-card:hover{transform: translateY(-4px); box-shadow:0 24px 60px rgba(16,24,40,.12)}
    .step-num{
      font-weight:1000;
      letter-spacing:-.6px;
      color:#111827;
      font-size:22px;
      margin-bottom:8px;
      background: linear-gradient(135deg, rgba(109,44,255,.16), rgba(255,43,109,.12));
      display:inline-block;
      padding:8px 12px;
      border-radius:16px;
      border:1px solid rgba(109,44,255,.16);
    }
    .step-title{font-weight:980; margin-bottom:6px}
    .step-desc{color:var(--muted); font-weight:720; line-height:1.7}

    .process-cta{
      margin-top:18px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      padding:16px 16px;
      border-radius:24px;
      border:1px solid rgba(28,40,64,.10);
      background: linear-gradient(135deg, rgba(109,44,255,.10), rgba(255,43,109,.08));
    }
    .process-cta-title{font-weight:980; margin-bottom:6px}
    .process-cta-desc{color:var(--muted); font-weight:720; line-height:1.7}
    .process-cta-right{display:flex; gap:10px; flex-wrap:wrap}

    .case-grid{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .case-card{
      padding:16px 16px;
      border-radius:22px;
      border:1px solid rgba(28,40,64,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 14px 35px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease;
      position:relative; overflow:hidden;
      min-height:210px;
      display:flex; flex-direction:column;
    }
    .case-card:hover{transform: translateY(-4px); box-shadow:0 24px 60px rgba(16,24,40,.12)}
    .case-top{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px}
    .case-type{
      font-weight:950;
      font-size:12.5px;
      color:#fff;
      padding:7px 10px;
      border-radius:999px;
      background: linear-gradient(135deg, rgba(109,44,255,.95), rgba(24,160,251,.90));
      border:1px solid rgba(255,255,255,.18);
      white-space:nowrap;
    }
    .case-score{
      color:var(--muted);
      font-weight:860;
      font-size:12.5px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.62);
      white-space:nowrap;
    }
    .case-title{margin-bottom:8px}
    .case-desc{margin:0 0 14px; color:var(--muted); font-weight:720; line-height:1.7}
    .case-meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:auto}
    .meta-chip{
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.66);
      font-weight:850;
      color:#2a3242;
      font-size:12.5px;
    }

    .case-bottom{
      margin-top:16px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:16px 16px;
      border-radius:24px;
      border:1px solid rgba(28,40,64,.10);
      background:rgba(255,255,255,.65);
    }
    .case-bottom-left{flex:1}
    .card-lite-desc{color:var(--muted); font-weight:720; line-height:1.7; padding:0 14px 14px}
    .case-bottom-right{display:flex; gap:10px; flex-wrap:wrap}

    .compare-wrap{
      display:grid;
      grid-template-columns: .85fr 1.15fr;
      gap:14px;
      align-items:start;
    }
    .compare-summary{
      padding:16px 16px;
      border-radius:22px;
      background: linear-gradient(135deg, rgba(109,44,255,.12), rgba(255,43,109,.08));
      border:1px solid rgba(109,44,255,.18);
      box-shadow:0 24px 60px rgba(109,44,255,.10);
    }
    .compare-summary-head{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .compare-star{font-size:18px; letter-spacing:1px; color:#ffb020}
    .compare-score-num{font-weight:1000; font-size:30px; letter-spacing:-.6px}
    .compare-summary-title{font-weight:980; margin-top:8px; font-size:16px}
    .compare-summary-desc{color:var(--muted); font-weight:720; line-height:1.7; margin-top:10px}

    .compare-table{padding:0}
    .table-wrap{overflow:auto; padding:0 14px 6px}
    .compare-table-el{
      width:100%;
      min-width:780px;
      border-collapse:separate;
      border-spacing:0;
      font-weight:700;
    }
    .compare-table-el th,
    .compare-table-el td{
      padding:12px 10px;
      border-bottom:1px solid rgba(28,40,64,.10);
      vertical-align:top;
      text-align:left;
      color:var(--text);
    }
    .compare-table-el thead th{
      position:sticky; top:0;
      background:rgba(255,255,255,.92);
      border-bottom:1px solid rgba(28,40,64,.16);
      font-size:13px;
      color:#2a3242;
      z-index:1;
    }
    .compare-table-el th:first-child{width:210px}
    .score-pill{
      display:inline-flex; align-items:center;
      padding:8px 10px;
      border-radius:999px;
      font-weight:950;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.70);
      margin-bottom:6px;
      color:#1f2a3f;
      white-space:nowrap;
    }
    .score-good{
      background: linear-gradient(135deg, rgba(19,185,129,.16), rgba(24,160,251,.12));
      border-color: rgba(19,185,129,.22);
    }
    .score-mid{
      background: linear-gradient(135deg, rgba(255,176,32,.16), rgba(255,43,109,.08));
      border-color: rgba(255,176,32,.22);
    }
    .subscore{display:block; color:var(--muted); font-weight:720; font-size:12.5px; line-height:1.5}

    .compare-actions{
      display:flex; gap:10px; flex-wrap:wrap;
      padding:12px 14px 16px;
    }

    .pricing-grid{
      display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; align-items:start;
    }
    .pricing-left{padding:0; overflow:hidden}
    .pricing-right{display:flex; flex-direction:column; gap:12px}
    .pricing-left .card-lite-head{padding-bottom:10px}
    .numbered{
      padding:0 14px 14px;
      margin:0;
      color:var(--muted);
      font-weight:720;
      line-height:1.75;
    }
    .numbered li{margin:10px 0}
    .pricing-callout{
      border-top:1px solid rgba(28,40,64,.10);
      padding:14px 14px 16px;
      background: linear-gradient(135deg, rgba(109,44,255,.08), rgba(24,160,251,.06));
    }
    .pricing-callout-title{font-weight:1000; margin-bottom:6px}
    .pricing-callout-desc{color:var(--muted); font-weight:720; line-height:1.7; margin-bottom:12px}
    .pricing-callout-actions{display:flex; gap:10px; flex-wrap:wrap}

    .price-card{padding:0}
    .price-head{
      padding:14px 14px 0;
      display:flex; align-items:flex-end; justify-content:space-between; gap:10px;
    }
    .price-badge{
      font-weight:1000; font-size:12.5px; color:#fff;
      padding:8px 11px; border-radius:999px;
      background: linear-gradient(135deg, var(--brand4), var(--brand2));
      border:1px solid rgba(255,255,255,.18);
      box-shadow:0 14px 35px rgba(255,176,32,.16);
    }
    .price-sub{color:var(--muted); font-weight:780; font-size:12.5px}
    .price-body{padding:12px 14px 8px}
    .price-line{
      display:flex; gap:10px; justify-content:space-between; align-items:flex-start;
      border-top:1px dashed rgba(28,40,64,.12);
      padding:12px 0;
    }
    .price-line:first-child{border-top:none}
    .price-k{color:var(--muted); font-weight:850}
    .price-v{font-weight:950; color:#18233a}
    .price-foot{
      border-top:1px solid rgba(28,40,64,.10);
      padding:14px 14px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      background: rgba(255,255,255,.6);
    }
    .price-mini-title{font-weight:1000; margin-bottom:6px}
    .price-mini-desc{color:var(--muted); font-weight:720; line-height:1.5; font-size:13.5px}

    .deal-list{padding:0; overflow:hidden}
    .deal-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 14px;
      border-top:1px dashed rgba(28,40,64,.12);
    }
    .deal-item:first-of-type{border-top:none}
    .deal-icon{
      width:36px; height:36px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      background: linear-gradient(135deg, rgba(24,160,251,.16), rgba(109,44,255,.10));
      border:1px solid rgba(24,160,251,.18);
      flex:0 0 auto;
    }
    .deal-title{font-weight:1000; margin-bottom:5px}
    .deal-desc{color:var(--muted); font-weight:720; line-height:1.7}
    .deal-action{padding:0 14px 16px}

    .match-grid{
      display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; align-items:start;
    }
    .match-left, .match-right{padding:0}
    .match-left .card-lite-head, .match-right .card-lite-head{padding-bottom:10px}

    .radio-grid{
      padding:0 14px 14px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
    }
    .radio-card{
      border:1px solid rgba(28,40,64,.12);
      background: rgba(255,255,255,.70);
      border-radius:18px;
      padding:12px 12px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      display:flex; flex-direction:column; gap:6px;
      min-height:88px;
      position:relative;
      overflow:hidden;
    }
    .radio-card:hover{transform: translateY(-2px); box-shadow:0 18px 45px rgba(16,24,40,.10)}
    .radio-card input{position:absolute; opacity:0; pointer-events:none}
    .radio-title{font-weight:1000}
    .radio-desc{color:var(--muted); font-weight:720; line-height:1.5; font-size:12.8px}
    .radio-card:has(input:checked){
      border-color: rgba(109,44,255,.30);
      background: linear-gradient(135deg, rgba(109,44,255,.12), rgba(255,43,109,.08));
    }
    .match-bullets{padding:0 14px 14px}
    .match-bullets-title{font-weight:1000; margin:6px 0 8px}
    .checklist-check{margin:0}
    .match-right{padding:14px 14px 16px}
    .form-grid{
      display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px;
      margin-bottom:10px;
    }
    .field-textarea{resize:vertical; min-height:120px}
    .form-actions{margin-top:12px}
    .form-foot{
      display:flex; align-items:center; gap:10px;
      margin-top:10px;
      color:var(--muted2);
      font-weight:720;
      font-size:12.5px;
    }
    .form-foot-dot{width:10px; height:10px; border-radius:50%; background:linear-gradient(135deg, var(--brand1), var(--brand2)); box-shadow:0 0 0 6px rgba(109,44,255,.12)}

    .article-layout{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .article-list{padding:0}
    .article-ul{
      list-style:none;
      margin:0;
      padding:10px 14px 0;
    }
    .article-li{
      border-top:1px dashed rgba(28,40,64,.12);
      padding:12px 0;
    }
    .article-li:first-child{border-top:none}
    .article-link{
      display:block;
      text-decoration:none;
      font-weight:950;
      color:#151d2f;
      line-height:1.4;
      padding:6px 0;
      transition: color .15s ease, transform .15s ease;
    }
    .article-link:hover{color:var(--brand1); transform: translateY(-2px)}
    .article-meta{color:var(--muted); font-weight:720; font-size:12.5px; margin-top:6px}
    .article-more{
      display:flex; gap:10px; flex-wrap:wrap;
      padding:14px 14px 16px;
      border-top:1px solid rgba(28,40,64,.08);
      align-items:center;
      justify-content:space-between;
    }
    .article-side{display:flex; flex-direction:column; gap:12px}
    .side-card{padding:0}
    .side-items{padding:10px 14px 14px; display:flex; flex-direction:column; gap:10px}
    .side-item{
      text-decoration:none;
      color:#1b2333;
      font-weight:900;
      border:1px solid rgba(28,40,64,.12);
      border-radius:16px;
      padding:12px 12px;
      background:rgba(255,255,255,.70);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .side-item:hover{transform: translateY(-2px); box-shadow:0 18px 45px rgba(16,24,40,.10)}
    .side-card .card-lite-head{padding:14px 14px 0}

    .help-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      align-items:stretch;
    }
    .help-card{padding:14px 14px}
    .help-title{font-weight:1000; margin-bottom:10px; font-size:14.5px}
    .help-links{display:flex; flex-direction:column; gap:10px}
    .help-link{
      text-decoration:none;
      color:#1b2333;
      font-weight:900;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.70);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .help-link:hover{transform: translateY(-2px); box-shadow:0 18px 45px rgba(16,24,40,.10)}
    .help-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .contact-mini{display:flex; flex-direction:column; gap:10px}
    .contact-line{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .contact-k{color:var(--muted); font-weight:900; font-size:12.5px}
    .contact-v{color:#1b2333; text-decoration:none; font-weight:950}
    .contact-v:hover{color:var(--brand1)}
    .contact-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .faq-grid{
      display:grid; grid-template-columns: 1.12fr .88fr; gap:14px; align-items:start;
    }
    .faq-accordion{padding:0; overflow:hidden}
    .accordion-item{
      border-top:1px solid rgba(28,40,64,.10);
      padding:0 14px;
      background:transparent;
    }
    .accordion-item:first-child{border-top:none}
    .accordion-btn{
      width:100%;
      text-align:left;
      border:0;
      background:transparent;
      padding:14px 0;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:980;
      color:#111827;
      font-size:14.5px;
    }
    .accordion-btn:focus{outline:3px solid rgba(109,44,255,.25); outline-offset:2px; border-radius:14px}
    .accordion-icon{
      width:36px; height:36px; border-radius:14px;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.7);
      position:relative;
      flex:0 0 auto;
      transition: transform .2s ease, background .2s ease;
    }
    .accordion-icon::before,.accordion-icon::after{
      content:""; position:absolute; left:50%; top:50%;
      width:14px; height:2px; background:linear-gradient(90deg, var(--brand1), var(--brand2));
      transform: translate(-50%,-50%);
      border-radius:2px;
    }
    .accordion-icon::after{
      width:2px; height:14px;
      background: linear-gradient(180deg, var(--brand3), var(--brand1));
      transition: opacity .2s ease, transform .2s ease;
    }
    .accordion-item[data-open="true"] .accordion-icon{background: linear-gradient(135deg, rgba(109,44,255,.14), rgba(255,43,109,.10))}
    .accordion-item[data-open="true"] .accordion-icon::after{opacity:0}
    .accordion-panel{display:none; padding:0 0 14px}
    .accordion-content{color:var(--muted); font-weight:720; line-height:1.75}
    .faq-side{padding:14px 14px}
    .faq-side-title{font-weight:1000; font-size:16px; margin-bottom:8px}
    .faq-side-desc{color:var(--muted); font-weight:720; line-height:1.7}
    .faq-side-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .faq-side-box{
      margin-top:14px;
      padding:14px 14px;
      border-radius:20px;
      border:1px solid rgba(28,40,64,.10);
      background: linear-gradient(135deg, rgba(24,160,251,.08), rgba(109,44,255,.06));
    }
    .faq-side-box-title{font-weight:1000; margin-bottom:10px}
    .faq-side-links{display:flex; flex-direction:column; gap:10px}
    .faq-side-links a{
      text-decoration:none;
      color:#1b2333;
      font-weight:900;
      border:1px solid rgba(28,40,64,.12);
      border-radius:16px;
      padding:12px 12px;
      background:rgba(255,255,255,.70);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .faq-side-links a:hover{transform: translateY(-2px); box-shadow:0 18px 45px rgba(16,24,40,.10)}
    .faq-side-kpi{margin-top:14px; border-top:1px solid rgba(28,40,64,.10); padding-top:12px}
    .kpi-row{display:flex; justify-content:space-between; align-items:center; padding:8px 0; color:#1b2333}
    .kpi-label{color:var(--muted); font-weight:900}
    .kpi-value{font-weight:1000}

    .network-cards{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px;
    }
    .net-card{padding:16px 16px}
    .net-title{font-weight:1000; font-size:15px; margin-bottom:8px}
    .net-desc{color:var(--muted); font-weight:720; line-height:1.7; margin-bottom:12px}
    .net-points{display:flex; gap:10px; flex-wrap:wrap}

    .review-grid{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px;
    }
    .review-card{
      padding:16px 16px;
      border-radius:22px;
      border:1px solid rgba(28,40,64,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 14px 35px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease;
      min-height:220px;
      display:flex; flex-direction:column;
    }
    .review-card:hover{transform: translateY(-4px); box-shadow:0 24px 60px rgba(16,24,40,.12)}
    .review-top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; margin-bottom:10px}
    .avatar{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(109,44,255,.14), rgba(255,43,109,.12));
      border:1px solid rgba(109,44,255,.18);
      font-weight:1000;
      color:#1b2333;
      flex:0 0 auto;
    }
    .review-name{font-weight:1000; margin-bottom:4px}
    .review-meta{color:var(--muted); font-weight:800; font-size:12.5px}
    .stars{color:#ffb020; font-weight:1000; letter-spacing:1px; padding-top:4px}
    .review-text{color:var(--muted); font-weight:720; line-height:1.75; margin:0; flex:1}

    .join-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
      align-items:start;
    }
    .join-left{padding:14px 14px}
    .join-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .join-right{padding:14px 14px}
    .join-right-head{margin-bottom:12px}
    .join-right-title{font-weight:1000; font-size:16px}
    .join-right-sub{color:var(--muted); font-weight:760; margin-top:6px}
    .partner-cards{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px}
    .partner-card{
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.70);
      border-radius:18px;
      padding:12px 12px;
      min-height:92px;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .partner-card:hover{transform: translateY(-2px); box-shadow:0 18px 45px rgba(16,24,40,.10)}
    .partner-name{font-weight:1000; margin-bottom:6px}
    .partner-desc{color:var(--muted); font-weight:720; line-height:1.6; font-size:12.8px}
    .join-note{
      margin-top:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(28,40,64,.10);
      background: linear-gradient(135deg, rgba(255,176,32,.10), rgba(109,44,255,.08));
      color:#1b2333;
      font-weight:850;
      display:flex; gap:10px; align-items:flex-start;
    }
    .join-note-icon{width:26px; height:26px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.6); border:1px solid rgba(28,40,64,.12); flex:0 0 auto}

    .platform-grid{
      display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; align-items:start;
    }
    .platform-left{padding:0}
    .platform-right{padding:14px 14px}
    .platform-items{padding:10px 14px 14px}
    .platform-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 0;
      border-top:1px dashed rgba(28,40,64,.12);
    }
    .platform-item:first-child{border-top:none}
    .platform-icon{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      background: linear-gradient(135deg, rgba(24,160,251,.14), rgba(109,44,255,.10));
      border:1px solid rgba(24,160,251,.18);
      flex:0 0 auto;
    }
    .platform-name{font-weight:1000; margin-bottom:6px}
    .platform-desc{color:var(--muted); font-weight:720; line-height:1.7}
    .platform-right-head{margin-bottom:12px}
    .platform-right-title{font-weight:1000; font-size:16px; margin-bottom:6px}
    .platform-right-sub{color:var(--muted); font-weight:760; line-height:1.6}

    .platform-tiles{
      display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px;
      margin-bottom:14px;
    }
    .tile{
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.70);
      border-radius:20px;
      padding:12px 12px;
      min-height:110px;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .tile:hover{transform: translateY(-2px); box-shadow:0 18px 45px rgba(16,24,40,.10)}
    .tile-icon{
      width:36px; height:36px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(28,40,64,.12);
      background: linear-gradient(135deg, rgba(255,43,109,.10), rgba(109,44,255,.10));
      font-weight:1000;
      margin-bottom:10px;
    }
    .tile-title{font-weight:1000; margin-bottom:6px}
    .tile-desc{color:var(--muted); font-weight:720; line-height:1.6; font-size:12.8px}

    .platform-right-cta{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px}
    .platform-right-bottom{
      border-top:1px solid rgba(28,40,64,.10);
      padding-top:12px;
      display:flex; flex-direction:column; gap:12px;
    }
    .quick-links{display:flex; gap:10px; flex-wrap:wrap}
    .quick-links a{
      color:#1b2333; text-decoration:none; font-weight:900;
      padding:10px 12px; border-radius:14px;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.70);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .quick-links a:hover{transform: translateY(-2px); box-shadow:0 18px 45px rgba(16,24,40,.10)}
    .platform-right-trust{display:flex; gap:10px; flex-wrap:wrap}

    .footer-contact{padding:24px 0 6px}
    .footer-top{
      padding:16px 16px;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:stretch;
      background: linear-gradient(135deg, rgba(109,44,255,.10), rgba(255,43,109,.08));
    }
    .footer-top-title{font-weight:1000; font-size:18px; margin-bottom:8px}
    .footer-top-desc{color:var(--muted); font-weight:720; line-height:1.7}
    .inline-link{color:var(--brand1); text-decoration:none; font-weight:950}
    .inline-link:hover{text-decoration:underline}
    .footer-top-links{margin-top:14px}
    .footer-top-links-title{font-weight:1000; margin-bottom:10px}
    .footer-links{display:flex; gap:10px; flex-wrap:wrap}
    .footer-links a{
      color:#1b2333;
      text-decoration:none;
      font-weight:900;
      padding:9px 11px;
      border-radius:14px;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.70);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .footer-links a:hover{transform: translateY(-2px); box-shadow:0 18px 45px rgba(16,24,40,.10)}

    .footer-top-right{
      display:flex; flex-direction:column; gap:12px; align-items:flex-end;
    }
    .qr-card{
      width:100%;
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.78);
      border-radius:22px;
      padding:14px 14px;
      box-shadow:0 14px 35px rgba(16,24,40,.06);
    }
    .qr-title{font-weight:1000; margin-bottom:10px; font-size:15px}
    .qr-img{width:100%; max-width:220px; height:auto; display:block; margin:0 auto; border-radius:16px; border:1px solid rgba(28,40,64,.12)}
    .qr-sub{color:var(--muted); font-weight:760; text-align:center; margin-top:10px}

    .footer-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; width:100%}
    .site-footer{
      border-top:1px solid rgba(28,40,64,.08);
      background:rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
    }
    .footer-inner{
      padding:18px 0;
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
    }
    .footer-left{display:flex; flex-direction:column; gap:10px}
    .footer-brand{display:flex; align-items:center; gap:10px; font-weight:1000}
    .footer-logo-dot{width:12px; height:12px; border-radius:50%; background: linear-gradient(135deg, var(--brand1), var(--brand2)); box-shadow:0 0 0 6px rgba(109,44,255,.12)}
    .footer-name{font-size:16px}
    .footer-text{color:var(--muted); font-weight:740; line-height:1.7; max-width:560px}
    .footer-right{display:flex; flex-direction:column; gap:10px; align-items:flex-end}
    .footer-links{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end}
    .footer-links a{color:#1b2333; text-decoration:none; font-weight:950; padding:8px 10px; border-radius:14px; border:1px solid rgba(28,40,64,.12); background:rgba(255,255,255,.70); transition: transform .15s ease, box-shadow .15s ease}
    .footer-links a:hover{transform: translateY(-2px); box-shadow:0 18px 45px rgba(16,24,40,.10)}
    .footer-copy{color:var(--muted2); font-weight:760}

    .float-customer{
      position:fixed; right:16px; bottom:16px;
      z-index:80;
      display:flex; flex-direction:column; align-items:flex-end; gap:10px;
    }
    .float-btn{
      border-radius:18px;
      padding:12px 14px;
      border:1px solid rgba(255,255,255,.20);
      background: linear-gradient(135deg, rgba(109,44,255,.96), rgba(255,43,109,.92));
      color:#fff;
      box-shadow:0 18px 45px rgba(109,44,255,.22);
      display:flex; align-items:center; gap:10px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
      user-select:none;
    }
    .float-btn:active{transform:scale(.98)}
    .float-btn:focus{outline:3px solid rgba(255,255,255,.35); outline-offset:3px}
    .float-icon{
      width:36px; height:36px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.18);
      font-weight:1000;
    }
    .float-text{font-weight:1000}
    .float-panel{
      width:min(360px, calc(100vw - 32px));
      border-radius:22px;
      border:1px solid rgba(28,40,64,.12);
      background: rgba(255,255,255,.86);
      box-shadow:0 24px 60px rgba(16,24,40,.14);
      overflow:hidden;
      transform-origin: 90% 100%;
      animation: panelIn .18s ease both;
    }
    @keyframes panelIn{
      from{transform: scale(.98); opacity:.0}
      to{transform: scale(1); opacity:1}
    }
    .float-panel-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding:14px 14px;
      border-bottom:1px solid rgba(28,40,64,.10);
      background: linear-gradient(135deg, rgba(109,44,255,.10), rgba(255,43,109,.06));
    }
    .float-panel-title{font-weight:1000}
    .float-close{
      border:1px solid rgba(28,40,64,.12);
      background:rgba(255,255,255,.7);
      padding:8px 10px;
      border-radius:14px;
      cursor:pointer;
      font-weight:950;
      color:#1b2333;
    }
    .float-close:active{transform:scale(.98)}
    .float-panel-body{padding:14px 14px}
    .float-qr{
      width:100%; max-width:260px; height:auto;
      display:block;
      margin:0 auto 12px;
      border-radius:16px;
      border:1px solid rgba(28,40,64,.12);
    }
    .float-panel-actions{display:flex; flex-direction:column; gap:10px}

    .skip-table{display:none}

    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; gap:14px}
      .hero-title{font-size:36px}
      .hero-trust{grid-template-columns: 1fr; gap:10px}
      .hero-side{flex-direction:column}
      .three-cards{grid-template-columns: 1fr; }
      .services-grid{grid-template-columns: 1fr; }
      .two-col{grid-template-columns: 1fr}
      .industry-grid{grid-template-columns: 1fr 1fr}
      .steps-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .compare-wrap{grid-template-columns: 1fr}
      .pricing-grid{grid-template-columns: 1fr}
      .match-grid{grid-template-columns: 1fr}
      .article-layout{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .network-cards{grid-template-columns: 1fr}
      .join-grid{grid-template-columns: 1fr}
      .platform-grid{grid-template-columns: 1fr}
      .footer-top{grid-template-columns: 1fr}
      .footer-top-right{align-items:stretch}
      .footer-actions{justify-content:flex-start}
      .partner-cards{grid-template-columns: 1fr 1fr}
      .form-grid{grid-template-columns: 1fr}
      .radio-grid{grid-template-columns: 1fr}
      .top-subbar{display:none}
      .header-actions .btn-ghost{display:none}
      .ai-page-logo{width:118px; max-height:42px}
      .nav-toggle{display:flex}
      .nav-panel{
        display:none;
        position:absolute;
        right:18px; left:18px; top:72px;
        background: rgba(255,255,255,.92);
        border:1px solid rgba(28,40,64,.12);
        border-radius:18px;
        padding:12px;
        box-shadow:0 24px 60px rgba(16,24,40,.14);
        flex-direction:column;
        gap:8px;
      }
      .nav-panel.show{display:flex}
      .nav-link{width:100%}
    }

    @media (prefers-reduced-motion: reduce){
      .reveal{transition:none}
      .hero-orb{animation:none}
      *{scroll-behavior:auto !important}
    }