/* Shared layout utilities — BrandG teal/orange site */
.hv-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.hv-page-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: var(--navy);
}

.hv-band-teal {
  background-color: var(--teal) !important;
  color: rgba(255, 255, 255, 0.92);
}

.hv-band-navy {
  background-color: var(--navy) !important;
  color: #fff;
}

.hv-rail-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.5rem;
  border-left: 4px solid var(--navy);
}

.hv-rail-list li {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.hv-rail-list li:last-child {
  margin-bottom: 0;
}

/* Hero A/B/C review variants — BrandG frosted glass */

.variant-switcher {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  padding: 0.7rem 1rem;
  background: rgba(26, 26, 46, 0.94);
  color: #fff;
  font-family: var(--font-brand);
  font-size: 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  max-width: calc(100vw - 1.5rem);
}

.variant-switcher span {
  opacity: 0.7;
  margin-right: 0.25rem;
}

.variant-switcher button {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  border-radius: 9999px;
  padding: 0.35rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8125rem;
}

.variant-switcher button[aria-pressed="true"] {
  background: var(--teal);
  border-color: var(--teal);
}

.variant-switcher a {
  color: #3AD3E6;
  margin-left: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.variant-panel {
  display: none;
}

.variant-panel.is-active {
  display: block;
}

/* Shared glass */
.hv-glass {
  background: rgba(248, 248, 252, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.08);
}

.hv-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(720px, 88vh);
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem 4rem;
  background: var(--bg-light);
}

.hv-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hv-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.hv-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(248, 248, 252, 0.55) 0%,
      rgba(248, 248, 252, 0.35) 32%,
      rgba(248, 248, 252, 0.12) 55%,
      rgba(248, 248, 252, 0) 75%
    ),
    linear-gradient(
      180deg,
      rgba(248, 248, 252, 0.2) 0%,
      rgba(248, 248, 252, 0) 20%,
      rgba(248, 248, 252, 0) 80%,
      rgba(248, 248, 252, 0.25) 100%
    );
}

.hv-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}

.hv-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hv-hero .hv-sub {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1rem;
}

.hv-hero p {
  margin: 0 0 0.85rem;
  color: #4b5563;
  font-size: 1.0625rem;
  line-height: 1.55;
}

.hv-hero .hv-strong {
  font-weight: 600;
  color: var(--navy);
}

.hv-hero .hv-italic {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  font-style: italic;
}

.hv-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.25rem;
}

.hv-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.1rem;
  border-left: 3px solid var(--teal);
}

.hv-list li {
  margin: 0 0 0.35rem;
  color: #4b5563;
  font-size: 1.0625rem;
}

/* ── Variant A: progressive steps ── */
.hv-a-panel {
  max-width: 38rem;
  padding: 1.75rem 1.75rem 1.35rem;
}

.hv-a-stage {
  display: none;
  animation: hvFadeUp 0.45s ease both;
}

.hv-a-stage.is-visible {
  display: block;
}

@keyframes hvFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hv-a-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}

.hv-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.hv-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  border: none;
  padding: 0;
  background: rgba(26, 26, 46, 0.2);
  cursor: pointer;
}

.hv-dots button[aria-current="true"] {
  width: 1.35rem;
  background: var(--teal);
}

.hv-a-nav {
  display: flex;
  gap: 0.5rem;
}

.hv-a-nav button {
  border: 1px solid rgba(26, 26, 46, 0.15);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  border-radius: 9999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.hv-a-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.hv-a-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

/* ── Variant B: three stacked cards (lead + tick strip + sim) ── */
.hv-b-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  max-width: 56rem;
}

.hv-b-card {
  padding: 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  animation: hvFadeUp 0.5s ease both;
}

