/* ZipAgent — styles (expand when design is ready) */
@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Regular.woff2') format('woff2'),
      url('../fonts/GeneralSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Semibold.woff2') format('woff2'),
      url('../fonts/GeneralSans-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-SemiboldItalic.woff2') format('woff2'),
      url('../fonts/GeneralSans-SemiboldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Bold.woff2') format('woff2'),
      url('../fonts/GeneralSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-BoldItalic.woff2') format('woff2'),
      url('../fonts/GeneralSans-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Extralight.woff2') format('woff2'),
      url('../fonts/GeneralSans-Extralight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-ExtralightItalic.woff2') format('woff2'),
      url('../fonts/GeneralSans-ExtralightItalic.woff') format('woff');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Italic.woff2') format('woff2'),
      url('../fonts/GeneralSans-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Light.woff2') format('woff2'),
      url('../fonts/GeneralSans-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-LightItalic.woff2') format('woff2'),
      url('../fonts/GeneralSans-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Medium.woff2') format('woff2'),
      url('../fonts/GeneralSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-MediumItalic.woff2') format('woff2'),
      url('../fonts/GeneralSans-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'General Sans', system-ui, sans-serif;
  background: #f1f1f1;
}

html {
  scroll-behavior: smooth;
}

/* Prevent fixed header from covering anchored sections */
#lead-quality,
#inbox-preview,
#hire-outbound-specialist,
#pricing,
#marketplace {
  scroll-margin-top: 0;
}

:root {
  --layout-max-width: 1560px;
  --layout-edge-gap: 12px;
  --header-inset-x: 44px;
  --header-inset-y: 20px;
  --header-cluster-gap: 215px;
  --header-nav-gap: 71px;
  --header-scroll-duration: 0.3s;
  --header-scroll-ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Type scale (keeps title symmetry with hero) */
  --fs-section-title: clamp(32px, 4.2vw, 62px);
}

/* ---------- Responsive breakpoints ----------
  Desktops: 1025px and up (base)
  Laptops:  769px to 1024px
  Tablets:  481px to 768px
  Mobile:   up to 480px
-------------------------------------------- */

@media (max-width: 1024px) {
  :root {
    --layout-edge-gap: 10px;
    --header-inset-x: 28px;
    --header-inset-y: 16px;
    --header-cluster-gap: 72px;
    --header-nav-gap: 34px;
  }

  /* Fixed header should cover less content */
  #lead-quality,
  #inbox-preview,
  #hire-outbound-specialist,
  #pricing,
  #marketplace {
    scroll-margin-top: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --layout-edge-gap: 10px;
    --header-inset-x: 18px;
    --header-inset-y: 14px;
    --header-cluster-gap: 22px;
    --header-nav-gap: 18px;
  }

  #lead-quality,
  #inbox-preview,
  #hire-outbound-specialist,
  #pricing,
  #marketplace {
    scroll-margin-top: 0;
  }
}

@media (max-width: 480px) {
  :root {
    --layout-edge-gap: 8px;
    --header-inset-x: 14px;
    --header-inset-y: 12px;
    --header-cluster-gap: 14px;
    --header-nav-gap: 12px;
  }

  #lead-quality,
  #inbox-preview,
  #hire-outbound-specialist,
  #pricing,
  #marketplace {
    scroll-margin-top: 0;
  }
}

.container {
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

/* ----- Header (fixed over banner) ----- */

.site-header {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--layout-edge-gap);
  transform: translate3d(0, 0, 0);
  transition:
    transform var(--header-scroll-duration) var(--header-scroll-ease),
    padding var(--header-scroll-duration) var(--header-scroll-ease);
}

.site-header__frame {
  width: 100%;
  max-width: 100%;
  padding: var(--header-inset-y) var(--header-inset-x);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: none;
  transition: all var(--header-scroll-duration) var(--header-scroll-ease);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: var(--header-cluster-gap);
  align-items: center;
}

.site-header__logo {
  display: block;
  line-height: 0;
}

.site-header__logo img {
  display: block;
  width: 149.72px;
  height: 36px;
  object-fit: contain;
}

.site-header__nav {
  min-width: 0;
  justify-self: center;
}

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    column-gap: 14px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__btn {
    display: inline-flex;
    width: 180px;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 14px;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr;
    row-gap: 12px;
  }

  .site-header__nav {
    justify-self: end;
  }

  .site-header__nav-list {
    gap: 10px;
  }

  .site-header__nav-list a {
    padding: 8px 10px;
    font-size: clamp(13px, 1.2vw, 14px);
    line-height: 18px;
  }

  .site-header__btn {
    display: inline-flex;
  }
}

.site-header__nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--header-nav-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav-list a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 16px;
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 21.6px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--header-scroll-duration) var(--header-scroll-ease),
    border-color var(--header-scroll-duration) var(--header-scroll-ease),
    color var(--header-scroll-duration) var(--header-scroll-ease),
    opacity var(--header-scroll-duration) var(--header-scroll-ease);
}

.site-header__nav-list a:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.site-header__nav-list a.is-active {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.site-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  font-family: inherit;
  font-weight: 500;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 21.6px;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  color: #fff;
  border: 0;
  border-radius: 28px;
  background: #1f6d32;
  cursor: pointer;
}

.site-header__btn:hover {
  background: #23813b;
}

.site-header--scrolled {
  transform: translate3d(0, -10px, 0);
  padding: 0 8px;
}

.site-header--scrolled .site-header__frame {
  padding: 11px 28px;
  background-color: #000;
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.38),
    0 4px 12px rgba(0, 0, 0, 0.22);
}

