
:root {
  --hvfpr-slate: #2f3e46;
  --hvfpr-copper: #b86b45;
  --hvfpr-teal: #3a6b7f;
  --hvfpr-gray: #ced4da;
  --hvfpr-white: #f8f4f0;
  --hvfpr-yellow: #f2c94c;
  --hvfpr-green: #4a7c59;
}

html.hvfpr-open,
body.hvfpr-open {
  overflow: hidden;
}

.hvfpr-shell,
.hvfpr-shell input,
.hvfpr-shell textarea,
.hvfpr-shell button,
.hvfpr-shell select {
  font-family: inherit;
  font-style: inherit;
  letter-spacing: inherit;
}

.hvfpr-app { display: none; }
.hvfpr-app.is-open { display: block; }

.hvfpr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  z-index: 2147483000;
}

.hvfpr-shell {
  position: fixed;
  inset: 0;
  z-index: 2147483001;
  overflow: auto;
  background: transparent;
}

.hvfpr-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--hvfpr-slate);
  min-height: 88px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.hvfpr-header-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 88px;
  padding: 0 1rem;
}

.hvfpr-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
}

.hvfpr-logo img {
  width: auto;
  height: 48px;
  max-width: min(72vw, 320px);
  object-fit: contain;
}

.hvfpr-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--hvfpr-yellow);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
}

.hvfpr-stage {
  min-height: calc(100dvh - 88px);
  padding: 1.25rem 1rem 1rem;
}

.hvfpr-frame {
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hvfpr-card-wrap,
.hvfpr-step-card,
.hvfpr-card,
.hvfpr-card-inner {
  width: 100%;
}

.hvfpr-card {
  background: #fff;
  border: 0;
  border-radius: 28px;
  min-height: auto;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(47,62,70,.12);
  margin-inline: auto;
}

.hvfpr-step-card {
  width: 100%;
}

.hvfpr-card-inner {
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.hvfpr-top {
  padding: 1rem 1rem 0;
}

.hvfpr-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #64748b;
}

.hvfpr-progress-bar {
  margin-top: .75rem;
  height: 8px;
  background: rgba(206,212,218,.7);
  border-radius: 999px;
  overflow: hidden;
}

.hvfpr-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--hvfpr-yellow);
  transition: width .25s ease;
}

.hvfpr-body {
  padding: 1.25rem 1rem 1.25rem;
}

.hvfpr-kicker {
  font-size: .95rem;
  font-weight: 600;
  color: var(--hvfpr-copper);
}

.hvfpr-title {
  margin: .5rem 0 0;
  max-width: 440px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #33424a;
}

.hvfpr-content { margin-top: 1.5rem; }

.hvfpr-footer {
  border-top: 1px solid rgba(0,0,0,.05);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  padding: 1rem;
}

.hvfpr-top-inner,
.hvfpr-body-inner,
.hvfpr-footer-inner {
  width: 100%;
  margin-inline: auto;
}

.hvfpr-field-card,
.hvfpr-textarea-card,
.hvfpr-form-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.hvfpr-textarea-card {
  border: 0;
  padding: 0;
  box-shadow: none;
}

.hvfpr-label,
.hvfpr-mini-label {
  font-size: .92rem;
  font-weight: 600;
  color: var(--hvfpr-teal);
}
.hvfpr-mini-label { margin-bottom: .6rem; }

.hvfpr-text-input,
.hvfpr-textarea,
.hvfpr-form-card input[type="text"],
.hvfpr-form-card input[type="email"],
.hvfpr-form-card input[type="tel"] {
  width: 100%;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 14px;
  background: var(--hvfpr-white);
  padding: .9rem 1rem;
  outline: none;
  font-size: 16px;
}

.hvfpr-zip-input { letter-spacing: .12em; font-family: inherit; }

.hvfpr-textarea {
  min-height: 150px;
  resize: none;
  line-height: 1.75;
  border-radius: 1.5rem;
  padding: 1.15rem 1rem;
}

.hvfpr-text-input:focus,
.hvfpr-textarea:focus,
.hvfpr-form-card input:focus {
  border-color: var(--hvfpr-teal);
}

