.bm-proof-cta {
  --bm-green: #72b840;
  --bm-dark: #303d3b;
  --bm-muted: #5f6d69;

  background: #ffffff;
  color: var(--bm-dark);
  font-family: "Avenir Next", Avenir, Arial, sans-serif;
  max-width: 100%;
  overflow: hidden;
  padding: 8px 0 78px;
  width: 100%;
}

.bm-proof-cta,
.bm-proof-cta * {
  box-sizing: border-box;
}

/* Makes the section full width inside a constrained HubSpot row */
@media (min-width: 681px) {
  .bm-proof-cta {
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
    position: relative;
    width: 100vw;
  }
}

.bm-proof-cta__container {
  margin-inline: auto;
  width: min(1180px, calc(100% - 48px));
}

.bm-proof-cta__grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Larger proof-point cards */
.bm-proof-cta__item {
  background: #e3f1d9;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 185px;
  min-width: 0;
  padding: 36px 28px;
}

.bm-proof-cta__item strong {
  color: var(--bm-dark);
  display: block;
  font-size: 21px !important;
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin-bottom: 14px;
  min-height: 26px;
  white-space: nowrap;
}

.bm-proof-cta__item span {
  color: var(--bm-muted);
  display: block;
  font-size: 16px !important;
  line-height: 1.55;
}

/* Button row */
.bm-proof-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.bm-proof-cta__button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 16px !important;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.bm-proof-cta__button--primary {
  background: var(--bm-green);
  box-shadow: 0 10px 25px rgba(114, 184, 64, 0.28);
  color: #173019;
}

.bm-proof-cta__button--primary:hover,
.bm-proof-cta__button--primary:focus-visible {
  background: #7bc64a;
  color: #173019;
  transform: translateY(-2px);
}

.bm-proof-cta__button--secondary {
  background: #ffffff;
  border-color: var(--bm-dark);
  color: var(--bm-dark);
}

.bm-proof-cta__button--secondary:hover,
.bm-proof-cta__button--secondary:focus-visible {
  background: var(--bm-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 980px) {
  .bm-proof-cta__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bm-proof-cta__item {
    min-height: 170px;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .bm-proof-cta {
    left: auto;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    padding: 8px 0 60px;
    width: 100%;
  }

  .bm-proof-cta__container {
    width: min(100% - 30px, 1180px);
  }

  .bm-proof-cta__grid {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .bm-proof-cta__item {
    min-height: 0;
    padding: 28px 24px;
  }

  .bm-proof-cta__item strong {
    font-size: 18px !important;
    margin-bottom: 10px;
  }

  .bm-proof-cta__item span {
    font-size: 15px !important;
  }

  .bm-proof-cta__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .bm-proof-cta__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bm-proof-cta__button {
    transition: none;
  }
/* Optional headline above the proof boxes */
.bm-proof-cta__headline {
  max-width: 900px;
  margin: 0 auto 32px;
  color: #2f3d39;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  text-align: center;
}

/* Optional source/supporting line below the proof boxes */
.bm-proof-cta__supporting-text {
  max-width: 900px;
  margin: 22px auto 0;
  color: #52605c;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

/* Restore the original green primary button */
.bm-proof-cta__actions .bm-proof-cta__button--primary,
.bm-proof-cta__actions .bm-proof-cta__button--primary:visited,
.bm-proof-cta__actions .bm-proof-cta__button--primary:hover,
.bm-proof-cta__actions .bm-proof-cta__button--primary:focus {
  background-color: #72b840 !important;
  border-color: #72b840 !important;
  color: #17251c !important;
}

/* Preserve the original secondary button */
.bm-proof-cta__actions .bm-proof-cta__button--secondary,
.bm-proof-cta__actions .bm-proof-cta__button--secondary:visited {
  background-color: transparent !important;
  border-color: #2f3d39 !important;
  color: #2f3d39 !important;
}

.bm-proof-cta__actions .bm-proof-cta__button--secondary:hover,
.bm-proof-cta__actions .bm-proof-cta__button--secondary:focus {
  background-color: #eef6e9 !important;
  border-color: #2f3d39 !important;
  color: #2f3d39 !important;
}

@media (max-width: 680px) {
  .bm-proof-cta__headline {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .bm-proof-cta__supporting-text {
    margin-top: 20px;
    font-size: 13px;
  }
}
  /* More space between the proof boxes and source line */
.bm-proof-cta__supporting-text {
  margin: 32px auto 0 !important;
}

/* More space between the source line and buttons */
.bm-proof-cta__actions {
  margin-top: 32px !important;
  margin-bottom: 48px !important;
}

/* Restore the Start a project button to Baesman green */
.bm-proof-cta__actions a.bm-proof-cta__button--primary,
.bm-proof-cta__actions a.bm-proof-cta__button--primary:link,
.bm-proof-cta__actions a.bm-proof-cta__button--primary:visited,
.bm-proof-cta__actions a.bm-proof-cta__button--primary:hover,
.bm-proof-cta__actions a.bm-proof-cta__button--primary:focus,
.bm-proof-cta__actions a.bm-proof-cta__button--primary:active {
  background: #72b840 !important;
  background-color: #72b840 !important;
  border: 2px solid #72b840 !important;
  color: #17251c !important;
}

/* Prevent another style from placing a white layer over the button */
.bm-proof-cta__button--primary::before,
.bm-proof-cta__button--primary::after {
  background: transparent !important;
}

/* Mobile spacing */
@media (max-width: 680px) {
  .bm-proof-cta__supporting-text {
    margin-top: 26px !important;
  }

  .bm-proof-cta__actions {
    margin-top: 26px !important;
    margin-bottom: 36px !important;
  }
}