@import url("https://cdn.jsdelivr.net/gh/policypal1/crawlspace@33c540bbf21e51aac76215f60af4f56d9a4e2f2a/style.css");

/* =========================================================
   TARGETED FINAL FIXES
   Desktop help strip + mobile estimate form only.
   Everything else inherits unchanged from the current main commit.
   ========================================================= */

/* DESKTOP ONLY */
@media (min-width: 701px) {
  /* Make the blue accent run straight across the full help strip. */
  .project-help-strip::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 5px !important;
    background: #159fe7 !important;
    clip-path: none !important;
    z-index: 3 !important;
    pointer-events: none !important;
  }

  /* Make the Call / Text CTA stand out more without changing the strip layout. */
  .project-help-phone {
    min-height: 54px !important;
    padding: 0 24px !important;
    border: 1px solid rgba(255,255,255,.72) !important;
    background: #1A5A97 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 26px rgba(3,18,41,.24) !important;
    font-size: 14px !important;
    font-weight: 850 !important;
  }

  .project-help-phone:hover,
  .project-help-phone:focus-visible {
    background: #031229 !important;
    border-color: #ffffff !important;
    transform: translateY(-1px) !important;
  }
}

/* MOBILE ONLY */
@media (max-width: 700px) {
  /* Restore the helper copy between the quote heading and call/text option. */
  .quote-copy > p:not(.quote-eyebrow) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 17px 0 0 !important;
  }

  /* Give the Request My Free Estimate CTA the same comfortable button spacing. */
  .quote-submit {
    width: 100% !important;
    min-height: 60px !important;
    padding: 0 24px !important;
    line-height: 1.2 !important;
  }
}

/* FINAL MOBILE DIAGNOSIS BACKGROUND CLEANUP */
@media (max-width: 700px) {
  /* Keep the section dark blue, but remove the mobile image/texture background. */
  .diagnosis-section {
    background: #031229 !important;
  }
}

/* REMOVE DECORATIVE BACKGROUND CIRCLES ON MOBILE ONLY */
@media (max-width: 700px) {
  .diagnosis-section::before,
  .diagnosis-section::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    background: none !important;
  }
}

/* =========================================================
   ABOUT ICON IMAGE CONTAINMENT FIX
   Prevent the new WebP icons from rendering at intrinsic size.
   Applies to desktop + mobile only inside the About proof points.
   ========================================================= */
.about-points .about-point .why-reference-icon {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  flex: 0 0 50px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.about-points .about-point .why-reference-icon > img.promise-icon-img {
  display: block !important;
  position: static !important;
  inset: auto !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 0 !important;
  max-width: 32px !important;
  min-height: 0 !important;
  max-height: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

@media (max-width: 700px) {
  .about-points .about-point .why-reference-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    flex-basis: 46px !important;
  }

  .about-points .about-point .why-reference-icon > img.promise-icon-img {
    width: 29px !important;
    height: 29px !important;
    max-width: 29px !important;
    max-height: 29px !important;
  }
}

/* =========================================================
   FINAL ABOUT SECTION UPDATE
   Remove the photo column and let the copy/proof points use the section width.
   ========================================================= */
.about-inner.about-inner-no-visual {
  display: block !important;
  grid-template-columns: 1fr !important;
  width: min(1180px, calc(100% - 48px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-inner-no-visual .about-copy {
  width: 100% !important;
  max-width: 920px !important;
  margin: 0 auto !important;
}

.about-inner-no-visual .about-promise-copy strong,
.about-inner-no-visual .about-promise-copy span {
  display: block !important;
}

.about-inner-no-visual .about-promise-copy strong {
  margin-bottom: 10px !important;
  color: #1A5A97 !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 850 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
}

.about-inner-no-visual .about-promise-copy span + span {
  margin-top: 14px !important;
}

@media (max-width: 700px) {
  .about-inner.about-inner-no-visual {
    width: calc(100% - 28px) !important;
  }

  .about-inner-no-visual .about-copy {
    max-width: none !important;
  }

  .about-inner-no-visual .about-promise-copy strong {
    margin-bottom: 8px !important;
    font-size: 13px !important;
  }

  .about-inner-no-visual .about-promise-copy span + span {
    margin-top: 12px !important;
  }
}

