/* People Vetting marketing — same concept as ecertify.org (iscb2) */
:root {
  --bg: #f5f7fc;
  --surface: rgba(255, 255, 255, 0.98);
  --ink: #15316d;
  --muted: #6578a3;
  --line: rgba(21, 49, 109, 0.12);
  --accent: #10c469;
  --accent-dark: #0aa758;
  --brand: #243f87;
  --brand-dark: #193069;
  --shadow: 0 22px 54px rgba(24, 48, 104, 0.12);
  --radius: 12px;
  --container: min(1180px, calc(100vw - 40px));
  /* Stacked marketing header (slim + brand bar + nav) */
  --pv-header-offset: 15.5rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.pv-marketing {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f9fd 0%, #edf2fa 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

.container {
  width: var(--container);
  margin: 0 auto;
}

.pv-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-dark);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.pv-skip:focus { left: 0; }

/* —— Header 3 capas (ecertify) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 28px rgba(26, 46, 90, 0.08);
}

.topbar-slim {
  background: #fff;
  border-bottom: 1px solid rgba(36, 63, 135, 0.1);
}
.topbar-slim__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}
.candidate-login-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.candidate-login-link::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(16, 196, 105, 0.14);
}
.candidate-login-link:hover { color: var(--accent-dark); }

.topbar-slim__languages {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.btn-lang {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.btn-lang:hover {
  color: var(--brand);
  background: rgba(36, 63, 135, 0.06);
}
.btn-lang.is-active {
  color: var(--brand);
  font-weight: 800;
}
.btn-lang.is-active::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-inline-end: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(16, 196, 105, 0.14);
}

html[dir="rtl"] .candidate-login-link::before {
  margin-right: 0;
  margin-left: 8px;
}

.header-top {
  background: var(--brand);
  color: #fff;
}
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 140px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand__logo {
  height: 96px;
  width: auto;
  max-width: min(420px, 58vw);
  display: block;
  background: transparent !important;
  object-fit: contain;
}

.header-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.info-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}
.info-chip__icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.info-chip small,
.info-chip strong { display: block; }
.info-chip small {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 3px;
  font-size: 0.75rem;
}
.info-chip strong {
  font-size: 1.02rem;
  color: #fff;
  font-weight: 700;
}

.header-nav-wrap {
  background: #fff;
  border-bottom: 1px solid rgba(36, 63, 135, 0.08);
}
.nav-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
}
.nav {
  display: flex;
  align-items: stretch;
}
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-left: 1px solid rgba(36, 63, 135, 0.08);
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.nav a:last-child { border-right: 1px solid rgba(36, 63, 135, 0.08); }
.nav a.is-current,
.nav a:hover { color: var(--accent-dark); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-1px); }
.button--small,
.button--primary {
  background: var(--accent);
  color: #fff;
}
.button--small {
  min-height: 56px;
  padding: 0 28px;
}
.button--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.button--ghost-ink {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}
.button--ghost-ink:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* —— Hero: fill remaining viewport under header (100% first fold) —— */
.hero {
  position: relative;
  overflow: clip;
  /* Was fixed 680px — taller than many laptops once the header is included */
  height: calc(100dvh - var(--pv-header-offset));
  min-height: 28rem;
  max-height: calc(100dvh - var(--pv-header-offset));
  background: #111827;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 24, 0.88) 0%, rgba(8, 14, 28, 0.72) 38%, rgba(12, 20, 40, 0.28) 66%, rgba(12, 20, 40, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.22) 0%, rgba(8, 14, 28, 0.08) 40%, rgba(8, 14, 28, 0.35) 100%);
  z-index: 2;
}
.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero__portrait.is-active {
  opacity: 1;
}
.hero__grid {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 0;
  padding: 36px 0 64px;
}
.hero__slides {
  position: relative;
  width: min(520px, 100%);
  min-height: 320px;
}
.hero__content {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  pointer-events: none;
}
.hero__content.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.hero__brand-mark {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.hero .eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 16ch;
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
.hero__lead {
  margin: 14px 0 0;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.55;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero__nav {
  position: absolute;
  left: 0;
  bottom: 36px;
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}
.hero__dot.is-active {
  width: 28px;
  background: var(--accent);
  transform: none;
}
.hero__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* —— Sections —— */
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}
.section { padding: 86px 0; }
.section--muted { background: #f4f6fb; }
.section--accent {
  background: linear-gradient(135deg, rgba(25, 48, 105, 0.98), rgba(36, 63, 135, 0.94));
  color: #fff;
}
.section__heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section__heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section__heading p,
.section p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}
.section--accent .eyebrow { color: var(--accent); }
.section--accent h2,
.section--accent p { color: #fff; }
.section--accent p { opacity: 0.88; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.stats-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .stats-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.stat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  background: transparent;
  margin-bottom: 2px;
}
.stat-card strong {
  display: block;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}
.stat-card__link {
  margin-top: auto;
  padding-top: 8px;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.stat-card__link:hover { text-decoration: underline; }

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.callout h2 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  font-weight: 800;
}
.callout p { margin: 0; max-width: 48ch; }
.callout__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.miami-wedge {
  padding: 22px 24px;
  border-left: 3px solid var(--brand);
  background: #f3f7fc;
}
.miami-wedge .eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
}
.miami-wedge h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}
.miami-wedge p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.rent-lookup {
  max-width: 920px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.rent-lookup__intro {
  max-width: 720px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.55;
}
.rent-lookup__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
}
.rent-lookup label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}
.rent-lookup input,
.rent-lookup select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}
.rent-lookup__actions { margin: 16px 0 8px; }
.rent-lookup__note,
.rent-lookup__muted {
  color: var(--muted);
  font-size: 0.92rem;
}
.rent-lookup__error {
  margin-top: 16px;
  color: #8b1e1e;
  font-weight: 600;
}
.rent-lookup__results { margin-top: 28px; }

