/* =============================================================
   LMS Garage Doors — Paid Landing Page styles
   Scoped to .lp-page. Uses the V2 design tokens (tokens.css).
   Page is stripped chrome — no site nav, no full footer, no
   organic phone numbers. Mobile-first.
   ============================================================= */

/* ---------- Reset for the paid LP only ---------- */
.lp-page {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
.lp-page * { box-sizing: border-box; }

/* ---------- Tokens (page-local) ---------- */
.lp-page {
  --lp-max: 1180px;
  --lp-gutter: 24px;
  --lp-section-y: clamp(56px, 7vw, 96px);
  --lp-card-radius: 0;
}

/* ---------- Shared section wrapper ---------- */
.lp-section-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 var(--lp-gutter);
}

/* ---------- Section heads ---------- */
.lp-section-head {
  margin-bottom: clamp(32px, 4vw, 48px);
  max-width: 56ch;
}
.lp-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.lp-eyebrow-light { color: var(--gold); }
.lp-section-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}
.lp-section-head h2 em {
  font-style: italic;
  color: var(--gold-deep);
}

/* =============================================================
   HEADER
   ============================================================= */
.lp-header {
  background: var(--paper);
  border-bottom: 1px solid var(--ink-line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.lp-header-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 12px var(--lp-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 16px;
}
.lp-logo img { display: block; height: 36px; width: auto; }
.lp-logo-word { display: inline; }
@media (max-width: 480px) {
  .lp-logo-word { display: none; }
}
/* Header CTAs grouped on the right (Get a quote + phone). On mobile,
   the bottom sticky CTA covers the form-jump action, so we hide the
   header's "Get a quote" link there to avoid redundancy. */
.lp-header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-header-quote {
  display: none; /* default hidden — shown on desktop via media query below */
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 10px 14px;
  border: 1px solid var(--ink-line);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.lp-header-quote:hover,
.lp-header-quote:focus-visible {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  outline: none;
}
@media (min-width: 720px) {
  .lp-header-quote { display: inline-flex; }
}

.lp-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  padding: 10px 16px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: background .15s ease;
}
.lp-header-phone:hover,
.lp-header-phone:focus-visible { background: var(--rust); outline: none; }
.lp-header-phone-icon { font-size: 16px; }
.lp-header-phone-num { font-feature-settings: "tnum"; }

/* =============================================================
   HERO
   ============================================================= */
.lp-hero {
  padding: clamp(28px, 4vw, 56px) 0 clamp(40px, 5vw, 72px);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--ink-line);
}
.lp-hero-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 var(--lp-gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 880px) {
  .lp-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: start;
  }
}

/* ---- Hero copy column ---- */
.lp-hero-eyebrow {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.lp-hero-h1 {
  font-family: var(--display);
  font-size: clamp(34px, 5.4vw, 56px);
  font-weight: 460;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 18ch;
}
.lp-hero-h1 em { font-style: italic; color: var(--rust); }
.lp-hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 44ch;
}

/* ---- Trust strip ---- */
.lp-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.lp-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.05em;
}
.lp-dot { color: var(--ink-mute); }

/* ---- Hero CTAs ---- */
.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
}
.lp-cta:active { transform: translateY(1px); }

.lp-cta-call {
  background: var(--rust);
  color: var(--paper);
  padding: 16px 22px;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  min-width: 220px;
}
.lp-cta-call:hover,
.lp-cta-call:focus-visible {
  background: var(--rust-deep);
  outline: none;
}
.lp-cta-call-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 700;
}
.lp-cta-call-num {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  font-feature-settings: "tnum";
}

.lp-hero-or {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 16px;
}

/* Desktop (>=880px = the 2-column hero breakpoint): hide the hero's
   "Request a quote ↓" secondary CTA + its "or" separator. The form is
   already visible side-by-side with the hero copy on desktop, so the
   button is redundant and the down-arrow is misleading (form is to
   the right, not below). Mobile keeps the CTA — there the form is
   stacked below the hero and the "↓ Request a quote" link is a
   genuine scroll-to-form affordance.
   Note: only targets hero CTAs; the final-cta strip's "Request a quote ↑"
   stays on both viewports since it's a legit bottom-of-page action. */
