/* BakerHouse Survey — replicates AirPrice flow, BakerHouse green branding */

:root {
  --bh-green: #4d704e;
  --bh-green-dark: #3a5a3b;
  --bh-green-light: #e6efe7;
  --bh-green-fill: #cfe2d0;
  --bh-orange: #e64a1f;
  --bh-text: #1a3a1f;
  --bh-text-soft: #4a5a4d;
  --bh-bg: #ffffff;
  --bh-bg-soft: #fafaf7;
  --bh-border: #d6dbd5;
  --bh-error: #b3261e;
  --bh-error-bg: #fde7e8;
  --bh-radius: 8px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--bh-text);
  background: var(--bh-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
.bh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
}
.bh-logo { display: flex; align-items: center; }
.bh-logo img { height: 38px; max-width: 160px; object-fit: contain; }
.bh-logo-fallback {
  display: none;
  background: var(--bh-green);
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.bh-logo img[style*="display: none"] + .bh-logo-fallback { display: block; }
.bh-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--bh-border);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--bh-text);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}
.bh-call:hover { border-color: var(--bh-green); color: var(--bh-green); }

/* ===== PROGRESS BAR ===== */
.bh-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bh-green-light);
  z-index: 99;
}
.bh-progress-fill {
  height: 100%;
  width: 0;
  background: var(--bh-green);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== SURVEY ===== */
.bh-survey {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 24px 60px;
}
.bh-slide {
  width: 100%;
  max-width: 720px;
  animation: bhSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes bhSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.bh-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--bh-text);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.bh-title .req { color: var(--bh-orange); margin-left: 2px; font-weight: 400; }
.bh-desc {
  color: var(--bh-text-soft);
  font-size: 15px;
  margin: 0 0 28px;
  max-width: 600px;
}

/* ===== PICTURE CHOICE ===== */
.bh-pic-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.bh-pic-grid-4 { grid-template-columns: repeat(4, 1fr); }
.bh-pic-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
@media (max-width: 640px) {
  .bh-pic-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
.bh-pic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px 20px;
  background: var(--bh-bg-soft);
  border: 2px solid transparent;
  border-radius: var(--bh-radius);
  cursor: pointer;
  transition: all 0.15s;
  font: inherit;
  color: var(--bh-text);
  text-align: center;
}
.bh-pic:hover { background: var(--bh-green-light); border-color: var(--bh-green-fill); }
.bh-pic.selected {
  background: var(--bh-green-light);
  border-color: var(--bh-green);
  color: var(--bh-green);
}
.bh-pic-icon { width: 80px; height: 80px; }
.bh-pic-icon svg { width: 100%; height: 100%; }
.bh-pic span { font-size: 13px; font-weight: 500; line-height: 1.3; }

/* ===== RADIO LIST ===== */
.bh-radio-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 480px;
  margin-bottom: 24px;
}
.bh-radio {
  text-align: left;
  padding: 14px 18px;
  background: var(--bh-bg-soft);
  border: 1.5px solid transparent;
  border-radius: var(--bh-radius);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  color: var(--bh-text);
  transition: all 0.15s;
}
.bh-radio:hover { background: var(--bh-green-light); border-color: var(--bh-green-fill); }
.bh-radio.selected {
  background: var(--bh-green-light);
  border-color: var(--bh-green);
  color: var(--bh-green);
  font-weight: 600;
}

/* ===== TEXT INPUT ===== */
.bh-input {
  display: block;
  width: 100%;
  max-width: 600px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1.5px solid var(--bh-green);
  font: inherit;
  font-size: 24px;
  font-weight: 500;
  color: var(--bh-text);
  background: transparent;
  outline: none;
  margin-bottom: 28px;
  transition: border-color 0.15s;
}
.bh-input::placeholder { color: #b8c4ba; font-weight: 400; }
.bh-input:focus { border-bottom-color: var(--bh-green-dark); border-bottom-width: 2px; }
.bh-input.invalid { border-bottom-color: var(--bh-error); }

.bh-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 560px;
  margin-bottom: 24px;
}
@media (max-width: 540px) {
  .bh-name-row { grid-template-columns: 1fr; }
}
.bh-name-row label,
.bh-slide-gate label { display: block; }
.bh-name-row .bh-input,
.bh-slide-gate .bh-input { font-size: 18px; }
.bh-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bh-text);
  margin-bottom: 4px;
}
.bh-label .req { color: var(--bh-orange); }

