
  .voc-inquiry-cta,
  .voc-inquiry-cta * {
    box-sizing: border-box;
  }

  .voc-inquiry-cta {
    position: relative;
    isolation: isolate;

    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    overflow: hidden;
    padding: 78px 24px;

    background:
      radial-gradient(
        circle at 85% 20%,
        rgba(255, 255, 255, 0.10) 0,
        rgba(255, 255, 255, 0) 30%
      ),
      linear-gradient(
        135deg,
        #151d4a 0%,
        #2030a8 100%
      );

    color: #ffffff;
  }

  .voc-inquiry-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -120px;
    right: -80px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
  }

  .voc-inquiry-cta::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -160px;
    left: -100px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
  }

  .voc-inquiry-cta__content {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }

  .voc-inquiry-cta__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #f2c400;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2px;
  }

  .voc-inquiry-cta h2 {
    margin: 0;
    color: #ffffff;
    font-family: inherit;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .voc-inquiry-cta p {
    max-width: 800px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
  }

  .voc-inquiry-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
  }

  .voc-inquiry-cta__button {
    display: inline-flex;
    min-width: 176px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;

    border: 1px solid transparent;
    border-radius: 26px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;

    transition:
      background-color 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .voc-inquiry-cta__button:hover {
    transform: translateY(-2px);
  }

  .voc-inquiry-cta__button:focus-visible {
    outline: 3px solid rgba(242, 196, 0, 0.45);
    outline-offset: 3px;
  }

  .voc-inquiry-cta__button--primary {
    border-color: #f2c400;
    background-color: #f2c400;
    color: #111111;
  }

  .voc-inquiry-cta__button--primary:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #2030a8;
  }

  .voc-inquiry-cta__button--secondary {
    border-color: rgba(255, 255, 255, 0.85);
    background-color: transparent;
    color: #ffffff;
  }

  .voc-inquiry-cta__button--secondary:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #2030a8;
  }

  @media screen and (max-width: 767px) {
    .voc-inquiry-cta {
      padding: 56px 20px;
    }

    .voc-inquiry-cta__eyebrow {
      margin-bottom: 10px;
      font-size: 12px;
    }

    .voc-inquiry-cta h2 {
      font-size: 30px;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .voc-inquiry-cta p {
      margin-top: 14px;
      font-size: 14px;
      line-height: 1.65;
    }

    .voc-inquiry-cta__buttons {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      margin-top: 24px;
    }

    .voc-inquiry-cta__button {
      width: 100%;
      min-height: 48px;
    }

    .voc-inquiry-cta::before {
      top: -130px;
      right: -170px;
    }

    .voc-inquiry-cta::after {
      bottom: -230px;
      left: -200px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .voc-inquiry-cta__button {
      transition: none;
    }

    .voc-inquiry-cta__button:hover {
      transform: none;
    }
  }
