html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.snappy-proof-section {
  background: #fff7f3 !important;
  padding: 104px 24px !important;
}

.snappy-proof-container {
  width: min(100%, 1280px) !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.snappy-proof-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.snappy-proof-eyebrow {
  color: #172525 !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  margin-bottom: 18px;
}

.snappy-proof-title {
  max-width: 760px !important;
  color: #f05a14 !important;
  font-size: clamp(42px, 5vw, 76px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
}

.snappy-proof-intro {
  color: #354141;
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
}

.snappy-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.snappy-proof-feature,
.snappy-proof-card,
.snappy-proof-stats > div {
  border: 1px solid rgba(23, 37, 37, 0.09);
  background: #fff;
  box-shadow: 0 20px 60px rgba(23, 37, 37, 0.08);
}

.snappy-proof-feature {
  min-height: 560px;
  border-radius: 24px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.snappy-proof-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 90, 20, 0.11), rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
}

.snappy-proof-mark {
  color: #f05a14;
  font-size: 108px;
  line-height: 0.7;
  font-weight: 800;
  position: relative;
}

.snappy-proof-feature-quote {
  color: #172525;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.14;
  font-weight: 650;
  margin: 28px 0 44px;
  position: relative;
}

.snappy-proof-meta {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: end;
  position: relative;
}

.snappy-proof-meta strong,
.snappy-proof-card-footer strong {
  display: block;
  color: #0d1717;
  font-size: 20px;
  line-height: 1.2;
}

.snappy-proof-meta span,
.snappy-proof-card-footer span {
  display: block;
  color: #667170;
  font-size: 15px;
  line-height: 1.35;
  margin-top: 5px;
}

.snappy-proof-badge {
  border-radius: 999px;
  background: #172525;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 16px;
  white-space: nowrap;
}

.snappy-proof-cards {
  display: grid;
  gap: 18px;
}

.snappy-proof-card {
  border-radius: 18px;
  padding: 27px 30px;
}

.snappy-proof-card-top {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.snappy-proof-card-top span {
  width: fit-content;
  border-radius: 999px;
  background: #fff0e8;
  color: #d74807;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 11px;
}

.snappy-proof-card-top strong {
  color: #172525;
  font-size: 24px;
  line-height: 1.12;
}

.snappy-proof-card p {
  color: #2b3636;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 28px;
}

.snappy-proof-card-footer {
  border-top: 1px solid rgba(23, 37, 37, 0.1);
  padding-top: 18px;
}

.snappy-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.snappy-proof-stats > div {
  border-radius: 16px;
  padding: 22px 24px;
}

.snappy-proof-stats strong {
  display: block;
  color: #172525;
  font-size: 22px;
  line-height: 1.2;
}

.snappy-proof-stats span {
  display: block;
  color: #667170;
  font-size: 15px;
  line-height: 1.35;
  margin-top: 6px;
}

@media screen and (max-width: 991px) {
  .snappy-proof-section {
    padding: 78px 20px !important;
  }

  .snappy-proof-header,
  .snappy-proof-grid {
    grid-template-columns: 1fr;
  }

  .snappy-proof-header {
    gap: 20px;
    margin-bottom: 34px;
  }

  .snappy-proof-feature {
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  .snappy-proof-section {
    padding: 58px 16px !important;
  }

  .snappy-proof-title {
    font-size: 38px !important;
    line-height: 1.05 !important;
  }

  .snappy-proof-intro,
  .snappy-proof-card p {
    font-size: 16px;
  }

  .snappy-proof-feature,
  .snappy-proof-card {
    border-radius: 16px;
    padding: 24px;
  }

  .snappy-proof-feature-quote {
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 32px;
  }

  .snappy-proof-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .snappy-proof-card-top strong {
    font-size: 21px;
  }

  .snappy-proof-stats {
    grid-template-columns: 1fr;
  }
}

img {
  max-width: 100%;
}

@media (max-width: 767px) {
  body,
  .body-light,
  .page-wrapper,
  .main-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .navigation-main,
  .navigation,
  .navigation-container,
  .navigation-mob,
  .navigation-container-mob {
    width: 100%;
    max-width: 100%;
  }

  .brand,
  .mobilelogo,
  .footer3-logo-link {
    width: auto !important;
    max-width: 180px !important;
    padding-left: 0 !important;
  }

  .logo,
  .logo-desktop {
    width: 150px !important;
    max-width: 150px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .hero-content-container,
  .container-10,
  .testimonial-container,
  .container-2026,
  .container-large-2,
  .sp-container,
  .email-container,
  .gform-container,
  .new-price-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .trusted {
    max-width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .images-and-100 {
    min-width: 0;
    max-width: 176px;
    flex-shrink: 1;
    padding-left: 8px;
    padding-right: 8px;
  }

  .image-60 {
    max-width: 88px;
  }

  .text-block-32 {
    font-size: 17px !important;
    line-height: 1.1 !important;
  }

  .text-span-24 {
    font-size: 13px !important;
  }

  .header-div-text-and-button,
  .pricing-header-hero,
  .heading-and-body-text,
  .email-text-div,
  .gform-title,
  .hipaa-content,
  .div-block-40,
  ._2026-roles-header-and-body,
  ._2-text-holder {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .heading-28.homepage,
  .pricing-header,
  .heading-51,
  .new-h2-2026,
  .how-it-works-textt,
  .title-header-client-review,
  .faq-header,
  .calendly-header {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .heading-28.homepage {
    font-size: 32px !important;
    line-height: 1.18 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .pricing-header,
  .heading-51 {
    font-size: 32px !important;
    line-height: 1.15 !important;
  }

  .new-h2-2026,
  .how-it-works-textt,
  .title-header-client-review,
  .faq-header {
    font-size: 30px !important;
    line-height: 1.16 !important;
  }

  .supoorting-text,
  .supoorting-text.home,
  .paragraph-16,
  .text-block-29,
  .text-block-34,
  .body-text-hiw,
  .faq-answer-paragraph {
    max-width: 100% !important;
    font-size: 16px;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .max-width-full {
    width: 100% !important;
    max-width: 100% !important;
  }

  .div-block-35,
  .hipaa-img,
  .how-it-wrks-img,
  .rhs,
  .slack-3,
  .image-1,
  .image-2-3,
  .image-newest,
  .image-4,
  .image-5h {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .div-block-35 img,
  .hipaa-img img,
  .how-it-wrks-img img,
  .rhs img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .cta-link-button,
  .main-cta-onboard,
  .cta-button-no-fill {
    max-width: 100%;
  }

  .link-button-text,
  .text-in-onboard-button-finance {
    white-space: normal;
  }
}