@media (min-width: 880px) {
  .lp-hero-ctas .lp-hero-or,
  .lp-hero-ctas .lp-cta-form-link {
    display: none;
  }
}

.lp-cta-form-link {
  background: transparent;
  color: var(--ink);
  padding: 14px 20px;
  border: 1px solid var(--ink);
  font-size: 15px;
  letter-spacing: -0.005em;
}
.lp-cta-form-link:hover,
.lp-cta-form-link:focus-visible {
  background: var(--ink);
  color: var(--paper);
  outline: none;
}

.lp-arrow {
  font-family: var(--display);
  transition: transform .15s ease;
}
.lp-cta:hover .lp-arrow { transform: translate(2px, 0); }

.lp-hero-hours {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

/* ---- Inline hero photo (visible on mobile + tablet under the CTAs) ---- */
.lp-hero-photo-inline {
  margin: 32px 0 0;
  position: relative;
}
.lp-hero-photo-inline img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.03);
}
.lp-hero-photo-inline figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(6px);
  color: var(--paper);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  border-left: 2px solid var(--gold);
}

/* =============================================================
   INLINE FORM
   ============================================================= */
.lp-form-wrap {
  background: var(--ink);
  color: var(--paper);
  padding: 28px;
  position: relative;
}
@media (min-width: 880px) {
  .lp-form-wrap {
    padding: 36px 32px;
    position: sticky;
    top: 84px;
  }
}
.lp-form-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.lp-form-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0 0 8px;
}
.lp-form-lede {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.72);
  margin: 0 0 22px;
}

.lp-form fieldset { border: 0; padding: 0; margin: 0 0 18px; }
.lp-form legend {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0;
}
.lp-form-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lp-svc-card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-line-2);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
  min-height: 48px;
}
.lp-svc-card:hover { border-color: var(--gold); }
.lp-svc-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lp-svc-card-title {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.92);
  line-height: 1.25;
}
.lp-svc-card:has(input:checked) {
  background: var(--gold);
  border-color: var(--gold);
}
.lp-svc-card:has(input:checked) .lp-svc-card-title {
  color: var(--ink);
  font-weight: 600;
}
.lp-svc-card:has(input:focus-visible) {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Urgent checkbox — quiet single-line opt-in placed just above the
   submit button. Preserves the rust accent color (emergency cue) but
   visually subdued vs. the chunky block treatment we had earlier.
   Drives [URGENT] office subject prefix via forms-inbound. */
.lp-form-urgent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  margin: 0 0 14px;
  cursor: pointer;
}
.lp-form-urgent input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--rust);
  flex-shrink: 0;
}
.lp-form-urgent-text {
  font-size: 14px;
  line-height: 1.3;
  color: rgba(245, 240, 232, 0.92);
  font-weight: 500;
}

/* Form fields */
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 380px) {
  .lp-form-row { grid-template-columns: 1fr; }
}
.lp-form-field { display: flex; flex-direction: column; min-width: 0; }
.lp-form-field label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
}
.lp-form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 232, 0.5);
}
.lp-form-field input {
  font-family: var(--body);
  font-size: 16px;
  padding: 11px 12px;
  background: var(--paper);
  border: 1px solid transparent;
  color: var(--ink);
  width: 100%;
  border-radius: 0;
  transition: border-color .15s ease;
}
.lp-form-field input:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.lp-form-field input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: var(--rust);
}

/* Honeypot — visually + a11y hidden */
.lp-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.lp-turnstile { margin: 8px 0 16px; min-height: 65px; }