/* ===== OK / SUBMIT BUTTON ===== */
.bh-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--bh-green);
  color: #fff;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.bh-ok:hover { background: var(--bh-green-dark); }
.bh-ok:active { transform: translateY(1px); }
.bh-ok:disabled { opacity: 0.5; cursor: not-allowed; }
.bh-submit { padding: 12px 28px; }
.bh-hint {
  font-size: 13px;
  color: var(--bh-text-soft);
  margin: 8px 0 0;
}
.bh-hint kbd {
  display: inline-block;
  padding: 1px 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  background: var(--bh-bg-soft);
  border: 1px solid var(--bh-border);
  border-radius: 3px;
  color: var(--bh-text);
}

/* ===== ERROR ===== */
.bh-error {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  background: var(--bh-error-bg);
  color: var(--bh-error);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

/* ===== GATE SLIDE ===== */
.bh-gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
}
.bh-gate-form { max-width: 460px; }
.bh-gate-form label { display: block; margin-bottom: 18px; }
.bh-gate-art {
  display: flex;
  justify-content: center;
}
.bh-gate-art svg { width: 100%; max-width: 400px; height: auto; }
@media (max-width: 900px) {
  .bh-gate-grid { grid-template-columns: 1fr; gap: 40px; }
  .bh-gate-art { display: none; }
}

/* ===== LOADING ===== */
.bh-slide-loading {
  text-align: center;
}
.bh-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--bh-green-light);
  border-top-color: var(--bh-green);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: bhSpin 0.8s linear infinite;
}
@keyframes bhSpin {
  to { transform: rotate(360deg); }
}

/* ==================== RESULTS ==================== */
.bh-results {
  padding: 90px 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
  animation: bhSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bh-results-head {
  text-align: center;
  margin-bottom: 32px;
}
.bh-results-head h1 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.bh-results-head p {
  color: var(--bh-text-soft);
  margin: 0;
  font-size: 15px;
}

.bh-results-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--bh-border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(26, 58, 31, 0.06);
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .bh-results-card { grid-template-columns: 1fr; }
}

/* Equipment side */
.bh-eq { text-align: center; padding: 8px; }
.bh-eq-img { max-width: 240px; margin: 0 auto 18px; }
.bh-eq-img svg { width: 100%; height: auto; }
.bh-eq-name {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}
.bh-eq-spec {
  font-size: 13px;
  color: var(--bh-text-soft);
  margin: 4px 0;
}
.bh-eq-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 14px;
  background: var(--bh-green-light);
  color: var(--bh-green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* Estimate side */
.bh-est { padding: 8px; }
.bh-est-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bh-text-soft);
  margin-bottom: 8px;
}
.bh-est-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.bh-est-price-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--bh-text);
  letter-spacing: -0.02em;
}
.bh-est-price-mo {
  font-size: 18px;
  color: var(--bh-text-soft);
  font-weight: 500;
}
.bh-est-price-range {
  margin-left: auto;
  font-size: 13px;
  color: var(--bh-text-soft);
}
.bh-est-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--bh-border);
  font-size: 14px;
}
.bh-est-row strong { font-weight: 700; }
/* Efficiency slider */
.bh-slider-block {
  margin: 14px 0 8px;
  padding: 14px 16px;
  background: var(--bh-bg-soft);
  border-radius: 10px;
  border: 1px solid var(--bh-border);
}
.bh-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bh-slider-end {
  font-size: 11px;
  font-weight: 600;
  color: var(--bh-text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex: 0 0 auto;
}
input[type="range"]#effSlider {
  flex: 1;
  height: 6px;
  background: linear-gradient(to right, var(--bh-green) 0%, var(--bh-green) var(--bh-fill, 20%), var(--bh-border) var(--bh-fill, 20%), var(--bh-border) 100%);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
}
input[type="range"]#effSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--bh-green);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(26,58,31,0.25);
}
input[type="range"]#effSlider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--bh-green);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(26,58,31,0.25);
}
.bh-slider-tier {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
}
.bh-slider-tier #tierLabel {
  font-weight: 600;
  color: var(--bh-green);
}
.bh-slider-tier #tierAmount {
  font-weight: 700;
  color: var(--bh-text);
}
.bh-est-eq-img img,
.bh-eq-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.bh-pic-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bh-est-finance {
  background: var(--bh-bg-soft);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 10px 0;
}
.bh-est-finance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 14px;
}
.bh-est-finance-row span {
  display: flex;
  flex-direction: column;
}
.bh-est-finance-row span small {
  font-size: 11px;
  color: var(--bh-text-soft);
}
.bh-est-finance-row strong { font-weight: 700; color: var(--bh-green); }