.hv-b-card--lead {
  padding: 1.75rem 2rem;
  animation-delay: 0s;
  /* ~30% lighter glass than the shared .hv-glass */
  background: rgba(248, 248, 252, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(26, 26, 46, 0.06);
  box-shadow: 0 8px 28px rgba(26, 26, 46, 0.05);
}

.hv-b-card--strip {
  animation-delay: 0.08s;
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
}

/* Decision strip beneath hero — same inset/width as hero cards */
.hv-decision-hero-strip {
  background: var(--bg-light);
  /* Match .hv-hero horizontal padding; taller grey band with strip centred */
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  min-height: 9.5rem;
  box-sizing: border-box;
}

.hv-decision-hero-strip .hv-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hv-decision-hero-strip .hv-b-card--strip {
  animation: none;
  width: 100%;
  margin: 0;
}

.hv-b-card--sim {
  animation-delay: 0.16s;
}

.hv-b-card--sim p:last-child {
  margin-bottom: 0;
}

.hv-decision-strip {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.hv-decision-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: hvDecisionScroll 32s linear infinite;
}

.hv-decision-strip:hover .hv-decision-track {
  animation-play-state: paused;
}

@keyframes hvDecisionScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hv-decision-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0.15rem 1.75rem 0.15rem 0;
  white-space: nowrap;
}

.hv-decision-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
}

.hv-tick {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 9999px;
  background: rgba(5, 177, 198, 0.14);
  border: 1.5px solid var(--teal);
  position: relative;
}

.hv-tick::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.12rem;
  width: 0.32rem;
  height: 0.55rem;
  border: solid var(--teal-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hv-b-card h2,
.hv-b-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin: 0 0 0.75rem;
}

.hv-b-card h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
}

.hv-b-card .hv-actions {
  margin-top: 1.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .hv-decision-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }

  .hv-decision-list[aria-hidden="true"] {
    display: none;
  }

  .hv-decision-list {
    flex-wrap: wrap;
    white-space: normal;
    padding-right: 0;
    gap: 0.75rem 1.25rem;
  }

  .hv-decision-strip {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* ── sherloc in 30 seconds / partner intro — two-column, copy unchanged ── */
.hv-thirty {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.hv-partner-intro-title {
  font-size: 3rem; /* page H1 scale */
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  max-width: none;
}

@media (max-width: 700px) {
  .hv-partner-intro-title {
    font-size: 2.25rem;
  }
}

.hv-partner-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.hv-partner-intro-copy p {
  margin: 0 0 1rem;
}

.hv-partner-ticks {
  margin: 0;
  padding: 0;
}

.hv-partner-ticks li span:last-child {
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 1.25rem;
}

.hv-partner-intro-cta {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hv-partner-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ── Product: How sherloc builds your forward view ── */
.content-section.hv-forward,
.hv-forward {
  background-color: var(--navy) !important;
  color: #fff;
}

.hv-forward-title {
  color: #fff !important;
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.hv-forward-feature {
  margin-bottom: 1.25rem;
}

.hv-forward-feature p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.hv-forward-feature p:last-child {
  margin-bottom: 0;
}

/* Grey stacked accordion — readable navy text */
.hv-forward-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hv-forward-acc-item {
  background: var(--bg-light);
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.hv-forward-acc-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hv-forward-acc-item summary::-webkit-details-marker {
  display: none;
}

.hv-forward-acc-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -0.2rem;
}

.hv-forward-acc-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.hv-forward-acc-body {
  padding: 0 1.35rem 1.35rem;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.55;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
  padding-top: 1rem;
}

.hv-forward-acc-body p {
  margin: 0 0 0.85rem;
  color: #4b5563;
}

.hv-forward-acc-body p:last-child {
  margin-bottom: 0;
}

.hv-forward-acc-body ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
}

.hv-forward-acc-body li {
  margin-bottom: 0.35rem;
  color: #4b5563;
}

.hv-forward-cta {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}

.hv-forward-cta .button-primary {
  background-color: var(--teal);
  color: #fff;
}

.hv-forward-cta .button-primary:hover {
  background-color: var(--teal-dark);
}

/* ── Product: What sherloc watches (teal two-column, like Running a business) ── */
.content-section.hv-watches,
.hv-watches {
  background-color: var(--teal) !important;
  color: rgba(255, 255, 255, 0.92);
}

.hv-watches-title {
  color: #fff !important;
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.hv-watches-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.hv-watches-copy p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.hv-watches-lead {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: #fff !important;
}

.hv-watches-close {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 0 !important;
}

.hv-watches-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.5rem;
  border-left: 4px solid var(--navy);
}

.hv-watches-list li {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.hv-watches-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hv-watches-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* External signals ticks */
.hv-signals-ticks {
  margin: 1.25rem 0 1.5rem;
  max-width: 40rem;
}

/* Tools that help you act with confidence */
.hv-confidence-title {
  color: var(--navy);
  margin: 0 0 1.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

/* Why it matters — two columns */
.hv-why-title {
  margin: 0 0 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hv-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.hv-why-copy p {
  margin: 0 0 1rem;
}

.hv-why-cta {
  margin-top: 1.75rem !important;
  margin-bottom: 0 !important;
}

.hv-why-gives-lead {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1rem !important;
}

.hv-why-ticks {
  margin: 0;
}

@media (max-width: 900px) {
  .hv-why-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ── Pricing hero (Downloads layout + existing copy) ── */
.hv-pricing-hero {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hv-pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem 3.5rem;
  align-items: center;
}

.hv-pricing-copy h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0 0 1.25rem;
  color: var(--navy);
  line-height: 1.15;
}

.hv-pricing-price-line {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--teal);
}

.hv-pricing-copy p {
  margin: 0 0 1rem;
}

.hv-pricing-panel {
  width: 100%;
  max-width: 28rem;
  justify-self: end;
}

.hv-billing-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 0.35rem;
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 14px rgba(26, 26, 46, 0.06);
}

/* Override refresh.css which hides the slider */
.hv-billing-toggle #toggle-slider,
.hv-billing-slider {
  display: block !important;
  position: absolute;
  top: 0.35rem;
  bottom: 0.35rem;
  left: 0.35rem;
  width: calc(50% - 0.35rem);
  background: var(--teal);
  border-radius: 9999px;
  z-index: 0;
  box-shadow: 0 4px 12px rgba(5, 177, 198, 0.35);
  transition: left 0.25s ease;
  margin: 0;
}

.hv-billing-btn {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  border-radius: 9999px;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-brand);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 !important;
}

.hv-price-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.75rem;
  padding: 1.75rem 1.85rem;
  box-shadow: 0 16px 40px rgba(26, 26, 46, 0.1);
  position: relative;
  overflow: hidden;
}

.hv-price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
}

.hv-price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.hv-price-card #price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  font-family: var(--font-brand);
}