.lp-cta-submit {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  font-size: 16px;
  padding: 14px 20px;
  justify-content: center;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.lp-cta-submit:hover,
.lp-cta-submit:focus-visible {
  background: var(--paper);
  outline: none;
}
.lp-cta-submit[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.lp-form-status {
  margin-top: 14px;
  font-size: 14px;
  padding: 12px 14px;
}
.lp-form-status.is-success {
  background: rgba(200, 154, 60, 0.16);
  border-left: 3px solid var(--gold);
  color: var(--paper);
}
.lp-form-status.is-error {
  background: rgba(168, 67, 31, 0.18);
  border-left: 3px solid var(--rust);
  color: var(--paper);
}

.lp-form-fineprint {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.55);
  margin: 14px 0 0;
  line-height: 1.4;
}
.lp-form-fineprint a {
  color: rgba(245, 240, 232, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(245, 240, 232, 0.4);
}
.lp-form-fineprint a:hover { color: var(--paper); }

/* =============================================================
   WHAT WE FIX
   ============================================================= */
.lp-fix {
  padding: var(--lp-section-y) 0;
  background: var(--paper);
}
.lp-fix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-line);
}
@media (min-width: 720px) {
  .lp-fix-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1020px) {
  .lp-fix-grid { grid-template-columns: repeat(4, 1fr); }
}
.lp-fix-card {
  padding: 28px 24px 32px;
  border-bottom: 1px solid var(--ink-line);
  border-right: 1px solid var(--ink-line);
}
.lp-fix-card:last-child { border-right: 0; }
@media (min-width: 720px) and (max-width: 1019.98px) {
  .lp-fix-card:nth-child(2n) { border-right: 0; }
}
@media (max-width: 719.98px) {
  .lp-fix-card { border-right: 0; }
}
.lp-fix-card-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.lp-fix-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 460;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 10px;
}
.lp-fix-card p {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0;
}
.lp-fix-card p strong { color: var(--ink); }

/* =============================================================
   WHAT IT'LL COST
   ============================================================= */
.lp-cost {
  padding: var(--lp-section-y) 0;
  background: var(--cream);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.lp-cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
@media (min-width: 720px) {
  .lp-cost-grid { grid-template-columns: 1fr 1fr; }
}
.lp-cost-card {
  background: var(--paper);
  padding: 28px 28px 32px;
  border: 1px solid var(--ink-line);
}
.lp-cost-card-anchor {
  border-color: var(--gold);
  position: relative;
}
.lp-cost-card-anchor::before {
  content: "Most common";
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 700;
}
.lp-cost-card-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 10px;
}
.lp-cost-card-price {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.lp-cost-card p {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0;
}
.lp-cost-note {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 62ch;
  margin: 0;
  padding: 18px 22px;
  background: var(--paper);
  border-left: 2px solid var(--gold);
}
.lp-cost-note strong { color: var(--ink); }

/* =============================================================
   WHAT TO EXPECT
   ============================================================= */
.lp-expect {
  padding: var(--lp-section-y) 0;
  background: var(--paper);
}
.lp-expect-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 720px) {
  .lp-expect-steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1020px) {
  .lp-expect-steps { grid-template-columns: repeat(4, 1fr); }
}
.lp-expect-steps li {
  padding: 28px 28px 28px 0;
  border-top: 1px solid var(--ink-line);
}
@media (min-width: 1020px) {
  .lp-expect-steps li {
    border-top: 0;
    border-right: 1px solid var(--ink-line);
    padding: 0 32px 0 0;
  }
  .lp-expect-steps li:last-child { border-right: 0; }
}
.lp-expect-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.lp-expect-content h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 460;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 8px;
}
.lp-expect-content p {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0;
}

/* =============================================================
   REVIEWS
   ============================================================= */
.lp-reviews {
  padding: var(--lp-section-y) 0;
  background: var(--ink);
  color: var(--paper);
}
.lp-section-head-reviews {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  max-width: var(--lp-max);
}
.lp-reviews h2 { color: var(--paper); }
.lp-reviews h2 em { color: var(--gold); }
.lp-reviews-stars { text-align: right; }
.lp-stars-lg {
  color: var(--gold);
  font-size: 28px;
  letter-spacing: 0.08em;
}
.lp-reviews-stars-meta {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.72);
  margin-top: 6px;
}
.lp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 820px) {
  .lp-reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.lp-review {
  margin: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-line-2);
  display: flex;
  flex-direction: column;
}
.lp-review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.lp-review-quote {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.92);
  margin: 0 0 22px;
  flex: 1;
}
.lp-review-attr {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}
.lp-review-attr strong { color: var(--paper); }