.bh-est-match {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bh-green-light);
  color: var(--bh-green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin: 8px 0 18px;
}

.bh-est-eff {
  margin-bottom: 20px;
}
.bh-est-eff-label {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}
.bh-est-eff-label strong { font-size: 14px; }
.bh-est-eff-label span { font-size: 12px; color: var(--bh-text-soft); }
.bh-est-eff-bar {
  height: 24px;
  background: var(--bh-green-light);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.bh-est-eff-fill {
  height: 100%;
  background: linear-gradient(90deg, #6a9b6c, var(--bh-green));
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.bh-rebates {
  border-top: 1px solid var(--bh-border);
  padding-top: 14px;
}
.bh-rebates-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bh-text-soft);
  margin-bottom: 10px;
}
.bh-rebate {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--bh-border);
}
.bh-rebate:last-of-type { border-bottom: 0; }
.bh-rebate strong {
  font-size: 13px;
  font-weight: 700;
  display: block;
}
.bh-rebate sup { color: var(--bh-orange); }
.bh-rebate small {
  font-size: 11px;
  color: var(--bh-text-soft);
  display: block;
  margin-top: 2px;
}
.bh-rebate-amt {
  font-size: 13px;
  font-weight: 700;
  color: var(--bh-green);
  white-space: nowrap;
  margin-left: 12px;
}
.bh-rebate-incl { color: var(--bh-text); }
.bh-rebate-disclaim {
  font-size: 11px;
  color: var(--bh-text-soft);
  margin: 12px 0 0;
}

.bh-est-cta {
  margin-top: 20px;
  padding: 18px;
  background: var(--bh-green-light);
  border-radius: 8px;
  text-align: center;
}
.bh-est-cta h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}
.bh-est-cta p {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--bh-text-soft);
}
.bh-est-cta-btn {
  display: inline-block;
  background: var(--bh-green);
  color: #fff;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.15s;
}
.bh-est-cta-btn:hover { background: var(--bh-green-dark); }

.bh-est-disclaim {
  font-size: 11px;
  color: var(--bh-text-soft);
  margin: 16px 0 0;
  line-height: 1.5;
}

/* Free In-Home HVAC Inspection explainer */
.bh-free-block {
  position: relative;
  background: #fff;
  border: 1px solid var(--bh-border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 40px;
  text-align: center;
}
.bh-free-pill {
  display: inline-block;
  background: var(--bh-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.bh-free-block h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
}
.bh-free-block p {
  color: var(--bh-text-soft);
  margin: 0 0 16px;
}
.bh-check-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 360px;
  text-align: left;
}
.bh-check-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 14px;
}
.bh-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: var(--bh-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.bh-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--bh-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.bh-link-cta:hover { text-decoration: underline; }

/* Calendar */
.bh-booknow {
  background: #fff;
  border: 1px solid var(--bh-border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 40px;
  text-align: center;
}
.bh-booknow h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
}
.bh-booknow > p {
  color: var(--bh-text-soft);
  margin: 0 0 20px;
}
/* Calendar widget */
#bh-cal-widget {
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--bh-border);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 2px 12px rgba(26,58,31,0.04);
}
.bh-cal-hdr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bh-green);
  color: #fff;
}
.bh-cal-hdr-ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bh-cal-hdr-title { font-weight: 700; font-size: 15px; }
.bh-cal-hdr-meta { font-size: 12px; opacity: 0.9; margin-top: 2px; }

.bh-cal-hidden { display: none !important; }

#bh-cal-s1, #bh-cal-s2, #bh-cal-s3, #bh-cal-s4 {
  padding: 20px;
}

.bh-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.bh-cal-nav button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--bh-border);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  color: var(--bh-text);
  font-family: inherit;
}
.bh-cal-nav button:hover { background: var(--bh-green-light); border-color: var(--bh-green); }
#bh-cal-month {
  font-weight: 700;
  font-size: 15px;
}

.bh-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--bh-text-soft);
  text-align: center;
}

#bh-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bh-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  background: var(--bh-bg-soft);
  color: var(--bh-text);
  user-select: none;
  font-weight: 500;
  transition: all 0.12s;
}
.bh-cal-day:hover:not(.bh-cal-past):not(.bh-cal-off):not(.bh-cal-sel) {
  background: var(--bh-green-light);
}
.bh-cal-day.bh-cal-today {
  outline: 1.5px solid var(--bh-green);
}
.bh-cal-day.bh-cal-past,
.bh-cal-day.bh-cal-off {
  background: transparent;
  color: #c4ccc5;
  cursor: not-allowed;
}
.bh-cal-day.bh-cal-sel {
  background: var(--bh-green);
  color: #fff;
}