.hvfpr-stack > * + * { margin-top: .9rem; }
.hvfpr-detected,
.hvfpr-warning,
.hvfpr-subcopy {
  font-size: .95rem;
  line-height: 1.6;
}
.hvfpr-detected { color: #334155; }
.hvfpr-warning { color: var(--hvfpr-copper); }
.hvfpr-subcopy { color: #64748b; }


.hvfpr-step-card.hvfpr-step-0 .hvfpr-field-card {
  max-width: 400px;
}

.hvfpr-step-card.hvfpr-step-1 .hvfpr-textarea-card {
  max-width: 720px;
}

.hvfpr-step-card.hvfpr-step-3 .hvfpr-form-card,
.hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field-container {
  width: 100%;
  max-width: 560px;
}

.hvfpr-step-card.hvfpr-step-1 .hvfpr-suggested {
  max-width: 720px;
}

@media (min-width: 1024px) {
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-card {
    max-width: 920px;
    margin-inline: auto;
  }

  .hvfpr-step-card.hvfpr-step-3 .hvfpr-top-inner,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-body-inner,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-footer-inner {
    width: min(100%, 840px);
  }

  .hvfpr-step-card.hvfpr-step-3 .hvfpr-form-card,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field-container {
    width: 100%;
    max-width: 560px;
  }
}

.hvfpr-overline-small {
  margin-bottom: .5rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #64748b;
}

.hvfpr-chip-wrap {
  position: relative;
  max-width: 760px;
}

.hvfpr-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  max-width: 760px;
  overflow: hidden;
  transition: max-height .22s ease;
}

.hvfpr-chip-row.is-collapsed {
  max-height: 5.15rem;
}

.hvfpr-chip-row.is-expanded {
  max-height: 24rem;
}

.hvfpr-chip {
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  border-radius: 999px;
  padding: .5rem .78rem;
  font-size: .84rem;
  line-height: 1.15;
  color: #33424a;
  box-shadow: 0 3px 10px rgba(0,0,0,.04);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.hvfpr-chip:hover {
  border-color: var(--hvfpr-teal);
  background: rgba(58,107,127,.05);
}
.hvfpr-chip.is-active {
  border-color: var(--hvfpr-slate);
  background: var(--hvfpr-slate);
  color: #fff;
  box-shadow: 0 8px 18px rgba(47,62,70,.18);
}
.hvfpr-chip-clear {
  border-style: dashed;
}

.hvfpr-expand-link {
  margin-top: .7rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hvfpr-teal);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}
.hvfpr-expand-link:hover {
  color: var(--hvfpr-slate);
}

.hvfpr-timing-option {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1.45rem;
  padding: 1rem 1rem 1rem 1.05rem;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.hvfpr-timing-row {
  display: flex;
  align-items: center;
  gap: .95rem;
}
.hvfpr-timing-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  background: var(--hvfpr-white);
  color: var(--hvfpr-copper);
  font-size: 1.15rem;
}
.hvfpr-timing-option.is-active .hvfpr-timing-icon {
  background: rgba(255,255,255,.1);
  color: var(--hvfpr-yellow);
}
.hvfpr-timing-option:hover {
  border-color: var(--hvfpr-slate);
  background: rgba(47,62,70,.05);
}
.hvfpr-timing-option.is-active {
  border-color: var(--hvfpr-slate);
  background: var(--hvfpr-slate);
  color: #fff;
}
.hvfpr-timing-line1 {
  font-size: 1.08rem;
  font-weight: 700;
}
.hvfpr-timing-line2 {
  margin-top: .25rem;
  font-size: .92rem;
  color: inherit;
  opacity: .82;
}

.hvfpr-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
}

.hvfpr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .98rem 1.65rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}
.hvfpr-btn:hover:not([disabled]) {
  transform: translateY(-1px);
}
.hvfpr-btn[disabled] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.hvfpr-btn-secondary {
  background: #fff;
  border-color: rgba(0,0,0,.08);
  color: #1f2937;
  box-shadow: 0 8px 22px rgba(31,41,55,.08);
}
.hvfpr-btn-secondary:hover:not([disabled]) {
  border-color: rgba(47,62,70,.18);
  box-shadow: 0 12px 26px rgba(31,41,55,.11);
}
.hvfpr-btn-primary {
  background: var(--hvfpr-yellow);
  border-color: rgba(242,201,76,.72);
  color: var(--hvfpr-slate);
  box-shadow: 0 14px 34px rgba(242,201,76,.32), 0 6px 16px rgba(47,62,70,.12);
}
.hvfpr-btn-primary:hover:not([disabled]) {
  box-shadow: 0 18px 42px rgba(242,201,76,.38), 0 8px 20px rgba(47,62,70,.16);
}

