
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    :root {
      --primary: #276BFF;
      --primary-2: #18C8F8;
      --text: #15213B;
      --muted: #6E7B91;
      --light: #F4F8FF;
      --card: #FFFFFF;
      --dark: #081426;
      --border: rgba(39, 107, 255, .14);
      --shadow: 0 16px 40px rgba(39, 107, 255, .10);
      --radius: 18px;
    }

    /* html {
      scroll-behavior: smooth;
    } */

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.65;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }
    button:focus-visible {outline: none;}
    .card{
      transition: all .3s ease-in-out;
    }
    .card:hover{
      transform: translateY(-20px)!important;
    }
    .top-gap{
      width: 100%;
      height: 62px;
    }
    .container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .nav {
      height: 62px;
      position: fixed;
      inset: 0 0 auto;
      z-index: 300;
      background: rgba(255, 255, 255, .82);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(39, 107, 255, .08);
    }

    .nav .container {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: #1E5BE0;
      letter-spacing: .5px;
    }

    .logo-mark {
      width: 130px;
      height: 34px;
      background: url(../images/logo.png) no-repeat;
      background-size: 100%;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 21px;
      font-size: 14px;
      color: #3C4960;
      padding: 0 20px;
      height: 60px;
    }

    .menu a {
      position: relative;
      display: flex;
      height: 100%;
      align-items: center;
      transition: color .25s ease;
      line-height: 20px;
    }

    .menu a.active,
    .menu a:hover {
      color: var(--primary);
      font-weight: 700;
    }

    .menu a.active::after,
    .menu a:hover::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0px;
      width: 100%;
      height: 3px;
      border-radius: 999px;
      background: var(--primary);
    }

    .hamburger {
      display: none;
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 10px;
      cursor: pointer;
      background: transparent;
    }

    .hamburger span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      border-radius: 99px;
      background: #2C2C2C;
    }

    .hero {
      min-height: 450px;
      padding-top: 62px;
      background:
        radial-gradient(circle at 78% 23%, rgba(149, 194, 255, .70) 0, rgba(149, 194, 255, 0) 22%),
        linear-gradient(112deg, #F7FBFF 0%, #EAF4FF 45%, #CDE8FF 100%);
      background: url(../images/hero-bg.jpg) no-repeat 100% 100% / cover;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(130deg, transparent 0 58%, rgba(255, 255, 255, .42) 59% 61%, transparent 62%),
        linear-gradient(135deg, transparent 0 66%, rgba(255, 255, 255, .32) 67% 68%, transparent 69%);
      pointer-events: none;
    }

    .hero .container {
      min-height: 388px;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      align-items: center;
      gap: 50px;
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      width: 36px;
      height: 5px;
      margin-bottom: 18px;
      border-radius: 999px;
      background: var(--primary);
    }

    .hero h1 {
      font-weight: 800;
      font-size: 60px;
      line-height: 68px;
      letter-spacing: 42%;
      vertical-align: middle;
      background: linear-gradient(184.01deg, #5080FC -54.79%, #7B53FF 131.02%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    .hero h3 {
      font-weight: 600;
      font-size: 40px;
      line-height: 42px;
      letter-spacing: 10%;
      color: #1B253F;
      margin: 26px 0 29px;
    }
    .hero p {
      max-width: 520px;
      font-size: 15px;
      color: #607087;
      margin-bottom: 28px;
    }

    .actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      min-width: 126px;
      height: 42px;
      padding: 0 26px;
      border: 1px solid #002791;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
      color: #002791;
      background: #fff;
      cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .contact-actions .btn{background: transparent; border-color: #fff;color: #fff;}
    
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    
    .btn.primary {
      color: #fff;
      border: 0;
      background: linear-gradient(100deg, #246CFF, #21C9F5);
      box-shadow: 0 12px 25px rgba(39, 107, 255, .23);
    }
    .btn.primary-1 {
      color: #fff;
      border: 0;
      background: linear-gradient(90deg, #542AFF 6.86%, #1BF7FF 100%);
      box-shadow: 0 12px 25px rgba(39, 107, 255, .23);
    }
    .actions-stats-wrap{
      display: flex;
      flex-direction: column;
      gap: 26px;
    }
    .stats {
      display: flex;
      gap: 14px;
      flex-wrap: no-wrap;
    }

    .stat {
      min-width: 108px;
      height: 82px;
      padding: 14px 16px;
      border-radius: 15px;
      background: rgba(255, 255, 255, .72);
      box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    }

    .stat strong {
      display: block;
      font-size: 22px;
      color: #122248;
      line-height: 1.2;
    }

    .stat span {
      font-size: 12px;
      color: #111827;
      line-height: 12px;
      display: block;
      margin-top: 10px;
    }

    .laptop {
      width: min(530px, 100%);
      margin-left: auto;
      filter: drop-shadow(0 26px 30px rgba(23, 72, 140, .24));
    }
    .laptop .laptop-image{
      width: 100%;
      height: auto;
    }
   
    section {
      padding: 72px 0;
    }

    .section-light {
      background: #F3F8FF;
    }

    .section-title {
      margin-bottom: 34px;
      padding-left: 30px;
    }
    .section-title .title-wrap {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
    }
    .section-title h2 {
      position: relative;
      display: inline-block;
      font-size: 36px;
      line-height: 1.2;
      letter-spacing: -1px;
      font-weight: 600;
    }

    .section-title h2::before {
      content: "";
      position: absolute;
      width: 112px;
      height: 112px;
      left: -26px;
      top: -35px;
      background: url(../images/title-bg.png) no-repeat;
      background-size: 100%;
    }

    .section-title p {
      max-width: 820px;
      color: var(--muted);
      font-size: 14px;
      margin-top: 19px;
    }

    .cards-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .cards-8 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .card {
      min-height: 194px;
      padding: 24px 22px 0px;
      border-radius: var(--radius);
      background: #F6F9FF;
      border: 1px solid #EEF2F7;
      box-shadow: 0 10px 28px rgba(39, 107, 255, .05);
      transition: transform .25s ease, box-shadow .25s ease;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .card p {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.65;
    }

    .ill {
      width: 200px;
      height: 200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: auto;
    }
    .ill img{
      width: 200px;
      height: 200px;
    }
    /* .coin-stack,
    .rocket,
    .dice,
    .slot,
    .poker,
    .boat,
    .ball,
    .tile,
    .host,
    .player {
      width: 78px;
      height: 78px;
      position: relative;
    }

    .coin-stack::before {
      content: "";
      position: absolute;
      inset: 18px 18px 5px;
      background: repeating-linear-gradient(0deg, #F5B642 0 8px, #FFD56C 9px 15px);
      border-radius: 12px;
      box-shadow: 20px 4px 0 #EBA83A, -15px 15px 0 #FFE296;
    }

    .coin-stack::after {
      content: "$";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      margin: 2px auto;
      background: radial-gradient(circle, #FFE698, #D99A23);
      color: #fff;
      font-size: 30px;
      font-weight: 900;
      box-shadow: 0 10px 20px rgba(222, 161, 37, .28);
    }

    .rocket::before {
      content: "";
      position: absolute;
      width: 50px;
      height: 70px;
      left: 14px;
      top: 3px;
      background: linear-gradient(145deg, #FF385C, #FFB13B);
      clip-path: polygon(50% 0, 92% 60%, 62% 60%, 62% 100%, 38% 100%, 38% 60%, 8% 60%);
      filter: drop-shadow(0 12px 12px rgba(255, 72, 72, .25));
    }

    .dice::before,
    .dice::after {
      content: "";
      position: absolute;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: #fff;
      border: 2px solid #2D71FF;
      box-shadow: inset 11px 11px 0 -8px #FF3D6B, inset -11px -11px 0 -8px #2D71FF, 0 12px 20px rgba(45, 113, 255, .15);
      transform: rotate(-18deg);
      left: 6px;
      top: 15px;
    }

    .dice::after {
      left: 34px;
      top: 1px;
      transform: rotate(18deg);
      border-color: #FF3D6B;
    }

    .slot::before {
      content: "";
      position: absolute;
      inset: 8px 10px;
      border-radius: 12px;
      background: linear-gradient(#243A73, #102050);
      box-shadow: inset 0 0 0 7px #22B8FF, 0 12px 18px rgba(31, 85, 177, .22);
    }

    .slot::after {
      content: "777";
      position: absolute;
      top: 29px;
      left: 18px;
      font-weight: 900;
      color: #FFE665;
      letter-spacing: 3px;
    }

    .poker::before,
    .poker::after {
      content: "♠";
      position: absolute;
      width: 44px;
      height: 62px;
      border-radius: 9px;
      background: #fff;
      display: grid;
      place-items: center;
      font-size: 28px;
      color: #121A2E;
      border: 1px solid #DCE7FA;
      box-shadow: 0 12px 18px rgba(31, 85, 177, .12);
      transform: rotate(-10deg);
      left: 12px;
      top: 8px;
    }

    .poker::after {
      content: "♥";
      color: #E94159;
      left: 35px;
      top: 0;
      transform: rotate(12deg);
    }

    .boat::before {
      content: "";
      position: absolute;
      inset: 14px 8px;
      background: linear-gradient(145deg, #35A7FF, #F7A13B);
      clip-path: polygon(10% 50%, 42% 18%, 52% 30%, 70% 16%, 96% 44%, 78% 80%, 18% 80%);
      border-radius: 14px;
      box-shadow: 0 14px 20px rgba(45, 113, 255, .2);
    }

    .host,
    .player {
      width: 84px;
      height: 98px;
      border-radius: 42px 42px 18px 18px;
      background: linear-gradient(#F5C7B1 0 34%, #fff 35% 100%);
      box-shadow: 0 12px 24px rgba(45, 113, 255, .12);
      border: 1px solid #EAF0FB;
    }

    .host::before,
    .player::before {
      content: "";
      position: absolute;
      width: 42px;
      height: 20px;
      border-radius: 50% 50% 20% 20%;
      background: #202840;
      left: 21px;
      top: 8px;
    }

    .player {
      background: linear-gradient(#E8B39D 0 34%, #E9434B 35% 100%);
    }

    .player.alt {
      background: linear-gradient(#F2C4AE 0 34%, #F3B7D8 35% 100%);
    }

    .ball::before {
      content: "⚽";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-size: 64px;
      filter: drop-shadow(0 10px 12px rgba(30, 55, 95, .2));
    }

    .tile::before {
      content: "♢";
      position: absolute;
      inset: 6px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-size: 42px;
      color: #2D71FF;
      background: #fff;
      border: 2px solid #9EC0FF;
      transform: rotate(45deg);
      box-shadow: 0 12px 18px rgba(45, 113, 255, .12);
    } */

    .product-wrap {
      display: flex;
      /* grid-template-columns: .92fr 1.08fr; */
      gap: 34px;
      align-items: center;
    }

    .tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .tab {
      height: 42px;
      padding: 0 20px;
      border: 1px solid rgba(39, 107, 255, .35);
      border-radius: 6px;
      background: #fff;
      color: var(--primary);
      font-weight: 700;
      cursor: pointer;
    }

    .tab.active {
      background: linear-gradient(100deg, #286CFF, #42C6F9);
      color: #fff;
      border-width: 0;
    }

    .product-panel {
      border-radius: 24px;
      padding: 28px;
      background: #E7F3FF;
      /* box-shadow: var(--shadow); */
      display: none;
    }
    .product-panel.active, .dashboard .dashboard-image.active {
      display: block;
    }
    .product-panel h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .product-panel p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 18px;
    }
    

    .feature-list {
      display: grid;
      gap: 12px;
    }

    .feature-list li {
      list-style: none;
      padding: 14px 18px;
      border-radius: 13px;
      background: #fff;
      color: #344057;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 8px 20px rgba(39, 107, 255, .06);
    }
    .product-text{
      max-width: 520px;
    }
    .dashboard .dashboard-image{
      width: auto;
      max-height: 420px;
      object-fit: cover;
      display: none;
    }
    .side {
      background: linear-gradient(#4582FF, #86B2FF);
      padding: 24px 14px;
      color: #fff;
    }

    .avatar {
      width: 42px;
      height: 42px;
      margin: 0 auto 16px;
      border-radius: 50%;
      background: linear-gradient(#FFE0CA, #fff);
      border: 3px solid rgba(255,255,255,.55);
    }

    .side i {
      display: block;
      height: 8px;
      margin: 13px 5px;
      border-radius: 99px;
      background: rgba(255,255,255,.42);
    }

    .dash-main {
      padding: 18px;
      background: #F8FBFF;
    }

    .dash-top {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
    }

    .dash-top i {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, #FF9C46, #2D71FF);
    }

    .table {
      background: #fff;
      border-radius: 14px;
      padding: 16px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .table i {
      height: 36px;
      border-radius: 8px;
      background: #F0F5FF;
      border: 1px solid #E3ECFF;
    }

    .builder {
      text-align: center;
    }

    .device-toggle {
      width: 210px;
      height: 38px;
      padding: 4px;
      margin: 0 40px 0px;
      border-radius: 999px;
      background: #D1D7ED;
      display: flex;
    }

    .device-toggle button {
      flex: 1;
      border: 0;
      border-radius: 999px;
      color: #8A98AE;
      background: transparent;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .device-toggle button img {
      width: 24px;
      height: 24px;
    }

    .device-toggle button.active {
      color: #fff;
      background: linear-gradient(100deg, #2F72FF, #4AC4FF);
      box-shadow: 0 8px 20px rgba(45, 113, 255, .22);
    }
    .template-slider {
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
    }

    .templates {
      flex: 1;
      overflow: hidden;
    }
    .templates-wrap{
      display: none;
      width: 100%;
    }
    .templates-wrap.show{
      display: block;
    }
    .templates-items {
      flex: 0 0 calc(25% - 9px); /* 每页4张，减去gap */
      text-align: center;
      cursor: pointer;
      position: relative;
    }
    .templates-items .mask {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 104px;
      padding: 0 4px;
      height: 33px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s;
      white-space: nowrap;
    }
    .templates-items img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      margin: 0 auto;
    }

    .templates-items .text {
      margin-top: 8px;
      font-size: 16px;
      font-weight: 600;
      color: #333;
      width: 220px;
      height: 42px;
      line-height: 42px;
      border-radius: 12px;
      background: #fff;
      box-sizing: border-box;
      margin: 18px auto 0;
    }
    .mb-wrap .templates-items img
    {
      width: 240px;
      height: 490px;
    }
     .pc-wrap .templates-items{
      flex: 0 0 calc(100% / 3 - 9px); 
    } 
    .pc-wrap .templates-items img
    {
      width: 376px;
      height: 512px;
    }
    .templates-inner {
      display: flex;
      gap: 12px;
      transition: transform 0.4s ease;
      will-change: transform;
    }

    .arrow {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border: none;
      background: transparent;
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .arrow img {
      width: 100%;
      height: auto;
    }

    .arrow:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }


    .arrow {
      position: absolute;
      top: 45%;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      z-index: 2;
    }
    

    .arrow.prev {
      left: -48px;
    }

    .arrow.next {
      right: -48px;
    }

    .tech {
      background: #081326;
      color: #fff;
    }

    .tech .section-title p {
      color: #9BA9C0;
    }

    .tech-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 34px;
      text-align: center;
    }

    .tech-item {
      padding: 10px 16px 0;
    }

    .tech-icon {
      width: 100%;
      padding-bottom: 60%;
      margin: 0 auto 18px;
      position: relative;
      display: grid;
      place-items: center;
    }
    .tech-icon img{
      position: absolute;
      top: 0;
    }


    .tech-item h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .tech-item p {
      color: #92A0B7;
      font-size: 13px;
      padding: 0 20px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 22px;
    }

    .service-card {
      height: 200px;
      border-radius: 18px;
      background: #F5F8FF;
      display: grid;
      place-items: center;
      text-align: center;
      /* box-shadow: 0 10px 28px rgba(39, 107, 255, .06); */
    }
    .service-card >div{display: flex; flex-direction: column;justify-content: center;align-items: center;}
    .service-card img{width: 120px;height: 120px;}
    .service-card i {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      margin: 0 auto 12px;
      border-radius: 14px;
      background: #EAF4FF;
      color: var(--primary);
      font-size: 28px;
      font-style: normal;
    }

    .service-card h3 {
      font-size: 17px;
    }

    .contact-banner {
      margin-top: 42px;
      padding: 30px 38px;
      border-radius: 20px;
      background:
        radial-gradient(circle at 18% 50%, rgba(65, 211, 255, .35), transparent 28%),
        linear-gradient(100deg, #0870E8, #053EA8);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      overflow: hidden;
      position: relative;
    }

    .contact-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      /* background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); */
      /* background-size: 24px 24px; */
      background: url('../images/service-bottom-bg.png') no-repeat;
      background-size: auto 100%;
    }

    .contact-banner > * {
      position: relative;
      z-index: 1;
    }

    .contact-banner h2 {
      font-size: 26px;
      margin-bottom: 4px;
    }

    .contact-banner p {
      color: rgba(255,255,255,.78);
      font-size: 14px;
    }

    .contact-actions {
      display: flex;
      gap: 14px;
      flex-shrink: 0;
    }

    footer {
      padding: 28px 0;
      border-top: 1px solid #EEF2F8;
      color: #8A97AA;
      font-size: 13px;
    }

    footer .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: .65s ease;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== 按钮容器：弹框定位基准 ===== */
    .btn-wrap {
      position: relative;
      display: flex;
      align-items: center;
      gap: 5px
    }

    /* ===== 触发按钮 ===== */
    .lang-btn {
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s;
      user-select: none;
      height: 30px;
      padding: 0 14px;
      display: flex;
      align-items: center;
      gap: 5px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 30px;
      font-size: 13px;
      color: #101828;
      background: transparent;
    }
    .lang-btn.tryNow{
      color: #fff;
      background: #5080FC;
      border: none;
      min-width: 80px;
    }
    .lang-btn .lang-icon{
        width: 20px;
        height: 20px;
        background: url(../images/icon/lang-icon.png) center/cover no-repeat;
    }

    .lang-btn:hover {
      opacity: 0.8;
    }

    .lang-btn .chevron {
      font-size: 11px;
      color: #888;
      transition: transform 0.2s;
    }

    .lang-btn.open .chevron {
      transform: rotate(180deg);
    }
    /* ===== 遮罩层：全屏，独立于弹框 ===== */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 100;
      display: none;
    }

    .overlay.show {
      display: block;
    }

    /* ===== 下拉弹框：定位于按钮正下方 ===== */
    .dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      width: 220px;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      padding: 6px;
      z-index: 300;
      display: none;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .dropdown.show {
      display: block;
    }

    /* ===== 语言选项 ===== */
    .lang-option {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 10px;
      border-radius: 8px;
      border: 1px solid transparent;
      cursor: pointer;
      background: none;
      width: 100%;
      text-align: left;
      transition: background 0.1s;
    }

    .lang-option:hover {
      background: #f5f5f5;
    }

    .lang-option.active {
      background: #f0f7ff;
      border-color: #c5deff;
    }

    .lang-flag {
      font-size: 20px;
      line-height: 1;
      min-width: 26px;
    }

    .lang-info {
      flex: 1;
    }

    .lang-name {
      font-size: 13px;
      font-weight: 500;
      color: #111;
    }

    .lang-sub {
      font-size: 11px;
      color: #888;
      margin-top: 2px;
    }

    .check-icon {
      font-size: 14px;
      color: #3b82f6;
      opacity: 0;
    }

    .lang-option.active .check-icon {
      opacity: 1;
    }
     /* ─── 大图灯箱 ─── */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.82);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }

    .lightbox-overlay.active {
      display: flex;
    }

    .lightbox-box {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .lightbox-box img {
      max-width: 100%;
      max-height: 90vh;
      width: auto;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .lightbox-caption {
      color: #ddd;
      font-size: 14px;
      text-align: center;
      display: none;
    }

    .lightbox-close {
      position: absolute;
      top: -40px;
      right: 0;
      width: 32px;
      height: 32px;
      border: none;
      /* background: rgba(255,255,255,0.15); */
      color: #fff;
      font-size: 20px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      transition: background 0.2s;
      background: url(../images/dialog/close-white.png) no-repeat;
      background-size:100% ;
    }

    .lightbox-close:hover {
      opacity: 0.8;
    }

    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border: none;
      background: rgba(255,255,255,0.15);
      color: #fff;
      font-size: 22px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      display: none;
    }

    .lightbox-prev { left: -56px; }
    .lightbox-next { right: -56px; }

    .lightbox-prev:hover,
    .lightbox-next:hover {
      background: rgba(255,255,255,0.3);
    }
    .fa-tabs{
      display: none;
    }
    .es-contain{
      display: flex;
      gap: 16px;
    }
    .es-contain .es-tabs{
      display: none;
    }
    .es-contain .cards-8{
      flex: 1;
    }
    #toggle-h5,.service-panel,#swipe, .tech .tips,.service-panel-2, .primary-2{
      display: none;
    }
    .tech .section-title h2::before{ width: 0;}
    .route-dialog-mask{position:fixed;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.55);display:none;justify-content:center;align-items:center;z-index:9999;}
    .route-dialog-mask.show{display:flex;}
    .route-dialog{width:978px;border-radius:20px;overflow:hidden;}
    .route-header{height:85px;background: linear-gradient(90deg, #5080FC 0%, #836DFF 100%);display:flex;align-items:center;justify-content:center;position:relative;color:#fff;}
    .route-header h3{font-size:26px;font-weight:600;}
    .route-close{position:absolute;right:18px;top:50%;transform:translateY(-50%);width:40px;height:40px;cursor:pointer;background:transparent;border:none;}
    .route-body{background:#fff;border-radius:0 0 20px 20px;}
    .route-tabs{display:flex;justify-content:center;padding:16px 0;}
    .route-tabs button{width:135px;height:46px;border:none;background:#dbe2ff;color:#999;cursor:pointer;display: flex;justify-content: center;align-items: center;}
    .route-tabs button img{width:24px;height:24px;}
    .route-tabs button:first-child{border-radius:8px 0 0 8px;}
    .route-tabs button:last-child{border-radius:0 8px 8px 0;}
    .route-tabs button.active{background:#5080FC;color:#fff;}
    .route-list{padding:0 58px;height: 430px;}
    .route-item{height:70px;background:#E2EAFF;border-radius:20px;padding:0 32px;margin-bottom:16px;display:flex;align-items:center;}
    .route-no{width:62px;height:42px;display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:700;}
    .route-name{flex:1;font-size:18px;font-weight:600;color:#222;padding:0 42px;}
    .route-enter{width:175px;height:50px;border-radius:50px;background:#5080FC;color:#fff;text-decoration:none;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight: 600;}
    .route-pagination{display:flex;justify-content:center;gap:10px;padding:14px 0 20px;}
    .route-pagination button{width:40px;height:40px;border: 1px solid rgba(0, 0, 0, 0.1);background:#fff;color: #666666;border-radius:4px;cursor:pointer;font-size: 18px;font-weight: 500;}
    .route-pagination button.active{background:#5080FC;color:#fff;border-color:#5080FC;}
    .en .hero h1{letter-spacing: 30%;}
    @media (max-width: 1024px) {
      .hero .container,
      .product-wrap {
        grid-template-columns: 1fr;
        flex-direction: column-reverse;
      }
      .dashboard {
        display: flex;
        justify-content: center;
      }

      .laptop {
        margin: 0 auto;
      }

      .cards-4,
      .cards-8,
      .tech-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .service-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .templates {
        grid-template-columns: 1fr 1fr;
      }

      .tpl:nth-child(3) {
        display: none;
      }
      .laptop {
        display: none;
      }
      .hamburger {
        display: block;
      }
      .lang-btn{
        border-width: 0;
        padding: 0;
      }
      .menu {
        position: fixed;
        right: 20px;
        top: 50px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        border-radius: 18px;
        background: #3E3E3E;
        box-shadow: var(--shadow);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: .25s ease;
        min-width: 150px;
        height: auto;
      }
      .menu a::before{
        position: absolute;
        content: "";
        width: 20px;
        height: 20px;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
      }
      .menu a:nth-child(1)::before{background: url(../images/h5/menu-7-icon.png) no-repeat;background-size: 100%;}
      .menu a:nth-child(2)::before{background: url(../images/h5/menu-1-icon.png) no-repeat;background-size: 100%;}
      .menu a:nth-child(3)::before{background: url(../images/h5/menu-2-icon.png) no-repeat;background-size: 100%;}
      .menu a:nth-child(4)::before{background: url(../images/h5/menu-3-icon.png) no-repeat;background-size: 100%;}
      .menu a:nth-child(5)::before{background: url(../images/h5/menu-4-icon.png) no-repeat;background-size: 100%;}
      .menu a:nth-child(6)::before{background: url(../images/h5/menu-5-icon.png) no-repeat;background-size: 100%;}
      .menu a:nth-child(7)::before{background: url(../images/h5/menu-6-icon.png) no-repeat;background-size: 100%;}
      .menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .menu a {
        position: relative;
        padding: 8px 0;
        padding-left: 30px;
        color: #fff!important;
      }
      .menu a.active, .menu a:hover{
        color: var(--primary)!important;
      }
      .menu a.active::after, .menu a:hover::after{
        background: transparent;
      }
      .templates-wrap .templates-items{
        flex: 0 0 100%; /* 每页1张，减去gap */
      }
      .arrow.prev{
        left: 3%;
      }
      .arrow.next{
        right: 3%;
      }
      .lang-btn.tryNow{display: none;}
      .btn.primary-2{
        display: block;
        background: linear-gradient(90deg, #426BFA 0%, #CE50FC 100%);
        line-height: 42px;
        color: #fff!important;
        text-align: center;
        border: none;
      }
      .route-dialog{width:calc(100% - 30px);max-width: 420px;}
      .route-header{height:52px;}
      .route-header h3{font-size:18px;font-weight:600;}
      .route-close{width:20px;height:20px;}
      .route-tabs button{width:124px;height:32px;}
      .route-tabs button img{width:20px;height:20px;}
      .route-list{padding:0 10px;height: 315px;}
      .route-item{height:56px;border-radius:0px;padding:0 10px;margin-bottom:8px;}
      .route-no{width:40px;height:33px;}
      .route-name{flex:1;font-size:14px;font-weight:400;color:#000;padding:0 12px;}
      .route-enter{width:92px;height:32px;border-radius:32px;font-size:14px;}
      .route-pagination{display:flex;justify-content:center;gap:10px;padding:14px 0 20px;}
      .route-pagination button{width:30px;height:30px;font-size: 14px;font-weight: 500;}
    }

    @media (max-width: 820px) {
      
      section {
        padding: 56px 0;
      }
      
      .hero .container {
        padding: 44px 0;
      }

      .screen {
        height: 250px;
      }

      .mock-hero {
        padding: 14px;
      }

      .mock-title {
        font-size: 23px;
      }
      
      .dashboard {
        flex: 1;
        /* grid-template-columns: 70px 1fr; */
      }

      .service-grid{
        grid-template-columns: repeat(2, 1fr);
      }
      .templates {
        grid-template-columns: 1fr;
      }

      .contact-banner,
      footer .container {
        flex-direction: column;
        align-items: flex-start;
      }

      footer .container {
        align-items:center;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 28px, 1120px);
      }

      .cards-4,
      .cards-8,
      .tech-grid,
      .service-grid {
        grid-template-columns: 1fr;
      }
      .cards-4 .card {padding-right: 0;min-height:174px}
      .stat {
        flex: 1 1 96px;
        background: rgba(255, 255, 255, .72);
        box-shadow: none;
      }

      .screen {
        height: 218px;
        padding: 9px;
      }

      .person:nth-child(3) {
        display: none;
      }

      .mock-cards {
        grid-template-columns: repeat(2, 1fr);
      }
      section{
        padding: 60px 0 20px;
      }
      .section-title h2{
        font-size: 20px;
        font-weight: 600;
      }
      .section-title h2::before{
        width: 60px;
        height: 60px;
        left: -12px;
        top: -20px;
        font-weight: 400;
      }
      .actions .btn:not(.primary,.primary-1){
        color: #0784E8;
        border: none;
      }
      .contact-actions,
      .actions {
        width: 100%;
      }
      .actions {gap:8px;}
      .btn {
        flex: 1;
        line-height: 1;
      }
      .hero{
        min-height: 370px;
        padding: 0;
      }
      
      .fa-tabs{
        display: flex;
        padding: 4px;
        height: 38px;
        width: 100%;
        background: linear-gradient(90deg, #EAEAEA 0%, #F6F6F6 100%);
        border-radius: 38px;
        margin-bottom: 12px;
      }
      .fa-tabs .fa-tab{
        flex: 1;
        display: flex;
        gap: 4px;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        border-width: 0;
        background: transparent; 
        padding: 0 8px;
      }
      .fa-tabs .fa-tab i{
        font-size: 14px;
        width: 14px;
        height: 14px;
        display: none;
        flex-shrink: 0;
      }
      .fa-tabs .fa-tab i.fa-globe{
        background: url(../images/h5/fa-1-icon.png) no-repeat center;
        background-size: 100%;
      }
      .fa-tabs .fa-tab i.fa-server{
        background: url(../images/h5/fa-2-icon.png) no-repeat center;
        background-size: 100%;
      }
      .fa-tabs .fa-tab i.fa-gamepad{
        background: url(../images/h5/fa-3-icon.png) no-repeat center;
        background-size: 100%;
      }
      .fa-tabs .fa-tab i.fa-cogs{
        background: url(../images/h5/fa-4-icon.png) no-repeat center;
        background-size: 100%;
      }
      .fa-tabs .fa-tab.active{
        background: linear-gradient(180deg, #8C90FF 0%, #3564F9 100%);
        border-radius: 38px;
        color: #fff;
      }
      .fa-tabs .fa-tab.active i{
        display: block;
      }
      .card{
        display: none;
        background: url(../images/h5/fa-bg.png) no-repeat center;
        background-size: 100% 100%;
        padding-top: 0;
      }
      .card.active{
        display: flex;
        flex-direction: row;
        align-items: center;
      }
      .card p{
        line-height: 2;
      }
      .en .card p{line-height: 1.5;}
      .card .ill{
        flex-shrink: 0;
        width: 160px;
        height: 160px;
      }
      .card img{
        width: 160px;
        height: 160px;
      }
      .card h3{line-height: 32px;margin-bottom: 0;font-size: 16px}
      .section-title{
        margin: 0 10px 17px;
        padding-left: 0px;
      }
      .tabs{
        gap: 6px;
      }
      .tabs .tab{
        flex: 1;
        min-height: 38px;
        font-size: 12px;
        font-weight: 400;
        padding: 0;
        border-radius: 8px;
        border-color: #2563EB;
      }
      .tabs .tab.active{
        background: #2563EB;
      }
      .product-panel{
        padding: 0 6px;
        background: transparent;
        box-shadow: none;
      }
      .product-panel h3{
        font-size: 20px;
        text-align: center;
        margin-bottom: 15px;
      }
      .feature-list li{
        padding: 4px 18px;
        font-size: 14px;
        font-weight: 400;
        border-radius: 0;
        position: relative;
        padding-left: 38px;
      }
      .feature-list li::before{
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        left: 10px;
        top: 50%;
        margin-top: -8px;
        background: url(../images/h5/checked-icon.png) no-repeat center;
        background-size: 100% 100%;
      }
      .hero .container, .product-wrap{
        gap: 20px;
      }
      .es-contain .es-tabs{
        display: flex;
        flex-direction: column;
        gap: 8px; 
        width: 80px;
      }
      .es-contain .es-tabs .es-tab{
        width: 80px;
        height: 32px;
        background: #F5F9FF;
        border-radius: 4px;
        text-align: center;
        line-height: 10px;
        font-size: 12px;
        font-weight: 400;
        color: #5080FC;
        border: 1px solid #EEEFFD;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
      }
      .es-contain .es-tabs .es-tab.active{
        background: #5080FC;
        color: #fff;
        border-color: #5080FC;
      }
      .es-contain .cards-8 .card{
        flex-direction: column;
        align-items: normal;
        padding-top: 10px;
        background: url(../images/h5/es-bg.png) no-repeat center;
        background-size: 100% 100%;
      }
      .es-contain .cards-8 .card p{
        max-width: 170px;
      }
      .es-contain .cards-8 .card .ill,.es-contain .cards-8 .card img{
        width: 200px;
        height: 200px;
      }
      .es-tab i{display: block;flex-shrink: 0;margin-left: 8px;}
      .es-tab i.es-cp{ width: 20px;height: 20px;background: url(../images/h5/cp-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab i.es-dz{ width: 20px;height: 20px;background: url(../images/h5/dz-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab i.es-qp{ width: 20px;height: 20px;background: url(../images/h5/qp-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab i.es-by{ width: 20px;height: 20px;background: url(../images/h5/by-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab i.es-zr{ width: 20px;height: 20px;background: url(../images/h5/zr-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab i.es-ty{ width: 20px;height: 20px;background: url(../images/h5/ty-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab i.es-dj{ width: 20px;height: 20px;background: url(../images/h5/dj-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab i.es-ts{ width: 20px;height: 20px;background: url(../images/h5/ts-icon.png) no-repeat center;background-size: 100% 100%;}

      .es-tab.active i.es-cp{ width: 20px;height: 20px;background: url(../images/h5/cp-active-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab.active i.es-dz{ width: 20px;height: 20px;background: url(../images/h5/dz-active-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab.active i.es-qp{ width: 20px;height: 20px;background: url(../images/h5/qp-active-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab.active i.es-by{ width: 20px;height: 20px;background: url(../images/h5/by-active-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab.active i.es-zr{ width: 20px;height: 20px;background: url(../images/h5/zr-active-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab.active i.es-ty{ width: 20px;height: 20px;background: url(../images/h5/ty-active-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab.active i.es-dj{ width: 20px;height: 20px;background: url(../images/h5/dj-active-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab.active i.es-ts{ width: 20px;height: 20px;background: url(../images/h5/ts-active-icon.png) no-repeat center;background-size: 100% 100%;}
      .es-tab span{display: block;flex:1;margin-right: 8px;}
      #toggle-h5{ display: flex;margin: 0 auto 30px; width: 100%; max-width: 420px;padding:0;}
      #toggle, .tech .tech-grid,.service-grid{ display: none;}
      .tech{
        background: url(../images/h5/tech-bg.png) no-repeat;
        background-size: 100%;
      }
      
      .tech .section-title p{color: #fff;}
      .tech .tips{color: rgba(255, 255, 255, 0.7);font-size: 10px; text-align: center;display: block;}
      .swipe {
        width: 100%;
        height: 250px;
        overflow: hidden;
        position: relative;
        display: block!important;
      }

      .swipe-track {
        display: flex;
        height: 100%;
        transition: transform 0.3s ease;
      }

      .swipe-item {
        flex-shrink: 0;
        width: 100%;
        height: 200px;
        font-size: 50px;
        color: #fff;
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        justify-content: center;
        background: linear-gradient(135deg, rgba(15, 41, 94, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
        border-radius: 14px;
        padding: 25px 35px;
      }
      .swipe-item img{
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
      }
      .swipe-item h3{
        font-size: 18px;
        margin-bottom: 10px;
      }
      .swipe-item p{
        font-size: 12px;
        position: relative;
        text-indent: 14px;
        color: #99A1AF;

      }
      .swipe-item p::before{
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 6px;
        background: #4BD7FA;
      }

      .dots {
        position: absolute;
        left: 50%;
        bottom: 15px;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
      }

      .dot {
        width: 7px;
        height: 7px;
        border-radius: 7px;
        background: rgba(255,255,255,.5);
        cursor: pointer;
      }

      .dot.active {
        width: 23px;
        background: #63D8FF;
      }
      #service{
        background: #E5F0FD;
      }
      .service-panel{
        display: flex;
        flex-direction: column;
        gap: 25px;
      }
      .service-panel .panel-item{
        position: relative;
        display: flex;
        gap: 18px;
      }
      
      .service-panel .panel-item .left-num{
        width: 40px;
        height: 40px;
        border-radius: 40px;
        background: #fff;
        font-weight: 600 ;
        font-size: 20px;
        line-height: 36px;
        text-align: center;
        flex-shrink: 0;
        margin-top: 10px;
        color: #167AFC;
        border: 1.2px solid #FFFFFF;
        box-shadow: 0px 2px 3px 0px #5061E81A;
      }
      .service-panel .panel-item:not(:last-child) .left-num::before{
        content: "";
        position: absolute;
        left: 20px;
        bottom: 0;
        transform: translate(-50%, 22px);
        width: 2px;
        height: calc(100% - 40px);
        background: #67B6FF;
      }
      .service-panel .panel-item:not(:last-child) .left-num::after{
        content: "";
        position: absolute;
        left: 20px;
        bottom: -30px;
        width: 6px;
        height: 6px;
        transform: translate(-50%,-50%);
        background: #67B6FF;
        border-radius: 4px;
      }
      .service-panel .panel-item .right-content{
        background-color: #F0F6FE;
        padding: 20px;
        border-radius: 16px;
        display: flex;
        gap: 10px;
        border: 1px solid #FFFFFF;
        flex: 1;
        align-items: center;
        min-height: 110px; 
        position: relative;
      }
      .service-panel .panel-item .right-content img{
        width: 56px;
        height: 56px;
      }
      .service-panel .panel-item .right-content p{
        font-weight: 400;
        font-size: 11px;
        line-height: 20px;
        color: #5C6F83;

      }
      .service-panel .panel-item.active .left-num{
        color: #fff;
        background: linear-gradient(90deg, #38A7FE 3.51%, #5080FC 97.68%);
        border: 1px solid;
        border-image-source: linear-gradient(180deg, #CAE7FF 0%, #FFFFFF 99.82%);
      }
      .service-panel .panel-item.active .right-content{
        background: linear-gradient(90deg, #38A7FE 3.51%, #5080FC 97.68%);
      }
      .service-panel .panel-item.active .right-content p,.service-panel .panel-item.active .right-content h4{
        color: #fff;
      }
      .service-panel .panel-item .right-content::after {
        content: '';
        position: absolute;
        left: -10px;
        top: 0;
        transform: translateY(20px);

        width: 0;
        height: 0;

        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-right: 10px solid #fff;
      }
      .service-panel .panel-item.active .right-content::after{
        border-right-color: #38A7FE;
      }
      .service-panel-2{
        display: flex;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.42);
        border: 1.2px solid #FFFFFF;
        padding: 18px 0 10px;
        margin-top: 20px;
      }
      .service-panel-2 .panel-item{
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        word-break: break-all;
        padding: 0 10px;
      }
      .service-panel-2 .panel-item img{
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
      }
      .service-panel-2 .panel-item p{
        font-size: 10px;
        color: #5C6F83;
        line-height: 1;
      }
      .service-panel-2 .panel-item h6{
        line-height: 1;
        margin-bottom: 10px;
      }
      .service-panel-2 .panel-item:nth-child(2)::before,.service-panel-2 .panel-item:nth-child(2)::after{
        content: "";
        position: absolute;
        top:50%;
        transform: translateY(-50%);
        width:0.6px;
        height: 40px;
        background: rgba(210, 214, 234, 0.8);
      }
      .service-panel-2 .panel-item:nth-child(2)::before{
        left: 0;
      }
      .service-panel-2 .panel-item:nth-child(2)::after{
        right: 0;
      }
      .contact-banner{
        margin-top: 26px;
        width: calc(100% + 28px);
        border-radius: 0;
        margin-left: -14px;
      }
      .contact-banner::after{background-position-x: 10%;}
      .contact-banner p{color: #fff;}
      .contact-actions{flex-direction: row-reverse;}
      .contact-actions .btn.primary-1{background: linear-gradient(90deg, #542AFF 6.86%, #1BF7FF 100%);}
      .actions-stats-wrap{
        flex-direction: column-reverse;
        gap: 13px;
      }
      .hero h1{
        background: linear-gradient(180deg, #DB6FFF 0%, #0549F9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        font-weight: 800;
        font-style: Extra Bold;
        font-size: 30px;
        line-height: 42px;
        letter-spacing: 42%;
        vertical-align: middle;
      }
      .hero h3{
        font-weight: 600;
        font-style: Semibold;
        font-size: 22px;
        line-height: 42px;
        letter-spacing: 10%;
        vertical-align: middle;
        margin: 0;
      }
      .btn.primary-2{min-width: 50%;}
      .stats{gap: 8px;}
    }