.bh-cal-back-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 13px;
}
.bh-cal-back-row button {
  background: none;
  border: 0;
  color: var(--bh-green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  font-family: inherit;
}
.bh-cal-back-row button:hover { text-decoration: underline; }
.bh-cal-back-row span { font-weight: 600; color: var(--bh-text); }

.bh-cal-msg {
  text-align: center;
  padding: 24px 12px;
  color: var(--bh-text-soft);
  font-size: 13px;
}

.bh-cal-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 480px) {
  .bh-cal-slots { grid-template-columns: repeat(2, 1fr); }
}
.bh-cal-slot {
  padding: 10px;
  background: #fff;
  border: 1.5px solid var(--bh-border);
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--bh-text);
  transition: all 0.12s;
}
.bh-cal-slot:hover {
  border-color: var(--bh-green);
  background: var(--bh-green-light);
}
.bh-cal-slot.bh-cal-sel-slot {
  border-color: var(--bh-green);
  background: var(--bh-green);
  color: #fff;
}

.bh-cal-field {
  margin-bottom: 12px;
}
.bh-cal-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--bh-text);
  margin-bottom: 4px;
}
.bh-cal-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--bh-border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.12s;
}
.bh-cal-field input:focus { border-color: var(--bh-green); }

.bh-cal-submit {
  width: 100%;
  padding: 12px;
  background: var(--bh-green);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.12s;
}
.bh-cal-submit:hover:not(:disabled) { background: var(--bh-green-dark); }
.bh-cal-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.bh-cal-err {
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--bh-error-bg);
  color: var(--bh-error);
  border-radius: 6px;
  font-size: 13px;
}

.bh-cal-success { text-align: center; padding: 12px 0; }
.bh-cal-ok-ico {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: var(--bh-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bh-cal-ok-ico svg { width: 32px; height: 32px; }
.bh-cal-success h3 { margin: 0 0 6px; font-size: 22px; font-weight: 700; }
.bh-cal-success p { margin: 0 0 14px; color: var(--bh-text-soft); font-size: 14px; }
.bh-cal-confirm {
  background: var(--bh-bg-soft);
  border-radius: 8px;
  padding: 14px;
  text-align: left;
  font-size: 13px;
}
.bh-cal-confirm > div {
  padding: 4px 0;
  border-bottom: 1px solid var(--bh-border);
}
.bh-cal-confirm > div:last-child { border-bottom: 0; }

/* FAQ */
.bh-faq-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--bh-border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .bh-faq-block { grid-template-columns: 1fr; }
}
.bh-faq-block details {
  border-bottom: 1px solid var(--bh-border);
  padding: 12px 0;
}
.bh-faq-block details:last-child { border-bottom: 0; }
.bh-faq-block summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.bh-faq-block summary::-webkit-details-marker { display: none; }
.bh-faq-block summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: var(--bh-green);
  font-weight: 400;
  transition: transform 0.2s;
}
.bh-faq-block details[open] summary::after { content: "−"; }
.bh-faq-block details p {
  font-size: 13px;
  color: var(--bh-text-soft);
  margin: 8px 0 0;
}
.bh-faq-main h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
}

/* Trust block */
.bh-trust {
  background: #fff;
  border: 1px solid var(--bh-border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 40px;
  text-align: center;
}
.bh-trust h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
}
.bh-trust p {
  color: var(--bh-text-soft);
  font-size: 14px;
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

/* Reviews */
.bh-reviews {
  text-align: center;
  margin-bottom: 40px;
}
.bh-reviews h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
}
.bh-reviews-sub {
  color: var(--bh-text-soft);
  margin: 0 0 12px;
  font-size: 14px;
}
.bh-stars {
  color: #f5a623;
  font-size: 22px;
  letter-spacing: 2px;
}
.bh-stars span {
  color: var(--bh-text-soft);
  font-size: 13px;
  margin-left: 8px;
  letter-spacing: normal;
}

/* Final CTA */
.bh-final-cta {
  background: var(--bh-green-light);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.bh-final-cta h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
}
.bh-final-cta p {
  color: var(--bh-text-soft);
  margin: 0 0 18px;
}

.bh-footer {
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: var(--bh-text-soft);
}
