/* ═══════════════════════════════════════════════════════
   Eagle Cash Buyers — Funnel Stylesheet
   (Landing-page-specific rules live in landing.css)
   ═══════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1a2b4a;
  --navy-80:     rgba(26,43,74,.8);
  --orange:      #f5a623;
  --orange-dk:   #e09410;
  --green:       #22c55e;
  --white:       #ffffff;
  --bg:          #f7f8fa;
  --gray-50:     #f9fafb;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --error:       #ef4444;
  --r:           10px;
  --sh:          0 2px 16px rgba(0,0,0,.08);
  --sh-sm:       0 1px 6px rgba(0,0,0,.06);
  --sh-md:       0 6px 32px rgba(0,0,0,.14);
  --t:           .15s ease;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }


/* ══════════════════════════════════════════
   HEADER  (shared between funnel + landing)
   ══════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 10px 0;
}

.site-header .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-logo { height: 46px; width: auto; object-fit: contain; flex-shrink: 0; }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bbb-img { height: 30px; width: auto; object-fit: contain; } /* desktop override in responsive block below */

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: .92rem;
  padding: 10px 18px;
  border-radius: 7px;
  border: none;
  transition: background var(--t);
  white-space: nowrap;
}
.header-phone:hover { background: var(--orange-dk); }
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-phone .ph-label { display: none; }

@media (min-width: 480px) { .header-phone .ph-label { display: inline; } }


/* ══════════════════════════════════════════
   PROGRESS BAR  (funnel steps only)
   ══════════════════════════════════════════ */
.funnel-progress {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 20px;
}

.progress-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.progress-track {
  height: 5px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-dk));
  border-radius: 100px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}


/* ══════════════════════════════════════════
   FUNNEL STEP WRAPPER
   ══════════════════════════════════════════ */
main { flex: 1; }

.funnel-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.step-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: .82rem;
  font-weight: 600;
  padding: 0;
  margin-bottom: 22px;
  cursor: pointer;
  transition: color var(--t);
}
.step-back:hover { color: var(--navy); }

.step-head { margin-bottom: 26px; }

.step-head h1 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 6px;
}

.step-head p {
  color: var(--gray-500);
  font-size: .92rem;
}


/* ══════════════════════════════════════════
   OPTION CARDS  (radio / auto-advance)
   ══════════════════════════════════════════ */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.options-list.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.opt-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.opt-card label {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r);
  cursor: pointer;
  position: relative;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.opt-card label:hover {
  border-color: var(--navy);
  box-shadow: var(--sh);
}

.opt-card input:checked + label {
  border-color: var(--orange);
  background: #fff9f0;
}

.opt-card input:checked + label::after {
  content: '';
  position: absolute;
  top: 11px;
  right: 11px;
  width: 20px;
  height: 20px;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpolyline points='1,5 4.5,8.5 11,1' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
  border-radius: 50%;
}

.opt-card.selected label {
  border-color: var(--orange);
  background: #fff4e0;
  animation: cardSelect .5s ease;
}

@keyframes cardSelect {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.975); }
  100% { transform: scale(1); }
}

.opt-icon {
  font-size: 1.6rem;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}

.opt-text { flex: 1; min-width: 0; }
.opt-title { font-weight: 700; color: var(--navy); font-size: .93rem; display: block; }
.opt-desc  { font-size: .78rem; color: var(--gray-500); display: block; margin-top: 2px; }

.options-list.grid-2 .opt-card label {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  padding: 18px 12px;
}
.options-list.grid-2 .opt-icon { width: auto; font-size: 2rem; }
.options-list.grid-2 .opt-desc  { display: none; }
.options-list.grid-2 .opt-card input:checked + label::after { top: 8px; right: 8px; }


/* ══════════════════════════════════════════
   SUB-SECTION  (conditional reveal)
   ══════════════════════════════════════════ */
.sub-section {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 18px;
  margin-top: 2px;
  display: none;
}
.sub-section.show { display: block; }

.sub-section h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}


/* ══════════════════════════════════════════
   BEDS / BATHS PICKER
   ══════════════════════════════════════════ */
.bb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.bb-group { text-align: center; }

.bb-label {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--navy);
  margin-bottom: 12px;
}

.num-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}

