:root{
      --bg:#f6f8ff;
      --bg2:#eef4ff;
      --card:#ffffff;
      --text:#101828;
      --muted:#5b6475;
      --muted2:#7b869c;
      --line:rgba(16,24,40,.10);
      --shadow: 0 14px 40px rgba(18,42,74,.10);
      --shadow2: 0 10px 26px rgba(18,42,74,.10);
      --blue:#0b61ff;
      --blue2:#2a7bff;
      --deep:#0b2c6f;
      --navy:#0a2a5a;
      --accent:#1a6cff;
      --accent2:#0b4fd6;
      --soft:#f2f6ff;
      --soft2:#f7fbff;
      --good:#16a34a;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:24px;
      --container: 1120px;
      --pad: 18px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC",
                   "Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC","Source Han Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 500px at 20% -10%, rgba(11,97,255,.14), transparent 55%),
        radial-gradient(900px 420px at 100% 10%, rgba(42,123,255,.12), transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, #ffffff 40%, #f7fbff 100%);
    }

    .skip-link{
      position:absolute; left:-999px; top:10px;
      background:#0a2a5a; color:#fff; padding:10px 12px; border-radius:10px; z-index:9999;
    }
    .skip-link:focus{ left:12px; }

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

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(160%) blur(10px);
      background: rgba(246,248,255,.72);
      border-bottom: 1px solid rgba(16,24,40,.08);
    }
    .nav-container{
      height:70px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
    }
    .brand{ display:flex; align-items:center; gap:12px; min-width:260px; }
    .brand-link{ display:flex; align-items:center; gap:10px; text-decoration:none; }
    .ai-page-logo{ width:44px; height:auto; border-radius:12px; }
    .brand-meta{ display:flex; flex-direction:column; line-height:1.1; }
    .brand-name{ font-weight:800; letter-spacing:.2px; }
    .brand-sub{ font-size:12px; color:var(--muted); margin-top:4px; }

    .nav-desktop{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:nowrap;
      overflow:hidden;
    }
    .nav-link{
      text-decoration:none;
      color:#1b2a44;
      font-size:14px;
      padding:10px 6px;
      border-radius:12px;
      white-space:nowrap;
      transition: background .2s ease, color .2s ease;
    }
    .nav-link:hover{ background:rgba(11,97,255,.08); color:#0b2c6f; }
    .nav-cta{
      background: linear-gradient(180deg, rgba(11,97,255,.14), rgba(11,97,255,.06));
      border:1px solid rgba(11,97,255,.24);
      color:#0b2c6f;
      padding:10px 12px;
    }

    .nav-toggle{
      display:none;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      background:#fff;
      border:1px solid rgba(16,24,40,.10);
      border-radius:14px;
      cursor:pointer;
      color:var(--text);
      box-shadow: 0 10px 24px rgba(18,42,74,.06);
      transition: transform .15s ease, box-shadow .2s ease;
    }
    .nav-toggle:active{ transform: translateY(1px); }
    .nav-toggle-icon{
      width:18px; height:12px; position:relative; display:inline-block;
    }
    .nav-toggle-icon::before,
    .nav-toggle-icon::after{
      content:"";
      position:absolute; left:0; right:0;
      height:2px; background:#0a2a5a; border-radius:10px;
      transition: transform .2s ease, top .2s ease, bottom .2s ease, opacity .2s ease;
    }
    .nav-toggle-icon::before{ top:0; }
    .nav-toggle-icon::after{ bottom:0; }
    .nav-toggle-icon{
      background: linear-gradient(#0a2a5a,#0a2a5a) center/100% 2px no-repeat;
    }
    .nav-toggle-text{ font-size:14px; color:#0a2a5a; font-weight:700; }

    .mobile-menu{
      display:none;
      background: rgba(246,248,255,.92);
      border-bottom: 1px solid rgba(16,24,40,.08);
    }
    .mobile-menu-inner{ padding:16px 0 18px; }
    .mobile-links{ display:flex; flex-direction:column; gap:8px; }
    .mobile-link{
      text-decoration:none;
      color:#13284f;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.7);
    }
    .mobile-link-strong{
      background: linear-gradient(180deg, rgba(11,97,255,.16), rgba(11,97,255,.06));
      border-color: rgba(11,97,255,.25);
      color:#0b2c6f;
      font-weight:800;
    }
    .mobile-actions{ margin-top:12px; }

    .page{ padding-bottom:30px; }
    .section{ padding:70px 0; }
    .section-alt{
      background: linear-gradient(180deg, rgba(11,97,255,.06), rgba(255,255,255,0));
    }
    .section-head{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-bottom:26px;
    }
    .section-title{
      font-size:30px;
      margin:0;
      letter-spacing:.2px;
    }
    .section-desc{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      max-width:860px;
      font-size:15px;
    }

    .hero{
      position:relative;
      padding:52px 0 42px;
      overflow:hidden;
    }
    .hero-bg{
      position:absolute; inset:-2px;
      background:
        radial-gradient(900px 460px at 14% 20%, rgba(11,97,255,.22), transparent 60%),
        radial-gradient(860px 430px at 95% 0%, rgba(42,123,255,.18), transparent 58%),
        linear-gradient(180deg, rgba(11,97,255,.08), rgba(255,255,255,0) 45%);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns: 1.06fr .94fr;
      gap:24px;
      align-items:start;
    }
    .hero-left{ padding:6px 0; }
    .pill-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      color:#173256;
      font-weight:700;
      font-size:13px;
    }
    .pill-solid{
      border-color: rgba(11,97,255,.26);
      background: linear-gradient(180deg, rgba(11,97,255,.20), rgba(11,97,255,.06));
      color:#0b2c6f;
    }
    .hero-title{
      font-size:40px;
      margin:0 0 12px;
      line-height:1.15;
      letter-spacing:-.2px;
    }
    .hero-sub{
      margin:0 0 22px;
      color:var(--muted);
      line-height:1.75;
      font-size:15px;
      max-width:620px;
    }
    .hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:14px;
      text-decoration:none;
      color:#0b2c6f;
      font-weight:800;
      border:1px solid rgba(16,24,40,.12);
      background:#fff;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      box-shadow: 0 10px 24px rgba(18,42,74,.06);
      user-select:none;
    }
    .btn:active{ transform: translateY(1px); }
    .btn:hover{ box-shadow: 0 14px 32px rgba(18,42,74,.12); }
    .btn-primary{
      color:#fff;
      border-color: rgba(11,97,255,.35);
      background: linear-gradient(180deg, rgba(11,97,255,1), rgba(9,76,203,1));
      box-shadow: 0 16px 34px rgba(11,97,255,.22);
    }
    .btn-primary:hover{ box-shadow: 0 18px 42px rgba(11,97,255,.28); }
    .btn-ghost{
      background: rgba(255,255,255,.7);
      border-color: rgba(16,24,40,.12);
      color:#13284f;
    }
    .btn-strong{
      background: linear-gradient(180deg, rgba(11,97,255,.16), rgba(11,97,255,.06));
      border-color: rgba(11,97,255,.25);
      color:#0b2c6f;
      box-shadow: none;
      padding:11px 14px;
      font-weight:900;
    }
    .btn-wide{ width:100%; }

    .hero-meta{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:18px;
    }
    .meta-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
    }
    .meta-num{
      font-size:22px;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .meta-label{
      margin-top:6px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.3;
    }

    .hero-right{ display:flex; flex-direction:column; gap:14px; }
    .data-card{
      border-radius: var(--radius2);
      background:
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      border:1px solid rgba(11,97,255,.22);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .data-card-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:16px 16px 12px;
      gap:12px;
      border-bottom: 1px solid rgba(11,97,255,.16);
      background: linear-gradient(180deg, rgba(11,97,255,.10), rgba(255,255,255,0));
    }
    .data-card-title{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      color:#0b2c6f;
    }
    .dot{ width:10px; height:10px; border-radius:50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(11,97,255,.12); }
    .badge{
      padding:8px 12px;
      border-radius:999px;
      font-weight:900;
      font-size:12px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.7);
      color:#13284f;
      white-space:nowrap;
    }

    .data-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      padding:14px 14px 8px;
    }
    .data-cell{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:12px 12px;
      transition: transform .2s ease, box-shadow .2s ease;
      min-height:98px;
    }
    .data-cell:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 46px rgba(18,42,74,.12);
    }
    .cell-label{ font-size:12.5px; color:var(--muted2); font-weight:800; }
    .cell-value{ margin-top:8px; font-weight:950; letter-spacing:-.2px; }
    .cell-desc{ margin-top:6px; color:var(--muted); font-size:12.5px; line-height:1.35; }

    .data-card-bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding:14px 14px 16px;
    }
    .assist{
      display:flex; gap:10px; align-items:flex-start; max-width:62%;
    }
    .assist-icon{
      color:#0b2c6f;
      width:34px; height:34px;
      border-radius:12px;
      background: rgba(11,97,255,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .assist-text{ color:var(--muted); font-size:12.8px; line-height:1.45; font-weight:650; }

    .floating-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:0 4px;
      justify-content:flex-start;
    }
    .tag{
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.7);
      padding:10px 12px;
      border-radius:999px;
      cursor:pointer;
      font-weight:850;
      color:#13284f;
      transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
      box-shadow: 0 10px 22px rgba(18,42,74,.06);
    }
    .tag:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(18,42,74,.12);
      border-color: rgba(11,97,255,.22);
    }

    .split{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:stretch; }
    .card{
      border-radius: var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background: var(--card);
      box-shadow: 0 12px 26px rgba(18,42,74,.06);
      padding:18px;
    }
    .card-soft{
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
    }
    .card-darkmix{
      background:
        radial-gradient(700px 240px at 10% 0%, rgba(11,97,255,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.65));
      border-color: rgba(11,97,255,.22);
    }
    .card-soft2{
      background:
        radial-gradient(600px 240px at 100% 0%, rgba(42,123,255,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
    }
    .card-white{ background:#fff; }
    .card-icon{ width:42px; height:42px; border-radius:16px; display:flex; align-items:center; justify-content:center; background: rgba(11,97,255,.10); color:#0b2c6f; margin-bottom:12px; }
    .card-title{ margin:0; font-size:18px; letter-spacing:-.1px; }
    .card-text{ color:var(--muted); line-height:1.75; margin:10px 0 12px; font-size:14px; }

    .list{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px; }
    .check{
      width:10px; height:10px; border-radius:3px;
      display:inline-block; background: rgba(11,97,255,.20);
      box-shadow: inset 0 0 0 2px rgba(11,97,255,.65);
      margin-right:10px;
      transform: translateY(1px);
    }
    .list li{ color:#233553; font-weight:750; font-size:14px; display:flex; align-items:center; }

    .card-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      padding:6px 0 6px;
    }
    .mini-stat{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:12px 12px;
    }
    .mini-label{ color:var(--muted2); font-weight:850; font-size:12.5px; }
    .mini-value{ margin-top:8px; font-weight:950; letter-spacing:-.2px; }

    .divider{ height:1px; background: rgba(16,24,40,.10); margin:14px 0; }
    .quote{ display:flex; gap:12px; align-items:flex-start; }
    .quote-mark{ font-size:40px; line-height:1; color: rgba(11,97,255,.28); font-weight:900; }
    .quote-text{ margin:4px 0 0; color:#243453; font-weight:800; line-height:1.6; }
    .quote-actions{ display:flex; gap:12px; margin-top:14px; flex-wrap:wrap; }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .service-card{ padding:18px; min-height:210px; }
    .service-top{ display:flex; align-items:center; gap:12px; margin-bottom:8px; }
    .service-icon{ width:42px; height:42px; border-radius:16px; display:flex; align-items:center; justify-content:center; background: rgba(11,97,255,.10); color:#0b2c6f; }
    .chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.7);
      color:#13284f;
      font-weight:850;
      font-size:12.5px;
    }
    .chip-blue{
      border-color: rgba(11,97,255,.22);
      background: rgba(11,97,255,.10);
      color:#0b2c6f;
    }
    .service-list{ display:flex; flex-direction:column; gap:10px; margin-top:12px; }
    .service-line{ display:flex; gap:10px; color:#223451; font-weight:800; font-size:13.5px; }
    .bullet{ width:10px; height:10px; border-radius:50%; background: rgba(11,97,255,.20); box-shadow: inset 0 0 0 2px rgba(11,97,255,.65); margin-top:4px; flex:0 0 auto; }

    .link-arrow{
      display:inline-flex; align-items:center; gap:8px;
      margin-top:12px;
      color:#0b2c6f;
      font-weight:900;
      text-decoration:none;
    }
    .link-arrow span{ color: rgba(11,97,255,.95); }

    .two-col{ display:grid; grid-template-columns: 1.05fr .95fr; gap:16px; align-items:start; }
    .scenario-list{ display:flex; flex-direction:column; gap:12px; margin-top:12px; }
    .scenario-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
    }
    .scenario-title{ font-weight:950; letter-spacing:-.15px; }
    .scenario-desc{ margin-top:6px; color:var(--muted); line-height:1.6; font-size:13.5px; }
    .cta-row{ display:flex; gap:12px; margin-top:16px; flex-wrap:wrap; }

    .steps-vertical{ display:flex; flex-direction:column; gap:12px; margin-top:14px; }
    .step{ display:flex; gap:12px; align-items:flex-start; padding:12px 12px; border-radius:16px; border:1px solid rgba(16,24,40,.10); background: rgba(255,255,255,.65); }
    .step-num{
      width:40px; height:40px; border-radius:14px;
      background: rgba(11,97,255,.10);
      border:1px solid rgba(11,97,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:950; color:#0b2c6f;
      flex:0 0 auto;
    }
    .step-title{ font-weight:950; }
    .step-desc{ margin-top:6px; color:var(--muted); line-height:1.6; font-size:13.5px; }

    .note{
      margin-top:14px;
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(11,97,255,.08);
      border:1px solid rgba(11,97,255,.18);
    }
    .note-icon{ width:36px; height:36px; border-radius:14px; display:flex; align-items:center; justify-content:center; color:#0b2c6f; background: rgba(255,255,255,.7); flex:0 0 auto; }
    .note-text{ color:#243453; font-weight:800; line-height:1.6; font-size:13.5px; }

    .grid-3{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; }
    .plan-card{ padding:18px; }
    .plan-title{ margin:0 0 8px; font-size:18px; font-weight:950; letter-spacing:-.1px; }
    .plan-desc{ margin:0; color:var(--muted); line-height:1.7; font-size:14px; }
    .plan-tags{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

    .network-wrap{ display:grid; grid-template-columns: 1.06fr .94fr; gap:16px; align-items:start; }
    .network-card{ padding:18px; border-radius:var(--radius); border:1px solid rgba(16,24,40,.10); background:
      radial-gradient(700px 260px at 0% 0%, rgba(11,97,255,.16), transparent 55%),
      linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.68));
      box-shadow: var(--shadow2);
    }
    .network-title{ font-weight:950; font-size:18px; margin-bottom:12px; }
    .network-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
    .network-item{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:12px 12px;
    }
    .network-k{ color:var(--muted2); font-weight:900; font-size:12.5px; }
    .network-v{ margin-top:8px; font-weight:950; letter-spacing:-.1px; }
    .network-actions{ margin-top:14px; }
    .tag-cloud{
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:18px;
      box-shadow: 0 12px 26px rgba(18,42,74,.06);
    }
    .tag-cloud-title{ font-weight:950; margin-bottom:12px; }
    .tag-cloud-items{ display:flex; flex-wrap:wrap; gap:10px; }
    .t-word{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      font-weight:850;
      color:#13284f;
      font-size:12.5px;
    }

    .timeline-row{ display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap:12px; }
    .time-card{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:14px 14px;
      min-height:170px;
      display:flex;
      flex-direction:column;
      gap:10px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .time-card:hover{ transform: translateY(-3px); box-shadow: 0 18px 46px rgba(18,42,74,.12); }
    .time-step{ font-weight:950; font-size:12.5px; color:var(--muted2); }
    .time-title{ font-weight:1000; letter-spacing:-.15px; font-size:15.5px; }
    .time-desc{ color:var(--muted); line-height:1.6; font-size:13.5px; margin-top:auto; }

    .process-cta{
      margin-top:18px;
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(11,97,255,.18);
      background:
        radial-gradient(700px 240px at 20% 0%, rgba(11,97,255,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.65));
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .process-cta-title{ font-weight:1000; font-size:18px; }
    .process-cta-desc{ color:var(--muted); margin-top:6px; line-height:1.6; font-weight:750; font-size:13.5px; }
    .process-cta-right{ display:flex; gap:12px; flex-wrap:wrap; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .case-card{
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 12px 26px rgba(18,42,74,.06);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .case-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 52px rgba(18,42,74,.12); }
    .case-media{
      height:84px;
      background:
        radial-gradient(220px 80px at 20% 30%, rgba(11,97,255,.20), transparent 60%),
        linear-gradient(180deg, rgba(11,97,255,.10), rgba(255,255,255,.0));
      border-bottom: 1px solid rgba(16,24,40,.08);
    }
    .case-media-2{ background:
        radial-gradient(220px 90px at 80% 30%, rgba(42,123,255,.22), transparent 60%),
        linear-gradient(180deg, rgba(11,97,255,.10), rgba(255,255,255,.0)); }
    .case-media-3{ background:
        radial-gradient(240px 90px at 30% 20%, rgba(11,97,255,.18), transparent 62%),
        linear-gradient(180deg, rgba(42,123,255,.12), rgba(255,255,255,.0)); }
    .case-media-4{ background:
        radial-gradient(240px 90px at 70% 20%, rgba(11,97,255,.18), transparent 62%),
        linear-gradient(180deg, rgba(11,97,255,.08), rgba(255,255,255,.0)); }

    .case-body{ padding:16px; display:flex; flex-direction:column; gap:10px; }
    .case-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:10px; }
    .case-title{ margin:0; font-size:15.5px; font-weight:1000; letter-spacing:-.15px; }
    .case-badge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(11,97,255,.20);
      background: rgba(11,97,255,.10);
      color:#0b2c6f;
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }
    .case-text{ margin:0; color:var(--muted); line-height:1.65; font-size:13.5px; }
    .case-foot{ display:flex; justify-content:space-between; align-items:center; gap:10px; border-top: 1px solid rgba(16,24,40,.08); padding-top:10px; }
    .case-k{ color:var(--muted2); font-weight:900; font-size:12.5px; }
    .case-v{ color:#223451; font-weight:900; font-size:12.8px; }

    .cases-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; justify-content:flex-start; }

    .compare-wrap{ display:grid; grid-template-columns: .95fr 1.05fr; gap:16px; align-items:start; }
    .rating-card{
      border-radius:var(--radius2);
      border:1px solid rgba(11,97,255,.22);
      background:
        radial-gradient(700px 240px at 0% 0%, rgba(11,97,255,.22), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.64));
      padding:18px;
      box-shadow: var(--shadow2);
    }
    .rating-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:10px; flex-wrap:wrap; }
    .rating-title{ font-weight:1000; color:#0b2c6f; }
    .rating-badge{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.7);
      font-weight:1000;
      color:#0b2c6f;
    }
    .star-row{ display:inline-flex; gap:2px; color:#0b61ff; }
    .star{ font-size:16px; line-height:1; }
    .rating-label{ font-size:13px; font-weight:1000; }
    .rating-score{ display:flex; align-items:baseline; gap:10px; margin-top:16px; }
    .score-num{ font-size:52px; font-weight:1100; letter-spacing:-.6px; color:#0b2c6f; }
    .score-max{ color:var(--muted); font-weight:900; font-size:16px; }
    .rating-desc{ margin-top:10px; color:var(--muted); line-height:1.6; font-weight:800; }
    .rating-cta{ margin-top:16px; }

    .compare-table-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:18px;
      box-shadow: 0 12px 26px rgba(18,42,74,.06);
    }
    .table-head{ margin-bottom:12px; }
    .table-title{ font-weight:1000; font-size:18px; letter-spacing:-.1px; }
    .table-sub{ margin-top:6px; color:var(--muted); font-weight:800; font-size:13.5px; line-height:1.6; }
    .table-scroll{ overflow:auto; border-radius:16px; border:1px solid rgba(16,24,40,.08); background:#fff; }
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width:640px;
    }
    .compare-table th,.compare-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(16,24,40,.08);
      text-align:left;
      vertical-align:top;
      font-size:14px;
    }
    .compare-table th{
      background: linear-gradient(180deg, rgba(11,97,255,.08), rgba(255,255,255,.0));
      color:#13284f;
      font-weight:1000;
      position:sticky; top:0;
    }
    .compare-table tr:last-child td{ border-bottom:none; }
    .ok-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(22,163,74,.10);
      border:1px solid rgba(22,163,74,.22);
      font-weight:1000;
      color:#14532d;
      white-space:nowrap;
    }
    .table-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:12px; }

    .token-wrap{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:start; }
    .token-card{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(700px 260px at 0% 0%, rgba(11,97,255,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.65));
      padding:18px;
      box-shadow: var(--shadow2);
    }
    .token-title{ font-weight:1100; font-size:18px; }
    .token-desc{ margin-top:8px; color:var(--muted); line-height:1.65; font-weight:800; font-size:13.5px; }
    .token-steps{ margin-top:14px; display:flex; flex-direction:column; gap:12px; }
    .token-step{
      display:flex; gap:12px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:12px 12px;
    }
    .token-step-k{
      width:38px; height:38px; border-radius:14px;
      background: rgba(11,97,255,.10);
      border:1px solid rgba(11,97,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:#0b2c6f;
      flex:0 0 auto;
    }
    .token-step-title{ font-weight:1000; }
    .token-step-desc{ margin-top:6px; color:var(--muted); line-height:1.6; font-size:13.5px; font-weight:800; }
    .token-highlight{
      margin-top:14px;
      display:flex; gap:12px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(11,97,255,.18);
      background: rgba(11,97,255,.08);
      padding:12px 12px;
    }
    .hl-icon{
      width:36px; height:36px; border-radius:14px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(16,24,40,.10);
      display:flex; align-items:center; justify-content:center;
      color:#0b2c6f;
      flex:0 0 auto;
    }
    .hl-text{ color:#243453; font-weight:850; line-height:1.6; font-size:13.5px; }
    .token-actions{ display:flex; flex-direction:column; gap:10px; margin-top:14px; }

    .token-form-card{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(18,42,74,.06);
      padding:18px;
    }
    .token-form-title{ font-weight:1100; font-size:18px; }
    .token-form-sub{ margin-top:6px; color:var(--muted); font-weight:850; line-height:1.6; font-size:13.5px; }

    .form{ margin-top:14px; display:flex; flex-direction:column; gap:12px; }
    .form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
    .field{ display:flex; flex-direction:column; gap:8px; }
    .field-label{ font-size:13px; color:#223451; font-weight:900; }
    .field-input{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.9);
      color:var(--text);
      outline:none;
      font-size:14px;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .field-input:focus{
      border-color: rgba(11,97,255,.42);
      box-shadow: 0 0 0 4px rgba(11,97,255,.14);
    }
    .field-textarea{ resize:vertical; min-height:120px; }
    .form-foot{ display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
    .form-hint{ display:flex; align-items:center; gap:10px; color:var(--muted); font-weight:850; font-size:13px; }
    .hint-dot{ width:10px; height:10px; border-radius:3px; background: rgba(11,97,255,.18); box-shadow: inset 0 0 0 2px rgba(11,97,255,.65); }
    .form-policy{ margin-top:12px; display:flex; flex-wrap:wrap; gap:10px; }
    .policy-item{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      color:#223451;
      font-weight:900;
      font-size:13px;
    }
    .policy-icon{
      width:18px; height:18px;
      border-radius:6px;
      background: rgba(22,163,74,.10);
      border:1px solid rgba(22,163,74,.20);
      display:flex; align-items:center; justify-content:center;
      color:#14532d;
      font-weight:1000;
      flex:0 0 auto;
      font-size:12px;
    }

    .training-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
    .training-card{ padding:18px; }
    .training-list{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .training-item{ display:flex; align-items:center; gap:10px; font-weight:900; color:#223451; }
    .training-cta{ margin-top:14px; }
    .training-steps{ margin-top:14px; display:flex; flex-direction:column; gap:12px; }
    .t-step{ display:flex; gap:12px; align-items:flex-start; padding:12px 12px; border-radius:18px; border:1px solid rgba(16,24,40,.10); background: rgba(255,255,255,.65); }
    .t-step-k{
      width:38px; height:38px; border-radius:14px;
      background: rgba(11,97,255,.10);
      border:1px solid rgba(11,97,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:#0b2c6f;
      flex:0 0 auto;
    }
    .t-step-title{ font-weight:1000; }
    .t-step-desc{ margin-top:6px; color:var(--muted); line-height:1.6; font-weight:850; font-size:13.5px; }

    .training-logos{ margin-top:14px; padding-top:12px; border-top:1px solid rgba(16,24,40,.10); }
    .logo-row{ display:flex; flex-wrap:wrap; gap:10px; }
    .logo-pill{
      padding:10px 12px; border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      font-weight:950; color:#13284f; font-size:13px;
    }
    .training-logos-sub{ margin-top:8px; color:var(--muted2); font-weight:850; font-size:12.5px; line-height:1.5; }

    .training-bottom{
      margin-top:16px;
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(11,97,255,.18);
      background:
        radial-gradient(700px 240px at 90% 0%, rgba(11,97,255,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.65));
      display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
    }
    .training-bottom-title{ font-weight:1100; font-size:18px; }
    .training-bottom-desc{ margin-top:6px; color:var(--muted); font-weight:850; line-height:1.6; font-size:13.5px; }

    .help-grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; }
    .help-card{ padding:18px; }
    .help-title{ margin:0 0 8px; font-weight:1100; font-size:18px; letter-spacing:-.1px; }
    .help-text{ margin:0; color:var(--muted); line-height:1.75; font-weight:850; }
    .faq-wrap{ display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; align-items:start; }
    .faq-grid{ display:flex; flex-direction:column; gap:10px; }
    .faq-item{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      overflow:hidden;
      box-shadow: 0 12px 26px rgba(18,42,74,.06);
    }
    .faq-q{
      width:100%;
      text-align:left;
      padding:14px 14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      background: transparent;
      border:none;
      cursor:pointer;
      font-weight:1000;
      color:#13284f;
      font-size:14.5px;
    }
    .faq-icon{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      position:relative;
      flex:0 0 auto;
    }
    .faq-icon::before,
    .faq-icon::after{
      content:"";
      position:absolute; left:50%; top:50%;
      width:14px; height:2px;
      background:#0b2c6f;
      border-radius:10px;
      transform: translate(-50%,-50%) rotate(0deg);
      transition: transform .2s ease, opacity .2s ease;
    }
    .faq-icon::after{
      width:2px; height:14px;
      transform: translate(-50%,-50%) rotate(0deg);
    }
    .faq-item[data-open="true"] .faq-icon::after{ opacity:0; transform: translate(-50%,-50%) rotate(90deg); }
    .faq-a{
      padding:0 14px 14px;
      color:var(--muted);
      line-height:1.8;
      font-weight:800;
      font-size:13.8px;
    }
    .faq-side{ display:flex; flex-direction:column; gap:14px; }
    .side-card{
      border-radius:var(--radius2);
      border:1px solid rgba(11,97,255,.18);
      background:
        radial-gradient(700px 240px at 0% 0%, rgba(11,97,255,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.65));
      padding:18px;
      box-shadow: var(--shadow2);
    }
    .side-title{ font-weight:1100; font-size:18px; }
    .side-text{ margin:8px 0 14px; color:var(--muted); line-height:1.7; font-weight:850; font-size:13.5px; }
    .side-stat{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:18px;
      box-shadow: 0 12px 26px rgba(18,42,74,.06);
    }
    .side-stat-title{ font-weight:1100; font-size:16px; }
    .side-stat-chips{ margin-top:12px; display:flex; flex-wrap:wrap; gap:10px; }

    .ency-grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; }
    .ency-card{ padding:18px; }
    .ency-title{ margin:0; font-weight:1100; font-size:18px; letter-spacing:-.1px; }
    .ency-text{ margin:10px 0 0; color:var(--muted); line-height:1.75; font-weight:850; }
    .ency-foot{ margin-top:14px; padding-top:12px; border-top:1px solid rgba(16,24,40,.10); display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap; }
    .ency-tag{ padding:8px 10px; border-radius:999px; border:1px solid rgba(16,24,40,.10); background: rgba(255,255,255,.75); font-weight:950; color:#13284f; font-size:12.5px; }

    .article-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; align-items:start; }
    .article-list-card{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(18,42,74,.06);
      padding:18px;
    }
    .article-list-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:10px; flex-wrap:wrap; }
    .article-title{ font-weight:1100; font-size:18px; }
    .article-list{ margin:14px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px; }
    .article-item{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      padding:12px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .article-item:hover{ transform: translateY(-2px); box-shadow: 0 18px 46px rgba(18,42,74,.10); border-color: rgba(11,97,255,.20); }
    .article-link{
      text-decoration:none;
      color:#13284f;
      font-weight:950;
      line-height:1.4;
      font-size:14px;
      display:block;
    }
    .article-grid-foot{ margin-top:14px; }

    .article-side-card{
      border-radius:var(--radius2);
      border:1px solid rgba(11,97,255,.18);
      background:
        radial-gradient(700px 240px at 90% 0%, rgba(11,97,255,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.65));
      padding:18px;
      box-shadow: var(--shadow2);
    }
    .side-resources-title{ font-weight:1100; font-size:16px; }
    .side-links{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .side-link{
      text-decoration:none;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      color:#13284f;
      font-weight:950;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .side-link:hover{ transform: translateY(-2px); box-shadow: 0 18px 46px rgba(18,42,74,.10); border-color: rgba(11,97,255,.20); }
    .side-resources-divider{ height:1px; background: rgba(16,24,40,.10); margin:14px 0; }
    .quick-actions{ display:flex; flex-direction:column; gap:10px; }

    .contact-wrap{ display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; align-items:start; }
    .contact-card{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:18px;
      box-shadow: 0 12px 26px rgba(18,42,74,.06);
    }
    .contact-top{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-bottom:10px; }
    .contact-title{ font-weight:1100; font-size:18px; }
    .contact-sub{ color:var(--muted); font-weight:850; font-size:13.5px; line-height:1.6; margin-top:6px; }

    .contact-aside{ display:flex; flex-direction:column; gap:14px; }
    .aside-box{
      border-radius:var(--radius2);
      border:1px solid rgba(11,97,255,.18);
      background:
        radial-gradient(700px 240px at 0% 0%, rgba(11,97,255,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.65));
      padding:18px;
      box-shadow: var(--shadow2);
    }
    .aside-box-soft{
      background: rgba(255,255,255,.72);
      border-color: rgba(16,24,40,.10);
      box-shadow: 0 12px 26px rgba(18,42,74,.06);
    }
    .aside-title{ font-weight:1100; font-size:18px; }
    .contact-items{ margin-top:12px; display:flex; flex-direction:column; gap:12px; }
    .contact-item{ display:flex; justify-content:space-between; gap:12px; }
    .contact-k{ color:var(--muted2); font-weight:950; font-size:12.8px; }
    .contact-v{ font-weight:1000; color:#13284f; text-align:right; }
    .inline-link{ color:#0b2c6f; text-decoration:none; font-weight:1000; border-bottom:1px solid rgba(11,97,255,.25); }

    .qr-card{ margin-top:14px; border-radius:18px; border:1px solid rgba(16,24,40,.10); background: rgba(255,255,255,.75); padding:14px; }
    .qr-title{ font-weight:1100; }
    .qr-wrap{ margin-top:10px; display:flex; justify-content:center; }
    .qr-img{ width:160px; height:auto; border-radius:14px; border:1px solid rgba(16,24,40,.10); background:#fff; }
    .qr-hint{ margin-top:10px; color:var(--muted); font-weight:850; text-align:center; line-height:1.6; font-size:13.5px; }

    .aside-actions{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }

    .join-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; align-items:start; }
    .join-card{ padding:18px; }
    .join-list{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .join-item{ display:flex; align-items:flex-start; gap:10px; color:#223451; font-weight:900; line-height:1.6; }
    .join-actions{ margin-top:14px; display:flex; flex-direction:column; gap:10px; }

    .audience{ margin-top:12px; display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
    .aud-item{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:12px 12px;
    }
    .aud-k{ color:var(--muted2); font-weight:950; font-size:12.8px; }
    .aud-v{ margin-top:8px; font-weight:1000; letter-spacing:-.1px; color:#13284f; font-size:13.5px; }
    .join-price-note{
      margin-top:14px;
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.7);
    }
    .join-note-dot{ width:12px; height:12px; border-radius:4px; background: rgba(11,97,255,.18); box-shadow: inset 0 0 0 2px rgba(11,97,255,.65); margin-top:3px; flex:0 0 auto; }
    .join-note-text{ color:var(--muted); font-weight:850; line-height:1.6; font-size:13.5px; }

    .site-footer{
      background: #0b1636;
      color:#eaf0ff;
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .footer-inner{ padding:26px 0 18px; }
    .footer-top{
      display:grid; grid-template-columns: 1fr 1.4fr; gap:16px; align-items:start;
      padding-bottom:16px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .footer-brand{ display:flex; gap:12px; align-items:center; }
    .footer-logo-img{ width:46px; height:auto; border-radius:14px; border:1px solid rgba(255,255,255,.15); background:#fff; }
    .footer-brand-name{ font-weight:1100; font-size:18px; }
    .footer-brand-sub{ margin-top:6px; color:rgba(234,240,255,.78); font-weight:850; line-height:1.6; font-size:13.5px; }

    .footer-links{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; }
    .footer-col-title{ font-weight:1100; margin-bottom:10px; color:#f2f6ff; }
    .footer-link{
      display:block;
      text-decoration:none;
      color:rgba(234,240,255,.78);
      font-weight:850;
      padding:8px 0;
    }
    .footer-link:hover{ color:#fff; text-decoration:underline; text-underline-offset:4px; }

    .footer-mid{ padding:16px 0 12px; }
    .footer-mid-title{ font-weight:1100; color:#f2f6ff; margin-bottom:10px; }
    .friend-links{ display:flex; flex-wrap:wrap; gap:10px; }
    .friend-link{
      text-decoration:none;
      color:#eaf0ff;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
      padding:10px 12px;
      border-radius:999px;
      font-weight:950;
      font-size:13px;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .friend-link:hover{ transform: translateY(-2px); background: rgba(255,255,255,.10); border-color: rgba(147,197,253,.45); }

    .footer-bottom{
      display:flex; justify-content:space-between; align-items:flex-end; gap:14px; flex-wrap:wrap;
      padding-top:12px;
    }
    .copyright{ color:rgba(234,240,255,.88); font-weight:950; }
    .footer-small{ margin-top:6px; color:rgba(234,240,255,.72); font-weight:850; line-height:1.6; font-size:13px; max-width:650px; }
    .footer-bottom-right{ display:flex; gap:12px; flex-wrap:wrap; }
    .site-footer .btn{
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.18);
      color:#eaf0ff;
      box-shadow:none;
    }
    .site-footer .btn-primary{
      background: linear-gradient(180deg, rgba(11,97,255,.95), rgba(9,76,203,.95));
      border-color: rgba(11,97,255,.35);
      color:#fff;
    }
    .to-top{
      position:fixed;
      right:16px; bottom:16px;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.86);
      color:#0b2c6f;
      cursor:pointer;
      box-shadow: 0 14px 30px rgba(18,42,74,.12);
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, opacity .2s ease;
      opacity:0;
      pointer-events:none;
      z-index:60;
    }
    .to-top.show{ opacity:1; pointer-events:auto; }
    .to-top:active{ transform: translateY(1px); }

    .float-chat{
      position:fixed;
      left:16px; bottom:16px;
      z-index:60;
      display:flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(11,97,255,.28);
      background: rgba(255,255,255,.90);
      box-shadow: 0 18px 40px rgba(11,97,255,.20);
      text-decoration:none;
      color:#0b2c6f;
      font-weight:1000;
      transition: transform .15s ease, box-shadow .2s ease;
    }
    .float-chat:hover{ transform: translateY(-2px); box-shadow: 0 22px 52px rgba(11,97,255,.28); }
    .float-chat-icon{
      width:40px; height:40px;
      border-radius:16px;
      background: rgba(11,97,255,.10);
      border:1px solid rgba(11,97,255,.20);
      display:flex; align-items:center; justify-content:center;
      color:#0b2c6f;
      flex:0 0 auto;
    }
    .float-chat-text{ font-size:14px; }

    @media (max-width: 980px){
      .nav-desktop{ display:none; }
      .nav-toggle{ display:flex; }
      .mobile-menu{ display:none; }
      .mobile-menu.open{ display:block; }

      .hero-inner{ grid-template-columns: 1fr; }
      .hero-title{ font-size:34px; }
      .hero-meta{ grid-template-columns: 1fr; }
      .hero-right{ order:2; }
      .split{ grid-template-columns: 1fr; }
      .service-grid{ grid-template-columns: 1fr 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .grid-3{ grid-template-columns: 1fr; }
      .network-wrap{ grid-template-columns: 1fr; }
      .timeline-row{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr 1fr; }
      .compare-wrap{ grid-template-columns: 1fr; }
      .token-wrap{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .faq-wrap{ grid-template-columns: 1fr; }
      .ency-grid{ grid-template-columns: 1fr; }
      .article-grid{ grid-template-columns: 1fr; }
      .contact-wrap{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .footer-top{ grid-template-columns: 1fr; }
      .footer-links{ grid-template-columns: 1fr; }
      .float-chat{ left:12px; right:auto; }
    }

    @media (max-width: 520px){
      .section{ padding:56px 0; }
      .section-title{ font-size:26px; }
      .hero-title{ font-size:30px; }
      .case-grid{ grid-template-columns: 1fr; }
      .service-grid{ grid-template-columns: 1fr; }
      .form-row{ grid-template-columns: 1fr; }
      .float-chat-text{ display:none; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ transition:none !important; scroll-behavior:auto !important; }
    }

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