/* =============================================================
   SERVICE AREA
   ============================================================= */
.lp-area {
  padding: var(--lp-section-y) 0;
  background: var(--paper);
}
.lp-section-head-area { max-width: 60ch; }
.lp-area-sub {
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 14px 0 0;
}
.lp-area-cities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 6px;
}
@media (min-width: 600px) { .lp-area-cities { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px) { .lp-area-cities { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1020px) { .lp-area-cities { grid-template-columns: repeat(5, 1fr); } }
.lp-area-cities li {
  padding: 4px 0;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
}

/* =============================================================
   FAQ
   ============================================================= */
.lp-faq {
  padding: var(--lp-section-y) 0;
  background: var(--cream);
  border-top: 1px solid var(--ink-line);
}
.lp-faq-list {
  max-width: 780px;
  border-top: 1px solid var(--ink-line);
}
.lp-faq-list details {
  border-bottom: 1px solid var(--ink-line);
  padding: 18px 0;
}
.lp-faq-list summary {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}
.lp-faq-list summary::-webkit-details-marker { display: none; }
.lp-faq-list summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 24px;
  color: var(--gold-deep);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.lp-faq-list details[open] summary::after { content: "\2212"; }
.lp-faq-list details p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 12px 0 0;
  max-width: 64ch;
}
.lp-faq-list details p strong { color: var(--ink); }

/* =============================================================
   FINAL CTA
   ============================================================= */
.lp-final-cta {
  padding: var(--lp-section-y) 0;
  background: var(--ink);
  color: var(--paper);
}
.lp-final-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 820px) {
  .lp-final-cta-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
}
.lp-final-cta h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 14px 0 16px;
  color: var(--paper);
  max-width: 18ch;
}
.lp-final-cta h2 em { font-style: italic; color: var(--gold); }
.lp-final-cta p {
  font-size: 17px;
  color: rgba(245, 240, 232, 0.78);
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 52ch;
}
.lp-final-cta-hours {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 232, 0.6);
}
.lp-final-cta-card {
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--gold);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.lp-final-cta-card-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.lp-final-cta-phone {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  line-height: 1;
}
.lp-final-cta-phone:hover { color: var(--gold); }
.lp-final-cta-or {
  font-family: var(--display);
  font-style: italic;
  color: rgba(245, 240, 232, 0.55);
  font-size: 14px;
}
.lp-final-cta-card .lp-cta-form-link {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.3);
}
.lp-final-cta-card .lp-cta-form-link:hover,
.lp-final-cta-card .lp-cta-form-link:focus-visible {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* =============================================================
   BRAND TRUST STRIP
   Small monochrome row of brand logos between hero and comparison.
   Logos are filtered to grayscale + reduced opacity so they read
   as a supporting trust signal rather than a vendor advertisement.
   ============================================================= */
.lp-brands {
  padding: 32px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-line);
}
.lp-brands-eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}
.lp-brands-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 40px;
}
.lp-brands-list img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
@media (min-width: 720px) {
  .lp-brands-list img { height: 36px; }
}

/* =============================================================
   LMS ADVANTAGE — vs comparison cards
   Two side-by-side cards on desktop with a "vs" badge in the gap.
   On mobile the cards stack vertically AND flip order — LMS card
   sits on top so the positive value prop is the first thing the
   user reads. Pattern is grid + order, not flexbox-reverse, so
   focus order in the DOM is preserved (DOM is chain-first, LMS-second
   to match desktop L→R reading; visual order on mobile flips).
   ============================================================= */
.lp-compare {
  padding: var(--lp-section-y) 0;
  background: var(--paper);
}
.lp-compare-lede {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 62ch;
}

.lp-vs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
/* Mobile: LMS card visually on top (us = order 1), chain card below (them = order 2).
   Badge sits between them (order 2 between the two cards). */
.lp-vs-card-us   { order: 1; }
.lp-vs-badge     { order: 2; }
.lp-vs-card-them { order: 3; }