.np-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 9px;
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  -webkit-tap-highlight-color: transparent;
}
.np-btn:hover  { border-color: var(--navy); background: var(--gray-100); }
.np-btn.active { border-color: var(--orange); background: #fff9f0; color: var(--navy); }


/* ══════════════════════════════════════════
   TEXT INPUTS
   ══════════════════════════════════════════ */
.field { margin-bottom: 15px; }

.field label {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r);
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
}
.field input:focus { border-color: var(--navy); }
.field.err input   { border-color: var(--error); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.err-msg {
  color: var(--error);
  font-size: .76rem;
  margin-top: 4px;
  display: none;
}
.field.err .err-msg { display: block; }


/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
  border: none;
  border-radius: var(--r);
  text-align: center;
  cursor: pointer;
  transition: background var(--t), transform .1s ease;
  letter-spacing: .01em;
}
.btn-cta:hover  { background: var(--orange-dk); }
.btn-cta:active { transform: scale(.99); }
.btn-cta:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.btn-cta-lg {
  font-size: 1.05rem;
  padding: 17px 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-skip {
  flex: 1;
  min-width: 100px;
  padding: 14px 20px;
  background: transparent;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-400);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-skip:hover { border-color: var(--gray-400); color: var(--gray-700); }


/* ══════════════════════════════════════════
   TCPA DISCLOSURE
   ══════════════════════════════════════════ */
.tcpa-box {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.tcpa-box p {
  font-size: .72rem;
  color: var(--gray-400);
  line-height: 1.55;
  margin: 0;
}
.tcpa-box a { color: var(--navy); text-decoration: underline; }

/* Contact page — trust micro-bar */
.contact-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.contact-trust-bar span {
  display: flex;
  align-items: center;
  gap: 4px;
}


/* ══════════════════════════════════════════
   PHONE READ-BACK MODAL
   ══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-sheet {
  background: var(--white);
  width: 100%;
  max-width: 480px;
  border-radius: 22px 22px 0 0;
  padding: 8px 24px 44px;
  text-align: center;
  transform: translateY(40px);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.modal-overlay.open .modal-sheet { transform: translateY(0); }

.modal-icon { font-size: 2.4rem; margin-bottom: 8px; }
.modal-sheet h2 { font-size: 1.15rem; color: var(--navy); margin-bottom: 6px; }
.modal-sheet p  { color: var(--gray-500); font-size: .88rem; }

.modal-phone {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin: 12px 0 4px;
  letter-spacing: .03em;
}
.modal-sub { color: var(--gray-400); font-size: .83rem; margin-bottom: 20px; }

.modal-actions { display: flex; gap: 10px; }

.btn-modal-edit {
  flex: 1;
  padding: 13px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s;
}
.btn-modal-edit:hover { border-color: var(--navy); }
.btn-modal-confirm {
  flex: 2;
  padding: 13px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s;
}
.btn-modal-confirm:hover { background: var(--orange-dk); }


/* ══════════════════════════════════════════
   DISQUALIFICATION (ERROR) PAGES
   ══════════════════════════════════════════ */
.dq-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.dq-card {
  background: var(--white);
  border-radius: 18px;
  padding: 48px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--sh-md);
}

.dq-icon { font-size: 3.5rem; margin-bottom: 18px; line-height: 1; }
.dq-card h1 { font-size: 1.45rem; color: var(--navy); margin-bottom: 12px; font-weight: 900; }
.dq-card p  { color: var(--gray-500); line-height: 1.7; margin-bottom: 28px; font-size: .93rem; }
.dq-sub { color: var(--gray-500); font-size: .85rem; line-height: 1.6; margin-bottom: 24px; font-style: italic; }

.dq-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 8px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 320px;
}
.dq-call-btn:hover { background: var(--orange-dk); }
.btn-restart {
  display: block;
  color: var(--gray-400);
  font-size: .8rem;
  margin-top: 4px;
}
.btn-restart:hover { color: var(--navy); }


/* ══════════════════════════════════════════
   THANK-YOU PAGE
   ══════════════════════════════════════════ */
.ty-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.ty-card {
  background: var(--white);
  border-radius: 18px;
  padding: 48px 28px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--sh-md);
}