.hv-price-card #price-period {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.hv-yearly-note {
  /* Keep layout space even when hidden so monthly/yearly card height matches */
  display: inline-flex;
  visibility: hidden;
  align-items: center;
  gap: 0.4rem;
  background: rgba(5, 177, 198, 0.1);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.65rem;
  width: fit-content;
  min-height: 1.9rem;
  box-sizing: border-box;
}

.hv-yearly-note.is-visible {
  visibility: visible;
}

.hv-price-vat {
  margin: 0.5rem 0 0 !important;
  font-size: 0.875rem !important;
  color: #6b7280 !important;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hv-price-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Teal benefit strip */
.hv-pricing-strip {
  background: var(--teal) !important;
  padding: 1.75rem 1.5rem;
}

.hv-pricing-strip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.hv-pricing-strip-list li {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-brand);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .hv-pricing-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hv-pricing-panel {
    justify-self: stretch;
    max-width: none;
  }

  .hv-pricing-copy {
    text-align: left;
  }
}

/* What’s included — two columns */
.hv-included-list {
  columns: 2;
  column-gap: 3rem;
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.hv-included-list li {
  break-inside: avoid;
  margin: 0 0 0.65rem;
}

/* Getting started — cards */
.hv-getting-title {
  color: var(--navy);
  margin: 0 0 1.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.hv-getting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.hv-getting-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.06);
}

.hv-getting-card h3 {
  margin: 0 0 0.75rem;
  color: var(--teal-dark);
  font-size: 1.2rem;
}