.rent-hit-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.rent-hit-list li + li { border-top: 1px solid var(--line); }
.rent-hit-list a {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
}
.rent-hit-list a:hover { background: #f7f8fa; }
.rent-hit-list strong { color: var(--brand, #1f4b7a); }
.rent-hit-list span {
  color: var(--muted);
  font-size: 0.92rem;
}
.rent-lookup__pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}
.rent-lookup__pager-btn {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}
.rent-lookup__pager-btn:hover { background: #eef2f7; }
.rent-lookup__pager-btn.is-disabled {
  color: var(--muted);
  background: #f7f8fa;
  pointer-events: none;
}
.rent-lookup__pager-status {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.rent-building .rent-result__verdict {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--brand, #1f4b7a);
  background: #f3f6fa;
  font-weight: 600;
  line-height: 1.45;
}
.rent-building .rent-result__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.rent-building .rent-result__meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.rent-building .rent-result__meta dd {
  margin: 4px 0 0;
  font-weight: 600;
}

.rent-bldg {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 16px 56px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.rent-bldg__crumbs {
  margin: 0 0 12px;
}
.rent-bldg__card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(21, 49, 109, 0.04);
  overflow: hidden;
}
.rent-bldg__head {
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--line);
}
.rent-bldg__head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 8px;
}
.rent-bldg__badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: #e8eef8;
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rent-bldg__source {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.rent-bldg__head h1 {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.rent-bldg__sub {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.rent-bldg__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: #f7f9fc;
}
.rent-bldg__meta > div {
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.rent-bldg__meta > div:last-child { border-right: 0; }
.rent-bldg__meta dt {
  margin: 0 0 3px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.rent-bldg__meta dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.rent-bldg__owner,
.rent-bldg__signal,
.rent-bldg__split > section,
.rent-bldg__research,
.rent-bldg__occupancy,
.rent-bldg__cta {
  padding: 16px 20px;
}
.rent-bldg__owner {
  border-bottom: 1px solid var(--line);
}
.rent-bldg__owner-kicker {
  margin: 0 0 6px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.rent-bldg__owner-steps {
  margin: 10px 0 0;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}
.rent-bldg__owner-steps li + li { margin-top: 6px; }
.rent-bldg__signal {
  background: #f3f7fc;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--brand);
}
.rent-bldg__card h2 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
}
.rent-bldg__card h2 + h2 { margin-top: 14px; }
.rent-bldg__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.rent-bldg__signal p {
  color: var(--ink);
  font-weight: 600;
}
.rent-bldg__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.rent-bldg__split > section {
  border-right: 1px solid var(--line);
}
.rent-bldg__split > section:last-child { border-right: 0; }
.rent-bldg__flags {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}
.rent-bldg__flags li + li { margin-top: 6px; }
.rent-bldg__research { border-bottom: 1px solid var(--line); }
.rent-bldg__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rent-bldg__links a {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f8fa;
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
}
.rent-bldg__links a:hover { background: #eef2f7; }
.rent-bldg__cta { background: #f7f8fa; }
.rent-bldg__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px !important;
}
.rent-bldg__more {
  margin-top: 12px !important;
  font-size: 0.88rem;
}
.rent-bldg__disclaimer {
  margin: 14px 2px 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.rent-ziplist {
  list-style: none;
  margin: 12px 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px;
}
.rent-ziplist a {
  display: block;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
}
.rent-ziplist a:hover,
.rent-ziplist a:focus-visible {
  border-color: var(--brand);
  background: #f3f7fc;
}
.rent-ziplist strong { display: block; font-size: 1rem; }
.rent-ziplist span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.85rem;
}
.rent-ziplist--boroughs { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.rent-bldg__nearby {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.rent-bldg__nearby-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 4px 14px;
}
.rent-bldg__nearby-list a {
  display: block;
  padding: 2px 0;
  font-size: 0.9rem;
}
.rent-bldg__nearby-more {
  margin-top: 12px !important;
  font-size: 0.88rem;
}

.rent-bldg__occupancy {
  border-bottom: 1px solid var(--line);
}
.rent-bldg__occupancy-note {
  margin-top: 10px !important;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.rent-bldg__form { margin-top: 14px; }
.rent-bldg__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rent-bldg__form-wide { grid-column: 1 / -1; }
.rent-bldg__form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}
.rent-bldg__form input,
.rent-bldg__form select,
.rent-bldg__form textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-weight: 400;
  background: #fff;
}
.rent-bldg__form textarea { resize: vertical; min-height: 96px; }
.rent-bldg__form input:focus-visible,
.rent-bldg__form select:focus-visible,
.rent-bldg__form textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}
/* Honeypot: removed from view without display:none, which bots detect. */
.rent-bldg__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.rent-bldg__form-ok,
.rent-bldg__form-error {
  margin: 12px 0 0 !important;
  padding: 0.75rem 0.9rem;
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.rent-bldg__form-ok {
  background: #e8f6ef;
  border: 1px solid #9ed4b8;
  color: #0f6b46;
}
.rent-bldg__form-error {
  background: #fdeceb;
  border: 1px solid #f0b4ae;
  color: #8a1f14;
}
.rent-bldg__form-error ul { margin: 0; padding-left: 1.1rem; }
.rent-bldg__form-privacy {
  margin-top: 10px !important;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .rent-lookup__grid,
  .rent-building .rent-result__meta { grid-template-columns: 1fr; }
  .rent-bldg__meta {
    grid-template-columns: 1fr 1fr;
  }
  .rent-bldg__meta > div:nth-child(2n) { border-right: 0; }
  .rent-bldg__meta > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .rent-bldg__form-grid { grid-template-columns: 1fr; }
  .rent-bldg__split { grid-template-columns: 1fr; }
  .rent-bldg__split > section {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .rent-bldg__split > section:last-child { border-bottom: 0; }
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.why-list li {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-list strong {
  font-size: 1.08rem;
  color: var(--ink);
}
.why-list span {
  color: var(--muted);
  line-height: 1.55;
  max-width: 62ch;
}

/* —— Footer —— */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 28px;
}
.site-footer__inner {
  display: grid;
  gap: 36px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) minmax(0, 2.2fr);
  gap: 40px 48px;
  align-items: start;
}
.site-footer__brand {
  display: grid;
  gap: 14px;
}
.site-footer .brand__logo { height: 64px; max-width: min(280px, 70vw); }
.site-footer__tagline {
  margin: 0;
  max-width: 28ch;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__office {
  margin: 10px 0 0;
  max-width: 32ch;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
}
.site-footer__heading {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.site-footer__list a,
.site-footer__prefs {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.site-footer__list a:hover,
.site-footer__prefs:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.site-footer__note,
.site-footer__copy {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
  max-width: 62ch;
}

/* Interior page hero (trust/legal) */
.page-hero {
  background: var(--brand);
  color: #fff;
  padding: 56px 0 48px;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.page-hero p {
  margin: 12px 0 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.82);
}
.page-body {
  padding: 48px 0 72px;
}
.page-body .prose {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
}
.page-body .prose h2 {
  color: var(--ink);
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}
.page-body .prose a { color: var(--brand); font-weight: 600; }

/* Compat for existing legal blades (pv-page / pv-prose) */
.pv-page {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 20px 72px;
}
.pv-page__header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pv-page__header p {
  margin: 10px 0 0;
  color: var(--muted);
}
.pv-prose {
  margin-top: 28px;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
}
.pv-prose h2 {
  color: var(--ink);
  margin: 1.75rem 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
}
.pv-prose a { color: var(--brand); font-weight: 600; }
.pv-prose ul { padding-left: 1.2rem; }
.pv-draft-banner {
  margin-top: 1.5rem;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(16, 196, 105, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
}

/* —— Pricing (Checkr-like structure, ecertify look) —— */
.page-hero--pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 88% 20%, rgba(16, 196, 105, 0.18), transparent 55%),
    linear-gradient(135deg, #193069 0%, #243f87 55%, #1a2f66 100%);
}
.page-hero--pricing .eyebrow { color: var(--accent); }
.page-hero--pricing h1 { max-width: 16ch; }

.pricing-draft { margin: 0 0 28px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: 0 14px 36px rgba(24, 48, 104, 0.07);
  animation: planRise 520ms ease both;
}
.plan-card:nth-child(2) { animation-delay: 60ms; }
.plan-card:nth-child(3) { animation-delay: 120ms; }
.plan-card:nth-child(4) { animation-delay: 180ms; }

@keyframes planRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.plan-card--featured {
  border-color: rgba(16, 196, 105, 0.55);
  box-shadow: 0 22px 48px rgba(16, 196, 105, 0.14);
  transform: translateY(-6px);
}
.plan-card--enterprise {
  background: linear-gradient(180deg, #f7f9fd 0%, #fff 40%);
}

.plan-card__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.plan-card__head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.plan-card__head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  min-height: 2.9em;
}

.plan-card__price { margin: 22px 0 8px; }
.plan-card__starting {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.plan-card__amount {
  margin: 4px 0 0;
  font-size: clamp(2.2rem, 2.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.plan-card__amount--text {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 10px;
}
.plan-card__currency {
  font-size: 0.55em;
  vertical-align: super;
  margin-inline-end: 2px;
  color: var(--brand);
}
.plan-card__unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.plan-card__includes {
  margin: 18px 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
}

.plan-card__features {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  flex: 1;
}
.plan-card__features li {
  position: relative;
  padding: 7px 0 7px 22px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(21, 49, 109, 0.06);
}
.plan-card__features li:last-child { border-bottom: 0; }
.plan-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 196, 105, 0.14);
}
html[dir="rtl"] .plan-card__features li {
  padding: 7px 22px 7px 0;
}
html[dir="rtl"] .plan-card__features li::before {
  left: auto;
  right: 0;
}

.plan-card__cta {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin-top: 36px;
  max-width: 720px;
  padding: 22px 24px;
  border-left: 3px solid var(--brand);
  background: rgba(36, 63, 135, 0.04);
}
html[dir="rtl"] .pricing-note {
  border-left: 0;
  border-right: 3px solid var(--brand);
}
.pricing-note h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}
.pricing-note p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.pricing-note p:last-child { margin-bottom: 0; }

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.compare-table thead th {
  background: rgba(36, 63, 135, 0.06);
  color: var(--brand);
  font-weight: 800;
}
.compare-table tbody th {
  text-align: start;
  font-weight: 600;
  color: var(--ink);
  width: 36%;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(16, 196, 105, 0.12);
  color: var(--accent-dark);
  font-weight: 800;
}
.compare-no { color: #a8b4d0; font-weight: 600; }

.pricing-why .stat-card strong {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* Pricing product tabs */
.pricing-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 22px;
  padding: 5px;
  background: rgba(36, 63, 135, 0.06);
  border-radius: 8px;
}
.pricing-tabs__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pricing-tabs__icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
}
.pricing-tabs__btn:hover { color: var(--brand); }
.pricing-tabs__btn.is-active {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 6px 16px rgba(24, 48, 104, 0.08);
}
.pricing-panel { display: none; }
.pricing-panel.is-active { display: block; animation: planRise 420ms ease both; }
.pricing-panel__intro {
  margin: 0 0 20px;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.55;
}

/* Products mega menu */
.nav-item--mega {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-link-btn {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-left: 1px solid rgba(36, 63, 135, 0.08);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link-btn.is-current,
.nav-link-btn:hover,
.nav-item--mega.is-open .nav-link-btn {
  color: var(--accent-dark);
}
.nav-mega {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  z-index: 40;
  width: min(980px, calc(100vw - 32px));
  padding-top: 10px;
}
.nav-item--mega.is-open .nav-mega { display: block; }
.nav-item--places .nav-mega {
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100dvh - var(--pv-header-offset) - 12px);
}
.nav-item--places .mega {
  max-height: inherit;
  overflow: auto;
}
.mega--places {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.mega__places-group {
  min-width: 0;
  padding: 14px 14px 16px;
  border-right: 1px solid var(--line);
}
.mega__places-group:last-child { border-right: 0; }
.mega--places .mega__col-label {
  display: inline-block;
  margin: 0 0 10px;
  text-decoration: none;
}
.mega--places .mega__col-label:hover {
  color: var(--accent-dark);
}
.mega__products--stack {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0;
}
.mega__product--row {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
}
.nav .mega__product--row {
  padding: 8px 10px;
}
.mega__product--row .mega__product-icon {
  width: 32px;
  height: 32px;
}
.mega__product--row .mega__product-copy > span {
  display: none;
}

.mega {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 28px 60px rgba(24, 48, 104, 0.16);
  overflow: hidden;
}
.mega--products {
  grid-template-columns: minmax(0, 1fr) 240px;
}
.mega__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
}
.nav .mega a {
  min-height: 0;
  border-left: 0;
  border-right: 0;
}
.nav .mega__col-label,
.nav .mega__feature a {
  padding: 0;
  justify-content: flex-start;
}
.mega__product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.nav .mega__product {
  padding: 16px 14px;
  justify-content: flex-start;
}
.mega__product-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
}
.mega__product-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  width: 100%;
}
.mega__product:hover,
.mega__product:focus-visible {
  border-color: rgba(16, 196, 105, 0.45);
  background: #fff;
  transform: translateY(-1px);
}
.mega__product strong {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.mega__product-title--keep {
  white-space: nowrap;
}
.mega__product .mega__product-copy > span {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}
.mega__rail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: #f6f8fc;
  border-right: 1px solid var(--line);
}
html[dir="rtl"] .mega__rail { border-right: 0; border-left: 1px solid var(--line); }
.mega__cat {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: start;
  padding: 12px 12px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
}
.mega__cat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
}
.mega__cat span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}
.mega__cat.is-active,
.mega__cat:hover {
  background: rgba(36, 63, 135, 0.08);
}
.mega__main {
  padding: 22px 24px;
}
.mega__panel[hidden] { display: none !important; }
.mega__panel h3 {
  margin: 0 0 18px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1.3;
  max-width: 36ch;
}
.mega__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
.mega__col-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.mega__cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mega__cols li + li { margin-top: 8px; }
.mega__cols a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}
.mega__cols a:hover { color: var(--accent-dark); }
.mega__feature {
  padding: 22px 20px;
  background: #f3f6fb;
  border-left: 1px solid var(--line);
}
html[dir="rtl"] .mega__feature { border-left: 0; border-right: 1px solid var(--line); }
.mega__feature-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mega__feature h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
}
.mega__feature p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.mega__feature a {
  color: var(--brand);
  font-weight: 800;
  font-size: 0.9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.product-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}
.product-dot {
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 196, 105, 0.14);
  flex: 0 0 auto;
}

/* —— Commercial product page (Employee Check) —— */
.product-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 55% 70% at 92% 18%, rgba(16, 196, 105, 0.2), transparent 58%),
    linear-gradient(135deg, #152a5c 0%, #243f87 52%, #1a2f66 100%);
  color: #fff;
}
.product-hero--photo {
  background: #111827;
}
.product-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.product-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep subject toward the right so copy stays readable on the left */
  object-position: 72% center;
  display: block;
}
.product-hero--tenant .product-hero__bg img {
  object-position: 58% center;
}
.product-hero--landlord .product-hero__bg img {
  object-position: 62% center;
}
.product-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 12, 24, 0.9) 0%, rgba(8, 14, 28, 0.72) 42%, rgba(12, 20, 40, 0.35) 72%, rgba(12, 20, 40, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.25) 0%, rgba(8, 14, 28, 0.45) 100%);
}
.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 48px;
  align-items: center;
  padding: 56px 0 64px;
  min-height: min(36rem, calc(100dvh - var(--pv-header-offset)));
}
.product-hero__grid--overlay {
  position: relative;
  z-index: 2;
}
.product-hero__copy .eyebrow { color: var(--accent); }
.product-hero__copy h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  max-width: 14ch;
  color: #fff;
}
.product-hero__lead {
  margin: 18px 0 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.55;
}
.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.product-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.product-hero__signals li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.product-hero__signals li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.product-hero__visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.product-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* GEO answer capsules (SEO Month 1) */
.geo-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}
.geo-block {
  max-width: 40rem;
}
.geo-block__q {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.geo-block__answer {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
}
.geo-block__sources,
.geo-block__updated {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.geo-block__sources a {
  color: var(--brand);
  font-weight: 600;
}
@media (max-width: 900px) {
  .geo-grid { grid-template-columns: 1fr; }
}

.section__heading--center {
  text-align: center;
  margin-inline: auto;
}
.section__heading--center p:last-child {
  margin-inline: auto;
}

.product-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.product-proof__card {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}
.product-proof__card strong {
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.product-proof__card span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.product-steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-steps li {
  display: grid;
  gap: 10px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.product-steps__num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.product-steps strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.product-steps span:last-child {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Help Center */
.help-center {
  background: #f4f5f7;
}
.help-center__heading {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 36px;
}
.help-center__heading h1,
.help-center__heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.help-center__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
.help-center__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.help-center__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(24, 48, 104, 0.06);
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.help-center__card:hover,
.help-center__card:focus-visible {
  border-color: rgba(16, 196, 105, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(24, 48, 104, 0.1);
}
.help-center__card h2,
.help-center__card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.help-center__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.help-center__link {
  margin-top: 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.95rem;
}
.help-center__card:hover .help-center__link {
  text-decoration: underline;
}
.help-article-list {
  display: grid;
  gap: 16px;
  max-width: 720px;
}
.help-article-card h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
}
.help-article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.help-back {
  margin-top: 28px;
}
.help-back a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}
.help-back a:hover { text-decoration: underline; }
.page-hero .eyebrow a {
  color: inherit;
  text-decoration: none;
}
.page-hero .eyebrow a:hover { text-decoration: underline; }

/* IntegriVetting */
.ivt-home__icon,
.ivt-hero__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: transparent;
  display: block;
  margin-bottom: 12px;
}
.ivt-hero__icon {
  width: 88px;
  height: 88px;
}
.ivt-badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(24, 48, 104, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.ivt-formal {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 1.05rem;
}
.ivt-home {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px 48px;
  align-items: start;
}
.ivt-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.ivt-home__modules,
.ivt-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ivt-module {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
}
.ivt-module strong {
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.ivt-module span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.ivt-hero .ivt-formal {
  max-width: 42rem;
}

.product-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: center;
}
.product-split--reverse .product-split__grid {
  direction: ltr;
}
.product-split__media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.product-split__media img {
  display: block;
  width: 100%;
  height: auto;
}
.product-split__copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  max-width: 18ch;
  color: var(--ink);
}
.product-split__copy > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 44ch;
}
.product-split__actions {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .product-hero__grid,
  .product-split__grid,
  .product-proof__grid,
  .product-steps {
    grid-template-columns: 1fr;
  }
  .product-hero__grid {
    padding: 40px 0 48px;
    min-height: 0;
  }
  .product-hero__copy h1 { max-width: 18ch; }
  .product-split--reverse .product-split__media { order: -1; }
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-card--featured { transform: none; }
  .mega { grid-template-columns: 200px minmax(0, 1fr); }
  .mega--products {
    grid-template-columns: minmax(0, 1fr) 220px;
  }
  .mega--places {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root { --pv-header-offset: 12.75rem; }
  .header-info { display: none; }
  .top-bar { min-height: 110px; }
  .brand__logo { height: 78px; max-width: min(340px, 70vw); }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stats-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .hero__grid {
    padding: 32px 0 56px;
    align-items: center;
  }
  .hero__slides {
    width: 100%;
    min-height: 260px;
  }
  .hero__nav {
    left: 0;
    bottom: 20px;
  }
  .hero h1 { max-width: 18ch; }
  .nav a,
  .nav-link-btn { padding: 0 14px; font-size: 0.9rem; }
  .mega--products { grid-template-columns: 1fr; }
  .mega--places { grid-template-columns: 1fr 1fr; }
  .mega__products { grid-template-columns: 1fr; }
  .mega__feature { display: none; }
  .nav-mega {
    position: fixed;
    left: 12px;
    right: 12px;
    width: auto;
    top: auto;
  }
  .mega { grid-template-columns: 1fr; }
  .mega--places { grid-template-columns: 1fr 1fr; }
  .mega__rail {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .mega__cat { min-width: 150px; }
  .product-grid { grid-template-columns: 1fr; }
  .help-center__grid { grid-template-columns: 1fr; }
  .ivt-home { grid-template-columns: 1fr; }
  .ivt-home__modules,
  .ivt-modules { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --pv-header-offset: 11.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-bar { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; }
  .nav-actions .button--small { width: 100%; }
  .brand__logo { height: 64px; max-width: min(280px, 78vw); }
  .top-bar { min-height: 88px; }
  .mega__cols { grid-template-columns: 1fr; }
  .site-footer__columns { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__bottom { flex-direction: column; }
}

/* Local services mega: 2 city columns, compact product-style cards, no overflow */
.nav-item--places .nav-mega {
  width: min(760px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - var(--pv-header-offset) - 12px);
  overflow: hidden;
}
.nav-item--places .mega,
.mega.mega--places {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  width: 100%;
  max-width: 100%;
  align-items: start;
  overflow: hidden;
}
.mega--places .mega__col,
.mega--places .mega__places-group {
  min-width: 0;
  max-width: 100%;
  padding: 14px;
  border-right: 1px solid var(--line);
}
.mega--places .mega__col:last-child,
.mega--places .mega__places-group:last-child {
  border-right: 0;
}
.mega--places .mega__products,
.mega--places .mega__products--stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  width: 100%;
  min-width: 0;
}
.nav .mega--places a.mega__place,
.nav .mega--places a.mega__product,
.nav .mega--places a.mega__product--row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 8px 10px;
  white-space: normal;
  box-sizing: border-box;
}
.mega--places .mega__place span,
.mega--places .mega__product-copy > span {
  display: none;
}
.mega--places .mega__place strong,
.mega--places .mega__product-copy strong {
  display: block;
  min-width: 0;
  white-space: normal;
  line-height: 1.25;
}
