<style>
  @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700;900&family=Plus+Jakarta+Sans:wght@400;700&display=swap');
 
  .p1p-cta * {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
  }
 
  /* Outer wrapper — 30px whitespace, clips bleed */
  .p1p-cta-outer {
    padding: 30px !important;
    overflow: hidden !important;
    display: flex !important;
    justify-content: center !important;
  }
 
  /* Banner — same dimensions as hero module */
  .p1p-cta {
    position: relative !important;
    background-color: #FFBA17 !important;
    border-radius: 12px !important;
    overflow: visible !important;
    width: 100% !important;
    max-width: 1240px !important;
    height: 484px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 220px !important;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif !important;
  }
 
  /* Decorative images */
  .p1p-cta__deco {
    position: absolute !important;
    pointer-events: none !important;
    user-select: none !important;
    display: block !important;
    top: 50% !important;
  }
 
  /* Microphone — left, high up, bleeds off left */
  .p1p-cta__deco--mic {
    left: -160px !important;
    top: -80px !important;
    bottom: auto !important;
    transform: none !important;
    width: 440px !important;
    height: auto !important;
    z-index: 3 !important;
  }
 
  /* Target — bottom right, bleeds off bottom and right */
  .p1p-cta__deco--target {
    right: -50px !important;
    top: auto !important;
    bottom: -60px !important;
    transform: none !important;
    width: 400px !important;
    height: auto !important;
    z-index: 3 !important;
  }
 
  /* Content */
  .p1p-cta__content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 780px !important;
    width: 100% !important;
  }
 
  /* Heading — IBM Plex Sans 700 */
  .p1p-cta__heading {
    font-size: clamp(36px, 5vw, 62px) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: #111111 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 20px !important;
    font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
 
  /* Subtext — Plus Jakarta Sans 400 */
  .p1p-cta__sub {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333333 !important;
    font-weight: 400 !important;
    margin-bottom: 32px !important;
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif !important;
  }
 
  /* Button — IBM Plex Sans 700 */
  .p1p-cta__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 13px 28px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    border: 2px solid transparent !important;
    z-index: 0 !important;
    outline: none !important;
    background-color: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    transition:
      background-color 0.22s ease,
      color 0.22s ease,
      border-color 0.22s ease,
      transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.22s ease !important;
  }
 
  /* Shimmer sweep */
  .p1p-cta__btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -75% !important;
    width: 50% !important;
    height: 100% !important;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.18) 50%,
      transparent 100%
    ) !important;
    transform: skewX(-20deg) !important;
    z-index: 1 !important;
    opacity: 0 !important;
    transition: left 0.5s ease, opacity 0.3s ease !important;
  }
 
  .p1p-cta__btn:hover::before {
    left: 130% !important;
    opacity: 1 !important;
  }
 
  .p1p-cta__btn span {
    position: relative !important;
    z-index: 2 !important;
    font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif !important;
  }
 
  .p1p-cta__btn:hover {
    background-color: #2a2a2a !important;
    border-color: #2a2a2a !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      0 0 0 3px rgba(255,255,255,0.15) !important;
  }
 
  .p1p-cta__btn:active {
    transform: translateY(0) scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
  }
 
  /* Tablet */
  @media (max-width: 1024px) {
    .p1p-cta {
      padding: 0 260px !important;
      height: auto !important;
      min-height: 400px !important;
    }
 
    .p1p-cta__deco--mic {
      width: 220px !important;
      left: -16px !important;
      bottom: -20px !important;
    }
 
    .p1p-cta__deco--target {
      width: 200px !important;
      right: -16px !important;
      bottom: -20px !important;
    }
  }
 
  /* Mobile */
  @media (max-width: 767px) {
    .p1p-cta-outer {
      padding: 16px !important;
    }
 
    .p1p-cta {
      padding: 0 90px !important;
      height: auto !important;
      min-height: 280px !important;
    }
 
    .p1p-cta__deco--mic {
      display: none !important;
    }
 
    .p1p-cta__deco--target {
      display: none !important;
    }
 
    .p1p-cta__heading {
      font-size: clamp(22px, 6vw, 32px) !important;
      margin-bottom: 12px !important;
    }
 
    .p1p-cta__sub {
      font-size: 14px !important;
      margin-bottom: 20px !important;
    }
  }
</style>