:root{
      --bg0:#ffffff;
      --bg1:#f7f6fb;
      --bg2:#f2f4ff;
      --card:#ffffff;
      --text:#1f2430;
      --muted:#5a6476;
      --muted2:#7b879c;
      --border:rgba(15,23,42,.10);
      --shadow:0 14px 34px rgba(17,24,39,.10);
      --shadow2:0 10px 24px rgba(17,24,39,.08);
      --ring:rgba(71,85,255,.18);

      --primary1:#4f46e5;
      --primary2:#06b6d4;
      --primary3:#f97316;
      --primary4:#10b981;

      --btnText:#0b1020;
      --radius:18px;
      --radius2:24px;

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

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 420px at 15% 0%, rgba(79,70,229,.10), transparent 55%),
        radial-gradient(680px 380px at 86% 18%, rgba(6,182,212,.12), transparent 50%),
        radial-gradient(720px 420px at 25% 92%, rgba(249,115,22,.08), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 56%, #fff 100%);
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute;
      top:-40px;
      left:12px;
      background:#0b1220;
      color:#fff;
      padding:10px 12px;
      border-radius:12px;
      z-index:9999;
      transition:top .2s ease;
      text-decoration:none;
      font-weight:700;
      font-size:14px;
    }
    .skip-link:focus{top:12px}

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

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.72);
      backdrop-filter:saturate(160%) blur(12px);
      border-bottom:1px solid rgba(15,23,42,.06);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:12px 0;
    }

    .brand{display:flex; align-items:center; gap:12px; min-width:240px}
    .brand-link{display:flex; align-items:center; gap:10px; text-decoration:none}
    .ai-page-logo{width:42px; border-radius:14px; box-shadow:0 10px 20px rgba(79,70,229,.16)}
    .brand-meta{display:flex; flex-direction:column; line-height:1.15}
    .brand-name{font-weight:900; letter-spacing:.2px; font-size:15px}
    .brand-tag{color:var(--muted); font-size:12px; margin-top:4px}

    .nav{display:flex; align-items:center; gap:14px; flex:1; justify-content:flex-end}
    .nav-toggle{
      display:none;
      align-items:center;
      gap:10px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.8);
      border-radius:14px;
      padding:10px 12px;
      font-weight:800;
      color:var(--text);
      cursor:pointer;
      box-shadow:0 10px 20px rgba(17,24,39,.06);
    }
    .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:rgba(17,24,39,.8); border-radius:99px;
    }
    .nav-toggle-lines::before{top:0}
    .nav-toggle-lines::after{bottom:0}
    .nav-toggle-lines{background:linear-gradient(transparent 0 4px, rgba(17,24,39,.8) 4px 6px, transparent 6px 100%)}

    .nav-menu{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-link{
      text-decoration:none;
      color:rgba(17,24,39,.78);
      font-weight:800;
      font-size:13px;
      padding:10px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition:background .2s ease, border-color .2s ease, transform .2s ease;
    }
    .nav-link:hover{
      background:rgba(79,70,229,.08);
      border-color:rgba(79,70,229,.18);
      transform:translateY(-1px);
    }

    .header-actions{display:flex; gap:10px; align-items:center; margin-left:6px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:14px;
      text-decoration:none;
      font-weight:900;
      border:1px solid transparent;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .btn:active{transform:translateY(1px)}
    .btn-primary{
      background:linear-gradient(135deg, var(--primary1), #6d28d9 55%, var(--primary2));
      color:#fff;
      box-shadow:0 16px 34px rgba(79,70,229,.22);
    }
    .btn-primary:hover{box-shadow:0 18px 44px rgba(79,70,229,.28)}
    .btn-ghost{
      background:rgba(255,255,255,.85);
      border-color:rgba(15,23,42,.12);
      color:rgba(17,24,39,.86);
      box-shadow:0 10px 22px rgba(17,24,39,.06);
    }
    .btn-ghost:hover{
      border-color:rgba(79,70,229,.24);
      transform:translateY(-1px);
    }
    .btn-soft{
      background:rgba(6,182,212,.10);
      border-color:rgba(6,182,212,.18);
      color:rgba(11,16,32,.92);
    }
    .btn-soft:hover{
      background:rgba(6,182,212,.14);
      border-color:rgba(6,182,212,.26);
      transform:translateY(-1px);
    }
    .btn-lg{padding:14px 18px; border-radius:16px; font-size:15px}

    .hero{
      position:relative;
      padding:44px 0 26px;
      overflow:hidden;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:18px;
      align-items:stretch;
      position:relative;
      z-index:2;
    }

    .hero-copy{
      padding:26px 0;
    }
    .eyebrow{
      display:flex;
      align-items:center;
      gap:10px;
      color:rgba(17,24,39,.78);
      font-weight:900;
      font-size:13px;
      letter-spacing:.1px;
      margin-bottom:14px;
    }
    .dot{
      width:10px; height:10px; border-radius:99px;
      background:linear-gradient(135deg, var(--primary1), var(--primary2), var(--primary3));
      box-shadow:0 12px 24px rgba(79,70,229,.22);
    }

    .hero-title{
      font-size:40px;
      line-height:1.12;
      margin:0 0 14px;
      letter-spacing:-.6px;
      font-weight:1000;
    }
    .hero-sub{
      color:var(--muted);
      font-size:16px;
      line-height:1.7;
      margin:0 0 22px;
      max-width:58ch;
      font-weight:700;
    }

    .hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}
    .hero-highlights{display:flex; gap:10px; flex-wrap:wrap}
    .pill{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 10px 22px rgba(17,24,39,.05);
      color:rgba(17,24,39,.88);
      font-weight:900;
      font-size:13px;
    }
    .pill-icon{
      width:22px; height:22px; border-radius:10px;
      display:inline-flex; align-items:center; justify-content:center;
      background:linear-gradient(135deg, rgba(79,70,229,.16), rgba(6,182,212,.16));
      border:1px solid rgba(79,70,229,.18);
    }

    .hero-panel{
      background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:var(--shadow2);
      position:relative;
      overflow:hidden;
    }
    .hero-panel::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 220px at 10% 0%, rgba(79,70,229,.16), transparent 60%),
        radial-gradient(420px 220px at 90% 20%, rgba(6,182,212,.16), transparent 55%),
        radial-gradient(420px 220px at 30% 100%, rgba(249,115,22,.10), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .hero-panel > *{position:relative; z-index:2}
    .hero-panel-top{
      padding:6px 6px 14px;
    }
    .panel-title{font-weight:1000; font-size:16px; margin-bottom:6px}
    .panel-sub{color:var(--muted); font-weight:800; font-size:13px}

    .data-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      padding:6px;
    }
    .data-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:14px 12px;
      box-shadow:0 10px 18px rgba(17,24,39,.05);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:96px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .data-card:hover{
      transform:translateY(-3px);
      box-shadow:0 16px 30px rgba(17,24,39,.10);
      border-color:rgba(79,70,229,.22);
    }
    .data-k{font-weight:1000; font-size:13px; color:rgba(17,24,39,.86); margin-bottom:8px}
    .data-v{color:var(--muted); font-size:13px; font-weight:800; line-height:1.35}

    .hero-panel-bottom{
      padding:12px 6px 6px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      border-top:1px solid rgba(15,23,42,.08);
      margin-top:12px;
    }
    .link-more{
      display:inline-flex; align-items:center; gap:10px;
      color:rgba(17,24,39,.90);
      font-weight:1000;
      text-decoration:none;
      padding:10px 12px;
      border-radius:14px;
      background:rgba(79,70,229,.06);
      border:1px solid rgba(79,70,229,.14);
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .link-more:hover{
      transform:translateY(-2px);
      border-color:rgba(79,70,229,.24);
      background:rgba(79,70,229,.09);
    }
    .arrow{font-size:16px}
    .mini-note{color:var(--muted2); font-size:12px; font-weight:800; line-height:1.45; max-width:32ch; padding-top:4px}

    .hero-bg{
      position:absolute;
      inset:-60px -60px auto -60px;
      height:520px;
      z-index:1;
      pointer-events:none;
      background:
        radial-gradient(620px 260px at 22% 10%, rgba(79,70,229,.18), transparent 60%),
        radial-gradient(520px 260px at 78% 18%, rgba(6,182,212,.16), transparent 58%),
        radial-gradient(620px 320px at 40% 92%, rgba(249,115,22,.12), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.0));
    }
    .orb{
      position:absolute;
      width:320px; height:320px;
      border-radius:999px;
      filter: blur(22px);
      opacity:.45;
      transform: translate3d(0,0,0);
      animation: floaty 9s ease-in-out infinite;
    }
    .orb-1{left:-90px; top:70px; background:radial-gradient(circle at 30% 30%, rgba(79,70,229,.75), transparent 60%)}
    .orb-2{right:-120px; top:20px; background:radial-gradient(circle at 35% 35%, rgba(6,182,212,.75), transparent 62%); animation-duration:11s}
    .grid-lines{
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(15,23,42,.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15,23,42,.06) 1px, transparent 1px);
      background-size:48px 48px;
      mask-image: radial-gradient(400px 260px at 60% 20%, rgba(0,0,0,.95), transparent 65%);
      opacity:.55;
    }
    @keyframes floaty{
      0%,100%{transform:translateY(0) translateX(0)}
      50%{transform:translateY(18px) translateX(10px)}
    }

    .section{padding:56px 0}
    .section.alt{background:linear-gradient(180deg, rgba(242,244,255,.55), rgba(255,255,255,.0));}
    .section.alt2{background:linear-gradient(180deg, rgba(255,255,255,.0), rgba(247,246,251,.8));}

    .section.tiny-space{padding:30px 0}
    .section-inner{padding:0}
    .section-head{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-bottom:22px;
    }
    .h2{
      margin:0;
      font-size:28px;
      letter-spacing:-.35px;
      font-weight:1000;
    }
    .section-desc{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-weight:750;
      max-width:78ch;
    }

    .about-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .about-card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius);
      padding:18px 16px;
      box-shadow:0 12px 26px rgba(17,24,39,.06);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:148px;
    }
    .about-card:hover{transform:translateY(-4px); box-shadow:0 18px 40px rgba(17,24,39,.10); border-color:rgba(79,70,229,.22)}
    .icon-badge{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      background:linear-gradient(135deg, rgba(79,70,229,.16), rgba(6,182,212,.14));
      border:1px solid rgba(79,70,229,.18);
      box-shadow:0 14px 30px rgba(79,70,229,.10);
      margin-bottom:12px;
    }
    .h3{
      margin:0 0 10px;
      font-weight:1000;
      font-size:16px;
      letter-spacing:-.15px;
    }
    .about-card p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-weight:780;
      font-size:13px;
    }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .service-card{
      background:rgba(255,255,255,.80);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      padding:18px 16px;
      box-shadow:0 14px 34px rgba(17,24,39,.06);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      overflow:hidden;
      position:relative;
      min-height:240px;
      display:flex;
      flex-direction:column;
    }
    .service-card::after{
      content:"";
      position:absolute; inset:auto -40px -60px auto;
      width:220px; height:220px;
      background:radial-gradient(circle at 30% 30%, rgba(79,70,229,.20), transparent 62%);
      transform:rotate(25deg);
      opacity:.8;
      pointer-events:none;
    }
    .service-card:hover{transform:translateY(-4px); box-shadow:0 20px 46px rgba(17,24,39,.10); border-color:rgba(79,70,229,.22)}
    .service-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; position:relative; z-index:2}
    .service-name{font-weight:1100; font-size:16px; letter-spacing:-.2px}
    .service-tag{
      font-size:12px;
      color:rgba(11,16,32,.92);
      font-weight:1000;
      background:rgba(6,182,212,.10);
      border:1px solid rgba(6,182,212,.18);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .service-desc{margin:12px 0 12px; color:var(--muted); line-height:1.7; font-weight:780; position:relative; z-index:2}
    .service-list{margin:0; padding-left:18px; color:rgba(31,36,48,.86); font-weight:850; position:relative; z-index:2}
    .service-list li{margin:6px 0; color:var(--muted)}
    .service-footer{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; flex-wrap:wrap;
      margin-top:18px;
      padding-top:12px;
      border-top:1px solid rgba(15,23,42,.08);
    }
    .tags-wrap{display:flex; gap:10px; flex-wrap:wrap}
    .tag{
      display:inline-flex;
      padding:10px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      color:rgba(17,24,39,.86);
      font-weight:950;
      font-size:13px;
      box-shadow:0 10px 22px rgba(17,24,39,.04);
    }
    .service-actions{display:flex; gap:10px; flex-wrap:wrap}

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .step-card{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 14px 34px rgba(17,24,39,.06);
      padding:18px 16px;
      display:flex;
      gap:12px;
      align-items:flex-start;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:128px;
    }
    .step-card:hover{transform:translateY(-4px); border-color:rgba(79,70,229,.22); box-shadow:0 22px 48px rgba(17,24,39,.10)}
    .step-no{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      background:linear-gradient(135deg, rgba(79,70,229,.16), rgba(6,182,212,.14));
      border:1px solid rgba(79,70,229,.18);
      box-shadow:0 14px 28px rgba(79,70,229,.10);
    }
    .step-body h3{margin:2px 0 8px; font-size:15px}
    .step-body p{margin:0; color:var(--muted); line-height:1.7; font-weight:780; font-size:13px}

    .banner-row{
      display:flex; gap:14px; align-items:stretch; justify-content:space-between;
      margin-top:18px;
    }
    .banner-card{
      flex:1;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      padding:18px 16px;
      box-shadow:0 14px 34px rgba(17,24,39,.06);
    }
    .banner-title{font-weight:1100; font-size:16px; margin-bottom:8px}
    .banner-desc{margin:0; color:var(--muted); font-weight:780; line-height:1.7}
    .banner-side{
      width:320px;
      display:flex;
      flex-direction:column;
      gap:10px;
      justify-content:center;
      padding:6px 0;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .match-grid{display:grid; gap:12px}
    .match-item{
      background:rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      padding:16px 14px;
      box-shadow:0 14px 30px rgba(17,24,39,.05);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .match-item:hover{transform:translateY(-3px); border-color:rgba(6,182,212,.24); box-shadow:0 20px 44px rgba(17,24,39,.10)}
    .match-title{font-weight:1100; font-size:15px; margin-bottom:8px}
    .match-desc{margin:0; color:var(--muted); font-weight:780; line-height:1.65; font-size:13px}

    .image-strip{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 14px 34px rgba(17,24,39,.06);
      overflow:hidden;
      position:relative;
    }
    .strip-img{
      width:100%;
      display:block;
      max-width:100%;
      height:auto;
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .strip-overlay{
      position:absolute; inset:0;
      background:
        radial-gradient(420px 220px at 20% 0%, rgba(79,70,229,.10), transparent 60%),
        radial-gradient(420px 220px at 90% 40%, rgba(6,182,212,.10), transparent 58%),
        radial-gradient(420px 220px at 40% 100%, rgba(249,115,22,.08), transparent 62%);
      pointer-events:none;
      mix-blend-mode:normal;
      opacity:.9;
    }

    .note-box{
      margin-top:12px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      padding:16px 14px;
      box-shadow:0 14px 30px rgba(17,24,39,.05);
    }
    .note-title{font-weight:1100; margin-bottom:10px}
    .note-list{margin:0; padding-left:18px; color:var(--muted); font-weight:800; line-height:1.8}
    .note-list li{margin:5px 0}

    .match-wrap{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:14px;
      align-items:start;
    }
    .form-card{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
    }
    .form-head{margin-bottom:14px}
    .form-title{font-weight:1200; font-size:16px; letter-spacing:-.2px}
    .form-sub{color:var(--muted); font-weight:800; margin-top:6px; font-size:13px}
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field label{font-weight:1000; font-size:13px; color:rgba(17,24,39,.90)}
    .field input,.field select,.field textarea{
      width:100%;
      border:1px solid rgba(15,23,42,.14);
      border-radius:14px;
      padding:12px 12px;
      background:rgba(255,255,255,.92);
      color:var(--text);
      outline:none;
      font-weight:800;
      box-shadow:0 10px 20px rgba(17,24,39,.04);
      transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }
    .field textarea{resize:vertical; min-height:118px}
    .field input:focus,.field select:focus,.field textarea:focus{
      border-color:rgba(79,70,229,.40);
      box-shadow:0 0 0 6px var(--ring);
    }
    .field-full{grid-column:1 / -1}
    .form-actions{
      grid-column:1 / -1;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:6px;
    }
    .privacy-note{
      grid-column:1 / -1;
      color:var(--muted2);
      font-weight:800;
      font-size:12px;
      line-height:1.5;
      margin-top:4px;
    }

    .side-card{
      background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.74));
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      padding:18px 16px;
      box-shadow:0 14px 34px rgba(17,24,39,.06);
      position:sticky;
      top:86px;
    }
    .side-title{font-weight:1200; font-size:16px}
    .side-sub{color:var(--muted); font-weight:820; margin-top:8px; line-height:1.6}
    .side-list{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .side-item{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:12px 12px;
    }
    .side-k{font-weight:1100; font-size:13px; margin-bottom:6px}
    .side-v{color:var(--muted); font-weight:800; font-size:13px; line-height:1.55}
    .side-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

    .compare-layout{
      display:grid;
      grid-template-columns: .92fr 1.08fr;
      gap:14px;
      align-items:start;
    }
    .rating-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
      overflow:hidden;
      position:relative;
    }
    .rating-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 220px at 20% 10%, rgba(79,70,229,.18), transparent 60%),
        radial-gradient(420px 220px at 85% 40%, rgba(6,182,212,.16), transparent 58%);
      opacity:.85;
      pointer-events:none;
    }
    .rating-card > *{position:relative; z-index:2}
    .rating-top{display:flex; align-items:flex-start; justify-content:space-between; gap:14px; margin-bottom:10px}
    .rating-stars{
      font-size:18px;
      letter-spacing:2px;
      color:#f59e0b;
      text-shadow:0 10px 24px rgba(245,158,11,.25);
      font-weight:1100;
    }
    .rating-score{display:flex; align-items:baseline; gap:8px}
    .big{font-size:44px; font-weight:1200; letter-spacing:-.6px}
    .unit{color:var(--muted2); font-weight:900; font-size:14px}
    .rating-text{color:rgba(17,24,39,.86); font-weight:1000}
    .rating-reco{margin-top:6px; font-size:18px; font-weight:1200; color:rgba(31,36,48,.95)}
    .rating-meta{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .meta-row{display:flex; align-items:center; justify-content:space-between; gap:10px; padding:10px 12px; border:1px solid rgba(15,23,42,.08); border-radius:16px; background:rgba(255,255,255,.72)}
    .meta-k{color:var(--muted2); font-weight:900; font-size:12px}
    .meta-v{color:rgba(17,24,39,.86); font-weight:900; font-size:12px; text-align:right}
    .table-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
    }
    .table-head{margin-bottom:12px}
    .table-title{font-weight:1200; font-size:16px}
    .table-sub{color:var(--muted); font-weight:820; margin-top:8px; font-size:13px; line-height:1.6}
    .table-wrap{
      overflow:auto;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.72);
      -webkit-overflow-scrolling: touch;
    }
    table{width:100%; border-collapse:collapse; min-width:720px}
    th,td{padding:12px 12px; border-bottom:1px solid rgba(15,23,42,.08); vertical-align:top}
    th{
      text-align:left;
      font-size:13px;
      color:rgba(17,24,39,.86);
      font-weight:1100;
      background:rgba(247,246,251,.7);
      position:sticky;
      top:0;
      z-index:1;
    }
    td{color:var(--muted); font-weight:800; font-size:13px; line-height:1.55}
    .ok{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:rgba(17,24,39,.92);
      font-weight:1100;
      margin-right:10px;
    }
    .small-muted{display:block; color:var(--muted2); font-weight:900; margin-top:6px; font-size:12px}
    .table-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1.08fr;
      gap:14px;
      align-items:start;
    }
    .token-card,.token-table-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
    }
    .token-title{font-weight:1200; font-size:16px; margin-bottom:10px}
    .token-desc{color:var(--muted); font-weight:820; line-height:1.7; margin:0}
    .token-list{margin:12px 0 0; padding-left:18px; color:var(--muted); font-weight:820}
    .token-list li{margin:8px 0}
    .token-table-head{margin-bottom:10px}
    .token-table-title{font-weight:1200; font-size:15px}
    .token-table-sub{color:var(--muted); font-weight:820; margin-top:6px; font-size:13px}
    .mini-table{min-width:640px}
    .mini-table th, .mini-table td{padding:12px 12px}

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

    .logos-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
      justify-content:center;
    }
    .logo-chip{
      padding:10px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      color:rgba(17,24,39,.86);
      font-weight:1000;
      box-shadow:0 10px 22px rgba(17,24,39,.04);
    }

    .training-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .training-main,.training-side{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
    }
    .training-title{font-weight:1200; font-size:16px}
    .training-desc{color:var(--muted); font-weight:820; line-height:1.7; margin-top:10px}
    .training-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .training-item{
      display:flex; align-items:flex-start; gap:12px;
      background:rgba(255,255,255,.80);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:12px 12px;
    }
    .training-dot{
      width:12px; height:12px; border-radius:999px;
      background:linear-gradient(135deg, var(--primary1), var(--primary2));
      box-shadow:0 14px 28px rgba(79,70,229,.18);
      margin-top:6px;
      flex:0 0 auto;
    }
    .training-name{font-weight:1100; color:rgba(17,24,39,.92); margin-bottom:6px}
    .training-meta{color:var(--muted); font-weight:850; font-size:13px; line-height:1.4}
    .training-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

    .training-side-title{font-weight:1200; font-size:16px}
    .training-side-tags{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
    .cert-box{
      margin-top:14px;
      background:linear-gradient(180deg, rgba(79,70,229,.06), rgba(255,255,255,.0));
      border:1px solid rgba(79,70,229,.16);
      border-radius:var(--radius2);
      padding:14px 12px;
    }
    .cert-title{font-weight:1200; margin-bottom:8px}
    .cert-desc{margin:0; color:var(--muted); font-weight:820; line-height:1.7; font-size:13px}
    .cert-steps{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .cert-step{display:flex; align-items:center; gap:10px; color:rgba(17,24,39,.88); font-weight:1000; font-size:13px}
    .cert-num{
      width:30px; height:30px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(6,182,212,.12);
      border:1px solid rgba(6,182,212,.18);
      font-weight:1100;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .case-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      overflow:hidden;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex;
      flex-direction:column;
      min-height:360px;
    }
    .case-card:hover{transform:translateY(-4px); border-color:rgba(79,70,229,.22); box-shadow:0 22px 52px rgba(17,24,39,.12)}
    .case-media img{width:100%; display:block; height:auto}
    .case-body{padding:16px 14px; display:flex; flex-direction:column; gap:10px; flex:1}
    .case-title{font-weight:1200; line-height:1.35}
    .case-desc{color:var(--muted); font-weight:820; line-height:1.7; margin:0; font-size:13px}
    .case-meta{display:flex; flex-wrap:wrap; gap:8px; margin-top:auto}
    .meta-chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      color:rgba(17,24,39,.86);
      font-weight:1000;
      font-size:12px;
    }
    .case-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; justify-content:center}

    .articles-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .article-list,.tag-cloud{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
    }
    .list-head{margin-bottom:12px}
    .list-title{font-weight:1200; font-size:16px}
    .list-sub{color:var(--muted); font-weight:820; margin-top:8px; font-size:13px; line-height:1.6}
    .list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
    .list-item{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      border-radius:16px;
      padding:12px 12px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .list-item:hover{transform:translateY(-3px); border-color:rgba(6,182,212,.24); box-shadow:0 20px 44px rgba(17,24,39,.10)}
    .list-item a{
      color:rgba(17,24,39,.92);
      font-weight:1100;
      text-decoration:none;
      line-height:1.5;
      display:block;
    }

    .cloud{display:flex; flex-wrap:wrap; gap:10px}
    .cloud-link{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
      color:rgba(17,24,39,.86);
      font-weight:1000;
      font-size:13px;
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .cloud-link:hover{transform:translateY(-2px); border-color:rgba(79,70,229,.22); background:rgba(79,70,229,.06)}
    .aside-cta{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .faq-grid{
      display:grid;
      grid-template-columns: .86fr 1.14fr;
      gap:14px;
      align-items:start;
    }
    .faq-rail,.faq-panel{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
    }
    .rail-title{font-weight:1200; font-size:16px}
    .rail-sub{color:var(--muted); font-weight:820; margin-top:8px; line-height:1.6; font-size:13px}
    .timeline{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .t-item{display:flex; gap:12px; align-items:flex-start}
    .t-dot{
      width:12px; height:12px; border-radius:999px;
      background:linear-gradient(135deg, var(--primary1), var(--primary2));
      margin-top:6px;
      box-shadow:0 14px 28px rgba(79,70,229,.18);
      flex:0 0 auto;
    }
    .t-k{font-weight:1100; color:rgba(17,24,39,.92); margin-bottom:6px}
    .t-v{color:var(--muted); font-weight:820; line-height:1.6; font-size:13px}

    .rail-cta{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}
    .faq-panel-head{margin-bottom:12px}
    .faq-title{font-weight:1200; font-size:16px}
    .faq-sub{color:var(--muted); font-weight:820; margin-top:8px; font-size:13px}
    .accordion{display:flex; flex-direction:column; gap:10px}
    .acc-item{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      border-radius:18px;
      overflow:hidden;
      transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .acc-item:hover{border-color:rgba(79,70,229,.22)}
    .acc-btn{
      width:100%;
      text-align:left;
      background:transparent;
      border:0;
      padding:14px 14px;
      cursor:pointer;
      font-weight:1100;
      color:rgba(17,24,39,.92);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .acc-icon{
      width:28px; height:28px;
      border-radius:12px;
      background:rgba(79,70,229,.08);
      border:1px solid rgba(79,70,229,.16);
      position:relative;
      flex:0 0 auto;
    }
    .acc-icon::before,.acc-icon::after{
      content:"";
      position:absolute; left:50%; top:50%;
      width:12px; height:2px;
      background:rgba(17,24,39,.82);
      transform:translate(-50%,-50%);
      border-radius:99px;
      transition:transform .2s ease;
    }
    .acc-icon::after{
      width:2px; height:12px;
    }
    .acc-btn[aria-expanded="true"] .acc-icon::after{transform:translate(-50%,-50%) rotate(90deg)}
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
    }
    .acc-panel p{
      margin:0;
      padding:0 14px 14px;
      color:var(--muted);
      font-weight:820;
      line-height:1.7;
      font-size:13px;
    }

    .faq-bottom{
      margin-top:14px;
      border-top:1px solid rgba(15,23,42,.08);
      padding-top:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }
    .faq-bottom-text{color:var(--muted); font-weight:900}

    .kb-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .kb-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:176px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .kb-card:hover{transform:translateY(-4px); border-color:rgba(6,182,212,.24); box-shadow:0 22px 52px rgba(17,24,39,.12)}
    .kb-link{
      margin-top:auto;
      color:rgba(79,70,229,.95);
      font-weight:1100;
      text-decoration:none;
      padding:10px 12px;
      border-radius:14px;
      background:rgba(79,70,229,.06);
      border:1px solid rgba(79,70,229,.14);
      width:max-content;
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .kb-link:hover{transform:translateY(-2px); border-color:rgba(79,70,229,.22); background:rgba(79,70,229,.09)}
    .kb-card p{margin:0; color:var(--muted); font-weight:820; line-height:1.7; font-size:13px}

    .network-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .network-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:190px;
      display:flex;
      flex-direction:column;
    }
    .network-card:hover{transform:translateY(-4px); border-color:rgba(79,70,229,.22); box-shadow:0 22px 52px rgba(17,24,39,.12)}
    .network-title{font-weight:1200; font-size:16px; margin-bottom:10px}
    .network-desc{margin:0; color:var(--muted); font-weight:820; line-height:1.7; font-size:13px}
    .network-mini{margin-top:auto; display:flex; flex-wrap:wrap; gap:10px}
    .mini-chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      color:rgba(17,24,39,.86);
      font-weight:1000;
      font-size:12px;
    }

    .partners-row{
      margin-top:18px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:16px 14px;
    }
    .partners-head{font-weight:1200; margin-bottom:10px}
    .partners-links{display:flex; flex-wrap:wrap; gap:10px}
    .partners-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      color:rgba(17,24,39,.86);
      font-weight:1000;
      font-size:13px;
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .partners-links a:hover{transform:translateY(-2px); border-color:rgba(79,70,229,.22); background:rgba(79,70,229,.06)}

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:210px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .review-card:hover{transform:translateY(-4px); border-color:rgba(6,182,212,.22); box-shadow:0 22px 52px rgba(17,24,39,.12)}
    .review-top{display:flex; align-items:flex-start; gap:12px}
    .review-avatar{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1200; color:#0b1220;
      background:linear-gradient(135deg, rgba(79,70,229,.16), rgba(6,182,212,.14));
      border:1px solid rgba(79,70,229,.18);
      box-shadow:0 14px 28px rgba(79,70,229,.10);
      flex:0 0 auto;
    }
    .review-name{font-weight:1200}
    .review-meta{color:var(--muted); font-weight:820; margin-top:6px; font-size:13px; line-height:1.4}
    .review-text{margin:0; color:var(--muted); font-weight:820; line-height:1.7; font-size:13px}
    .review-foot{margin-top:auto; display:flex; gap:10px; flex-wrap:wrap}
    .rating-badge{
      padding:10px 12px;
      border-radius:999px;
      background:rgba(79,70,229,.06);
      border:1px solid rgba(79,70,229,.14);
      color:rgba(17,24,39,.90);
      font-weight:1100;
      font-size:13px;
    }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .industry-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:188px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .industry-card:hover{transform:translateY(-4px); border-color:rgba(249,115,22,.22); box-shadow:0 22px 52px rgba(17,24,39,.12)}
    .industry-title{font-weight:1200; font-size:16px}
    .industry-card p{margin:0; color:var(--muted); font-weight:820; line-height:1.7; font-size:13px}
    .industry-link{
      margin-top:auto;
      color:rgba(249,115,22,.96);
      font-weight:1100;
      text-decoration:none;
      padding:10px 12px;
      border-radius:14px;
      background:rgba(249,115,22,.08);
      border:1px solid rgba(249,115,22,.18);
      width:max-content;
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .industry-link:hover{transform:translateY(-2px); border-color:rgba(249,115,22,.26); background:rgba(249,115,22,.12)}

    .agency-wrap{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:14px;
      align-items:start;
    }
    .agency-main,.agency-side{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
    }
    .agency-title{font-weight:1200; font-size:16px; margin-bottom:10px}
    .agency-desc{color:var(--muted); font-weight:820; line-height:1.7; margin-bottom:14px}
    .agency-points{display:flex; flex-direction:column; gap:12px}
    .agency-point{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
      border-radius:18px;
      padding:12px 12px;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .agency-k{font-weight:1200; min-width:118px}
    .agency-v{color:var(--muted); font-weight:820; line-height:1.6; font-size:13px}

    .agency-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .mini-form{margin-top:12px; display:flex; flex-direction:column; gap:12px}
    .mini-form .field textarea{min-height:90px}

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr .9fr;
      gap:14px;
      align-items:stretch;
    }
    .contact-card,.wechat-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
    }
    .contact-title{font-weight:1200; font-size:16px; margin-bottom:14px}
    .contact-items{display:flex; flex-direction:column; gap:12px}
    .contact-item{
      display:flex; align-items:baseline; justify-content:space-between; gap:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
      border-radius:18px;
      padding:12px 12px;
    }
    .contact-k{color:var(--muted2); font-weight:950; font-size:13px}
    .contact-v{
      color:rgba(17,24,39,.92);
      font-weight:1100;
      text-decoration:none;
      text-align:right;
      font-size:13px;
    }
    .contact-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .wechat-title{font-weight:1200; font-size:16px}
    .wechat-sub{color:var(--muted); font-weight:820; margin-top:8px; line-height:1.6}
    .wechat-qr{
      margin-top:14px;
      padding:12px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 14px 30px rgba(17,24,39,.05);
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .wechat-foot{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
    .wechat-chip{
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      font-weight:1000;
      color:rgba(17,24,39,.86);
      font-size:12px;
    }

    .platform-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .platform-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
      min-height:148px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .platform-card:hover{transform:translateY(-4px); border-color:rgba(79,70,229,.22); box-shadow:0 22px 52px rgba(17,24,39,.12)}
    .platform-k{font-weight:1200; font-size:16px}
    .platform-v{color:var(--muted); font-weight:820; line-height:1.7; font-size:13px}

    .micro-cta{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:linear-gradient(135deg, rgba(79,70,229,.10), rgba(6,182,212,.08), rgba(249,115,22,.06));
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      padding:18px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .micro-k{font-weight:1200; font-size:16px; margin-bottom:6px}
    .micro-v{color:var(--muted); font-weight:820; line-height:1.7}
    .micro-right{display:flex; gap:10px; flex-wrap:wrap}

    .site-footer{
      background:rgba(13,18,32,.96);
      color:#e7eaf2;
      border-top:1px solid rgba(255,255,255,.08);
      padding:28px 0 22px;
    }
    .footer-inner{padding:0}
    .footer-top{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      align-items:flex-start;
    }
    .footer-brand{
      display:flex; gap:12px; align-items:flex-start; max-width:420px;
    }
    .footer-logo{width:46px; border-radius:16px; box-shadow:0 18px 40px rgba(79,70,229,.22)}
    .footer-name{font-weight:1200; font-size:16px; margin-bottom:6px}
    .footer-desc{color:rgba(231,234,242,.72); font-weight:850; line-height:1.7; font-size:13px}

    .footer-links{
      display:flex; gap:26px; flex-wrap:wrap;
    }
    .footer-col{
      display:flex; flex-direction:column; gap:10px;
      min-width:160px;
    }
    .footer-col-title{font-weight:1200; color:#fff; margin-bottom:4px}
    .footer-col a{
      text-decoration:none;
      color:rgba(231,234,242,.78);
      font-weight:850;
      font-size:13px;
      border-radius:12px;
      padding:6px 8px;
      width:max-content;
      transition:background .18s ease, color .18s ease, transform .18s ease;
    }
    .footer-col a:hover{
      background:rgba(255,255,255,.08);
      color:#fff;
      transform:translateY(-1px);
    }

    .footer-bottom{
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(231,234,242,.75);
      font-weight:850;
      font-size:13px;
    }
    .footer-left{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
    .footer-dot{opacity:.55}
    .footer-right{display:flex; gap:10px; flex-wrap:wrap}
    .footer-mini-link{
      text-decoration:none;
      color:rgba(231,234,242,.80);
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      padding:8px 10px;
      border-radius:999px;
      font-weight:1000;
      transition:transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .footer-mini-link:hover{transform:translateY(-2px); border-color:rgba(79,70,229,.35); background:rgba(79,70,229,.18)}

    .to-top{
      position:fixed;
      right:16px;
      bottom:90px;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.14);
      background:rgba(255,255,255,.92);
      box-shadow:0 18px 40px rgba(17,24,39,.14);
      color:rgba(17,24,39,.90);
      font-weight:1200;
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      opacity:0;
      pointer-events:none;
      transform:translateY(8px);
      transition:opacity .18s ease, transform .18s ease;
      z-index:1200;
    }
    .to-top.show{
      opacity:1;
      pointer-events:auto;
      transform:translateY(0);
    }

    .chat-float{
      position:fixed;
      right:16px;
      bottom:24px;
      height:50px;
      padding:0 14px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.16);
      background:linear-gradient(135deg, rgba(79,70,229,.92), rgba(6,182,212,.85));
      color:#fff;
      box-shadow:0 20px 48px rgba(79,70,229,.26);
      cursor:pointer;
      display:flex; align-items:center; gap:10px;
      z-index:1200;
      transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
      font-weight:1200;
    }
    .chat-float:hover{transform:translateY(-3px); box-shadow:0 26px 62px rgba(79,70,229,.32); filter:saturate(120%)}
    .chat-icon{
      width:32px; height:32px;
      border-radius:14px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1200;
    }
    .chat-text{font-size:14px}
    .chat-float.pulse{animation:pulse .9s ease}
    @keyframes pulse{
      0%{transform:translateY(-3px)}
      50%{transform:translateY(-6px)}
      100%{transform:translateY(-3px)}
    }

    .reveal{
      opacity:0;
      transform:translateY(10px);
      transition:opacity .55s ease, transform .55s ease;
      will-change:transform, opacity;
    }
    .reveal.in{
      opacity:1;
      transform:translateY(0);
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; gap:14px}
      .hero-panel{order:2}
      .about-grid{grid-template-columns: repeat(2, 1fr)}
      .service-grid{grid-template-columns: repeat(2, 1fr)}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .two-col{grid-template-columns: 1fr}
      .match-wrap{grid-template-columns: 1fr}
      .side-card{position:relative; top:auto}
      .compare-layout{grid-template-columns: 1fr}
      .token-grid{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .articles-grid{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .kb-grid{grid-template-columns: repeat(2, 1fr)}
      .network-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .industry-grid{grid-template-columns: 1fr}
      .platform-grid{grid-template-columns: 1fr}
      .agency-wrap{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .banner-row{flex-direction:column}
      .banner-side{width:100%}
    }

    @media (max-width: 840px){
      .nav-toggle{display:flex}
      .nav-menu{
        display:none;
        position:absolute;
        right:20px;
        top:70px;
        width:min(360px, calc(100vw - 40px));
        background:rgba(255,255,255,.92);
        border:1px solid rgba(15,23,42,.12);
        border-radius:18px;
        box-shadow:0 20px 60px rgba(17,24,39,.18);
        padding:10px;
        gap:6px;
        flex-direction:column;
        align-items:stretch;
        z-index:1200;
      }
      .nav-menu.open{display:flex}
      .nav-link{padding:12px 12px; border-color:rgba(15,23,42,.06)}
      .header-actions{display:none}
      .brand{min-width:auto}
      .hero-title{font-size:30px}
      .data-grid{grid-template-columns: 1fr 1fr}
      .service-grid{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr 1fr}
      .kb-grid{grid-template-columns: 1fr 1fr}
      .footer-links{gap:14px}
    }

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

    html { scroll-behavior:smooth; }