/* Ready to Start Investing? - Figma node 2307:20666 */

.pricing-cta {
  background: var(--grey-pure-white);
  padding: 0 0 64px;
}

.pricing-cta__panel {
  background: var(--grey-pure-white);
  border: 1px solid #ededed;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  border-radius: 32px;
  padding: 64px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.pricing-cta__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: #121212;
}

.pricing-cta__desc {
  font-size: 16px;
  line-height: 1.5;
  color: #4d4d4d;
  max-width: 616px;
}

.pricing-cta__form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  width: 100%;
  max-width: 960px;
}

.pricing-cta__phone {
  flex: 1 1 240px;
  min-width: 180px;
  max-width: 280px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-pure-white);
  border: 1px solid var(--grey-light-grey);
  box-shadow: 0 0 11.5px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 14px 19px;
  height: 52px;
}

.pricing-cta__phone span {
  font-size: 16px;
  font-weight: 500;
  color: #121212;
}

.pricing-cta__phone input {
  flex: 1 1 0;
  min-width: 0;
  border: none;
  background: none;
  font-family: var(--font-base);
  font-size: 16px;
  color: #4b5563;
}

.pricing-cta__form .g-recaptcha,
.pricing-cta__form > div.my-3 {
  flex-shrink: 0;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 !important;
}

.pricing-cta__submit {
  flex-shrink: 0;
  white-space: nowrap;
  box-sizing: border-box;
  background: var(--primary-blue);
  border: 1px solid #004c84;
  border-radius: 12px;
  padding: 14.5px 24px;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-pure-white);
  height: 52px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.pricing-cta__submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(0, 89, 154, 0.3);
}

.pricing-cta__submit:active {
  transform: translateY(0);
  filter: brightness(0.92);
  box-shadow: none;
}

.pricing-cta__submit:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

  @media (max-width: 767px) {
  .pricing-cta {
    padding-bottom: 48px;
  }

  .pricing-cta__panel {
    padding: 32px 16px;
  }

  .pricing-cta__title {
    font-size: 24px;
  }

  .pricing-cta__form {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .pricing-cta__phone {
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
  }

  .pricing-cta__phone span,
  .pricing-cta__phone input {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .pricing-cta__submit {
    height: 44px !important;
    font-size: 15px !important;
  }

  /* Rendered at its normal, undistorted size - no scaling/resizing. */
  .pricing-cta__form > div.my-3 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 4px auto !important;
    width: 100% !important;
    pointer-events: auto !important;
    position: relative !important;
  }

  .pricing-cta__form .g-recaptcha {
    pointer-events: auto !important;
    position: relative !important;
  }

  .pricing-cta__form .g-recaptcha iframe {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
  }

  /* Ensure Google reCAPTCHA challenge popup overlays render above sticky bar without altering native iframe coordinates */
  body > div[style*="z-index: 2000000000"],
  body > div[style*="2000000000"],
  div[style*="position: absolute"][style*="z-index: 2000000000"] {
    z-index: 2147483647 !important;
  }
}
