/* ── V2 HOME: SHARED ──
   Lighter heading weight (matches the MoveOps logo, 700) and a centered
   ~1280px content column, mirroring the pattern used on the V2 services
   pages. Scoped to this stylesheet so the live homepage (/) is untouched. */
h2.section-title,
.hero h1,
.cta-banner h3 {
  font-weight: 700;
}

.v2-preview-note {
  background: #fef3c7;
  color: #78350f;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-align: center;
  padding: 10px 24px;
  border-bottom: 1px solid #fde68a;
}

/* ── HERO ──
   Keeps the existing photo + gradient background, but contains the two
   columns in a centered max-width row and turns the trust-point panel
   into a light floating card (echoing LendIQ's hero map card) instead
   of a translucent dark panel. */
.hero {
  display: block;
  min-height: 0;
  padding: 0 56px;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 48px;
}
.hero-left { padding: 64px 0; }
.hero-right {
  background: white;
  border: none;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(9,12,38,0.35);
  padding: 36px 32px;
}
.hero-right-label { color: var(--navy); }
.trust-point { border-bottom: 1px solid var(--rule); }
.tp-check { color: var(--blue); }
.tp-title { color: var(--navy); }
.tp-desc { color: var(--text-mid); font-size: 14px; }

@media (max-width: 960px) {
  .hero { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .hero-left { padding: 48px 0; }
  .hero-right { display: flex; margin-bottom: 40px; }
}

/* ── WHO WE WORK WITH → "Why Choose" style ──
   Minimal centered icon + title + description columns, no card borders,
   matching LendIQ's "Why Choose LendIQ?" section. */
.who-section {
  text-align: center;
}
.who-section .eyebrow { justify-content: center; }
.who-section h2.section-title { max-width: 640px; margin: 0 auto; }

.who-grid {
  max-width: 1280px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background: none;
  border: none;
}
.who-card {
  background: none;
  padding: 0;
  text-align: center;
}
.who-card:hover { background: none; }
.who-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--light-grey);
  color: var(--blue);
  margin: 0 auto 18px;
}
.who-icon svg { width: 32px; height: 32px; }
.who-title { font-size: 17px; }
.who-body { font-size: 14px; }

@media (max-width: 960px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}
@media (max-width: 640px) {
  .who-grid { grid-template-columns: 1fr; }
}

/* ── OUR PROMISE ──
   Contained width; right-hand points become a 2x2 card grid rather than
   a stacked list, for a cleaner, more structured feel. */
.promise-section {
  max-width: 1280px;
  margin: 0 auto;
}
.promise-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.promise-point {
  background: var(--off-white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
}
.pp-icon { margin-bottom: 12px; }

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

/* ── HOW IT WORKS ──
   Already dark/numbered like the V2 services steps; just contain the
   width and lighten the big step numerals to match. */
.how-section > .eyebrow,
.how-section > h2.section-title {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.how-steps {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.hs-num { font-weight: 700; }

/* ── TESTIMONIALS ── */
.testi-section { text-align: center; }
.testi-section .eyebrow { justify-content: center; }
.testi-section h2.section-title { max-width: 640px; margin: 0 auto; }
.testi-grid {
  max-width: 1280px;
  margin: 52px auto 0;
  text-align: left;
}
.testi-card {
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(18,22,63,0.06);
}

/* ── CTA BANNER ──
   No HTML change needed: growing the side padding on wide screens
   (floored at the original 56px) centers the same flex row within an
   effective 1280px column while the blue background stays full-bleed. */
.cta-banner {
  padding-left: max(56px, calc((100% - 1280px) / 2));
  padding-right: max(56px, calc((100% - 1280px) / 2));
}

/* ── FOOTER ── */
.footer-main,
.footer-bottom {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