.hvfpr-live-form .wpforms-container,
.hvfpr-live-form .wpforms-form {
  margin: 0 !important;
}

.hvfpr-live-form .wpforms-field {
  position: relative !important;
  padding: 0 !important;
  margin-bottom: .95rem !important;
}

.hvfpr-live-form .wpforms-submit-container,
.hvfpr-live-form .wpforms-confirmation-container-full {
  display: none !important;
}

.hvfpr-live-form .wpforms-field-label,
.hvfpr-live-form .wpforms-label-hide .wpforms-field-label {
  display: none !important;
}

.hvfpr-live-form .wpforms-field-hidden,
.hvfpr-live-form .wpforms-field-hidden .wpforms-field-label {
  display: none !important;
}

.hvfpr-live-form .wpforms-field-hidden {
  display: none !important;
}

.hvfpr-live-form .wpforms-field-row,
.hvfpr-live-form .wpforms-one-half,
.hvfpr-live-form .wpforms-one-third,
.hvfpr-live-form .wpforms-two-thirds,
.hvfpr-live-form .wpforms-inline-field,
.hvfpr-live-form .wpforms-field-row-block {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  float: none !important;
  clear: both !important;
}

.hvfpr-live-form .wpforms-field-container,
.hvfpr-live-form .wpforms-page,
.hvfpr-live-form .wpforms-page-indicator,
.hvfpr-live-form .wpforms-pagebreak-left,
.hvfpr-live-form .wpforms-pagebreak-center,
.hvfpr-live-form .wpforms-pagebreak-right {
  margin: 0 !important;
  padding: 0 !important;
}

.hvfpr-live-form input[type="text"],
.hvfpr-live-form input[type="email"],
.hvfpr-live-form input[type="tel"],
.hvfpr-live-form input[type="number"],
.hvfpr-live-form textarea,
.hvfpr-live-form select {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}

.hvfpr-live-form .wpforms-field.hvfpr-visible-field {
  position: relative !important;
}

.hvfpr-live-form .wpforms-field.hvfpr-visible-field .hvfpr-field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  opacity: .72;
  z-index: 2;
  pointer-events: none;
}

.hvfpr-live-form .wpforms-field.hvfpr-field-name .hvfpr-field-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364758b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.hvfpr-live-form .wpforms-field.hvfpr-field-email .hvfpr-field-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364758b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.hvfpr-live-form .wpforms-field.hvfpr-field-phone .hvfpr-field-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364758b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.61 2.62a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.46-1.27a2 2 0 0 1 2.11-.45c.84.28 1.72.49 2.62.61A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.hvfpr-live-form input[type="text"],
.hvfpr-live-form input[type="email"],
.hvfpr-live-form input[type="tel"] {
  height: 56px !important;
  border-radius: 1.2rem !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  background: #fff !important;
  padding: 0 1rem 0 2.95rem !important;
  font-size: 16px !important;
  box-shadow: none !important;
}

.hvfpr-live-form .wpforms-error,
.hvfpr-live-form label.wpforms-error {
  font-size: .85rem !important;
}

.hvfpr-confirmation {
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 2rem;
}
.hvfpr-confirmation-badge {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--hvfpr-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.hvfpr-confirmation-title {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hvfpr-slate);
}
.hvfpr-confirmation-copy {
  margin-top: .5rem;
  color: #64748b;
}

@media (max-width: 767px) {
  .hvfpr-header { min-height: 76px; }
  .hvfpr-header-inner { min-height: 76px; }
  .hvfpr-logo img { height: 38px; max-width: 220px; }
  .hvfpr-stage { min-height: calc(100dvh - 76px); padding: .75rem .5rem .5rem; }
  .hvfpr-card { border-radius: 26px; }
  .hvfpr-title { font-size: 1.8rem; max-width: 320px; }
}

