/* =====================================================
   Solved PM — Free Rent Estimate LP
   Consolidated from v4.css + styles.css quiz/btn/footer
   ===================================================== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #282f32;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Logo */
.lp-logo { display: inline-flex; align-items: center; text-decoration: none; }
.lp-logo img { height: 36px; width: auto; display: block; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px; border-radius: 12px;
  font-weight: 700; font-size: 16px;
  text-decoration: none; border: none; cursor: pointer; font-family: inherit;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.15s;
}
.btn-primary {
  background: linear-gradient(90deg, #f6ba6d 0%, #b0713a 100%);
  color: #1A1300;
  box-shadow: 0 8px 22px rgba(176, 113, 58, 0.32);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* =====================================================
   V4 page
   ===================================================== */
.v4-page {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #282f32;
  overflow-x: hidden;
}

/* Topbar */
.v4-topbar {
  background: #103947; color: rgba(255,255,255,0.85);
  font-size: 12px; padding: 8px 32px; text-align: center;
  letter-spacing: 0.02em; font-weight: 500;
}

/* Nav */
.v4-nav { background: #fff; border-bottom: 1px solid #E5E7EB; padding: 16px 32px; }
.v4-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.v4-nav-phone {
  color: #103947; text-decoration: none; font-weight: 700;
  font-size: 16px; display: inline-flex; align-items: center; gap: 6px;
}

/* Trust strip */
.v4-trust-strip {
  background: #FFF8EC;
  border-top: 1px solid rgba(176,113,58,0.18);
  border-bottom: 1px solid rgba(176,113,58,0.18);
  padding: 10px 24px;
}
.v4-trust-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: #4a3a1f; font-weight: 500;
}
.v4-trust-item { display: inline-flex; align-items: center; gap: 6px; }
.v4-trust-item strong { color: #103947; font-weight: 700; }
.v4-trust-stars { color: #b0713a; letter-spacing: 0.05em; }
.v4-trust-dot { color: rgba(176,113,58,0.4); }

/* Section primitives */
.v4-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.v4-narrow { max-width: 820px; }
.v4-section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.v4-section-eyebrow {
  display: inline-block;
  background: rgba(176, 113, 58, 0.1); color: #b0713a;
  font-weight: 700; font-size: 12px;
  padding: 6px 14px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.v4-section-head h2 {
  font-size: 36px; line-height: 1.15; font-weight: 800;
  color: #103947; letter-spacing: -0.025em; margin: 0;
}
.v4-h2-stack span { display: block; }

/* HERO */
.v4-hero { padding: 56px 32px 24px; }
.v4-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: start;
}
.v4-h1 {
  font-size: 64px; line-height: 1.0; font-weight: 900;
  letter-spacing: -0.04em; color: #103947; margin: 0 0 22px;
  /* text-wrap: balance keeps line lengths even regardless of city name length —
     "Mississauga property management" wraps as nicely as "Toronto property management". */
  text-wrap: balance;
}
.v4-h1-em {
  background: linear-gradient(90deg, #b0713a, #f6ba6d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.v4-sub { font-size: 18px; color: #3A4348; line-height: 1.6; margin: 0 0 24px; max-width: 540px; }
.v4-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.v4-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: #282f32; font-weight: 500;
}
.v4-bullets li svg {
  flex: 0 0 20px; width: 20px; height: 20px;
  border-radius: 50%; background: rgba(34, 197, 94, 0.12); padding: 3px;
}

/* Broker block + form rail */
.v4-form-rail { position: relative; }
.v4-broker-block {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #FFF8EE, #fff);
  border: 1px solid #f6ba6d;
  padding: 12px 16px; border-radius: 14px 14px 0 0;
  border-bottom: none;
}
.v4-broker-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #f6ba6d, #b0713a);
  overflow: hidden; flex-shrink: 0;
}
.v4-broker-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 50%;
}
.v4-broker-name { font-weight: 800; color: #103947; font-size: 14px; line-height: 1.3; }
.v4-broker-line { font-size: 12px; color: #6B7480; line-height: 1.4; }

/* Hero proof */
.v4-hero-proof {
  margin-top: -1px;
  padding: 14px 18px 16px;
  background: transparent;
  border: 0;
  border-top: 1px dashed rgba(176,113,58,0.28);
}
.v4-hero-proof-quote {
  margin: 0; padding: 0; border: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.v4-hero-proof-stars { color: #b0713a; font-size: 12px; letter-spacing: 0.08em; }
.v4-hero-proof-quote p {
  margin: 0; font-size: 13.5px; line-height: 1.5;
  color: #103947; font-weight: 500; font-style: italic;
}
.v4-hero-proof-quote footer {
  margin-top: 2px;
  font-size: 11.5px; color: #5b6770; font-weight: 600;
}

/* =====================================================
   QUIZ FORM
   ===================================================== */
.quiz-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 24px 60px rgba(15, 27, 45, 0.12);
  overflow: hidden;
  position: relative;
}
.quiz-card.gold::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f6ba6d, #b0713a);
  z-index: 2; pointer-events: none;
}
.quiz-head { padding: 22px 26px 0; }
.quiz-head-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 14px; }
.quiz-eyebrow {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: #16A34A;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.quiz-step { font-size: 12px; color: #6B7480; font-weight: 600; white-space: nowrap; }
.quiz-bar { height: 6px; background: #F0F2F5; border-radius: 999px; overflow: hidden; }
.quiz-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f6ba6d, #b0713a);
  border-radius: 999px;
  transition: width 0.3s ease;
}
.quiz-body { padding: 22px 26px 6px; }
.quiz-step-pane h3 {
  font-size: 22px; font-weight: 800;
  color: #103947; margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.quiz-sub { font-size: 13px; color: #6B7480; margin: 0 0 18px; line-height: 1.5; }
.quiz-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 14px;
}
.quiz-grid.two { grid-template-columns: 1fr 1fr; }
.quiz-grid.compact { gap: 8px; }
.quiz-opt {
  padding: 16px 18px;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  border-radius: 12px;
  font-weight: 700; font-size: 14px;
  color: #103947; cursor: pointer; font-family: inherit;
  text-align: left;
  transition: all 0.15s;
}
.quiz-opt:hover { border-color: #b0713a; background: #FFF8EE; transform: translateY(-1px); }
.quiz-opt.on { border-color: #b0713a; background: #FFF8EE; }
.quiz-opt.sm { padding: 10px 12px; font-size: 13px; min-height: 40px; }
.quiz-mini-label { font-size: 13px; font-weight: 600; color: #103947; margin: 14px 0 8px; }
.quiz-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  font-size: 15px; font-family: inherit;
  margin-bottom: 10px;
  color: #103947;
}
.quiz-input:focus { outline: none; border-color: #b0713a; box-shadow: 0 0 0 3px rgba(176, 113, 58, 0.12); }
.quiz-input.error { border-color: #DC2626; }
.quiz-error {
  display: none; color: #DC2626; font-size: 12px; font-weight: 600;
  margin: -4px 0 10px;
}
.quiz-error.on { display: block; }
.quiz-next { width: 100%; margin-top: 6px; }
.quiz-next:disabled { opacity: 0.5; cursor: not-allowed; }
.quiz-trust {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 11px; color: #6B7480;
  margin-top: 12px; line-height: 1.45;
}
.quiz-trust svg { flex-shrink: 0; margin-top: 2px; }
.quiz-back {
  background: none; border: none; padding: 10px 0;
  color: #6B7480; font-size: 12px; font-weight: 600;
  cursor: pointer; font-family: inherit;
}
.quiz-step-pane.done { text-align: center; padding: 16px 0 8px; }
.done-badge {
  width: 64px; height: 64px;
  background: #22C55E; border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.quiz-turnstile { margin: 12px 0 4px; min-height: 65px; display: flex; justify-content: center; }
.quiz-foot {
  display: flex; gap: 12px; flex-wrap: wrap;
  background: #F8FAFB;
  padding: 14px 26px;
  border-top: 1px solid #F0F2F5;
}
.qf-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #3A4348; font-weight: 600;
}

/* =====================================================
   US vs THEM TABLE (v4b)
   ===================================================== */
.v4b-vs { background: #FFFFFF; padding: 48px 0 32px; }
.v4b-table {
  margin-top: 36px;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 24px 48px -28px rgba(14,42,58,0.18);
}
.v4b-thead {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}
.v4b-th-axis {
  padding: 22px;
  background: #103947;
  display: flex; align-items: center; justify-content: flex-start;
}
.v4b-th-axis::before {
  content: 'What matters';
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #103947;
  background: #f6ba6d;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(246,186,109,0.35);
}
.v4b-th {
  padding: 22px 26px;
  display: flex; flex-direction: column; gap: 6px;
  border-left: 1px solid #E5E7EB;
}
.v4b-th-them { background: #F8DADA; }
.v4b-th-us   { background: #E3F4E8; }
.v4b-th-tag {
  display: inline-flex; align-items: center;
  width: max-content;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
}
.v4b-th-tag-them { background: #B23030; color: #fff; }
.v4b-th-tag-us   { background: #15803D; color: #fff; }
.v4b-th-label {
  font-size: 16px; font-weight: 700;
  color: #0E2A3A; line-height: 1.3;
}
.v4b-th-them .v4b-th-label { color: #8E3838; }
.v4b-tr {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  border-top: 1px solid rgba(14,42,58,0.14);
}
.v4b-tr:first-of-type { border-top: 0; }
.v4b-td-axis {
  position: relative;
  padding: 22px 22px 22px 28px;
  background: #FAF6EE;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: #2F5562;
  display: flex; align-items: center;
}
.v4b-td-axis::before {
  content: ''; position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: #f6ba6d;
  box-shadow: 0 0 0 3px rgba(246,186,109,0.18);
}
.v4b-td {
  padding: 22px 26px;
  display: flex; gap: 14px; align-items: flex-start;
  border-left: 1px solid rgba(14,42,58,0.04);
}
.v4b-td-them { background: #FCEBEB; }
.v4b-td-us   { background: #F1FAF3; }
.v4b-icon {
  flex: 0 0 32px; width: 32px; height: 32px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.v4b-icon-bad  { background: #DC2626; }
.v4b-icon-good { background: #16A34A; }
.v4b-td-text {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0; flex: 1 1 0;
}
.v4b-td-text strong {
  font-size: 15.5px; font-weight: 700; line-height: 1.32;
  color: #0E2A3A; letter-spacing: -0.005em;
}
.v4b-td-them .v4b-td-text strong { color: #8E3838; }
.v4b-td-text span {
  font-size: 13.5px; line-height: 1.55; color: #4B5563;
}
.v4b-td-them .v4b-td-text span { color: #8B4848; }
.v4b-vs-cta {
  margin-top: 30px;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.v4b-vs-cta-fine { font-size: 13px; color: #64748B; }

/* =====================================================
   PRICING
   ===================================================== */
.v4-pricing { padding: 32px 32px 80px; }
.v4-price-card {
  position: relative;
  max-width: 920px; margin: 0 auto;
  background: #fff; border: 1px solid #E5E7EB; border-radius: 22px;
  padding: 56px 40px 40px;
  display: flex; flex-direction: column; gap: 28px;
  box-shadow: 0 24px 60px rgba(15, 27, 45, 0.08);
  overflow: hidden;
}
.v4-price-ribbon {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, #f6ba6d 0%, #b0713a 100%);
  color: #fff;
  padding: 8px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(176,113,58,0.35);
  z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
}
.v4-price-ribbon::before { content: '★'; color: #fff; font-size: 11px; }
.v4-price-anchor {
  display: flex; gap: 16px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(246,186,109,0.12), rgba(176,113,58,0.06));
  border: 1px solid rgba(246,186,109,0.4);
  border-radius: 14px;
  padding: 18px 22px;
}
.v4-price-anchor-tag {
  flex-shrink: 0;
  background: linear-gradient(135deg, #f6ba6d, #b0713a);
  color: #fff; font-weight: 800; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  margin-top: 2px;
}
.v4-price-anchor p { margin: 0; font-size: 15px; color: #282f32; line-height: 1.55; }
.v4-price-anchor strong { color: #103947; font-weight: 700; }
.v4-price-anchor-save {
  background: linear-gradient(180deg, transparent 60%, rgba(246,186,109,0.45) 60%);
  padding: 0 2px;
}
.v4-price-configbar {
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: end;
  padding: 8px 0 24px;
  border-bottom: 1px dashed #E5E7EB;
}
.v4-price-config { display: flex; flex-direction: column; gap: 10px; }
.v4-price-label {
  font-size: 12px; font-weight: 800; color: #6B7480;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.v4-price-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.v4-price-pill {
  padding: 12px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  background: #F5F7F8; border: 1px solid #E5E7EB;
  color: #103947; cursor: pointer; font-family: inherit;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.v4-price-pill:hover { background: rgba(16,57,71,0.06); transform: translateY(-1px); }
.v4-price-pill.on {
  background: linear-gradient(135deg, #f6ba6d 0%, #b0713a 100%);
  border-color: #b0713a; color: #fff;
  box-shadow: 0 6px 18px rgba(176,113,58,0.32);
}
.v4-price-toggle {
  display: inline-flex; background: #F5F7F8;
  border: 1px solid #E5E7EB; border-radius: 999px; padding: 3px;
  width: fit-content;
}
.v4-price-toggle button {
  border: none; background: transparent; padding: 9px 0;
  min-width: 64px; text-align: center;
  border-radius: 999px; font-weight: 700; font-size: 13px;
  color: #6B7480; cursor: pointer; font-family: inherit;
}
.v4-price-toggle button.on {
  background: linear-gradient(135deg, #f6ba6d 0%, #b0713a 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(176,113,58,0.28);
}
.v4-price-result { text-align: left; padding: 4px 0 0; }
.v4-price-display { display: flex; align-items: baseline; gap: 6px; }
.v4-price-amt {
  font-size: 68px; font-weight: 900; color: #103947;
  letter-spacing: -0.04em; line-height: 1;
}
/* Gold pulse — fires every time the price amount re-renders (config change).
   Subtle 700ms scale + gold text-shadow glow to draw the eye to the result. */
@keyframes v4-price-pulse {
  0%   { transform: scale(1);     text-shadow: 0 0 0 rgba(246,186,109,0);    color: #103947; }
  30%  { transform: scale(1.04);  text-shadow: 0 0 24px rgba(246,186,109,0.7), 0 0 8px rgba(246,186,109,0.5); color: #b0713a; }
  100% { transform: scale(1);     text-shadow: 0 0 0 rgba(246,186,109,0);    color: #103947; }
}
.v4-price-flash {
  display: inline-block;
  transform-origin: left center;
  animation: v4-price-pulse 700ms ease-out;
}
.v4-price-per { font-size: 16px; color: #6B7480; font-weight: 600; }
.v4-price-extras { font-size: 14px; color: #6B7480; margin: 8px 0 0; }
.v4-price-extras strong { color: #103947; }
.v4-price-finefoot {
  font-size: 12px; color: rgba(40,47,50,0.55);
  margin-top: 8px; font-style: italic;
}
.v4-price-incl-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.v4-price-incl-tile {
  display: flex; gap: 12px; align-items: flex-start;
  background: #F8FAF8;
  border: 1px solid #E3EFE6;
  border-radius: 12px;
  padding: 14px 16px;
}
.v4-price-incl-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: #E3F4E8;
  border-radius: 8px;
  display: grid; place-items: center;
}
.v4-price-incl-tile strong {
  display: block;
  font-size: 14px; font-weight: 700; color: #103947;
  margin-bottom: 2px;
}
.v4-price-incl-tile span { font-size: 13px; color: #5A6770; line-height: 1.45; }
.v4-price-cta { width: 100%; padding: 16px 28px; text-align: center; }
.v4-price-addon {
  margin: 14px 0 0;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(246,186,109,0.10);
  border: 1px solid rgba(176,113,58,0.28);
  border-radius: 10px;
}
.v4-price-addon-icon { font-size: 16px; line-height: 1; flex-shrink: 0; }
.v4-price-addon-copy { font-size: 13px; line-height: 1.45; color: #4A3A22; font-weight: 500; }
.v4-price-addon-copy strong { color: #103947; font-weight: 700; }

/* =====================================================
   TIMELINE
   ===================================================== */
.v4-timeline { padding: 80px 32px; }
.v4-tl { max-width: 800px; margin: 0 auto; position: relative; }
.v4-tl::before {
  content: ''; position: absolute;
  left: 130px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, #f6ba6d, #b0713a);
}
.v4-tl-row {
  display: grid; grid-template-columns: 110px 32px 1fr;
  gap: 16px; align-items: start; padding: 14px 0;
}
.v4-tl-day {
  text-align: right; font-size: 13px; font-weight: 800;
  color: #b0713a; letter-spacing: 0.04em;
  text-transform: uppercase; padding-top: 4px;
}
.v4-tl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: #103947; border: 4px solid #fff;
  box-shadow: 0 0 0 2px #f6ba6d; margin: 6px auto 0;
}
.v4-tl-content h4 {
  font-size: 17px; font-weight: 800; color: #103947;
  margin: 0 0 4px;
}
.v4-tl-content p { font-size: 14px; color: #3A4348; line-height: 1.55; margin: 0; }

/* =====================================================
   REVIEWS
   ===================================================== */
.v4-reviews { background: #FAF6EE; padding: 84px 32px; }
.v4-reviews-head { text-align: center; margin-bottom: 36px; }
.v4-reviews-head .v4-section-eyebrow {
  background: #FFF; border: 1px solid rgba(14,42,58,0.1); color: #103947;
}
.v4-reviews-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.v4-review {
  background: #fff;
  border: 1px solid rgba(14,42,58,0.08);
  border-radius: 14px;
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  box-shadow: 0 6px 18px rgba(14,42,58,0.04);
}
.v4-review-stars { color: #f6ba6d; letter-spacing: 2px; font-size: 16px; margin-bottom: 12px; }
.v4-review-quote {
  margin: 0 0 22px;
  font-size: 16px; line-height: 1.6; color: #282f32;
  font-weight: 500; flex: 1;
}
.v4-review-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.v4-review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #f6ba6d, #b0713a);
  color: #fff; font-weight: 800; font-size: 14px;
  display: grid; place-items: center;
  flex: 0 0 44px;
}
.v4-review-name { font-weight: 800; color: #103947; font-size: 14px; }
.v4-review-role { font-size: 12px; color: #6B7480; }
.v4-reviews-dots { display: none; justify-content: center; gap: 8px; margin-top: 18px; }
.v4-reviews-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(14,42,58,0.18); border: 0; padding: 0; cursor: pointer;
  transition: all 0.2s ease;
}
.v4-reviews-dot[data-active="true"] { background: #103947; width: 24px; border-radius: 4px; }
.v4-tenants {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(14,42,58,0.1);
}
.v4-tenants-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B7480; text-align: center; margin-bottom: 16px;
}
.v4-tenants-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 880px; margin: 0 auto;
}
.v4-tenant {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(14,42,58,0.06);
  border-radius: 10px;
  padding: 14px 16px;
}
.v4-tenant-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(16,57,71,0.12);
  color: #103947; font-weight: 800; font-size: 11px;
  display: grid; place-items: center;
  flex: 0 0 32px;
}
.v4-tenant-quote { font-size: 13px; line-height: 1.5; color: #4a5258; margin-bottom: 4px; }
.v4-tenant-who { font-size: 11px; color: #6B7480; }
.v4-tenant-who strong { color: #103947; }

/* =====================================================
   FAQ
   ===================================================== */
.v4-faq { padding: 80px 32px; }
.v4-faq-list { display: grid; gap: 10px; }
.v4-faq-item {
  background: #fff; border: 1px solid #E5E7EB;
  border-radius: 12px;
}
.v4-faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  font-weight: 700; font-size: 16px; color: #103947;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.v4-faq-item summary::-webkit-details-marker { display: none; }
.v4-faq-item summary::after { content: '+'; font-size: 22px; color: #b0713a; font-weight: 300; flex-shrink: 0; }
.v4-faq-item[open] summary::after { content: '−'; }
.v4-faq-item > div {
  padding: 0 24px 22px;
  color: #3A4348; font-size: 15px; line-height: 1.6;
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.v4-final {
  padding: 72px 32px;
  background: linear-gradient(135deg, #103947 0%, #0B2A35 100%);
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.v4-final::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(246, 186, 109, 0.25), transparent 70%);
}
.v4-final-inner { position: relative; max-width: 640px; margin: 0 auto; }
.v4-final h2 {
  font-size: 40px; font-weight: 900;
  color: #fff; letter-spacing: -0.025em;
  line-height: 1.1; margin: 0 0 12px;
}
.v4-final p { font-size: 16px; color: rgba(255,255,255,0.78); margin: 0 0 24px; }
.v4-final-cta { font-size: 17px; padding: 18px 32px; }
.v4-final-phone { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.6); }
.v4-final-phone a { color: #f6ba6d; text-decoration: none; font-weight: 700; }

/* =====================================================
   MOBILE STICKY CTA
   ===================================================== */
.v4-mobile-cta { display: none; }

/* =====================================================
   FOOTER (minimal)
   ===================================================== */
.lp-footer-min {
  background: #0B1F26;
  color: rgba(255,255,255,0.65);
  padding: 28px 24px 22px;
  font-size: 13px;
}
.lp-footer-min-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-footer-min-brand { display: contents; }
.lp-footer-min-left { display: flex; align-items: center; }
.lp-footer-min-left .lp-logo img { height: 30px; }
.lp-footer-min-phone-m { display: none; }
.lp-footer-min-addr {
  color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.5;
  text-align: right;
}
.lp-footer-min-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,0.5);
}
.lp-footer-min-copy { color: rgba(255,255,255,0.5); }
.lp-footer-min-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lp-footer-min-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-weight: 500; }
.lp-footer-min-links a:hover { color: #f6ba6d; }
.lp-footer-min-sep { color: rgba(255,255,255,0.25); }

/* =====================================================
   TABLET (721px – 1023px)
   ===================================================== */
@media (max-width: 1023px) and (min-width: 721px) {
  .v4-section-inner { padding: 0 28px; }
  .v4-section-head h2 { font-size: 32px; }
  .v4-hero { padding: 44px 28px 20px; }
  .v4-hero-inner { gap: 36px; }
  .v4-h1 { font-size: 48px; }
  .v4b-vs { padding: 64px 0 32px; }
  .v4-pricing { padding: 32px 28px 64px; }
  .v4-price-card { padding: 28px; gap: 22px; }
  .v4-price-amt { font-size: 56px; }
  .v4-timeline, .v4-reviews, .v4-faq { padding: 64px 28px; }
  .v4-final { padding: 64px 28px; }
  .v4-final h2 { font-size: 34px; }
}

/* =====================================================
   MOBILE (≤720px)
   ===================================================== */
@media (max-width: 720px) {
  .v4-topbar { font-size: 11px; padding: 8px 14px; line-height: 1.4; }
  .v4-nav { padding: 12px 14px; }
  .v4-nav-inner { gap: 10px; }
  .v4-nav .lp-logo img { height: 26px; }
  .v4-nav-phone { font-size: 14px; gap: 5px; white-space: nowrap; }
  .v4-nav-phone-icon { font-size: 12px; }
  .v4-trust-strip { padding: 8px 12px; }
  .v4-trust-strip-inner { font-size: 11.5px; gap: 6px 10px; text-align: center; }

  .v4-section-inner { padding: 0 18px; }
  .v4-section-head { margin-bottom: 32px; }
  .v4-section-head h2 { font-size: 26px; line-height: 1.15; }

  /* HERO */
  .v4-hero { padding: 24px 16px 16px; }
  .v4-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
    padding: 0;
  }
  .v4-h1 { font-size: 40px; line-height: 1.05; letter-spacing: -0.025em; word-wrap: break-word; }
  .v4-h1 br { display: none; }
  .v4-sub { font-size: 15px; line-height: 1.55; }
  .v4-bullets li { font-size: 14px; line-height: 1.5; }
  .v4-form-rail { width: 100%; max-width: 100%; padding: 0; }
  .v4-broker-block { gap: 12px; padding: 10px 12px; }
  .v4-broker-avatar { width: 48px; height: 48px; flex-shrink: 0; }
  .v4-broker-name { font-size: 13px; line-height: 1.25; }
  .v4-broker-line { font-size: 12px; line-height: 1.35; }
  .v4-hero-proof { padding: 12px 14px 14px; }
  .v4-hero-proof-quote p { font-size: 13px; }

  /* Quiz */
  .quiz-card input, .quiz-card select, .quiz-card button { font-size: 14px; }

  /* VS table */
  .v4b-vs { padding: 24px 0 64px; overflow-x: hidden; }
  .v4b-vs .v4-section-inner { padding: 0 16px; max-width: 100vw; }
  .v4b-table { border-radius: 14px; width: 100%; max-width: 100%; }
  .v4b-thead { display: none; }
  .v4b-tr {
    grid-template-columns: 1fr;
    border-top: 8px solid #F3F4F6;
  }
  .v4b-tr:first-of-type { border-top: 0; }
  .v4b-td-axis {
    padding: 14px 18px 14px 34px;
    background: #0E2A3A;
    color: #f6ba6d;
    font-size: 12px;
  }
  .v4b-td-axis::before { left: 18px; width: 7px; height: 7px; }
  .v4b-td {
    padding: 16px 18px;
    border-left: 0;
    border-top: 1px solid #EDEFF2;
  }
  .v4b-td-them, .v4b-td-us { position: relative; padding-top: 16px; padding-right: 86px; }
  .v4b-td-them::before, .v4b-td-us::before {
    position: absolute; top: 12px; right: 14px; left: auto;
    font-size: 9px; font-weight: 800; letter-spacing: 0.14em;
    color: #fff;
    padding: 3px 7px; border-radius: 999px;
  }
  .v4b-td-them::before { content: 'OTHERS'; background: #9B2C2C; }
  .v4b-td-us::before { content: 'SOLVED'; background: #15803D; }
  .v4b-td-text strong { font-size: 14.5px; }
  .v4b-td-text span { font-size: 13px; }
  .v4b-vs-cta { flex-direction: column; align-items: stretch; }
  .v4b-vs-cta .btn { text-align: center; }
  .v4b-vs-cta-fine { text-align: center; }

  /* Pricing */
  .v4-pricing { padding: 8px 16px 40px; }
  .v4-pricing .v4-section-head { margin-bottom: 14px; }
  .v4-price-card { gap: 20px; padding: 22px; padding-top: 22px; border-radius: 18px; }
  .v4-price-ribbon {
    position: static; align-self: flex-start;
    margin: 0 0 4px; width: fit-content;
    padding: 6px 12px; font-size: 10px; letter-spacing: 0.06em;
  }
  .v4-price-anchor { flex-direction: column; gap: 10px; padding: 16px; }
  .v4-price-anchor-tag { align-self: flex-start; }
  .v4-price-anchor p { font-size: 14px; line-height: 1.5; }
  .v4-price-configbar { grid-template-columns: 1fr; gap: 18px; padding: 4px 0 18px; }
  .v4-price-config { gap: 8px; }
  .v4-price-pills { gap: 6px; }
  .v4-price-pill { padding: 8px 12px; font-size: 12px; }
  .v4-price-toggle button { padding: 7px 16px; font-size: 12px; }
  .v4-price-amt { font-size: 48px; }
  .v4-price-incl-grid { grid-template-columns: 1fr; gap: 10px; }
  .v4-price-incl-tile { padding: 12px 14px; }
  .v4-price-incl-tile strong { font-size: 13px; }
  .v4-price-incl-tile span { font-size: 12.5px; }
  .v4-price-cta { padding: 14px 20px; font-size: 15px; }
  .v4-price-addon { padding: 10px 12px; gap: 9px; }

  /* Timeline */
  .v4-timeline { padding: 48px 16px; }
  .v4-tl::before { left: 74px; }
  .v4-tl-row { grid-template-columns: 64px 24px 1fr; gap: 10px; }
  .v4-tl-day { font-size: 11px; }
  .v4-tl-content h4 { font-size: 15px; }
  .v4-tl-content p { font-size: 13px; }

  /* Reviews — peek carousel */
  .v4-reviews { padding: 56px 0 48px; }
  .v4-reviews-head { padding: 0 20px; margin-bottom: 24px; }
  .v4-reviews-track {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 20px 12px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 32px), transparent 100%);
            mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 32px), transparent 100%);
  }
  .v4-reviews-track::-webkit-scrollbar { display: none; }
  .v4-review {
    flex: 0 0 calc(100% - 60px);
    scroll-snap-align: start;
    padding: 22px 20px 18px;
  }
  .v4-review-quote { font-size: 15px; }
  .v4-reviews-dots { display: flex; }
  .v4-tenants { margin: 28px 20px 0; padding-top: 20px; }
  .v4-tenants-row { grid-template-columns: 1fr; gap: 10px; }

  /* FAQ */
  .v4-faq { padding: 48px 16px; }
  .v4-faq-item summary { padding: 18px; font-size: 15px; }
  .v4-faq-item > div { padding: 0 18px 20px; font-size: 14px; }

  /* Final */
  .v4-final { padding: 56px 18px; }
  .v4-final h2 { font-size: 28px; }
  .v4-final-cta {
    font-size: 15px; padding: 16px 24px;
    width: 100%; max-width: 320px;
    display: inline-block; box-sizing: border-box;
  }

  /* Mobile sticky CTA — visible only on mobile */
  .v4-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    z-index: 9990;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    background: linear-gradient(90deg, #f6ba6d 0%, #b0713a 100%);
    color: #1A1300;
    font-size: 16px; font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(16,57,71,0.28), 0 4px 12px rgba(176,113,58,0.32);
  }
  .v4-mobile-cta:active { transform: translateY(1px); }

  /* Footer */
  .lp-footer-min { padding: 22px 18px 18px; }
  .lp-footer-min-inner {
    flex-direction: column; align-items: center; gap: 14px;
    padding-bottom: 14px;
  }
  .lp-footer-min-brand {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; gap: 14px;
  }
  .lp-footer-min-phone-m {
    display: inline-block;
    color: #fff; font-weight: 600; font-size: 14px;
    text-decoration: none;
  }
  .lp-footer-min-phone-d, .lp-footer-min-sep-d { display: none; }
  .lp-footer-min-addr { font-size: 12px; text-align: center; }
  .lp-footer-min-bottom { align-items: center; text-align: center; }
  .lp-footer-min-links { justify-content: center; gap: 8px; font-size: 12px; }
  .lp-footer-min { padding-bottom: 90px; } /* leave room for sticky CTA */
}

/* =====================================================
   GOOGLE PLACES AUTOCOMPLETE DROPDOWN
   Style the .pac-container Google injects so it matches
   the LP brand instead of looking like a stock widget.
   ===================================================== */
.pac-container {
  z-index: 100000 !important;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
  border-radius: 12px !important;
  border: 1.5px solid #E5E7EB !important;
  box-shadow: 0 10px 30px rgba(15, 27, 45, 0.12) !important;
  margin-top: 6px !important;
  padding: 4px 0 !important;
  background: #fff !important;
}
.pac-item {
  padding: 10px 14px !important;
  font-size: 14px !important;
  cursor: pointer !important;
  color: #3A4348 !important;
  border-top: 1px solid #F5F7F8 !important;
}
.pac-item:first-child {
  border-top: 0 !important;
}
.pac-item:hover,
.pac-item-selected {
  background: #FFF8EE !important;
}
.pac-item-query {
  color: #103947 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}
.pac-matched {
  font-weight: 800 !important;
}
/* Hide the "powered by Google" footer on the dropdown — Google's TOS allows
   hiding the standalone logo as long as the autocomplete is used in conjunction
   with a Google Map. The footer is small enough that we can keep it if desired. */
.pac-icon { display: none !important; }
.pac-item { padding-left: 14px !important; }

/* =====================================================
   SMALL MOBILE (≤480px)
   ===================================================== */
@media (max-width: 480px) {
  .v4-h1 { font-size: 34px; letter-spacing: -0.025em; }
  .v4-section-head h2 { font-size: 24px; }
  .v4-price-pill { font-size: 11.5px; padding: 7px 11px; }
  .v4-price-amt { font-size: 42px; }
  .v4-final h2 { font-size: 26px; }
  .v4-trust-strip-inner { font-size: 11px; gap: 6px; }
  .v4-nav-phone-num { font-size: 13px; }
}

/* =====================================================
   V4 STATS STRIP — dark teal hero band with gold italic numbers
   Placed between hero and comparison table per playbook.
   ===================================================== */
.v4-stats {
  background: #103947;
  color: #fff;
  padding: 28px 0;
}
.v4-stats-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.v4-stat {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 6px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.v4-stat:last-child { border-right: 0; }
.v4-stat-num {
  font-size: 36px; font-weight: 900;
  font-style: italic;
  color: #f6ba6d;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.v4-stat-label {
  margin-top: 6px;
  font-size: 12.5px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}
.v4-stats-dots { display: none; }

/* Tablet — tighten */
@media (max-width: 1023px) and (min-width: 721px) {
  .v4-stats { padding: 24px 0; }
  .v4-stats-track { padding: 0 24px; }
  .v4-stat-num { font-size: 28px; }
  .v4-stat-label { font-size: 11.5px; }
}

/* Mobile — 2-card-peek scrollable carousel with dots */
@media (max-width: 720px) {
  .v4-stats { padding: 22px 0 16px; }
  .v4-stats-track {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 16px;
    padding: 0 16px 8px;
    gap: 0;
    scrollbar-width: none;
  }
  .v4-stats-track::-webkit-scrollbar { display: none; }
  .v4-stat {
    flex: 0 0 50%;
    scroll-snap-align: center;
    padding: 8px 16px;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .v4-stat:last-child { border-right: 0; }
  .v4-stat-num { font-size: 26px; }
  .v4-stat-label { font-size: 11.5px; }
  .v4-stats-dots {
    display: flex; justify-content: center; gap: 6px;
    margin-top: 10px;
  }
  .v4-stats-dots .dot {
    width: 6px; height: 6px; border-radius: 50%;
    border: 0; padding: 0;
    background: rgba(255,255,255,0.25);
    cursor: pointer; transition: all 0.2s ease;
  }
  .v4-stats-dots .dot.on {
    background: #f6ba6d;
    width: 18px; border-radius: 999px;
  }
}
