/**
 * home-value.css
 *
 * Styling for views/home-value.php — loaded only on that page (see
 * layouts/head.php's $page === 'home-value' check). Same palette as
 * search.css/listing-detail.css/home.css (#12233D text, #DCE1E8 borders,
 * #F7F8FA panel bg, #1E40AF accent). The lead-capture form itself (step
 * 2) is styled by the shared css/lead-form.css, also loaded on this page
 * — this file only owns the two hero states.
 */

.hv-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 16px 64px;
  color: #12233D;
}

.hv-hero {
  text-align: center;
  margin-bottom: 32px;
}

.hv-heading {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #12233D;
}

.hv-copy {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5A70;
  margin: 0 0 24px;
}

.hv-address-form {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  text-align: left;
}

.hv-address-field {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hv-address-label {
  font-size: 11px;
  font-weight: 600;
  color: #4B5A70;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hv-address-field input {
  box-sizing: border-box;
  width: 100%;
  height: 46px;
  font-size: 15px;
  padding: 0 14px;
  border: 1px solid #DCE1E8;
  border-radius: 6px;
  color: #12233D;
  font-family: inherit;
}

.hv-address-field input:focus {
  outline: 2px solid #1E40AF;
}

.hv-continue-btn {
  flex: 0 0 auto;
  height: 46px;
  font-size: 15px;
  font-weight: 700;
  background: #1E40AF;
  color: #FFFFFF;
  border: none;
  padding: 0 24px;
  border-radius: 6px;
  cursor: pointer;
}

.hv-continue-btn:hover {
  background: #16327F;
}

/* Step 2's confirmed address — deliberately just the plain address text,
   never a dollar figure next to it. See the docblock in
   views/home-value.php for why: no valuation engine backs this page. */
.hv-found-address {
  font-size: 18px;
  font-weight: 700;
  background: #F7F8FA;
  border: 1px solid #DCE1E8;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 0 0 16px;
}

@media (max-width: 480px) {
  .hv-address-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hv-continue-btn {
    width: 100%;
  }
}
