
  .neway-hero,
  .neway-hero * {
    box-sizing: border-box;
  }

  .neway-hero {
    width: 100vw;
    max-width: none;
    min-height: 720px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 24px;
    color: #f7fbff;
    font-family: Arial, Helvetica, sans-serif;
    background:
      url("//ueeshop.ly200-cdn.com/u_file/UPAY/UPAY802/2608/12/photo/e99a5946cddb4bcb0558638ec13ceb68.jpg")
      center center / cover no-repeat;
  }

  /* 左深右浅蓝色蒙版 */
  .neway-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(3, 27, 49, 0.95) 0%,
        rgba(4, 39, 66, 0.82) 38%,
        rgba(4, 44, 70, 0.42) 65%,
        rgba(3, 31, 52, 0.12) 100%
      ),
      linear-gradient(
        0deg,
        rgba(3, 28, 48, 0.42) 0%,
        transparent 50%
      );
  }

  .neway-hero__inner {
    width: min(1280px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .neway-hero__content {
    max-width: 850px;
  }

  .neway-hero__content > * {
    opacity: 0;
    transform: translateY(24px);
    animation: newayHeroReveal 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
  }

  .neway-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    color: #9ee8fb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation-delay: 0.1s !important;
  }

  .neway-hero__eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
  }

  .neway-hero h1 {
    margin: 34px 0 28px;
    color: #f7fbff;
    font-size: clamp(54px, 6.4vw, 88px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.06em;
    animation-delay: 0.24s !important;
  }

  .neway-hero h1 span {
    color: #8bd8f5;
  }

  .neway-hero__lead {
    max-width: 620px;
    margin: 0;
    color: #e1f0f8;
    font-size: 20px;
    line-height: 1.55;
    animation-delay: 0.4s !important;
  }

  .neway-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 42px;
    animation-delay: 0.56s !important;
  }

  .neway-button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.25s ease;
  }

  .neway-button:hover {
    transform: translateY(-3px);
  }

  .neway-button--primary {
    min-width: 304px;
    background: linear-gradient(100deg, #159bd2, #28abe0);
    box-shadow: 0 10px 28px rgba(0, 77, 115, 0.24);
  }

  .neway-button--outline {
    min-width: 205px;
    border-color: rgba(218, 240, 250, 0.85);
    background: rgba(4, 39, 65, 0.35);
  }

  .neway-hero__footer {
    position: absolute;
    z-index: 1;
    bottom: 32px;
    left: 24px;
    color: #d1e9f4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2;
    text-transform: uppercase;
  }

  .neway-hero__footer strong {
    color: #f3fbff;
  }

  @keyframes newayHeroReveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 900px) {
    .neway-hero {
      min-height: 680px;
    }

    .neway-hero h1 {
      font-size: clamp(50px, 9vw, 72px);
    }

    .neway-hero__footer {
      display: none;
    }
  }

  @media (max-width: 560px) {
    .neway-hero {
      min-height: 650px;
      padding: 72px 18px;
      background-position: 58% center;
    }

    .neway-hero h1 {
      margin: 28px 0 22px;
      font-size: 48px;
    }

    .neway-hero__lead {
      font-size: 17px;
    }

    .neway-hero__actions {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      margin-top: 34px;
    }

    .neway-button--primary,
    .neway-button--outline {
      width: 100%;
      min-width: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .neway-hero__content > * {
      opacity: 1;
      transform: none;
      animation: none;
    }
  }