/* ----- Hero (above the fold) ----- */
.hero {
  position: relative;
  z-index: 1;
  /* min-height only: fixed height + tall two-column content overflows and
     sits on top of the next section on short laptop viewports (e.g. 768–900px tall). */
  min-height: 100svh;
  background-color: #050d16;
  background-image: url('../images/herobackground.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 12, 23, 0.48) 0%, rgba(3, 12, 23, 0.72) 100%),
    linear-gradient(90deg, rgba(3, 12, 23, 0.6) 0%, rgba(3, 12, 23, 0.5) 46%, rgba(3, 12, 23, 0.42) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-height: 100svh;
  padding: clamp(130px, 14vh, 180px) var(--header-inset-x) 52px;
  display: grid;
  /* minmax(0, 1fr) lets columns shrink below intrinsic min-width (e.g. audio controls)
     so the two-column hero does not overflow the viewport on laptop widths. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(24px, 4.5vw, 76px);
  align-items: center;
}

@media (max-width: 1024px) {
  .hero__content {
    padding: clamp(120px, 12vh, 160px) var(--header-inset-x) 44px;
  }

  .hero__left {
    max-width: 620px;
  }
}

/* Laptops/tablets in landscape: still two columns above 1024px but limited vertical space */
@media (min-width: 1025px) and (max-height: 880px) {
  .hero__content {
    min-height: 0;
    padding: clamp(100px, 11vh, 150px) var(--header-inset-x) 40px;
    align-items: start;
  }

  .hero__embed-shell {
    min-height: 0;
    padding: 24px;
  }

  .hero__form-card {
    min-height: 0;
  }

  .hero__text {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 16px;
  }

  .hero__contactline {
    margin-top: 20px;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero__content {
    min-height: 0;
    grid-template-columns: 1fr;
    row-gap: 34px;
    padding: 172px var(--header-inset-x) 80px;
  }

  .hero__right {
    justify-content: flex-start;
  }

  .hero__embed-shell {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    row-gap: 50px;
    padding: 150px var(--header-inset-x) 44px;
  }

  .hero__left {
    max-width: 100%;
  }

  .hero__right {
    justify-content: flex-start;
  }

  .hero__trust {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-pill {
    width: 100%;
  }
}

.hero__left,
.hero__right {
  min-height: 0;
  min-width: 0;
}

.hero__left {
  align-self: center;
  max-width: 100%;
  padding-top: 0;
}

.hero__title {
  margin: 0;
  max-width: 560px;
  color: #fff;
  font-weight: 500;
  font-size: clamp(62px, 3.95vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

/* Laptops (~13–15" panels): shrink headline so less vertical bleed in two-column hero */
@media (min-width: 1025px) and (max-width: 1536px) {
  .hero__title {
    font-size: clamp(44px, 2.95vw, 56px);
    line-height: 1.06;
  }
}

/* Still two columns but little vertical space: slightly smaller cap than laptop-only tweak */
@media (min-width: 1025px) and (max-height: 880px) {
  .hero__title {
    font-size: clamp(38px, 3.1vw, 52px);
    line-height: 1.08;
  }
}

.hero__text {
  margin: 24px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.45;
}

.hero__actions {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero__contactline {
  margin: 30px 0 0;
  max-width: 560px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 10px;
}

.hero__contactline li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 0;
}

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

.hero__contactline a {
  color: #fff;
  text-decoration: none;
}

.hero__contactline a:hover {
  text-decoration: underline;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 0 34px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-pill--primary {
  background: #1f6d32;
  color: #fff;
  border: 1px solid #1f6d32;
}

.hero-pill--primary:hover {
  background: #25823b;
  border-color: #25823b;
}

.hero-pill--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.hero-pill--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero__trust {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  display: none;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero__trust img {
  display: block;
  width: 20px;
  height: 20px;
}

.hero__trust span {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.hero__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__embed-shell {
  width: 100%;
  max-width: min(760px, 100%);
  min-width: 0;
  min-height: min(652px, calc(100svh - 230px));
  padding: 32px;
  border-radius: 0;
  background: rgba(135, 135, 135, 0.4);
  backdrop-filter: blur(1.5px);
  box-sizing: border-box;
}

.hero__form-card {
  width: 100%;
  min-width: 0;
  min-height: 588px;
  border-radius: 24px;
  background: #fff;
  box-sizing: border-box;
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
}

.hero__form-kicker {
  margin: 0;
  color: #131313;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
}

.hero__form-lede {
  margin: 8px 0 0;
  color: #7a7a7a;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

.hero-audio {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-audio__shell {
  overflow: hidden;
  min-width: 0;
}

.hero-audio__slider {
  width: 100%;
  min-width: 0;
}

.hero-audio__shell .slick-list {
  overflow: hidden;
  min-width: 0;
}

.hero-audio__shell .slick-track {
  display: flex !important;
  align-items: stretch;
}

.hero-audio__shell .slick-slide {
  float: none;
  height: auto;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

.hero-audio__shell .slick-slide > div {
  width: 100%;
  height: 100%;
  min-width: 0;
}

.hero-audio__slide-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.hero-audio__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hero-audio__controls {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.hero-audio__controls .slick-arrow {
  position: static;
  transform: none;
  width: auto;
  height: auto;
}

.hero-audio__arrow {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.hero-audio__arrow img {
  display: block;
  width: 44px;
  height: 44px;
}

.hero-audio__controls .slick-arrow.slick-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.hero-audio__dots .slick-dots {
  position: static;
  bottom: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-audio__dots .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.hero-audio__dots .slick-dots li button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(19, 19, 19, 0.22);
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
}

.hero-audio__dots .slick-dots li button::before {
  display: none;
}

.hero-audio__dots .slick-dots li.slick-active button {
  background: #131313;
}

.hero-audio__item {
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 14px;
  padding: 12px 12px 10px;
  background: #fafafa;
  min-width: 0;
}

.hero-audio__label {
  margin: 0 0 10px;
  color: #131313;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.hero-audio__player {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero__form-actions {
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__form-actions .hero-pill {
  width: 100%;
}

.hero__form {
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__field label {
  color: #131313;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
}

.hero__field input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 0;
  border-radius: 12px;
  background: #eee;
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #131313;
}

.hero__field input::placeholder {
  color: #8a8a8a;
}

.hero__consent {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 6px;
  align-items: start;
  margin-top: 2px;
}

.hero__consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.hero__consent label {
  color: #5c5c5c;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.35;
}

.hero__form-submit {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 57px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: #1f6d32;
  color: #fff;
  font-family: inherit;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hero__form-submit:hover {
  background: #23813b;
}

@media (max-width: 1024px) {
  .hero__embed-shell {
    max-width: 100%;
    min-height: 0;
  }

  .hero__form-card {
    min-height: 520px;
  }

  /* When hero stacks, allow full-width text blocks */
  .hero__title,
  .hero__text {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --fs-section-title: clamp(28px, 7.2vw, 42px);
  }

  .hero__title {
    font-size: clamp(34px, 8.5vw, 48px);
  }

  .hero__text {
    font-size: 18px;
    line-height: 26px;
  }

  .hero__actions {
    margin-top: 18px;
    gap: 10px;
  }

  .hero-pill {
    min-height: 48px;
    padding: 0 18px;
    font-size: 16px;
    line-height: 20px;
  }

  /* Form shell padding */
  .hero__embed-shell {
    padding: 5px;
  }

  .hero__form-card {
    padding: 30px 15px 20px;
  }
}

/* ----- Homeowner CTA banner (hero layout, before pricing) ----- */
.homeowner-banner {
  position: relative;
  margin-top: -40px;
  z-index: 1;
  background-color: #050d16;
  background-image: url('../images/herobackground.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.homeowner-banner__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 12, 23, 0.48) 0%, rgba(3, 12, 23, 0.72) 100%),
    linear-gradient(90deg, rgba(3, 12, 23, 0.6) 0%, rgba(3, 12, 23, 0.5) 46%, rgba(3, 12, 23, 0.42) 100%);
}

.homeowner-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding: 96px var(--header-inset-x) 104px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 76px;
  align-items: center;
}

.homeowner-banner__left {
  align-self: center;
  max-width: 640px;
  min-height: 0;
}

.homeowner-banner__metrics {
  margin: 0 0 clamp(20px, 3.2vw, 32px);
  width: 100%;
  max-width: 640px;
}

.homeowner-banner__metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(12px, 3.5vw, 32px);
  row-gap: 12px;
  width: 100%;
  margin: 0;
  align-items: start;
}

.homeowner-banner__metrics .marketplace-metric {
  min-width: 0;
}

.homeowner-banner__metrics .marketplace-metric__headline {
  margin: 0 0 6px;
  color: #fff;
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.homeowner-banner__metrics .marketplace-metric__content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
}

.homeowner-banner__metrics .marketplace-metric__icon {
  display: block;
  width: 16px;
  height: 19px;
  object-fit: contain;
  flex-shrink: 0;
}

/* PNG icons read on dark banner; SVG keeps its own colors */
.homeowner-banner__metrics .marketplace-metric__icon[src$='.png'] {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.homeowner-banner__metrics .marketplace-metric__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  font-size: clamp(12px, 1.35vw, 15px);
  line-height: 1.25;
}

@media (max-width: 640px) {
  .homeowner-banner__metrics-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
    column-gap: 0;
  }

  .homeowner-banner__metrics .marketplace-metric__headline {
    margin-bottom: 4px;
  }
}

.homeowner-banner__title {
  margin: 0;
  max-width: 560px;
  color: #fff;
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.homeowner-banner__text {
  margin: 24px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.45;
}

.homeowner-banner__actions {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.homeowner-banner__trust {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.homeowner-banner__trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.homeowner-banner__trust img {
  display: block;
  width: 20px;
  height: 20px;
}

.homeowner-banner__trust span {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.homeowner-banner__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
}

.homeowner-banner__embed-shell {
  width: 100%;
  max-width: 760px;
  padding: 32px;
  border-radius: 42px;
  background: rgba(135, 135, 135, 0.4);
  backdrop-filter: blur(1.5px);
}

.homeowner-banner__form-card {
  border-radius: 24px;
}

@media (max-width: 1024px) {
  .homeowner-banner__content {
    grid-template-columns: 1fr;
    row-gap: 34px;
    padding: 172px var(--header-inset-x) 80px;
  }

  .homeowner-banner__left {
    max-width: 100%;
  }

  .homeowner-banner__title,
  .homeowner-banner__text {
    max-width: 100%;
  }

  .homeowner-banner__right {
    justify-content: flex-start;
  }

  .homeowner-banner__embed-shell {
    max-width: 100%;
  }

  .homeowner-banner__trust {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}

@media (max-width: 480px) {
  .homeowner-banner__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .homeowner-banner__actions .hero-pill {
    width: 100%;
  }
}

.homeowner-banner__form-card {
  width: 100%;
  padding: 36px 40px 40px;
  border-radius: 24px;
  background: #fff;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .homeowner-banner__trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .homeowner-banner__embed-shell {
    padding: 5px;
    border-radius: 0;
  }

  .homeowner-banner__form-card {
    padding: 20px 15px 20px;
  }
}

.homeowner-banner__form-kicker {
  margin: 0;
  color: #131313;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
}

.homeowner-banner__form-lede {
  margin: 8px 0 0;
  color: #7a7a7a;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

/* CTA column (no embedded form on pages with chat widget) */
.homeowner-banner__cta-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.homeowner-banner__cta-actions .hero-pill {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.homeowner-banner__disclosure {
  margin: 12px 0 0;
  color: rgba(19, 19, 19, 0.7);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.45;
}

.homeowner-banner__disclosure a {
  color: #1f6d32;
  text-decoration: none;
}

.homeowner-banner__disclosure a:hover {
  text-decoration: underline;
}

/* ----- Lead quality section ----- */
.lead-quality {
  background: #fff;
  padding: 52px var(--header-inset-x) 120px;
  margin-top: -40px;
  position: relative;
  z-index: 4;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

/* ----- Outbound specialist pricing calculator (hidden until enabled) ----- */
.va-calc {
  background: #fff;
  padding: 52px var(--header-inset-x) 40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  display: none;
}

.va-calc__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.va-calc__intro {
  width: 100%;
  max-width: 820px;
}

.va-calc__title {
  margin: 0;
  color: #131313;
  font-weight: 500;
  font-size: var(--fs-section-title);
  line-height: 1.12;
}

.va-calc__text {
  margin: 14px 0 0;
  max-width: 720px;
  color: #3d3d3d;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.va-calc__grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 22px;
  align-items: start;
}

.va-calc__panel {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(19, 19, 19, 0.08);
  padding: 22px 18px 20px;
}

.va-calc__panel-title {
  margin: 0 0 14px;
  color: #131313;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
}

.va-calc__fields {
  display: grid;
  gap: 14px;
}

.va-calc__field {
  display: grid;
  gap: 8px;
}

.va-calc__label {
  color: #131313;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.va-calc__select,
.va-calc__input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid rgba(19, 19, 19, 0.28);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: #131313;
}

.va-calc__select[multiple] {
  padding: 10px 12px;
}

.va-calc__help {
  color: rgba(19, 19, 19, 0.65);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
}

.va-multiselect {
  position: relative;
}

.va-multiselect__control {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid rgba(19, 19, 19, 0.28);
  border-radius: 10px;
  background: #fff;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  cursor: pointer;
}

.va-multiselect__control:focus {
  outline: 2px solid rgba(31, 109, 50, 0.35);
  outline-offset: 2px;
}

.va-multiselect__placeholder {
  color: rgba(19, 19, 19, 0.6);
  font-size: 14px;
  line-height: 1.2;
}

.va-multiselect__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.va-multiselect__count {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(19, 19, 19, 0.7);
  font-size: 14px;
  line-height: 1.2;
}

.va-multiselect__clear {
  margin-left: auto;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: rgba(19, 19, 19, 0.5);
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 8px;
  display: none;
}

.va-multiselect__clear:hover {
  color: rgba(19, 19, 19, 0.9);
  background: rgba(0, 0, 0, 0.04);
}

.va-multiselect__chevron {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-left: 2px;
  border-right: 2px solid rgba(19, 19, 19, 0.55);
  border-bottom: 2px solid rgba(19, 19, 19, 0.55);
  transform: rotate(45deg);
  opacity: 0.9;
}

.va-multiselect.is-open .va-multiselect__chevron {
  transform: rotate(-135deg);
}

.va-calc__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
}

.va-calc__action {
  border: 1px solid rgba(19, 19, 19, 0.22);
  background: #fff;
  color: #131313;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.1;
  cursor: pointer;
}

.va-calc__action:hover {
  background: rgba(0, 0, 0, 0.03);
}

.va-calc__action--primary {
  background: #1f6d32;
  border-color: #1f6d32;
  color: #fff;
}

.va-calc__action--primary:hover {
  background: #23813b;
  border-color: #23813b;
}
.va-multiselect__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(19, 19, 19, 0.22);
  color: #131313;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
}

.va-multiselect__tag button {
  border: 0;
  background: transparent;
  color: rgba(19, 19, 19, 0.6);
  font: inherit;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 6px;
}

.va-multiselect__tag button:hover {
  color: rgba(19, 19, 19, 0.9);
}

.va-multiselect__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  max-height: 240px;
  overflow: auto;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(19, 19, 19, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 10;
  display: none;
}

.va-multiselect__search {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  padding: 6px;
  border-bottom: 1px solid rgba(19, 19, 19, 0.08);
}

.va-multiselect__search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 10px;
  border: 1px solid rgba(19, 19, 19, 0.18);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #131313;
}

.va-multiselect__search-input:focus {
  outline: 2px solid rgba(31, 109, 50, 0.25);
  outline-offset: 1px;
}

.va-multiselect.is-open .va-multiselect__menu {
  display: block;
}

.va-multiselect__option {
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: #131313;
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.va-multiselect__option[aria-selected="true"] {
  background: rgba(31, 109, 50, 0.12);
  color: #1f6d32;
  font-weight: 600;
}

.va-multiselect__option[aria-selected="true"]::after {
  content: "✓";
  color: #1f6d32;
  font-weight: 700;
}

.va-multiselect__option:hover {
  background: rgba(0, 0, 0, 0.04);
}

.va-calc__summary {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(19, 19, 19, 0.08);
  padding: 22px 18px 20px;
}

.va-calc__summary-title {
  margin: 0;
  color: #131313;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
}

.va-calc__summary-subtitle {
  margin: 6px 0 0;
  color: rgba(19, 19, 19, 0.6);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
}

.va-calc__price {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(19, 19, 19, 0.08);
  text-align: center;
}

.va-calc__price-label {
  margin: 0;
  color: rgba(19, 19, 19, 0.6);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.35;
}

.va-calc__price-value {
  margin: 10px 0 0;
  color: #131313;
  font-weight: 600;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.va-calc__breakdown {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(19, 19, 19, 0.08);
  display: grid;
  gap: 10px;
}

.va-calc__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: rgba(19, 19, 19, 0.78);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
}

.va-calc__line--total {
  padding-top: 10px;
  border-top: 1px solid rgba(19, 19, 19, 0.08);
  color: #131313;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .va-calc {
    padding: 44px var(--header-inset-x) 34px;
  }

  .va-calc__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .va-calc {
    padding: 38px var(--header-inset-x) 28px;
  }

  .va-calc__text {
    font-size: 18px;
    line-height: 26px;
  }
}

.lead-quality__container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.lead-quality__intro {
  width: 100%;
  max-width: 100%;
}

.lead-quality__title {
  margin: 0;
  color: #131313;
  font-weight: 500;
  font-size: var(--fs-section-title);
  line-height: 1.12;
}

.lead-quality__text {
  margin: 14px 0 0;
  max-width: 100%;
  color: #3d3d3d;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.lead-quality__visual {
  position: relative;
  margin-top: 32px;
}

.lead-quality__image-wrap {
  width: 100%;
  max-width: 992px;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background-color: #e5e5e5;
  background-image: url('../images/AboutImage.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 28% center;
}

.lead-quality__features {
  position: absolute;
  right: 8px;
  top: 22px;
  width: 100%;
  max-width: min(900px, 62%);
  padding: 32px;
  border-radius: 42px;
  background: rgba(135, 135, 135, 0.4);
  backdrop-filter: blur(2px);
}

@media (max-width: 1024px) {
  .lead-quality {
    padding-left: var(--header-inset-x);
    padding-right: var(--header-inset-x);
  }

  .lead-quality__visual {
    margin-top: 26px;
  }

  .lead-quality__image-wrap {
    display: none;
  }

  .lead-quality__features {
    position: static;
    max-width: 100%;
    padding: 26px;
  }

  .feature__grid-white {
    grid-template-columns: 1fr;
  }

  .lead-quality__split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .lead-quality {
    padding: 38px var(--header-inset-x) 28px;
  }

  .lead-quality__title {
    font-size: clamp(30px, 7.8vw, 42px);
    line-height: 1.12;
  }

  .lead-quality__text {
    font-size: 18px;
    line-height: 26px;
  }

  .lead-quality__features {
    padding: 12px;
    border-radius: 22px;
  }

  /* 4 items as 4 rows, with tighter panels */
  .feature__grid-white {
    grid-template-columns: 1fr;
  }

  .feature__panel {
    padding: 16px 14px;
    row-gap: 6px;
  }

  .feature__title {
    font-size: 18px;
    line-height: 24px;
  }

  .feature__desc {
    font-size: 16px;
    line-height: 22px;
  }

  .lead-quality__subtitle {
    font-size: clamp(22px, 5.4vw, 32px);
  }
}

@media (max-width: 768px) {
  .lead-quality {
    margin-top: -24px;
    padding: 44px var(--header-inset-x) 34px;
  }

  .lead-quality__visual {
    margin-top: 22px;
  }

  .lead-quality__features {
    position: static;
    max-width: 100%;
    margin-top: 16px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(135, 135, 135, 0.22);
  }

  .feature__grid-white {
    grid-template-columns: 1fr;
  }

  .lead-quality__divider {
    margin: 34px 0 22px;
  }

  .lead-quality__split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lead-quality__bottom {
    padding: 32px;
  }

  .lead-quality__cta {
    margin-top: 22px;
  }
}

@media (max-width: 480px) {

  .lead-quality__text {
    font-size: 18px;
    line-height: 26px;
  }
}

.feature__grid-white {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

/* Ensure feature list becomes 4 stacked rows on responsive */
@media (max-width: 1024px) {
  .feature__grid-white {
    grid-template-columns: 1fr;
  }
}

.feature {
  min-width: 0;
}

.feature__panel {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  padding: 26px 28px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 0;
  row-gap: 10px;
  align-items: start;
}

.feature__icon {
  display: block;
  width: 24px;
  height: 24px;
  max-width: 100%;
  object-fit: contain;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.feature__title {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: #1f6d32;
  font-size: 21px;
  line-height: 31px;
  font-weight: 600;
  align-self: start;
}

.feature__desc {
  grid-column: 1;
  grid-row: 3;
  margin: 0;
  color: #434343;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.lead-quality__bottom {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  padding: 32px;
  background: transparent;
}

.lead-quality__divider {
  width: 100%;
  max-width: 100%;
  margin: 52px 0 32px;
  border: 0;
  border-top: 1px solid #d6d6d6;
}

.lead-quality__subtitle {
  margin: 0 0 28px;
  color: #141414;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}

/* Temporarily hidden — restore by removing this rule */
.lead-quality__divider,
.lead-quality__subtitle,
.lead-quality__bottom {
  display: none;
}

.lead-quality__split {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 43px;
}

@media (max-width: 1024px) {
  .lead-quality__split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.lead-quality__cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lead-quality__cta .hero-pill--secondary {
  color: #131313;
  border-color: rgba(19, 19, 19, 0.7);
}

.lead-quality__cta .hero-pill--secondary:hover {
  background: rgba(0, 0, 0, 0.06);
}

.lead-quality-card {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  border-radius: 26px;
  background: #d8d8d8;
  padding: 32px;
}

.lead-quality-card__inner {
  width: 100%;
  max-width: 100%;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  padding: 34px 30px 60px;
}

.lead-quality-card__eyebrow {
  margin: 0;
  color: #1f6d32;
  font-weight: 600;
  font-size: 26px;
  line-height: 74.4px;
  padding: 0;
}

.lead-quality-card__title {
  margin: 0;
  color: #141414;
  font-weight: 600;
  font-size: 28px;
  line-height: 38.4px;
  padding: 0;
}

.lead-quality-card__steps {
  margin: 24px 0 0;
  padding: 0;
  padding-inline-start: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}

.lead-quality-card__steps > li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 8px;
  align-items: start;
}

.lead-quality-card__steps > li > .step-index {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.lead-quality-card__steps > li > .step-title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.lead-quality-card__steps > li > .step-desc {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

@media (max-width: 640px) {
  .lead-quality__bottom {
    padding: 0;
  }

  .lead-quality__cta {
    flex-direction: column;
  }

  .lead-quality-card {
    border-radius: 0;
    padding: 5px;
  }

  .lead-quality-card__inner {
    border-radius: 18px;
    padding: 30px 15px;
  }

  .lead-quality-card__eyebrow {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.01em;
  }

  .lead-quality-card__title {
    margin: 6px 0 0;
    font-size: clamp(18px, 2.1vw, 22px);
    line-height: 1.28;
  }

  .lead-quality-card__steps {
    margin: 14px 0 0;
    gap: 14px;
  }

  .lead-quality-card__steps > li {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 6px;
  }

  .lead-quality-card__steps > li > .step-index {
    align-self: start;
    justify-self: start;
  }

  .lead-quality-card__steps > li > .step-title {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }

  .lead-quality-card__steps > li > .step-desc {
    grid-column: 1;
    grid-row: 3;
  }

  .lead-quality-card .step-index {
    padding: 5px 9px;
    font-size: 14px;
    line-height: 1.2;
  }

  .lead-quality-card .step-title {
    font-size: 17px;
    line-height: 1.35;
  }

  .lead-quality-card .step-desc {
    font-size: 15px;
    line-height: 1.4;
  }
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 8px 11px;
  border-radius: 999px;
  background: #1f6d32;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  width: auto;
  max-width: none;
  min-height: 0;
}

.step-title {
  margin: 0;
  color: #191919;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
}

.step-desc {
  margin: 0;
  color: #444;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.pricing-marketplace-divider {
  margin: 0;
  border: 0;
  border-top: 1px solid #d6d6d6;
}

.pricing-marketplace-separator {
  background: #fff;
  padding: 56px 0 1px;
}

/* ----- Marketplace (image + layered form, ref marketplace.png) ----- */
.marketplace {
  background: #fff;
  padding: 48px var(--header-inset-x) 80px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.marketplace__container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.marketplace__intro {
  width: 100%;
  max-width: 820px;
}

.marketplace__title {
  margin: 0;
  color: #131313;
  font-weight: 500;
  font-size: var(--fs-section-title);
  line-height: 1.12;
}

.marketplace__text {
  margin: 14px 0 0;
  max-width: 720px;
  color: #3d3d3d;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.marketplace__visual {
  margin-top: 36px;
}

.marketplace__stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* Taller than the 600px card so photo shows above + below the overlap */
  min-height: 720px;
}

.marketplace__image-wrap {
  width: 100%;
  max-width: 1110px;
  min-height: 720px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background-color: #e5e5e5;
  background-image: url('../images/AboutImage.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.marketplace__overlap {
  position: absolute;
  z-index: 2;
  right: clamp(12px, 2.5vw, 36px);
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  width: min(100%, 905px);
  max-width: 905px;
  max-height: 600px;
  padding: 16px 18px 16px;
  display: flex;
  flex-direction: column;
}

.marketplace__glass {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: rgba(28, 28, 28, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.marketplace__form-card {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 26px 28px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.marketplace__form-title {
  margin: 0;
  color: #131313;
  font-weight: 600;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.marketplace__form-lede {
  margin: 5px 0 0;
  padding: 0;
  color: #5c5c5c;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marketplace__cta {
  margin: 12px 0 0;
  width: 100%;
  padding: 22px 20px 24px;
  background: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.marketplace__cta .hero-pill {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.marketplace__disclosure-email {
  margin: 10px 0 0;
  color: rgba(19, 19, 19, 0.72);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.4;
}

.marketplace__disclosure-email a {
  color: #1f6d32;
  text-decoration: none;
}

.marketplace__disclosure-email a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .marketplace__stage {
    min-height: 560px;
  }

  .marketplace__image-wrap {
    min-height: 560px;
  }

  .marketplace__overlap {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    margin-top: -40px;
  }

  .marketplace__glass {
    display: none;
  }

  .marketplace__form-lede {
    white-space: normal;
  }

  .marketplace__form-card {
    padding: 28px 22px 30px;
  }
}

@media (max-width: 640px) {
  .marketplace__stage {
    min-height: 0;
  }

  .marketplace__image-wrap {
    display: none;
    min-height: 0;
  }

  .marketplace__overlap {
    margin-top: 0;
    padding: 5px;
    border-radius: 0;
    background: rgba(135, 135, 135, 0.4);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
  }

  .marketplace__glass {
    display: none;
  }

  .marketplace__form-card {
    padding: 20px 15px 20px;
  }

  .marketplace__form-title {
    font-size: clamp(18px, 3.8vw, 22px);
  }

  .marketplace__form-lede {
    font-size: 14px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .marketplace {
    padding: 44px var(--header-inset-x) 64px;
  }
}

@media (max-width: 480px) {
  .marketplace {
    padding: 34px var(--header-inset-x) 56px;
  }

  .marketplace__text {
    font-size: 18px;
    line-height: 26px;
  }
}

/* ----- Leads inbox slider ----- */
.leads-inbox {
  background: #fff;
  margin-top: 63px;
  padding: 40px var(--header-inset-x) 80px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .leads-inbox {
    padding: 44px var(--header-inset-x) 72px;
  }
}

@media (max-width: 768px) {
  .leads-inbox {
    margin-top: 34px;
    padding: 40px var(--header-inset-x) 64px;
  }

  .leads-inbox__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .leads-inbox__controls {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .leads-inbox {
    padding: 34px var(--header-inset-x) 56px;
  }

  .leads-inbox__text {
    font-size: 18px;
    line-height: 26px;
  }
}

.leads-inbox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.leads-inbox__intro {
  width: 100%;
  max-width: 720px;
}

.leads-inbox__title {
  margin: 0;
  color: #131313;
  font-weight: 500;
  font-size: var(--fs-section-title);
  line-height: 1.08;
}

.leads-inbox__text {
  margin: 12px 0 0;
  color: #3d3d3d;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.leads-inbox__controls {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.leads-inbox__controls .slick-arrow {
  position: static;
  transform: none;
  width: auto;
  height: auto;
}

.leads-inbox__arrow {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.leads-inbox__arrow img {
  display: block;
  width: 55px;
  height: 55px;
}

.leads-inbox__shell {
  width: 100%;
  max-width: 100%;
  padding: 32px;
  border-radius: 42px;
  background: rgba(135, 135, 135, 0.4);
  overflow: hidden;
}

.leads-inbox__slider {
  width: 100%;
  max-width: 100%;
}

.leads-inbox__shell .slick-list {
  margin: 0 -17.5px;
  overflow: hidden;
}

.leads-inbox__shell .slick-track {
  display: flex !important;
  align-items: stretch;
}

.leads-inbox__shell .slick-slide {
  margin: 0 17.5px;
  height: auto;
  float: none;
  display: flex;
}

.leads-inbox__shell .slick-slide > div {
  flex: 1;
  display: flex;
  min-height: 0;
  height: auto;
}

.leads-inbox__slide {
  height: 100%;
}

.inbox-card {
  width: 100%;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 21px 35px 38px;
  border-radius: 16px;
  background: #fff;
  box-sizing: border-box;
}

.inbox-card__row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
}

.inbox-card__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-top: 2px;
}

.inbox-card__col {
  display: block;
}

.inbox-card__badge {
  margin: 0;
  color: #5a5a5a;
  font-weight: 500;
  font-size: 16px;
  line-height: 21.6px;
}

.inbox-card__name {
  margin: 6px 0 0;
  color: #131313;
  font-weight: 500;
  font-size: 32px;
  line-height: 38.4px;
}

.inbox-card__contact {
  margin-top: 14px;
}

.inbox-card__contact p {
  margin: 0 0 4px;
  color: #333;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.inbox-card__contact p:last-child {
  margin-bottom: 0;
}

.inbox-card__rule {
  margin: 56px 0 18px;
  border: 0;
  border-top: 1px solid #e3e3e3;
}

.inbox-card__notes-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.inbox-card__notes-label {
  color: #131313;
  font-weight: 500;
  font-size: 18px;
  line-height: 21.6px;
}

.inbox-card__updated {
  flex-shrink: 0;
  color: #5a5a5a;
  font-weight: 500;
  font-size: 14px;
  line-height: 21.6px;
}

.inbox-card__notes-body {
  margin: 8px 0 15px;
  color: #333;
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
}

@media (max-width: 640px) {
  .leads-inbox__shell {
    padding: 15px;
  }

  .inbox-card {
    min-height: 450px;
    padding: 21px 10px 38px;
  }

  .inbox-card__row {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .inbox-card__icon {
    margin-top: 0;
  }

  .inbox-card__col {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 6px;
    min-width: 0;
  }

  .inbox-card__badge {
    font-size: 14px;
    line-height: 18px;
  }

  .inbox-card__name {
    margin: 0;
    font-size: 22px;
    line-height: 28px;
  }

  .inbox-card__contact {
    margin-top: 2px;
  }

  .inbox-card__contact p {
    font-size: 14px;
    line-height: 20px;
  }

  .inbox-card__rule {
    margin: 22px 0 12px;
  }

  .inbox-card__notes-label {
    font-size: 15px;
    line-height: 20px;
  }

  .inbox-card__updated {
    font-size: 12px;
    line-height: 18px;
  }

  .inbox-card__notes-body {
    font-size: 14px;
    line-height: 20px;
  }
}

.leads-inbox__arrow.slick-arrow::before,
.leads-inbox__arrow.slick-arrow::after {
  display: none !important;
  content: none !important;
}

.inbox-card__btn {
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.inbox-card__btn:hover {
  background: #23813b;
}

/* ----- Pricing / Plans (matches inbox slider layout) ----- */
.pricing-plans {
  background: #fff;
  padding: 56px var(--header-inset-x) 0;
}

@media (max-width: 1024px) {
  .pricing-plans {
    padding: 52px var(--header-inset-x) 0;
  }
}

@media (max-width: 768px) {
  .pricing-plans {
    padding: 44px var(--header-inset-x) 0;
  }

  .pricing-plans__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .pricing-plans__controls {
    align-self: flex-end;
  }

  .pricing-plans__shell {
    padding: 22px;
    border-radius: 28px;
  }
}

@media (max-width: 480px) {
  .pricing-plans__text {
    font-size: 18px;
    line-height: 26px;
  }
}

.pricing-plans__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.pricing-plans__intro {
  width: 100%;
  max-width: 780px;
}

.pricing-plans__title {
  margin: 0;
  color: #131313;
  font-weight: 500;
  font-size: var(--fs-section-title);
  line-height: 1.08;
}

.pricing-plans__text {
  margin: 12px 0 0;
  color: #3d3d3d;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.pricing-plans__controls {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.pricing-plans__controls .slick-arrow {
  position: static;
  transform: none;
  width: auto;
  height: auto;
}

.pricing-plans__arrow {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.pricing-plans__arrow img {
  display: block;
  width: 55px;
  height: 55px;
}

.pricing-plans__arrow.slick-arrow::before,
.pricing-plans__arrow.slick-arrow::after {
  display: none !important;
  content: none !important;
}

.pricing-plans__shell {
  width: 100%;
  max-width: 100%;
  padding: 32px;
  border-radius: 42px;
  background: rgba(135, 135, 135, 0.4);
  overflow: hidden;
}

@media (max-width: 640px) {
  .pricing-plans__shell {
    padding: 10px;
    border-radius: 0;
  }
}

.pricing-plans__slider {
  width: 100%;
  max-width: 100%;
}

.pricing-plans__shell .slick-list {
  margin: 0 -17.5px;
  overflow: hidden;
}

.pricing-plans__shell .slick-track {
  display: flex !important;
  align-items: stretch;
}

.pricing-plans__shell .slick-slide {
  margin: 0 17.5px;
  height: auto;
  float: none;
  display: flex;
}

.pricing-plans__shell .slick-slide > div {
  flex: 1;
  display: flex;
  min-height: 0;
  height: auto;
}

.pricing-plans__slide {
  height: 100%;
}

.pricing-card {
  width: 100%;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 490px;
  padding: 21px 36px 38px;
  border-radius: 16px;
  background: #fff;
  box-sizing: border-box;
}

.pricing-card--even {
  background: #000;
}

.pricing-card--even .pricing-card__label {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.pricing-card--even .pricing-card__headline {
  color: #fff;
}

.pricing-card--even .pricing-card__features span {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-card__label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1f6d32;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 21.6px;
}

.pricing-card__headline {
  margin: 10px 0 0;
  color: #131313;
  font-weight: 600;
  font-size: 32px;
  line-height: 38.4px;
}

.pricing-card__features {
  margin: 22px 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card__features li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
}

.pricing-card__features img {
  display: block;
  width: 16px;
  height: 16px;
}

.pricing-card__features span {
  color: #333;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.pricing-card__rule {
  margin: 48px 0 20px;
  border: 0;
  border-top: 1px solid #e3e3e3;
  display: none;
}

.pricing-card .inbox-card__btn {
  margin-top: auto;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .pricing-card {
    padding: 15px 15px 15px;
    justify-content: center;
  }

  .pricing-card__label {
    padding: 5px 10px;
    font-size: 14px;
    line-height: 18px;
  }

  .pricing-card__headline {
    margin: 8px 0 0;
    font-size: 22px;
    line-height: 28px;
  }

  .pricing-card__features {
    margin: 14px 0 0;
    gap: 10px;
  }

  .pricing-card__features span {
    font-size: 14px;
    line-height: 20px;
  }

  .pricing-card .inbox-card__btn {
    margin-top: 20px;
  }
}

/* ----- Footer ----- */
.site-footer {
  margin-top: 52px;
  padding: 123px 0 91px;
  background: linear-gradient(180deg, #000000 0%, #414141 100%);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.site-footer__inner {
  width: 100%;
  padding: 0 30px;
}

.site-footer__card {
  width: 100%;
  border-radius: 16px;
  background: #fff;
  padding: 54px 52px 84px;
}

.site-footer__card-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__brand {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 520px;
}

.site-footer__logo {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.site-footer__logo img {
  display: block;
  width: 150px;
  height: 36px;
  object-fit: contain;
}


.site-footer__brand-text {
  margin: 18px 0 0;
  color: #5a5a5a;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.site-footer__info {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 97px; /* address ↔ contact gap */
}

.site-footer__info-col {
  min-width: 0;
}

.site-footer__info-title {
  margin: 2px 0 10px;
  color: #5a5a5a;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}

.site-footer__info-text {
  margin: 0;
  color: #5a5a5a;
  font-weight: 400;
  font-size: 14px; /* General Sans 14 */
  line-height: 18px; /* 18 */
}

.site-footer__info-link {
  color: inherit;
  text-decoration: none;
}

.site-footer__info-link:hover {
  text-decoration: underline;
}

.site-footer__lower {
  padding: 35px;
}

.site-footer__lower-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__menu {
  min-width: 0;
}

.site-footer__subscribe {
  min-width: 0;
}

.site-footer__subscribe-text {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.45;
}

.site-footer__subscribe-text strong {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__subscribe-text .site-footer__info-link {
  color: #7dd694;
}

.site-footer__subscribe-text .site-footer__info-link:hover {
  color: #9ae4b0;
}

.site-footer__lower-title {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500; /* medium */
  font-size: 18px;
  line-height: 28px;
}

.site-footer__menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.site-footer__menu-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  white-space: nowrap;
}

.site-footer__menu-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__subscribe-embed {
  width: 100%;
  max-width: 420px;
}

.site-footer__subscribe-embed iframe {
  display: block;
  width: 100%;
  height: 472px;
  border: 0;
  background: transparent;
}

.site-footer__bottom {
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

/* ----- Contact page ----- */
.contact-hero {
  background: #fff;
  padding: 180px var(--header-inset-x) 80px;
}

.contact-hero__inner {
  width: 100%;
  max-width: 100%;
}

.contact-hero__title {
  margin: 0;
  text-align: center;
  color: #131313;
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.1;
}

.contact-cards {
  margin-top: 26px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 16px;
  padding: 22px 18px 20px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.contact-card__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(31, 109, 50, 0.12);
  color: #1f6d32;
  display: grid;
  place-items: center;
}

.contact-card__label {
  margin: 0;
  color: #131313;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}

.contact-card__value {
  margin: 6px 0 0;
  display: inline-block;
  color: #5a5a5a;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.contact-card__value:hover {
  color: #1f6d32;
  text-decoration: underline;
}

.contact-card__value--plain {
  display: block;
}

.contact-ready {
  margin-top: 64px;
}

.contact-ready__grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.contact-ready__kicker {
  margin: 0 0 10px;
  color: #131313;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-ready__title {
  margin: 0;
  color: #131313;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.contact-ready__intro {
  margin: 14px 0 0;
  max-width: 520px;
  color: #5c5c5c;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
}

.contact-ready__intro a {
  color: #131313;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-ready__intro a:hover {
  color: #000;
}

.contact-ready__shell {
  width: 100%;
  padding: 32px;
  border-radius: 42px;
  background: rgba(135, 135, 135, 0.4);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  box-sizing: border-box;
}

.contact-ready__card {
  width: 100%;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}

.contact-ready__embed {
  width: 100%;
  height: 1283px;
}

.contact-ready__disclosure {
  margin: 10px 0 0;
  color: rgba(19, 19, 19, 0.7);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
}

.contact-ready__disclosure a {
  color: #1f6d32;
  text-decoration: none;
}

.contact-ready__disclosure a:hover {
  text-decoration: underline;
}

.contact-ready__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-ready__row--two {
  grid-template-columns: 1fr 1fr;
}

.contact-ready__field input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid rgba(19, 19, 19, 0.35);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: #131313;
}

.contact-ready__field input::placeholder {
  color: rgba(19, 19, 19, 0.6);
}

.contact-ready__checks {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.contact-ready__check {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  color: rgba(19, 19, 19, 0.7);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.35;
}

.contact-ready__check input {
  width: 14px;
  height: 14px;
  margin-top: 2px;
}

.contact-ready__submit {
  margin-top: 8px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 0 34px;
  border: 1px solid #1f6d32;
  border-radius: 999px;
  background: #1f6d32;
  color: #fff;
  font-family: inherit;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-ready__submit:hover {
  background: #23813b;
  border-color: #23813b;
}

.contact-ready__fineprint {
  margin-top: 8px;
  color: rgba(19, 19, 19, 0.65);
  font-size: 12px;
  line-height: 1.2;
}

.contact-ready__link {
  color: rgba(19, 19, 19, 0.65);
  text-decoration: none;
}

.contact-ready__link:hover {
  color: #1f6d32;
  text-decoration: underline;
}

/* screen-reader only */
.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: 1024px) {
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-ready__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 64px var(--header-inset-x) 64px;
  }

  .contact-card {
    padding: 18px 14px 16px;
  }

  .contact-ready {
    margin-top: 42px;
  }

  .contact-ready__row--two {
    grid-template-columns: 1fr;
  }

  .contact-ready__shell {
    padding: 5px;
    border-radius: 0;
  }
}

/* ----- Legal pages ----- */
.legal-page {
  background: #fff;
  padding: 180px var(--header-inset-x) 96px;
}

.legal-page__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.legal-page__kicker {
  margin: 0 0 10px;
  color: #131313;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-page__title {
  margin: 0;
  color: #131313;
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.08;
}

.legal-page__meta {
  margin: 10px 0 0;
  color: #5a5a5a;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

.legal-page__content {
  margin-top: 22px;
  color: #3d3d3d;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
}

.legal-page__content h2 {
  margin: 22px 0 10px;
  color: #131313;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
}

.legal-page__content p {
  margin: 0 0 12px;
}

.legal-page__content ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

.legal-page__link {
  color: #1f6d32;
  text-decoration: none;
}

.legal-page__link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .legal-page {
    padding: 140px var(--header-inset-x) 72px;
  }

  .legal-page__content {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 96px 0 72px;
  }

  .site-footer__inner {
    padding: 0 22px;
  }

  .site-footer__card {
    padding: 42px 38px 60px;
  }

  .site-footer__info {
    gap: 56px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 72px 0 64px;
    margin-top: 34px;
  }

  .site-footer__inner {
    padding: 0 16px;
  }

  .site-footer__card {
    padding: 34px 22px 40px;
  }

  .site-footer__card-grid {
    flex-direction: column;
    gap: 26px;
  }

  .site-footer__brand {
    max-width: 100%;
  }

  .site-footer__info {
    width: 100%;
    justify-content: space-between;
    gap: 22px;
  }

  .site-footer__lower {
    padding: 26px 22px 22px;
  }

  .site-footer__lower-grid {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer__subscribe-embed {
    max-width: 100%;
    width: 100%;
  }

  .site-footer__bottom {
    padding: 0 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 64px 0 56px;
  }

  .site-footer__card {
    padding: 28px 18px 32px;
  }

  .site-footer__info {
    flex-direction: column;
    gap: 16px;
  }

  .site-footer__menu-links {
    gap: 12px 18px;
  }
}