@media (min-width: 768px) {
  .hvfpr-stage {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2.25rem 1.5rem 1.25rem;
  }
  .hvfpr-card-wrap {
    max-width: 1240px;
  }
  .hvfpr-card {
    border-radius: 32px;
  }
  .hvfpr-top-inner,
  .hvfpr-body-inner,
  .hvfpr-footer-inner {
    width: min(100%, 1040px);
  }
}

@media (min-width: 1024px) {
  .hvfpr-stage {
    padding-top: 1.25rem;
  }
  .hvfpr-card-wrap { max-width: 1280px; }
  .hvfpr-top-inner,
  .hvfpr-body-inner,
  .hvfpr-footer-inner {
    width: min(100%, 1040px);
  }
  .hvfpr-title { font-size: 2rem; max-width: 680px; }
}


.hvfpr-form-card.is-submitting {
  opacity: .9;
}

.hvfpr-text-input,
.hvfpr-textarea,
.hvfpr-live-form input[type="text"],
.hvfpr-live-form input[type="email"],
.hvfpr-live-form input[type="tel"] {
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 400;
}

.hvfpr-btn:focus-visible,
.hvfpr-chip:focus-visible,
.hvfpr-timing-option:focus-visible,
.hvfpr-text-input:focus-visible,
.hvfpr-textarea:focus-visible,
.hvfpr-live-form input:focus-visible {
  outline: 2px solid rgba(58,107,127,.35);
  outline-offset: 2px;
}


@media (max-width: 767px) {
  .hvfpr-chip-wrap,
  .hvfpr-chip-row {
    max-width: 100%;
  }

  .hvfpr-chip-row.is-collapsed {
    max-height: 8.4rem;
  }

  .hvfpr-chip {
    padding: .56rem .82rem;
    font-size: .9rem;
  }

  .hvfpr-step-card.hvfpr-step-1 .hvfpr-suggested {
    max-width: 100%;
  }
}

.hvfpr-confirmation-loading {
  min-height: 280px;
}

.hvfpr-confirmation-spinner {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 4px solid rgba(47,62,70,.12);
  border-top-color: var(--hvfpr-yellow);
  animation: hvfpr-spin .8s linear infinite;
}

@keyframes hvfpr-spin {
  to { transform: rotate(360deg); }
}

.hvfpr-step-results .hvfpr-body-inner,
.hvfpr-step-results .hvfpr-top-inner,
.hvfpr-step-results .hvfpr-footer-inner {
  width: min(100%, 1120px);
}

.hvfpr-results-shell {
  width: 100%;
}

.hvfpr-results-header {
  max-width: 760px;
}

.hvfpr-results-eyebrow {
  font-size: .95rem;
  font-weight: 700;
  color: var(--hvfpr-copper);
}

.hvfpr-results-title {
  margin: .5rem 0 0;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #33424a;
}

.hvfpr-results-copy {
  margin: .75rem 0 0;
  color: #64748b;
  line-height: 1.65;
}

.hvfpr-results-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hvfpr-results-cards-site {
  margin-top: 1.5rem;
}