.hv-getting-card p {
  margin: 0 0 0.75rem;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.55;
}

.hv-getting-card p:last-child {
  margin-bottom: 0;
}

.hv-getting-foot p {
  margin: 0 0 0.75rem;
}

@media (max-width: 900px) {
  .hv-included-list {
    columns: 1;
  }

  .hv-getting-grid {
    grid-template-columns: 1fr;
  }
}

/* Q&A page */
.hv-qa-title {
  color: var(--navy);
  margin: 0 0 1.75rem;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.hv-qa-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Partners intro — two columns, cards on right */
.hv-partners-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.hv-partners-intro-copy h1 {
  margin: 0 0 1.25rem;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.hv-partners-intro-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hv-partners-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.06);
}

.hv-partners-card p {
  margin: 0;
  color: #4b5563;
  font-size: 1.0625rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hv-partners-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Why partner with sherloc — navy band + white card */
.content-section.hv-why-partner,
.hv-why-partner {
  background-color: var(--navy) !important;
  color: #fff;
}

.hv-why-partner-title {
  color: #fff !important;
  margin: 0 0 1.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.hv-why-partner-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  color: #4b5563;
}

.hv-why-partner-card h3 {
  color: var(--navy);
  margin-top: 0;
}

.hv-why-partner-ticks {
  margin: 1.25rem 0;
}

.hv-why-partner-ticks li span:last-child {
  color: var(--navy);
  font-weight: 600;
}

/* A channel built around real decisions — teal + navy rail */
.content-section.hv-channel,
.hv-channel {
  background-color: var(--teal) !important;
  color: rgba(255, 255, 255, 0.92);
}

.hv-channel-title {
  color: #fff !important;
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.hv-channel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.hv-channel-copy p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.hv-channel-copy p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: #fff;
}

.hv-channel-rail {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.5rem;
  border-left: 4px solid var(--navy);
}

.hv-channel-rail li {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.hv-channel-rail li:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hv-channel-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.hv-reach-ticks,
.hv-cohort-ticks {
  margin: 1.25rem 0 1.5rem;
}

.hv-reach-ticks li span:last-child,
.hv-cohort-ticks li span:last-child {
  color: var(--navy);
  font-weight: 600;
}

/* Two ways to partner — navy band + toggle cards */
.content-section.hv-two-ways,
.hv-two-ways {
  background-color: var(--navy) !important;
  color: #fff;
}

.hv-two-ways-title {
  color: #fff !important;
  margin: 0 0 1.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.hv-partner-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 0.4rem;
  margin: 0 0 1.5rem;
  box-shadow: 0 4px 14px rgba(26, 26, 46, 0.06);
}

.hv-partner-toggle-slider {
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0.4rem;
  width: calc(50% - 0.4rem);
  background: var(--teal);
  border-radius: 9999px;
  z-index: 0;
  box-shadow: 0 4px 12px rgba(5, 177, 198, 0.35);
  transition: left 0.25s ease;
  pointer-events: none;
}

.hv-partner-toggle-btn {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  border-radius: 9999px;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-brand);
  cursor: pointer;
  line-height: 1.3;
  color: #6b7280;
  text-align: center;
}

.hv-partner-toggle-btn.is-on {
  color: #fff;
}

.hv-partner-panels {
  position: relative;
  width: 100%;
}

.hv-partner-panels > [data-partner-panel] {
  display: none !important;
}

.hv-partner-panels > [data-partner-panel].is-active {
  display: block !important;
}

.hv-two-ways-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.12);
  color: #4b5563;
  width: 100%;
  box-sizing: border-box;
}

.hv-two-ways-card h3,
.hv-two-ways-card h4 {
  color: var(--navy);
}

.hv-two-ways-card h3 {
  margin-top: 0;
}

@media (max-width: 700px) {
  .hv-partner-toggle-btn {
    font-size: 0.85rem;
    padding: 0.75rem 0.6rem;
  }
}