.ty-check {
  width: 74px;
  height: 74px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.ty-card h1 { font-size: 1.6rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.ty-sub { color: var(--gray-500); line-height: 1.7; margin-bottom: 28px; font-size: .95rem; }
.ty-call-cta { margin-top: 24px; }
.ty-call-cta > p { font-size: .85rem; color: var(--gray-500); margin-bottom: 10px; }

.next-steps-box {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 20px 22px;
  text-align: left;
  margin-bottom: 28px;
}
.next-steps-box h3 {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 14px;
}

.next-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.next-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .88rem;
  color: var(--gray-700);
}
.ns-num {
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ns-text { flex: 1; line-height: 1.5; }


/* ══════════════════════════════════════════
   PHOTO UPLOAD — Thank-you page
   ══════════════════════════════════════════ */
.photo-upload-box {
  background: var(--gray-50);
  border: 2px dashed var(--gray-200);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 24px;
  text-align: left;
}
.photo-upload-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.photo-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.photo-upload-head h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.photo-upload-head p {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* Camera / Gallery buttons */
.photo-btn-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.photo-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: border-color .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
}
.photo-btn:hover { border-color: var(--orange); background: #fff9f0; }
.photo-btn-camera { border-color: var(--orange); color: var(--orange); }

.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.photo-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: white;
  transition: opacity .3s;
}
.photo-thumb-overlay.done { opacity: 0; }
.photo-remove {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  background: rgba(0,0,0,.65);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: .65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.photo-status {
  font-size: .82rem;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 10px;
  font-weight: 600;
}
.photo-status-info    { background: #eff6ff; color: #1d4ed8; }
.photo-status-success { background: #f0fdf4; color: #15803d; }
.photo-status-error   { background: #fef2f2; color: #dc2626; }


/* ══════════════════════════════════════════
   PROOF NOTIFICATION WIDGET
   ══════════════════════════════════════════ */
.proof-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15), 0 2px 8px rgba(0,0,0,.08);
  padding: 12px 14px 12px 12px;
  max-width: 320px;
  width: calc(100vw - 48px);
  border-left: 4px solid var(--orange);
  transform: translateX(calc(-100% - 24px));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: auto;
}
.proof-notification.active {
  transform: translateX(0);
  opacity: 1;
}
.proof-notification.exit {
  transform: translateX(calc(-100% - 24px));
  opacity: 0;
  transition: transform 0.35s ease-in, opacity 0.3s ease;
}
.proof-map {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-100);
}
.proof-map img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-content { flex: 1; min-width: 0; }
.proof-name {
  font-size: .82rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.proof-details {
  font-size: .78rem;
  color: var(--gray-700);
  margin: 0 0 4px;
  line-height: 1.4;
}
.proof-time {
  font-size: .7rem;
  color: var(--gray-400);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #16a34a;
  color: white;
  font-size: .62rem;
  font-weight: 700;
  padding: 1px 5px 1px 2px;
  border-radius: 100px;
}
.verified-badge-icon {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.verified-badge-icon svg { width: 8px; height: 8px; }
.proof-notification .close-button {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 1rem;
  color: var(--gray-300);
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
  transition: color .15s;
}
.proof-notification .close-button:hover { color: var(--gray-500); }

@media (max-width: 400px) {
  .proof-notification {
    bottom: 16px;
    left: 12px;
    max-width: calc(100vw - 24px);
    width: calc(100vw - 24px);
  }
}


/* ══════════════════════════════════════════
   TYPEFORM-STYLE STEP TRANSITIONS
   ══════════════════════════════════════════ */
@keyframes stepIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stepOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-24px); }
}

.funnel-wrap {
  animation: stepIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.funnel-wrap.exit {
  animation: stepOut 0.28s ease-in forwards;
  pointer-events: none;
}


/* ══════════════════════════════════════════
   SPA FUNNEL — Single-page routing
   ══════════════════════════════════════════ */
.funnel-step { display: none; }
.funnel-step.active { display: block; }

.funnel-step .ty-wrap,
.funnel-step .dq-wrap { padding-top: 16px; }


/* ══════════════════════════════════════════
   "Other reason" reveal on motivation step
   ══════════════════════════════════════════ */
.other-reason-container { margin-top: 10px; display: none; }
.other-reason-container.show { display: block; }
.other-reason-container textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r);
  font-size: .95rem;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.other-reason-container textarea:focus { border-color: var(--navy); }
.other-reason-label {
  font-size: .84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
}


/* ══════════════════════════════════════════
   GOOGLE PLACES AUTOCOMPLETE
   ══════════════════════════════════════════ */
.pac-container {
  border: 1px solid var(--gray-200) !important;
  border-radius: 10px !important;
  box-shadow: var(--sh-md) !important;
  font-family: inherit !important;
  margin-top: 4px !important;
}
.pac-item { padding: 10px 14px !important; font-size: .9rem !important; }
.pac-item:hover { background: var(--gray-100) !important; }


/* ══════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════ */
.hidden { display: none !important; }


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 640px) {
  .field-row     { grid-template-columns: 1fr; }
  .bb-grid       { grid-template-columns: 1fr; gap: 28px; }
  .step-head h1  { font-size: 1.32rem; }
  .options-list.grid-2 { grid-template-columns: 1fr 1fr; }
  .modal-sheet   { border-radius: 18px 18px 0 0; }
}

@media (min-width: 641px) {
  .modal-overlay { align-items: center; padding: 20px; }
  .modal-sheet   { border-radius: 20px; max-width: 420px; }
  .bb-grid       { grid-template-columns: 1fr 1fr; gap: 28px; }
  .np-btn        { flex: 1 1 44px; height: 56px; font-size: 1rem; }
  .num-picker    { gap: 8px; }
  .bbb-img       { height: 42px; }
}

@media (min-width: 768px) {
  .step-head h1  { font-size: 1.65rem; }
  .funnel-wrap   { padding-top: 44px; }
}


/* ══════════════════════════════════════════
   FOOTER  (shared — funnel + landing page)
   ══════════════════════════════════════════ */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.45);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}

.footer-links a:hover { color: rgba(255,255,255,.8); }

@media (max-width: 480px) {
  .site-footer { flex-direction: column; align-items: center; text-align: center; }
}
