/*
 * Interior page sections used by Buyers / Sellers / About Me content:
 *   .lt-page-hero | .lt-page-prose | .lt-page-feature | .lt-page-badges | .lt-page-cta
 *
 * Page HTML was published with these classes; this stylesheet is what makes
 * the heroes full-bleed, text readable, and sections align to the Bootstrap
 * .container. Tokens come from typography-overrides.css.
 */

/* ============================================================ Hero */

.lt-page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(280px, 42vw, 460px);
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  color: #fff;
  background-color: var(--lt-navy, #2d3b4f);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.lt-page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.35) 0%,
      rgba(15, 23, 42, 0.55) 45%,
      rgba(15, 23, 42, 0.78) 100%
    );
  pointer-events: none;
  z-index: 0;
}

.lt-page-hero > .container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  width: 100%;
}

.lt-page-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9be08d;
}

.lt-page-hero__title {
  margin: 0 0 14px;
  font-family: var(--lt-font-display, inherit);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}

.lt-page-hero__lead {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

/* ============================================================ Prose */

.lt-page-prose {
  padding: clamp(48px, 7vw, 88px) 0;
  background: #fff;
}

.lt-page-prose > .container {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  float: none;
}

.lt-page-prose__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lt-green-text, #0e7a26);
}

.lt-page-prose__title {
  margin: 0 0 22px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--lt-ink-display, #0f172a);
}

.lt-page-prose p {
  color: var(--lt-ink-soft, #374151);
}

.lt-page-prose__signature {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.lt-page-prose__signature-name {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--lt-ink-display, #0f172a);
}

.lt-page-prose__signature-role {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--lt-ink-mute, #5b6470);
}

/* ============================================================ Feature cards */

.lt-page-feature {
  padding: clamp(48px, 7vw, 88px) 0;
  background: #f7f8fa;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.lt-page-feature__head {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: center;
}

.lt-page-feature__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lt-green-text, #0e7a26);
}

.lt-page-feature__title {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--lt-ink-display, #0f172a);
}

.lt-page-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lt-page-feature__card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 28px 26px 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.lt-page-feature__card > .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 0 16px;
  border-radius: 10px;
  background: rgba(106, 183, 90, 0.12);
  color: var(--lt-green-text, #0e7a26);
  font-size: 18px;
}

.lt-page-feature__card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--lt-ink-display, #0f172a);
}

.lt-page-feature__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lt-page-feature__card li {
  position: relative;
  padding: 0 0 12px 0;
  margin: 0 0 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 15px;
  line-height: 1.55;
  color: var(--lt-ink-soft, #374151);
}

.lt-page-feature__card li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.lt-page-feature__card li strong {
  color: var(--lt-ink-display, #0f172a);
}

@media (max-width: 991px) {
  .lt-page-feature__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ Badges */

.lt-page-badges {
  padding: clamp(36px, 5vw, 56px) 0;
  background: #fff;
  text-align: center;
}

.lt-page-badges__eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lt-ink-mute, #5b6470);
}

.lt-page-badges__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}

.lt-page-badges__row img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
}

/* ============================================================ CTA */

.lt-page-cta {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  background: linear-gradient(135deg, var(--lt-navy, #2d3b4f) 0%, #1f2937 100%);
  color: #fff;
  overflow: hidden;
}

.lt-page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(105, 183, 89, 0.22), transparent 32%),
    radial-gradient(circle at 88% 85%, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.lt-page-cta > .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  text-align: center;
}

.lt-page-cta__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9be08d;
}

.lt-page-cta__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.lt-page-cta__lead {
  margin: 0 auto 28px;
  max-width: 54ch;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.lt-page-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0;
}

.lt-page-cta__buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
}

.lt-page-cta__buttons .btn-info {
  background: #6ab75a;
  border-color: #6ab75a;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(76, 155, 63, 0.32);
}

.lt-page-cta__buttons .btn-info:hover,
.lt-page-cta__buttons .btn-info:focus {
  background: #4c9b3f;
  border-color: #4c9b3f;
  color: #fff !important;
}

.lt-page-cta__buttons .btn-default {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

.lt-page-cta__buttons .btn-default:hover,
.lt-page-cta__buttons .btn-default:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
}

@media (max-width: 640px) {
  .lt-page-hero {
    min-height: 260px;
    align-items: center;
  }

  .lt-page-cta__buttons {
    flex-direction: column;
  }

  .lt-page-cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .lt-page-badges__row img {
    height: 40px;
  }
}
