:root{
      --bg:#fbfaf8;
      --surface:#ffffff;
      --text:#1f2430;
      --muted:#5b6476;
      --line:rgba(16,24,40,.10);
      --shadow: 0 14px 40px rgba(19, 20, 35, .10);
      --shadow2: 0 10px 26px rgba(19, 20, 35, .10);
      --radius:18px;
      --radius2:14px;
      --grad1: linear-gradient(135deg, #5b8cff 0%, #8a5bff 35%, #ff5bc6 70%, #ffb14a 100%);
      --grad2: linear-gradient(135deg, rgba(91,140,255,.18), rgba(138,91,255,.18), rgba(255,91,198,.14), rgba(255,177,74,.16));
      --accent:#4b6fff;
      --accent2:#7a5cff;
      --accent3:#ff4fb5;
      --good:#167a4b;
      --warn:#9a5b00;
      --focus: rgba(75,111,255,.28);
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
                   "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
      background:
        radial-gradient(1200px 700px at 18% -10%, rgba(91,140,255,.12), transparent 55%),
        radial-gradient(900px 560px at 85% 0%, rgba(255,91,198,.10), transparent 52%),
        radial-gradient(900px 560px at 10% 60%, rgba(255,177,74,.08), transparent 52%),
        var(--bg);
      color:var(--text);
      line-height:1.55;
    }

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

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

    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      background: rgba(251,250,248,.78);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(16,24,40,.08);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:260px;
    }
    .brand-link{ display:flex; align-items:center; gap:10px; text-decoration:none; }
    .ai-page-logo{ width:42px; height:42px; object-fit:contain; filter:saturate(1.08); }
    .brand-meta{ display:flex; flex-direction:column; }
    .brand-name{ font-weight:800; letter-spacing:.2px; }
    .brand-sub{ font-size:12.5px; color:var(--muted); margin-top:2px; }

    .nav-desktop{
      display:flex;
      align-items:center;
      gap:18px;
      padding:8px 0;
      flex:1;
      justify-content:center;
    }
    .nav-item{
      color:rgba(31,36,48,.86);
      text-decoration:none;
      font-size:14px;
      padding:10px 2px;
      position:relative;
      white-space:nowrap;
    }
    .nav-item::after{
      content:"";
      position:absolute;
      left:0; bottom:6px;
      width:0; height:2px;
      background: var(--grad1);
      transition: width .22s ease;
    }
    .nav-item:hover::after{ width:100%; }

    .header-actions{ display:flex; align-items:center; gap:12px; }
    .ghost-link{
      color:rgba(31,36,48,.86);
      text-decoration:none;
      font-size:14px;
      padding:10px 10px;
      border-radius:12px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.55);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .ghost-link:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgba(34, 60, 140, .12);
      border-color: rgba(75,111,255,.30);
    }

    .primary-btn, .secondary-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:14px;
      border:1px solid transparent;
      text-decoration:none;
      font-weight:700;
      font-size:14.5px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
      user-select:none;
    }

    .primary-btn{
      background: var(--grad1);
      color:#0b1020;
      box-shadow: 0 14px 34px rgba(91,140,255,.20);
    }
    .primary-btn:hover{ transform: translateY(-1px); box-shadow: 0 18px 44px rgba(91,140,255,.26); filter:saturate(1.02); }
    .primary-btn:active{ transform: translateY(0px); }

    .secondary-btn{
      background: rgba(255,255,255,.72);
      border-color: rgba(16,24,40,.12);
      color: rgba(31,36,48,.92);
    }
    .secondary-btn:hover{ transform: translateY(-1px); box-shadow: 0 18px 44px rgba(19, 20, 35, .10); border-color: rgba(75,111,255,.30); }
    .btn-ic{
      display:inline-flex;
      width:20px; height:20px;
      align-items:center; justify-content:center;
      border-radius:10px;
      background: rgba(255,255,255,.35);
      border:1px solid rgba(255,255,255,.35);
      font-weight:900;
    }

    .link-btn{
      display:inline-flex;
      align-items:center;
      padding:10px 10px;
      border-radius:12px;
      color: rgba(31,36,48,.88);
      text-decoration:none;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.55);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      font-weight:650;
      font-size:14px;
    }
    .link-btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 34px rgba(19, 20, 35, .10);
      border-color: rgba(255,91,198,.26);
    }

    .hamburger{
      display:none;
      width:44px; height:40px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.60);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      padding:0;
    }
    .hamburger span{
      display:block;
      width:18px; height:2px;
      background: rgba(31,36,48,.82);
      border-radius:2px;
    }

    .mobile-drawer{
      display:none;
      position:fixed;
      inset:0;
      background: rgba(9, 14, 26, .35);
      backdrop-filter: blur(6px);
      z-index:200;
      padding:10px;
      overflow:auto;
      opacity:0;
      transition: opacity .18s ease;
    }
    .mobile-drawer.open{ display:block; opacity:1; }
    .drawer-inner{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(255,255,255,.5);
      border-radius:22px;
      box-shadow: var(--shadow);
      padding:14px;
      margin-top:56px;
    }
    .drawer-top{ display:flex; align-items:center; justify-content:space-between; padding:4px 2px 12px; }
    .drawer-title{ font-weight:850; }
    .drawer-close{
      width:38px; height:38px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      font-size:20px;
      line-height:1;
    }
    .drawer-links{ display:flex; flex-direction:column; gap:8px; padding:6px 0 14px; }
    .drawer-link{
      text-decoration:none;
      color: rgba(31,36,48,.92);
      padding:12px 12px;
      border:1px solid rgba(16,24,40,.10);
      border-radius:16px;
      background: rgba(255,255,255,.7);
      font-weight:700;
    }
    .drawer-foot{
      border-top:1px solid rgba(16,24,40,.08);
      padding-top:14px;
      display:flex;
      gap:12px;
      flex-direction:column;
    }
    .drawer-contacts{ display:grid; gap:8px; }
    .drawer-contact-item{ display:flex; justify-content:space-between; gap:12px; font-size:14px; }
    .drawer-contact-item .k{ color:var(--muted); }

    .no-scroll{ overflow:hidden; }

    .hero{
      position:relative;
      padding:34px 0 34px;
      overflow:hidden;
    }
    .hero-bg{
      position:absolute;
      inset:-40px -40px auto -40px;
      height:560px;
      pointer-events:none;
    }
    .orb{
      position:absolute;
      border-radius:999px;
      filter: blur(0px);
      opacity:.9;
      transform: translateZ(0);
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 55%),
                  radial-gradient(circle at 50% 50%, rgba(91,140,255,.28), rgba(91,140,255,0) 60%);
      animation: floaty 8s ease-in-out infinite;
    }
    .orb-1{
      width:340px; height:340px;
      top:40px; left:-60px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 55%),
        radial-gradient(circle at 45% 55%, rgba(91,140,255,.32), rgba(91,140,255,0) 62%),
        radial-gradient(circle at 65% 20%, rgba(255,91,198,.22), rgba(255,91,198,0) 60%);
    }
    .orb-2{
      width:320px; height:320px;
      top:-30px; right:40px;
      animation-duration:10s;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.88), rgba(255,255,255,0) 55%),
        radial-gradient(circle at 45% 55%, rgba(138,91,255,.28), rgba(138,91,255,0) 62%),
        radial-gradient(circle at 65% 20%, rgba(255,177,74,.18), rgba(255,177,74,0) 60%);
    }
    .grid-lines{
      position:absolute;
      inset:0;
      background:
        linear-gradient(to right, rgba(16,24,40,.05) 1px, transparent 1px) 0 0/48px 48px,
        linear-gradient(to bottom, rgba(16,24,40,.05) 1px, transparent 1px) 0 0/48px 48px;
      mask-image: radial-gradient(circle at 45% 40%, rgba(0,0,0,.85), transparent 62%);
      opacity:.55;
    }

    @keyframes floaty{
      0%,100%{ transform: translate3d(0,0,0) scale(1); }
      50%{ transform: translate3d(0,12px,0) scale(1.02); }
    }

    .hero-inner{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:start;
      position:relative;
      z-index:1;
      margin-top:10px;
    }

    .hero-left{ padding:14px 0; }
    .hero-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.62);
      color: rgba(31,36,48,.86);
      font-weight:750;
      font-size:13.5px;
      margin-bottom:14px;
    }
    .hero-title{
      margin:0;
      font-size:44px;
      line-height:1.12;
      letter-spacing:-.5px;
    }
    .hero-desc{
      margin:14px 0 18px;
      color: rgba(31,36,48,.82);
      font-size:16px;
      max-width:620px;
    }
    .hero-cta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-bottom:16px;
    }
    .hero-btn{ padding-left:16px; padding-right:16px; }

    .hero-trust{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-top:18px;
    }
    .trust-item{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(16,24,40,.10);
      border-radius:16px;
      padding:12px 12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .trust-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .10);
      border-color: rgba(75,111,255,.26);
    }
    .trust-ic{ font-size:18px; margin-bottom:8px; }
    .trust-t{ font-weight:850; }
    .trust-s{ margin-top:3px; font-size:12.8px; color:var(--muted); }

    .hero-right{ display:flex; flex-direction:column; gap:12px; }
    .glass-card{
      background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      border:1px solid rgba(16,24,40,.10);
      border-radius:22px;
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .glass-head{ padding:16px 16px 10px; }
    .glass-title{ font-weight:900; font-size:16px; }
    .glass-sub{ color:var(--muted); font-size:13.5px; margin-top:4px; }

    .quick-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
      padding:0 16px 16px;
    }
    .quick-item{
      text-decoration:none;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:12px 12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex;
      flex-direction:column;
      gap:8px;
      min-height:104px;
    }
    .quick-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(19, 20, 35, .10);
      border-color: rgba(255,91,198,.22);
    }
    .qi-ic{ font-size:20px; }
    .qi-t{ font-weight:900; }
    .qi-s{ color:var(--muted); font-size:12.5px; }

    .glass-foot{
      padding:14px 16px 16px;
      border-top:1px solid rgba(16,24,40,.08);
      background: rgba(250, 248, 246, .55);
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .full-btn{ width:100%; justify-content:center; }
    .fineprint{ color:var(--muted); font-size:12.8px; }

    .mini-metrics{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .metric-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(16,24,40,.10);
      border-radius:18px;
      padding:14px 14px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .metric-card:hover{ transform: translateY(-2px); box-shadow: 0 18px 44px rgba(19, 20, 35, .10); }
    .metric-top{ display:flex; align-items:baseline; gap:8px; }
    .metric-num{ font-weight:950; font-size:26px; letter-spacing:-.3px; }
    .metric-unit{ color:var(--muted); font-weight:800; }
    .metric-label{ margin-top:8px; font-weight:850; }
    .metric-sub{ margin-top:4px; font-size:12.8px; color:var(--muted); }

    .section{ padding:54px 0; }
    .section.compact{ padding:30px 0 34px; }
    .section-inner{ position:relative; }

    .section-head{ margin-bottom:22px; }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:850;
      color: rgba(31,36,48,.86);
      font-size:13.5px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.55);
    }
    .h2{ margin:12px 0 8px; font-size:30px; line-height:1.25; letter-spacing:-.4px; }
    .h3{ margin:0; font-size:16.5px; letter-spacing:-.2px; }
    .section-desc{ margin:0; color: rgba(31,36,48,.80); max-width:860px; }

    .platform-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      margin-top:18px;
    }
    .feature-card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(16,24,40,.10);
      border-radius:20px;
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .feature-card::before{
      content:"";
      position:absolute;
      inset:-1px;
      background: var(--grad2);
      opacity:0;
      transition: opacity .18s ease;
      pointer-events:none;
    }
    .feature-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 46px rgba(19, 20, 35, .10);
      border-color: rgba(75,111,255,.20);
    }
    .feature-card:hover::before{ opacity:1; }
    .feature-card > *{ position:relative; z-index:1; }
    .fc-top{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
    .fc-ic{
      width:34px; height:34px;
      display:flex; align-items:center; justify-content:center;
      border-radius:14px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(16,24,40,.10);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
    }
    .fc-desc{ margin:0; color: rgba(31,36,48,.78); font-size:14px; }

    .callout-bar{
      margin-top:16px;
      padding:16px 16px;
      background: linear-gradient(135deg, rgba(91,140,255,.16), rgba(138,91,255,.14), rgba(255,91,198,.12), rgba(255,177,74,.12));
      border:1px solid rgba(16,24,40,.10);
      border-radius:22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .callout-title{ font-weight:950; }
    .callout-desc{ margin-top:6px; color: rgba(31,36,48,.78); font-size:14px; }
    .callout-right{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
    .callout-left{ min-width:260px; }

    .split{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:16px;
      align-items:start;
    }

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

    .tag-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin:14px 0 18px;
    }
    .tag{
      display:inline-flex;
      padding:9px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.60);
      border:1px solid rgba(16,24,40,.10);
      color: rgba(31,36,48,.82);
      font-weight:800;
      font-size:13px;
    }

    .action-row{ display:flex; gap:12px; flex-wrap:wrap; }

    .stat-stack{
      display:grid;
      gap:12px;
      padding:14px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(16,24,40,.10);
      border-radius:22px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
    }
    .stat-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.70);
    }
    .stat-ic{
      width:36px; height:36px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      display:flex; align-items:center; justify-content:center;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
    }
    .stat-t{ font-weight:900; }
    .stat-s{ color:var(--muted); margin-top:4px; font-size:13.2px; }

    .contact-chip{
      margin-top:12px;
      padding:12px 14px;
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .chip-k{ color:var(--muted); font-size:13px; font-weight:750; }
    .chip-link{
      color: rgba(31,36,48,.92);
      text-decoration:none;
      font-weight:850;
    }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .service-card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(16,24,40,.10);
      border-radius:22px;
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:220px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .service-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(19, 20, 35, .10);
      border-color: rgba(138,91,255,.22);
    }
    .service-top{ display:flex; align-items:center; gap:12px; }
    .service-ic{
      width:40px; height:40px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
    }
    .bullets{ margin:0; padding-left:18px; color: rgba(31,36,48,.80); }
    .bullets li{ margin:8px 0; }

    .logos-row{
      margin-top:18px;
      padding:14px 14px;
      border-radius:22px;
      border:1px dashed rgba(16,24,40,.16);
      background: rgba(255,255,255,.45);
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .logos-title{ font-weight:900; color: rgba(31,36,48,.86); }
    .logos-tags{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
    .logo-chip{
      padding:9px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(16,24,40,.10);
      font-weight:850;
      color: rgba(31,36,48,.82);
      font-size:13px;
    }

    .timeline{
      position:relative;
      padding:10px 0 0;
    }
    .timeline-line{
      position:absolute;
      left:50%;
      top:10px;
      bottom:10px;
      width:2px;
      transform: translateX(-50%);
      background: linear-gradient(to bottom, rgba(75,111,255,.0), rgba(75,111,255,.35), rgba(255,91,198,.25), rgba(255,177,74,.0));
      opacity:.9;
      display:none;
    }
    .timeline-grid{
      display:grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap:12px;
    }
    .step-card{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:16px 14px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:170px;
    }
    .step-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(19, 20, 35, .10);
      border-color: rgba(75,111,255,.22);
    }
    .step-num{
      font-weight:950;
      letter-spacing:-.3px;
      width:48px; height:32px;
      display:flex; align-items:center;
      color: rgba(31,36,48,.92);
    }
    .step-desc{ margin:10px 0 0; color: rgba(31,36,48,.78); font-size:13.8px; }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      margin-top:16px;
      align-items:stretch;
    }
    .info-card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(16,24,40,.10);
      border-radius:22px;
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .info-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(19, 20, 35, .10);
      border-color: rgba(255,91,198,.20);
    }
    .info-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.62));
    }
    .info-list{ margin-top:10px; display:grid; gap:8px; }
    .info-row{ display:flex; align-items:center; gap:10px; font-weight:800; color: rgba(31,36,48,.86); }
    .dot{ width:10px; height:10px; border-radius:999px; background: var(--grad1); box-shadow: 0 0 0 4px rgba(91,140,255,.12); }
    .check-grid{
      margin-top:10px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px 10px;
    }
    .check-item{
      border-radius:16px;
      padding:10px 10px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      font-weight:820;
      color: rgba(31,36,48,.84);
      font-size:13.5px;
    }
    .info-cta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:14px;
      align-items:center;
    }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .industry-card{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:240px;
      display:flex;
      flex-direction:column;
    }
    .industry-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(19, 20, 35, .10);
      border-color: rgba(138,91,255,.20);
    }
    .industry-top{ display:flex; gap:12px; align-items:center; }
    .industry-ic{
      width:42px; height:42px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      display:flex; align-items:center; justify-content:center;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
    }
    .industry-body{ margin-top:12px; display:flex; flex-direction:column; gap:12px; flex:1; }
    .mini-bullets{ display:grid; gap:8px; }
    .mb{ display:flex; align-items:center; gap:10px; font-weight:820; color: rgba(31,36,48,.86); }
    .mini-ic{
      width:20px; height:20px;
      border-radius:10px;
      background: rgba(22,122,75,.12);
      border:1px solid rgba(22,122,75,.18);
      color: var(--good);
      display:flex; align-items:center; justify-content:center;
      font-size:12px;
      font-weight:950;
    }
    .text-link{
      color: rgba(75,111,255,.98);
      text-decoration:none;
      font-weight:850;
      display:inline-flex;
      width:fit-content;
      padding:10px 0;
      border-bottom:2px solid rgba(75,111,255,.20);
      transition: transform .15s ease, border-color .15s ease;
    }
    .text-link:hover{ transform: translateX(2px); border-color: rgba(255,91,198,.35); }

    .network-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .network-card{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .network-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(19, 20, 35, .10);
      border-color: rgba(255,177,74,.22);
    }
    .network-top{ display:flex; gap:12px; align-items:center; }
    .net-ic{
      width:40px; height:40px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      display:flex; align-items:center; justify-content:center;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
    }
    .service-note{
      margin-top:14px;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      padding:14px 16px;
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: linear-gradient(135deg, rgba(91,140,255,.12), rgba(255,91,198,.10), rgba(255,177,74,.10));
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
    }
    .note-ic{
      width:44px; height:44px;
      border-radius:20px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(16,24,40,.10);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
    }
    .note-title{ font-weight:950; }
    .note-desc{ margin-top:6px; color: rgba(31,36,48,.78); font-size:14px; }
    .service-note a{ white-space:nowrap; }

    .compare-shell{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(16,24,40,.10);
      border-radius:26px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
    }
    .flow-grid{
      display:grid;
      grid-template-columns: 1fr 22px 1fr 22px 1fr;
      gap:10px 0;
      align-items:stretch;
    }
    .flow-col{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:16px 14px;
      display:flex;
      flex-direction:column;
      gap:12px;
      min-height:180px;
    }
    .flow-title{ font-weight:950; letter-spacing:-.2px; }
    .flow-chip{
      border-radius:16px;
      padding:10px 12px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      font-weight:850;
      color: rgba(31,36,48,.86);
      font-size:13.5px;
    }
    .flow-arrow{
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:950;
      color: rgba(91,140,255,.80);
      font-size:18px;
    }
    .process-cta{
      margin-top:14px;
      padding:14px 14px;
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .process-cta-title{ font-weight:950; }
    .process-cta-desc{ margin-top:6px; color: rgba(31,36,48,.78); font-size:14px; }
    .process-cta-right{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .case-card{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:230px;
      display:flex;
      flex-direction:column;
      gap:12px;
      position:relative;
      overflow:hidden;
    }
    .case-card::after{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(600px 240px at 30% 0%, rgba(91,140,255,.18), transparent 52%);
      opacity:0;
      transition: opacity .18s ease;
      pointer-events:none;
    }
    .case-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(19, 20, 35, .10);
      border-color: rgba(255,91,198,.18);
    }
    .case-card:hover::after{ opacity:1; }
    .case-card > *{ position:relative; z-index:1; }
    .case-top{ display:flex; flex-direction:column; gap:8px; }
    .case-badge{
      align-self:flex-start;
      padding:8px 12px;
      border-radius:999px;
      font-weight:900;
      font-size:13px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
    }
    .case-desc{ margin:0; color: rgba(31,36,48,.78); font-size:14px; }
    .case-meta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:auto; }
    .meta-item{
      padding:9px 10px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      font-weight:820;
      color: rgba(31,36,48,.82);
      font-size:13px;
    }

    .case-lower{
      display:grid;
      grid-template-columns: 1fr .85fr;
      gap:14px;
      margin-top:14px;
      align-items:start;
    }

    .case-article-list{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(16,24,40,.10);
      border-radius:26px;
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
    }
    .list-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; gap:12px; }
    .list-items{ display:grid; gap:10px; margin-top:10px; }
    .list-item{
      text-decoration:none;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      padding:12px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .list-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .10);
      border-color: rgba(75,111,255,.22);
    }
    .li-ic{ width:34px; height:34px; border-radius:16px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(16,24,40,.10); background: rgba(255,255,255,.65); }
    .li-t{ font-weight:900; color: rgba(31,36,48,.90); }
    .li-r{ color: rgba(75,111,255,.95); font-weight:900; }

    .case-side{ display:flex; flex-direction:column; gap:14px; }
    .side-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
    }
    .side-title{ font-weight:950; margin-bottom:12px; }
    .side-buttons{ display:flex; gap:10px; flex-wrap:wrap; }
    .chip-link-btn{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      font-weight:900;
      color: rgba(31,36,48,.86);
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .chip-link-btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .10);
      border-color: rgba(255,91,198,.18);
    }

    .tag-cloud{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
    }
    .cloud{ display:flex; gap:10px; flex-wrap:wrap; }
    .cloud-tag{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      font-weight:850;
      color: rgba(31,36,48,.86);
      font-size:13.5px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .cloud-tag:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .10);
      border-color: rgba(91,140,255,.22);
    }

    .rating-wrap{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:stretch;
    }
    .rating-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.60));
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .rating-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
    .stars{ letter-spacing:2px; font-size:16px; color: rgba(255,170,40,.95); font-weight:950; }
    .rating-score{
      display:flex; align-items:baseline; gap:8px;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
    }
    .score-num{ font-weight:950; font-size:28px; letter-spacing:-.4px; }
    .score-unit{ color:var(--muted); font-weight:900; }
    .rating-sub{ color: rgba(31,36,48,.78); font-size:14px; font-weight:750; }

    .rating-points{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:2px;
    }
    .rp{
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      font-weight:850;
      color: rgba(31,36,48,.86);
      font-size:13.5px;
      display:flex;
      align-items:center;
    }

    .rating-table-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .table-title{
      display:flex;
      justify-content:space-between;
      align-items:baseline;
      gap:10px;
      flex-wrap:wrap;
    }
    .tlabel{
      font-weight:950;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
    }
    .tright{ color:var(--muted); font-weight:750; font-size:13.5px; }

    .table-scroll{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      max-height: 370px;
    }
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width: 640px;
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(16,24,40,.08);
      text-align:left;
      vertical-align:top;
      font-size:14px;
    }
    .compare-table thead th{
      position:sticky;
      top:0;
      background: rgba(255,255,255,.92);
      z-index:1;
      font-weight:950;
      color: rgba(31,36,48,.90);
    }
    .ok{
      color: rgba(22,122,75,.98);
      font-weight:950;
    }
    .muted{
      color: rgba(91,100,118,.95);
      font-weight:800;
    }
    .table-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-start;
    }

    .match-grid{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:start;
    }
    .match-steps{ display:grid; gap:12px; }
    .ms-item{
      padding:14px 14px;
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .ms-ic{
      width:40px; height:40px;
      border-radius:18px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(16,24,40,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(75,111,255,.98);
    }
    .ms-t{ font-weight:950; }
    .ms-s{ margin-top:4px; color:var(--muted); font-weight:750; font-size:13.8px; }
    .match-cta{ margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; align-items:center; }

    .form-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
    }
    .form-head{ margin-bottom:10px; }
    .form-title{ font-weight:980; font-size:18px; }
    .form-sub{ margin-top:6px; color:var(--muted); font-weight:750; font-size:13.5px; }

    .form{ 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; }
    .label{ font-weight:900; font-size:13.5px; color: rgba(31,36,48,.86); }
    input, select, textarea{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.88);
      padding:12px 12px;
      font-size:14.5px;
      outline:none;
      color: rgba(31,36,48,.92);
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
    }
    textarea{ resize: vertical; min-height: 120px; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(75,111,255,.40);
      box-shadow: 0 0 0 4px var(--focus);
    }

    .form-actions{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
      margin-top:6px;
    }
    .form-hint{
      color: var(--muted);
      font-size:12.8px;
      font-weight:750;
      max-width:320px;
      padding-top:10px;
    }

    .form-trust{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:10px;
    }
    .trust-badge{
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:12px 12px;
      display:flex;
      gap:10px;
      align-items:center;
      font-weight:850;
      color: rgba(31,36,48,.86);
    }
    .tb-ic{ width:32px; height:32px; border-radius:16px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(16,24,40,.10); background: rgba(255,255,255,.72); }
    .tb-t{ font-size:13.5px; }

    .pricing-grid{
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap:14px;
    }
    .price-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
    }
    .price-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.60));
    }
    .factor-list{
      margin-top:12px;
      display:grid;
      gap:10px;
    }
    .factor{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      padding:12px 12px;
      display:flex;
      gap:12px;
      align-items:flex-start;
      font-weight:850;
      color: rgba(31,36,48,.86);
    }
    .fi-ic{
      width:34px; height:34px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      color: rgba(75,111,255,.98);
      font-weight:950;
    }
    .price-cta{ margin-top:14px; }

    .price-table-wrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      margin-top:12px;
    }
    .mini-price-table{
      width:100%;
      border-collapse:collapse;
      min-width: 620px;
    }
    .mini-price-table th, .mini-price-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(16,24,40,.08);
      text-align:left;
      font-size:14px;
      vertical-align:top;
    }
    .mini-price-table thead th{
      position:sticky;
      top:0;
      background: rgba(255,255,255,.92);
      font-weight:950;
      z-index:1;
    }
    .price-bottom{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .pb-note{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color: var(--muted);
      font-weight:750;
      font-size:13.2px;
    }
    .pb-ic{
      width:34px; height:34px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
    }

    .training-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
    }
    .training-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
    }
    .course-list{
      margin-top:12px;
      display:grid;
      gap:10px;
    }
    .course{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      font-weight:900;
      color: rgba(31,36,48,.88);
    }
    .training-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.60));
    }
    .training-cta{ margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; align-items:center; }

    .cert-bar{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .cert-item{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.68);
      padding:14px 14px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .cert-ic{
      width:44px; height:44px;
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
    }
    .cert-t{ font-weight:950; }
    .cert-s{ margin-top:5px; color: var(--muted); font-weight:750; font-size:13.2px; }

    .help-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .help-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:190px;
      display:flex; flex-direction:column; gap:10px;
    }
    .help-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(19, 20, 35, .10);
      border-color: rgba(75,111,255,.22);
    }
    .help-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.60));
    }
    .help-desc{ color: rgba(31,36,48,.78); margin:0; }
    .help-actions{ margin-top:auto; display:flex; gap:12px; flex-wrap:wrap; align-items:center; }

    .help-footer{
      margin-top:14px;
      padding:16px 16px;
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: linear-gradient(135deg, rgba(91,140,255,.12), rgba(255,91,198,.10), rgba(255,177,74,.10));
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
    }
    .hf-title{ font-weight:980; }
    .hf-desc{ margin-top:6px; color: rgba(31,36,48,.78); font-weight:760; }
    .hf-right{ white-space:nowrap; }

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faq-col{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .faq-item{
      text-align:left;
      width:100%;
      padding:14px 14px;
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      cursor:pointer;
      font-weight:900;
      color: rgba(31,36,48,.92);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .faq-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .10);
      border-color: rgba(255,91,198,.18);
    }
    .faq-q{ font-size:14.8px; }
    .faq-ic{
      width:34px; height:34px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      display:flex;
      align-items:center;
      justify-content:center;
      color: rgba(75,111,255,.98);
      font-size:18px;
      font-weight:950;
      flex:0 0 auto;
      transition: transform .2s ease;
    }
    .faq-a{
      margin-top:-6px;
      padding:0 14px 0;
      max-height:0px;
      overflow:hidden;
      transition: max-height .28s ease;
      color: rgba(31,36,48,.78);
      background: rgba(255,255,255,.55);
      border-radius:18px;
      border: 1px solid rgba(16,24,40,.10);
      border-top: none;
      display:flex;
      align-items:flex-start;
      padding-top:0;
    }
    .faq-a{
      padding-left:14px;
      padding-right:14px;
      padding-bottom:14px;
      font-size:14px;
      line-height:1.65;
    }

    .faq-grid.extra{
      margin-top:14px;
      grid-template-columns: 1fr 1fr;
    }

    .ency-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .ency-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:160px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .ency-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(19, 20, 35, .10);
      border-color: rgba(75,111,255,.20);
    }
    .ency-desc{ margin:0; color: rgba(31,36,48,.78); }

    .news-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:14px;
    }
    .news-item{
      text-decoration:none;
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
      display:flex;
      gap:12px;
      align-items:flex-start;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .news-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(19, 20, 35, .10);
      border-color: rgba(255,91,198,.18);
    }
    .news-ic{
      width:44px; height:44px;
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      flex:0 0 auto;
    }
    .news-body{ flex:1; }
    .news-title{ font-weight:980; letter-spacing:-.2px; }
    .news-desc{ margin-top:6px; color: rgba(31,36,48,.78); font-weight:760; font-size:13.8px; }
    .news-more{ color: rgba(75,111,255,.95); font-weight:980; margin-top:3px; }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 0.85fr;
      gap:14px;
      align-items:start;
    }
    .contact-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
    }
    .contact-list{ margin-top:12px; display:grid; gap:10px; }
    .cl-row{ display:flex; justify-content:space-between; gap:12px; padding:12px 12px; border-radius:18px; border:1px solid rgba(16,24,40,.10); background: rgba(255,255,255,.74); }
    .cl-k{ color:var(--muted); font-weight:850; font-size:13.5px; }
    .cl-v{ font-weight:900; color: rgba(31,36,48,.90); font-size:14px; text-align:right; }
    .inline-link{ color: rgba(75,111,255,.98); text-decoration:none; font-weight:900; }
    .contact-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; align-items:center; }
    .contact-mini{ margin-top:14px; }
    .mini-ask{
      padding:14px 14px;
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: linear-gradient(135deg, rgba(91,140,255,.12), rgba(255,91,198,.10), rgba(255,177,74,.10));
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .mini-ask-ic{
      width:44px; height:44px;
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      flex:0 0 auto;
    }
    .mini-ask-t{ font-weight:980; }
    .mini-ask-s{ margin-top:6px; color: rgba(31,36,48,.78); font-weight:760; font-size:13.8px; }

    .contact-side{ display:flex; flex-direction:column; gap:14px; }
    .qr-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
    }
    .qr-top{ display:flex; flex-direction:column; gap:6px; }
    .qr-sub{ color:var(--muted); font-weight:760; font-size:13.5px; }
    .qr-box{
      margin-top:12px;
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
      display:flex;
      justify-content:center;
      align-items:center;
    }
    .qr-img{ width:160px; max-width:100%; height:auto; border-radius:14px; }
    .qr-foot{ margin-top:12px; display:flex; justify-content:flex-start; }

    .contact-quicklinks{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      padding:16px 16px;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
    }
    .cl-title{ font-weight:980; margin-bottom:12px; }
    .qlinks{ display:flex; gap:10px; flex-wrap:wrap; }
    .qlinks a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      font-weight:900;
      color: rgba(31,36,48,.86);
      font-size:13.5px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .qlinks a:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .10);
      border-color: rgba(75,111,255,.22);
    }

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .join-card{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
    }
    .join-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.60));
    }
    .join-list{ margin-top:12px; display:grid; gap:10px; }
    .join-item{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      font-weight:900;
      color: rgba(31,36,48,.88);
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .ji-ic{
      width:34px; height:34px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      font-size:14px;
      flex:0 0 auto;
    }
    .join-cta{
      margin-top:12px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
    }

    .partner-links{
      margin-top:14px;
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
    }
    .pl-title{ font-weight:980; margin-bottom:12px; }
    .pl-list{ display:flex; gap:10px; flex-wrap:wrap; }
    .pl-list a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      font-weight:900;
      color: rgba(31,36,48,.86);
      font-size:13.5px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .pl-list a:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .10);
      border-color: rgba(255,91,198,.18);
    }

    .banner-row{
      border-radius:26px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
      padding:16px 16px;
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:center;
    }
    .banner-k{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      font-weight:900;
      width:fit-content;
      margin-bottom:10px;
    }
    .banner-t{
      font-weight:980;
      font-size:20px;
      letter-spacing:-.3px;
      line-height:1.25;
    }
    .banner-s{
      margin-top:8px;
      color: rgba(31,36,48,.78);
      font-weight:760;
    }
    .banner-actions{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
    .img-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .img-card{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      overflow:hidden;
      box-shadow: 0 12px 30px rgba(19, 20, 35, .06);
    }
    .img-card.small-square{ grid-column:1 / -1; }
    .banner-img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
      transform: translateZ(0);
      transition: transform .22s ease;
    }
    .img-card:hover .banner-img{ transform: scale(1.02); }

    .site-footer{
      background: linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.78));
      border-top: 1px solid rgba(16,24,40,.10);
      padding:28px 0 20px;
    }
    .footer-inner{ display:flex; flex-direction:column; gap:14px; }
    .footer-top{
      display:grid;
      grid-template-columns: 1.05fr .95fr .8fr;
      gap:14px;
      align-items:start;
    }
    .footer-brand{
      display:flex; gap:12px; align-items:center;
    }
    .footer-logo{ width:42px; height:42px; object-fit:contain; }
    .footer-logo-link{ display:flex; align-items:center; justify-content:center; }
    .footer-brand-name{ font-weight:980; }
    .footer-brand-sub{ margin-top:4px; color:var(--muted); font-weight:760; font-size:13.5px; }
    .footer-contact{ margin-top:12px; display:grid; gap:8px; }
    .fc-row{ display:flex; gap:10px; justify-content:flex-start; }
    .fc-row .k{ width:44px; color:var(--muted); font-weight:850; }
    .fc-row .v a{ color: rgba(75,111,255,.98); text-decoration:none; font-weight:900; }

    .footer-mid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .foot-col{ background: rgba(255,255,255,.55); border:1px solid rgba(16,24,40,.10); border-radius:22px; padding:14px 14px; }
    .foot-title{ font-weight:980; margin-bottom:10px; }
    .foot-link{
      display:block;
      text-decoration:none;
      color: rgba(31,36,48,.86);
      padding:8px 0;
      font-weight:820;
      border-bottom:1px dashed rgba(16,24,40,.10);
    }
    .foot-link:last-child{ border-bottom:none; }
    .foot-link:hover{ color: rgba(75,111,255,.98); }

    .footer-right{
      background: linear-gradient(135deg, rgba(91,140,255,.10), rgba(255,91,198,.08), rgba(255,177,74,.10));
      border:1px solid rgba(16,24,40,.10);
      border-radius:26px;
      padding:16px 16px;
    }
    .foot-cta-title{ font-weight:980; font-size:16.5px; }
    .foot-cta-desc{ margin-top:6px; color: rgba(31,36,48,.78); font-weight:760; font-size:13.8px; margin-bottom:12px; }
    .footer-home{ margin-top:12px; display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
    .ai-page-home-link{
      color: rgba(75,111,255,.98);
      text-decoration:none;
      font-weight:900;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .ai-page-home-link:hover{
      transform: translateY(-1px);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .10);
      border-color: rgba(255,91,198,.18);
    }
    .sep{ color: rgba(31,36,48,.35); font-weight:950; }

    .footer-bottom{
      border-top:1px solid rgba(16,24,40,.08);
      padding-top:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .friend-links{
      display:flex;
      gap:12px;
      align-items:flex-start;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .fl-title{ font-weight:980; color: rgba(31,36,48,.86); }
    .fl-list{ display:flex; gap:10px; flex-wrap:wrap; }
    .fl-list a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      font-weight:900;
      color: rgba(31,36,48,.86);
      font-size:13.5px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .fl-list a:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .10);
      border-color: rgba(75,111,255,.22);
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color: rgba(31,36,48,.70);
      font-weight:780;
      font-size:13.2px;
    }
    .right-small{ color: rgba(31,36,48,.60); }

    .to-top{
      position:fixed;
      right:16px;
      bottom:16px;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .12);
      cursor:pointer;
      font-weight:980;
      color: rgba(31,36,48,.90);
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:0;
      transform: translateY(10px);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
      z-index:300;
    }
    .to-top.show{
      opacity:1;
      transform: translateY(0);
      pointer-events:auto;
    }
    .to-top:hover{ border-color: rgba(75,111,255,.30); }

    .float-widget{
      position:fixed;
      left:14px;
      bottom:16px;
      display:flex;
      gap:10px;
      z-index:250;
    }
    .float-item, .float-qr{
      text-decoration:none;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 44px rgba(19, 20, 35, .12);
      font-weight:950;
      color: rgba(31,36,48,.92);
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
      font-size:13.8px;
      white-space:nowrap;
    }
    .float-item:hover, .float-qr:hover{
      transform: translateY(-2px);
      border-color: rgba(255,91,198,.22);
      box-shadow: 0 22px 54px rgba(19, 20, 35, .14);
    }
    .float-qr{
      background: linear-gradient(135deg, rgba(91,140,255,.14), rgba(255,91,198,.12), rgba(255,177,74,.12));
    }

    @media (max-width: 980px){
      .nav-desktop{ display:none; }
      .hamburger{ display:flex; }
      .mobile-drawer{ display:none; }
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-title{ font-size:36px; }
      .hero-trust{ grid-template-columns: 1fr; }
      .platform-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .service-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .timeline-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .industry-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .network-grid{ grid-template-columns: 1fr; }
      .rating-wrap{ grid-template-columns: 1fr; }
      .match-grid{ grid-template-columns: 1fr; }
      .pricing-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .faq-grid.extra{ grid-template-columns: 1fr; }
      .ency-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .news-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .banner-row{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .case-lower{ grid-template-columns: 1fr; }
      .footer-top{ grid-template-columns: 1fr; }
      .footer-mid{ grid-template-columns: 1fr; }
      .float-widget{ left:10px; }
    }

    @media (prefers-reduced-motion: reduce){
      html{ scroll-behavior:auto; }
      .reveal{ transition:none; }
      .orb{ animation:none; }
      .banner-img{ transition:none; }
      .primary-btn, .secondary-btn, .link-btn, .ghost-link, .faq-item, .trust-item, .feature-card, .case-card, .industry-card, .network-card, .help-card, .news-item, .ency-card, .step-card, .metric-card, .chip-link-btn, .cloud-tag, .qlinks a, .fl-list a{
        transition:none !important;
      }
    }