/* What partners get + How partnering works — two columns */
.hv-partners-merge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.hv-partners-get-ticks {
  margin: 1.25rem 0 1.5rem;
}

.hv-partners-get-ticks li span:last-child {
  color: var(--navy);
  font-weight: 600;
}

.hv-partnering-steps {
  margin: 0;
  padding-left: 1.25rem;
}

.hv-partnering-steps li {
  margin-bottom: 1.25rem;
}

.hv-partnering-steps h3 {
  margin: 0 0 0.4rem;
  color: var(--teal-dark);
  font-size: 1.15rem;
}

.hv-partnering-steps p {
  margin: 0;
}

@media (max-width: 900px) {
  .hv-partners-merge-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Why different + Become partner — two columns, tops aligned */
.hv-partners-close-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.hv-partners-close-copy > h2 {
  margin-top: 0;
}

.hv-different-ticks {
  margin: 1.25rem 0 1.5rem;
}

.hv-different-ticks li span:last-child {
  color: var(--navy);
  font-weight: 600;
}

.hv-partners-close-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 1.5rem;
  padding: 2.25rem 2.35rem;
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.08);
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hv-partners-close-card h2 {
  margin: 0 0 1.15rem;
  color: var(--navy);
  font-size: 1.75rem;
}

.hv-partners-close-card p {
  margin: 0 0 1.15rem;
  color: #4b5563;
  line-height: 1.6;
  font-size: 1.0625rem;
}

.hv-partners-close-card p:last-child {
  margin-bottom: 0;
  margin-top: auto;
  padding-top: 0.5rem;
}

@media (max-width: 900px) {
  .hv-partners-close-grid {
    grid-template-columns: 1fr;
  }

  .hv-partners-close-card {
    min-height: 0;
  }
}

/* About — Why we built sherloc */
.content-section.hv-about-why.page-intro {
  text-align: left;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hv-about-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.hv-about-why-copy p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.hv-about-why-copy h1 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-size: 3rem; /* match .page-intro h1 */
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hv-about-why-card {
  background: var(--navy);
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 12px 36px rgba(26, 26, 46, 0.18);
}

.hv-about-why-card p {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.hv-about-why-card p:first-child {
  font-size: 1.35rem;
}

.hv-about-why-card p:last-child {
  margin-bottom: 0;
}

/* About — Our story (teal + navy rail, like Running a business) */
.content-section.hv-about-story,
.hv-about-story {
  background-color: var(--teal) !important;
  color: rgba(255, 255, 255, 0.92);
}

.hv-about-story-title {
  color: #fff !important;
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.hv-about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.hv-about-story-copy p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.hv-about-story-copy p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: #fff;
}

.hv-about-story-rail {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.5rem;
  border-left: 4px solid var(--navy);
}

.hv-about-story-rail li {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.hv-about-story-rail li:last-child {
  margin-bottom: 0;
}

/* About — mission / principles / partners cards */
.hv-about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.hv-about-pillar-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 1.5rem;
  padding: 1.75rem 1.85rem;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.06);
}

.hv-about-pillar-card h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.5rem;
}

.hv-about-pillar-card p {
  margin: 0 0 0.85rem;
  color: #4b5563;
  line-height: 1.55;
}

.hv-about-pillar-card p:last-child {
  margin-bottom: 0;
}

.hv-about-principles {
  margin: 0;
}

.hv-about-principles li span:last-child {
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 960px) {
  .hv-about-why-grid,
  .hv-about-story-layout {
    grid-template-columns: 1fr;
  }

  .hv-about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .hv-about-why-copy h1 {
    font-size: 2.25rem;
  }
}