.hvfpr-site-cards,
.hvfpr-results-cards-site .hv-trade-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hvfpr-result-card {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hvfpr-result-card-open {
  border-style: dashed;
  background: #fcfaf7;
}

.hvfpr-result-logo {
  width: 96px;
  height: 96px;
  border-radius: 1.35rem;
  background: #eef2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}

.hvfpr-result-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hvfpr-result-logo-fallback {
  font-size: 2rem;
  font-weight: 700;
  color: var(--hvfpr-slate);
}

.hvfpr-result-name {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
  color: #22313a;
}

.hvfpr-result-meta {
  margin-top: .8rem;
  display: grid;
  gap: .35rem;
  font-size: .95rem;
  color: #425466;
}

.hvfpr-result-capabilities,
.hvfpr-result-open-copy {
  margin-top: .95rem;
  color: #425466;
  line-height: 1.6;
  font-size: .95rem;
  background: #f7f8fa;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 1rem;
  padding: .9rem;
}

.hvfpr-result-link {
  margin-top: auto;
  align-self: flex-start;
}

.hvfpr-results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.5rem;
}

.hvfpr-results-actions-inline {
  justify-content: center;
}

@media (max-width: 1023px) {
  .hvfpr-results-grid,
  .hvfpr-site-cards,
  .hvfpr-results-cards-site .hv-trade-cards {
    grid-template-columns: 1fr;
  }

  .hvfpr-results-title {
    font-size: 1.7rem;
  }
}


/* v1.5.5 contact step width fix */
@media (min-width: 1024px) {
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-card {
    max-width: 1120px !important;
  }

  .hvfpr-step-card.hvfpr-step-3 .hvfpr-top-inner,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-body-inner,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-footer-inner {
    width: min(100%, 980px) !important;
  }

  .hvfpr-step-card.hvfpr-step-3 .hvfpr-form-card,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-form,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field-container {
    width: 100% !important;
    max-width: 760px !important;
  }

  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form input[type="text"],
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form input[type="email"],
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form input[type="tel"] {
    font-size: 15px !important;
  }
}


/* v1.5.6 contact step true desktop width + error styling fix */
@media (min-width: 1024px) {
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-card {
    max-width: 1220px !important;
  }

  .hvfpr-step-card.hvfpr-step-3 .hvfpr-top-inner,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-body-inner,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-footer-inner {
    width: min(100%, 1060px) !important;
  }

  .hvfpr-step-card.hvfpr-step-3 .hvfpr-form-mount,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-form-card,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-container,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-container-full,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-form,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field-container,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-page {
    width: 100% !important;
    max-width: 880px !important;
  }

  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field-row,
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field-row-block {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form input[type="text"],
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form input[type="email"],
  .hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form input[type="tel"] {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14.5px !important;
  }
}

.hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field {
  margin-bottom: 1rem !important;
}

.hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field.wpforms-has-error input[type="text"],
.hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field.wpforms-has-error input[type="email"],
.hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-field.wpforms-has-error input[type="tel"] {
  border-color: #d35656 !important;
  background: #fff8f8 !important;
  box-shadow: 0 0 0 3px rgba(211, 86, 86, 0.10) !important;
}

.hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form .wpforms-error,
.hvfpr-step-card.hvfpr-step-3 .hvfpr-live-form label.wpforms-error {
  display: block !important;
  margin: .4rem .2rem 0 .2rem !important;
  color: #b42318 !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}


/* v1.5.7 actual contact step desktop width + usable error state */
@media (min-width: 1024px) {
  .hvfpr-step-contact {
    width: min(100%, 980px) !important;
    max-width: 980px !important;
    margin-inline: auto !important;
  }

  .hvfpr-step-contact .hvfpr-card {
    width: 100% !important;
    max-width: none !important;
  }

  .hvfpr-step-contact .hvfpr-top-inner,
  .hvfpr-step-contact .hvfpr-body-inner,
  .hvfpr-step-contact .hvfpr-footer-inner {
    width: min(100%, 860px) !important;
    max-width: 860px !important;
  }

  .hvfpr-step-contact .hvfpr-form-mount,
  .hvfpr-step-contact .hvfpr-form-card,
  .hvfpr-step-contact .hvfpr-live-form,
  .hvfpr-step-contact .hvfpr-live-form .wpforms-container,
  .hvfpr-step-contact .hvfpr-live-form .wpforms-container-full,
  .hvfpr-step-contact .hvfpr-live-form .wpforms-form,
  .hvfpr-step-contact .hvfpr-live-form .wpforms-field-container,
  .hvfpr-step-contact .hvfpr-live-form .wpforms-page {
    width: 100% !important;
    max-width: 760px !important;
  }

  .hvfpr-step-contact .hvfpr-live-form input[type="text"],
  .hvfpr-step-contact .hvfpr-live-form input[type="email"],
  .hvfpr-step-contact .hvfpr-live-form input[type="tel"] {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 15px !important;
  }
}

.hvfpr-step-contact .hvfpr-live-form .wpforms-error,
.hvfpr-step-contact .hvfpr-live-form label.wpforms-error {
  display: block !important;
  margin: .45rem .2rem .15rem .2rem !important;
  color: #b42318 !important;
  font-size: .82rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  background: #fff4f4 !important;
  border: 1px solid #f1c7c7 !important;
  border-radius: 10px !important;
  padding: .45rem .65rem !important;
}

.hvfpr-step-contact .hvfpr-live-form .wpforms-field.wpforms-has-error input[type="text"],
.hvfpr-step-contact .hvfpr-live-form .wpforms-field.wpforms-has-error input[type="email"],
.hvfpr-step-contact .hvfpr-live-form .wpforms-field.wpforms-has-error input[type="tel"] {
  border-color: #de7a7a !important;
  background: #fffdfd !important;
  box-shadow: 0 0 0 3px rgba(222,122,122,.12) !important;
}

/* =====================================================
   v1.5.9 - HV Trades Button Shape Refactor
   Primary actions = rounded rectangles
   Secondary/back/filter/info controls = pills
   ===================================================== */
:root {
  --hvfpr-btn-radius: 12px;
  --hvfpr-btn-radius-sm: 10px;
  --hvfpr-pill-radius: 9999px;
}

/* Primary action buttons - strong rounded rectangles */
.hvfpr-btn-primary,
.hvfpr-results-actions .hvfpr-btn-primary,
.hvfpr-result-link.hvfpr-btn-primary,
.hvfpr-live-form .wpforms-submit,
.hvfpr-shell button[type="submit"] {
  border-radius: var(--hvfpr-btn-radius) !important;
}

/* Base button shape defaults to rounded rectangle unless explicitly secondary */
.hvfpr-btn {
  border-radius: var(--hvfpr-btn-radius) !important;
}

/* Secondary navigation/actions stay pill shaped by design */
.hvfpr-btn-secondary,
.hvfpr-results-actions .hvfpr-btn-secondary {
  border-radius: var(--hvfpr-pill-radius) !important;
}

/* Chips, trade suggestions, and filter-style controls remain pills */
.hvfpr-chip,
.hvfpr-chip-clear,
.hvfpr-expand-link {
  border-radius: var(--hvfpr-pill-radius) !important;
}

/* Progress indicators remain pill/capsule shaped */
.hvfpr-progress-bar,
.hvfpr-progress-fill {
  border-radius: var(--hvfpr-pill-radius) !important;
}

/* Selection cards are not pills - keep them in the rounded-rectangle family */
.hvfpr-timing-option,
.hvfpr-field-card,
.hvfpr-textarea-card,
.hvfpr-form-card,
.hvfpr-result-card,
.hvfpr-result-capabilities,
.hvfpr-result-open-copy,
.hvfpr-live-form input[type="text"],
.hvfpr-live-form input[type="email"],
.hvfpr-live-form input[type="tel"],
.hvfpr-text-input,
.hvfpr-textarea,
.hvfpr-form-card input[type="text"],
.hvfpr-form-card input[type="email"],
.hvfpr-form-card input[type="tel"] {
  border-radius: var(--hvfpr-btn-radius) !important;
}

/* Icons, badges, loaders stay circular */
.hvfpr-close,
.hvfpr-confirmation-badge,
.hvfpr-confirmation-spinner {
  border-radius: var(--hvfpr-pill-radius) !important;
}

/* Contact-step validation messages should be soft rounded rectangles, not pills */
.hvfpr-step-contact .hvfpr-live-form .wpforms-error,
.hvfpr-step-contact .hvfpr-live-form label.wpforms-error {
  border-radius: var(--hvfpr-btn-radius-sm) !important;
}

/* Mobile density */
@media (max-width: 767px) {
  .hvfpr-btn-primary,
  .hvfpr-btn,
  .hvfpr-timing-option,
  .hvfpr-field-card,
  .hvfpr-form-card,
  .hvfpr-text-input,
  .hvfpr-textarea,
  .hvfpr-live-form input[type="text"],
  .hvfpr-live-form input[type="email"],
  .hvfpr-live-form input[type="tel"] {
    border-radius: var(--hvfpr-btn-radius-sm) !important;
  }

  .hvfpr-btn-secondary,
  .hvfpr-chip {
    border-radius: var(--hvfpr-pill-radius) !important;
  }
}