@media (min-width: 880px) {
  .lp-vs {
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    align-items: stretch;
  }
  /* Desktop: typical chain on left (column 1), LMS on right (column 2).
     Override the mobile order so left→right tells the "from this → to this" story. */
  .lp-vs-card-them { order: 1; grid-column: 1; }
  .lp-vs-card-us   { order: 2; grid-column: 2; }
  /* Badge is absolutely positioned in the gap between the columns. */
  .lp-vs-badge { order: 0; }
}

/* ---- Cards ---- */
.lp-vs-card {
  position: relative;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--ink-line);
}
.lp-vs-card-them {
  background: var(--cream);
  color: var(--ink-mute);
}
.lp-vs-card-us {
  background: var(--paper);
  border-color: var(--gold);
  box-shadow: 0 2px 0 var(--gold);
}

/* Eyebrow + card title */
.lp-vs-eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.lp-vs-eyebrow-them { color: var(--ink-mute); }
.lp-vs-eyebrow-us   { color: var(--gold-deep); }

.lp-vs-card-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.lp-vs-card-them .lp-vs-card-title { color: var(--ink-mute); }
.lp-vs-card-us   .lp-vs-card-title { color: var(--ink); }

/* ---- Bullet list ---- */
.lp-vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lp-vs-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.lp-vs-list li > div {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.lp-vs-card-them .lp-vs-list li > div { color: var(--ink-mute); }
.lp-vs-list li strong {
  display: inline;
  color: var(--ink);
  font-weight: 700;
}
.lp-vs-card-them .lp-vs-list li strong { color: var(--ink-soft); }

/* Icons — filled circles with check / x */
.lp-vs-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--body);
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-vs-icon-check {
  background: var(--gold);
  color: var(--ink);
}
.lp-vs-icon-x {
  background: var(--ink-line);
  color: var(--ink-mute);
}

/* ---- "vs" badge ---- */
.lp-vs-badge {
  align-self: center;
  justify-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0;
  /* On mobile, badge participates in the grid flow and sits between cards. */
  margin: -8px 0;
  z-index: 1;
}
@media (min-width: 880px) {
  .lp-vs-badge {
    /* On desktop, take the badge out of flow and float in the column gap. */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 56px;
    height: 56px;
    font-size: 15px;
    box-shadow: 0 0 0 6px var(--paper);
  }
}

/* =============================================================
   "WHAT WE FIX" compact strip
   ============================================================= */
.lp-fixstrip {
  padding: 32px 0;
  background: var(--cream);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.lp-fixstrip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 20px;
}
.lp-fixstrip-label {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  flex-shrink: 0;
}
.lp-fixstrip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
}
.lp-fixstrip-list li {
  display: inline-flex;
  align-items: center;
}
.lp-fixstrip-list li + li::before {
  content: "\00B7";
  margin: 0 12px;
  color: var(--ink-mute);
}

/* =============================================================
   FOOTER
   ============================================================= */
.lp-footer {
  background: var(--paper);
  border-top: 1px solid var(--ink-line);
  padding: 28px 0;
}
.lp-footer-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 var(--lp-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-mute);
}
.lp-footer-links {
  display: flex;
  gap: 22px;
}
.lp-footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.lp-footer-links a:hover { border-bottom-color: var(--ink-soft); }

/* =============================================================
   MOBILE STICKY CTA
   ============================================================= */
.lp-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  background: var(--ink);
  border-top: 1px solid var(--gold);
  padding: 8px;
  gap: 8px;
}
@media (min-width: 720px) {
  .lp-mobile-cta { display: none; }
}
/* Make space at bottom of page so sticky CTA doesn't overlap final content */
@media (max-width: 719.98px) {
  body.lp-page { padding-bottom: 76px; }
}
.lp-mobile-cta-call,
.lp-mobile-cta-quote {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 12px;
  gap: 6px;
}
.lp-mobile-cta-call {
  background: var(--rust);
  color: var(--paper);
}
.lp-mobile-cta-icon { font-size: 16px; }
.lp-mobile-cta-quote {
  background: var(--paper);
  color: var(--ink);
}

/* =============================================================
   REDUCED-MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .lp-page *,
  .lp-page *::before,
  .lp-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