/* Team page — match site-wide heading scale */
.hv-team-h1 {
  font-size: 3rem; /* match .page-intro h1 / About */
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hv-team-h2 {
  font-size: 2.25rem; /* match .prose h2 */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .hv-team-h1 {
    font-size: 2.25rem;
  }

  .hv-team-h2 {
    font-size: 1.75rem;
    white-space: normal;
  }
}

/* Trust & Security — hero statement stack */
.hv-trust-hero-title {
  margin: 0 0 2rem;
  color: var(--navy);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hv-trust-statements {
  max-width: 44rem;
}

.hv-trust-statements p {
  margin: 0;
  padding: 1rem 0;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  border-bottom: 1px solid rgba(26, 26, 46, 0.12);
}

.hv-trust-statements p:first-child {
  border-top: 1px solid rgba(26, 26, 46, 0.12);
}

@media (max-width: 700px) {
  .hv-trust-hero-title {
    font-size: 2.25rem;
  }

  .hv-trust-statements p {
    font-size: 1.1rem;
  }
}

/* Trust & Security — three pillar cards */
.hv-trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.hv-trust-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 1.5rem;
  padding: 1.75rem 1.85rem;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.06);
}

.hv-trust-card h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.5rem;
}

.hv-trust-card p {
  margin: 0 0 0.85rem;
  color: #4b5563;
  line-height: 1.55;
}

.hv-trust-card p:last-child {
  margin-bottom: 0;
}

.hv-trust-card ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: #4b5563;
}

.hv-trust-card li {
  margin-bottom: 0.35rem;
}

@media (max-width: 960px) {
  .hv-trust-pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* Baker Street Club — left copy + demo-style form card */
.hv-club-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.hv-club-eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hv-club-title {
  margin: 0 0 1.25rem;
  color: var(--navy);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hv-club-copy p {
  margin: 0 0 1rem;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: none;
  text-align: left;
}

.hv-club-form-card {
  background: #f8f8fc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(26, 26, 46, 0.08);
}

.hv-club-form-header {
  margin-bottom: 1rem;
}

.hv-club-form-title {
  margin: 0.35rem 0 0.5rem;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
}

.hv-club-form-header p {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
}

.hv-club-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hv-club-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hv-demo-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f8f8fc;
  color: var(--navy);
  font-family: var(--font-brand);
  font-size: 1rem;
  box-sizing: border-box;
}

.hv-demo-input::placeholder {
  color: #9ca3af;
}

.hv-demo-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(5, 177, 198, 0.35);
  border-color: rgba(5, 177, 198, 0.45);
}

.hv-club-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.hv-club-error {
  margin: 0;
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
}

.hv-club-success {
  background: rgba(5, 177, 198, 0.1);
  color: var(--teal-dark);
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
}

.hv-club-success p {
  margin: 0;
  font-weight: 600;
}

.hv-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .hv-club-grid {
    grid-template-columns: 1fr;
  }

  .hv-club-title {
    font-size: 2.25rem;
  }

  .hv-club-form-row {
    grid-template-columns: 1fr;
  }
}

/* Contact — headline outside card */
.hv-contact-title {
  margin: 0 0 1.5rem;
  color: var(--navy);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hv-contact-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 1.5rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.08);
  max-width: 40rem;
}

.hv-contact-card p {
  margin: 0 0 1rem;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.6;
}

.hv-contact-card a {
  color: var(--teal);
  font-weight: 600;
}

.hv-contact-cta {
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
}

@media (max-width: 700px) {
  .hv-contact-title {
    font-size: 2.25rem;
  }
}

.hv-thirty-lead h2 {
  margin-top: 0;
}

.hv-thirty-closer {
  font-size: 1.5rem;
  color: var(--teal-dark);
  font-weight: 700;
  margin-top: 2rem;
}

.hv-thirty-closer p {
  margin: 0 0 0.15rem;
}

.hv-thirty-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hv-thirty-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #4b5563;
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 0;
}

