<style>
  .hero-wrap {
    font-family: inherit;
    background: #353c4a;
    border-radius: 16px;
    padding: 4rem 3rem;
    box-sizing: border-box;
  }
  .hero-wrap * {
    font-family: inherit;
    box-sizing: border-box;
  }
  .hero-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  .hero-content {
    flex: 1 1 0;
    min-width: 0;
  }
  .hero-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hero-image svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
  }
  .hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a89af7;
    margin: 0 0 1rem 0;
  }
  .hero-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 1.25rem 0;
    max-width: 680px;
  }
  .hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0 0 2rem 0;
    max-width: 560px;
  }
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    margin-bottom: 2.25rem;
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
  }
  .hero-trust-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a89af7;
    flex-shrink: 0;
  }
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }
  .hero-btn-primary {
    display: inline-block;
    background: #3936EC;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
  }
  .hero-btn-primary:hover {
    background: #2d2bc0;
    color: #ffffff;
    text-decoration: none;
  }
  .hero-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.45);
    text-decoration: none;
    white-space: nowrap;
  }
  .hero-btn-secondary:hover {
    border-color: rgba(255,255,255,0.8);
    color: #ffffff;
    text-decoration: none;
  }
  @media (max-width: 900px) {
    .hero-layout {
      flex-direction: column;
      gap: 2.5rem;
    }
    .hero-image {
      justify-content: center;
      width: 100%;
    }
    .hero-image svg {
      max-width: 100%;
    }
  }
  @media (max-width: 600px) {
    .hero-wrap {
      padding: 2.5rem 1.5rem;
      border-radius: 10px;
    }
    .hero-heading {
      font-size: 2rem;
    }
    .hero-ctas {
      flex-direction: column;
      align-items: flex-start;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      text-align: center;
    }
  }
</style>