.hv-thirty-points .hv-tick {
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .hv-thirty {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ── Running a business today — locked quote-rail ── */
/* Beat .content-section:nth-child(even) { background: white } from refresh.css */
.content-section.hv-running,
.hv-running {
  background-color: var(--teal) !important;
  color: rgba(255, 255, 255, 0.92);
}

.hv-running-title {
  color: #fff !important;
  margin: 0 0 1.5rem;
  font-size: 2.25rem; /* match site section H2 */
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hv-running-close {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.hv-running-rail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
  margin-top: 1.5rem;
}

.hv-running-rail {
  border-left: 4px solid var(--navy);
  padding-left: 1.5rem;
}

.hv-running-rail p {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.hv-running-rail p:last-child {
  margin-bottom: 0;
}

.hv-running-rail-body p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.hv-running-rail-body .hv-running-close {
  margin-top: 1.25rem;
}

@media (max-width: 960px) {
  .hv-running-rail-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ── How sherloc helps — featured card + 4 cards on navy ── */
.content-section.hv-helps,
.hv-helps {
  background-color: var(--navy) !important; /* beat even-section white */
  color: #fff;
}

.hv-helps-title {
  color: #fff !important;
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.hv-helps-card {
  background: rgba(248, 248, 252, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hv-helps-card:hover {
  transform: translateY(-3px);
  background: rgba(248, 248, 252, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.hv-helps-card h3 {
  margin: 0 0 0.55rem;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
}

.hv-helps-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hv-helps-card--feature {
  padding: 1.85rem 2rem;
  margin-bottom: 1.25rem;
  background: rgba(248, 248, 252, 0.14);
}

.hv-helps-card--feature h3 {
  font-size: 1.45rem;
}

.hv-helps-card--feature p {
  font-size: 1.1rem;
  max-width: 48rem;
}

.hv-helps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 1100px) {
  .hv-helps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hv-helps-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Works with the tools — orange band + equal logo slots ── */
.content-section.hv-tools,
.hv-tools {
  background-color: var(--orange) !important; /* beat even-section white */
  color: #fff;
  border-top: none;
  border-bottom: none;
}

.hv-tools-inner {
  text-align: center;
}

.hv-tools-title {
  /* Match Built for British businesses / .prose h2 */
  color: var(--navy) !important;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  text-align: center;
}

.hv-tools-logos {
  list-style: none;
  margin: 0 auto 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 52rem;
  align-items: stretch;
}

.hv-tools-logos li {
  margin: 0;
  display: flex;
}

.hv-tools-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5.5rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.12);
}

.hv-tools-logo-slot img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 3.25rem;
  object-fit: contain;
}

.hv-tools-logo-slot img[alt="QuickBooks"] {
  max-height: 3.85rem;
  transform: scale(1.12);
}

.hv-tools-copy {
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 48rem;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.hv-tools-emphasis {
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: 2rem auto 0;
  max-width: 48rem;
  font-size: 1.0625rem;
}

.hv-tools-partners {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.0625rem;
}

.hv-tools-partners a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hv-tools-partners a:hover {
  color: var(--navy);
}

@media (max-width: 800px) {
  .hv-tools-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .hv-tools-logos {
    grid-template-columns: 1fr;
  }
}

/* ── Hero jump-cut card ── */
.hv-c-jump-viewport {
  position: relative;
  min-height: 4.5rem; /* JS locks to the taller line */
}

.hv-hero p.hv-c-jump-line {
  margin: 0;
  color: #4b5563;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.55;
  display: none;
}

.hv-hero p.hv-c-jump-line.is-active {
  display: block;
}

/* Reality line — grey, not bold; slightly larger for height parity */
.hv-hero p.hv-c-jump-line--reality {
  font-size: 1.35rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.hv-c-jump-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: 1rem;
}

.hv-c-jump-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: rgba(26, 26, 46, 0.2);
  cursor: pointer;
}

.hv-c-jump-dot[aria-current="true"] {
  width: 1.25rem;
  background: var(--teal);
}

@media (max-width: 960px) {
  .hv-hero p.hv-c-jump-line--reality {
    font-size: 1.2rem;
  }

  .hv-hero {
    min-height: auto;
    padding: 2rem 1.25rem 2.5rem;
  }

  .hv-fade {
    background:
      linear-gradient(
        180deg,
        rgba(248, 248, 252, 0.55) 0%,
        rgba(248, 248, 252, 0.4) 45%,
        rgba(248, 248, 252, 0.25) 100%
      );
  }
}
