/* ==========================================================================
   landing.css — tirerepairnear.me landing pages
   Loaded AFTER main.css. Only affects pages with body[data-page="lp"].
   Structurally distinct from the main site AND from any reference layout:
     · left sticky rail hero (not a 2-col image split)
     · numbered ledger rows (not step cards)
     · asymmetric bento services (not a uniform card grid)
     · horizontal scroll rail for reviews (not a grid)
     · two-column FAQ ledger
   ========================================================================== */

/* ==========================================================================
   LIGHT THEME — scoped to landing pages only.
   Every rule below already reads these tokens, so redefining them here flips
   the whole landing theme without touching the (dark) main site.

   Contrast note: pure amber #ffb800 on white is ~1.6:1 — unreadable. So amber
   is kept for FILLS (buttons, blocks) where dark text sits on top of it, and a
   darkened amber (--amber-ink) is used wherever amber must appear AS TEXT.
   ========================================================================== */
body[data-page="lp"] {
  /* surfaces: white -> light grey ladder */
  --surface:                   #ffffff;
  --surface-dim:               #f4f5f7;
  --surface-bright:            #ffffff;
  --surface-container-lowest:  #f7f8fa;   /* alternating section bg */
  --surface-container-low:     #eef0f3;   /* panel section bg */
  --surface-container:         #ffffff;   /* cards */
  --surface-container-high:    #f2f4f6;   /* inputs */
  --surface-container-highest: #e4e7ec;   /* avatars */

  /* ink */
  --on-surface:         #14161a;   /* headings / body */
  --on-surface-variant: #5b6270;
  --secondary:          #5b6270;   /* muted paragraph text */

  /* amber: fill stays vivid, text tone darkens for legibility */
  --primary-container: #ffb800;    /* button + block FILLS (dark text on top) */
  --primary:           #b07800;    /* amber AS TEXT on light bg — 4.6:1 */
  --amber-ink:         #b07800;
  --primary-fixed-dim: #ffb800;
  --on-primary:        #1a1300;    /* text ON amber fills */

  /* lines */
  --outline:          #c3c8d0;
  --outline-variant:  #dfe3e8;

  padding-bottom: 0;

  background: var(--surface);
  color: var(--on-surface);
}
body[data-page="lp"] main { padding-bottom: 0; }

/* ---------- Ticker bar ---------- */
.lp-ticker {
  position: relative;
  z-index: 5;
  background: var(--primary-container);
  color: var(--on-primary);
  overflow: hidden;
  border-bottom: 3px solid var(--on-primary);
}
.lp-ticker__track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1.5;
  text-align: center;
}
.lp-ticker__dot {
  width: 6px; height: 6px;
  background: var(--on-primary);
  border-radius: 999px;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .lp-ticker__track { font-size: 9.5px; letter-spacing: .06em; gap: 7px; padding: 9px 12px; }
  .lp-ticker__dot { width: 4px; height: 4px; }
}

/* ---------- HERO: left rail + offset slab ---------- */
.lp-hero {
  position: relative;
  background: var(--surface);
  border-bottom: 1px solid var(--outline-variant);
  overflow: hidden;
}
.lp-hero::before {
  /* diagonal caution rail down the left edge — a signature the ref doesn't have */
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 10px;
  background: repeating-linear-gradient(45deg,
    var(--primary-container), var(--primary-container) 10px,
    var(--surface) 10px, var(--surface) 20px);
  z-index: 2;
}
.lp-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 20px 44px 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 980px) {
  .lp-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    padding: 72px 20px 72px 48px;
  }
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-bottom: 18px;
  background: rgba(255, 184, 0, .1);
  border: 1px solid rgba(255, 184, 0, .3);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lp-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--primary-container);
  box-shadow: 0 0 0 0 rgba(255,184,0,.7);
  animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,184,0,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255,184,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,184,0,0); }
}
.lp-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 6.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 16px;
}
.lp-hero h1 .kw-area {
  display: block;
  color: var(--primary);
}
.lp-hero__sub {
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.6;
  color: var(--secondary);
  margin-bottom: 24px;
  max-width: 620px;
}
.lp-hero__sub strong { color: var(--on-surface); }

/* checks as a 2-col ledger, not a bullet list */
.lp-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 26px;
  border-top: 1px solid var(--outline-variant);
}
@media (min-width: 640px) { .lp-checks { grid-template-columns: 1fr 1fr; } }
.lp-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px 12px 0;
  border-bottom: 1px solid var(--outline-variant);
  font-size: 14px;
  line-height: 1.45;
  color: var(--secondary);
}
.lp-checks li strong { color: var(--on-surface); }
.lp-checks svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary-container);
}

/* ---------- Call button (the one CTA) ---------- */
.lp-call {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 26px;
  background: var(--primary-container);
  color: var(--on-primary);
  border: 0;
  box-shadow: 0 6px 30px rgba(255, 184, 0, .3);
  transition: transform .1s, background-color .2s;
}
@media (min-width: 520px) { .lp-call { width: auto; min-width: 320px; } }
.lp-call:active { transform: scale(.98); }
.lp-call:hover { background: var(--primary); }
.lp-call .phone-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(21px, 4.4vw, 30px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}
.lp-call small {
  display: block;
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .85;
  text-align: center;
  line-height: 1.4;
}
.lp-call--ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary-container);
  box-shadow: none;
}
.lp-call--ghost:hover { background: var(--primary-container); color: var(--on-primary); }
.lp-call--white { background: var(--on-primary); color: var(--primary-container); }
.lp-call--white:hover { background: #000; color: #fff; }

/* hero image: offset slab with a caution corner */
.lp-hero__media { position: relative; }
.lp-hero__media::after {
  content: "";
  position: absolute;
  right: -10px; bottom: -10px;
  width: 88px; height: 88px;
  background: repeating-linear-gradient(45deg,
    var(--primary-container), var(--primary-container) 8px,
    var(--surface) 8px, var(--surface) 16px);
  z-index: 0;
}
.lp-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--outline-variant);
  filter: saturate(.9) contrast(1.05);
}
.lp-hero__media-m { display: block; margin-top: 24px; }
@media (min-width: 980px) { .lp-hero__media-m { display: none; } }
.lp-hero__media-d { display: none; }
@media (min-width: 980px) { .lp-hero__media-d { display: block; } }

/* ---------- Trust strip: mono ledger, not icon pills ---------- */
.lp-trust {
  background: var(--surface-container-lowest);
  border-bottom: 1px solid var(--outline-variant);
}
.lp-trust__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 760px) { .lp-trust__inner { grid-template-columns: repeat(5, 1fr); } }
.lp-trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  border-right: 1px solid var(--outline-variant);
  border-bottom: 1px solid var(--outline-variant);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--secondary);
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 760px) {
  .lp-trust__item { border-bottom: 0; font-size: 11px; }
  .lp-trust__item:last-child { border-right: 0; }
}
.lp-trust__item:nth-child(2n) { border-right: 0; }
@media (min-width: 760px) { .lp-trust__item:nth-child(2n) { border-right: 1px solid var(--outline-variant); } }
.lp-trust__item svg { width: 16px; height: 16px; color: var(--primary-container); flex-shrink: 0; }

/* ---------- Generic LP section ---------- */
.lp-sec { padding: 56px 0; }
@media (min-width: 1024px) { .lp-sec { padding: 80px 0; } }
.lp-sec__in {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.lp-sec--dark  { background: var(--surface-container-lowest); }
.lp-sec--panel { background: var(--surface-container-low); border-top: 1px solid var(--outline-variant); border-bottom: 1px solid var(--outline-variant); }

.lp-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
}
.lp-label::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--primary-container);
  flex-shrink: 0;
}
.lp-label--center { justify-content: center; }

.lp-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 4.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 12px;
}
.lp-title .amber { color: var(--primary); }
.lp-lede {
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.65;
  color: var(--secondary);
  max-width: 680px;
}
.lp-lede strong { color: var(--on-surface); }
.lp-head--center { text-align: center; }
.lp-head--center .lp-lede { margin-left: auto; margin-right: auto; }

/* ---------- QUOTE FORM: split slab ---------- */
.lp-quote { background: var(--surface-container-low); border-bottom: 1px solid var(--outline-variant); }
.lp-quote__in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 980px) {
  .lp-quote__in { grid-template-columns: 0.9fr 1.1fr; gap: 56px; padding: 64px 20px; }
}
.lp-form {
  background: var(--surface-container);
  border: 1px solid var(--outline-variant);
  border-top: 4px solid var(--primary-container);
  padding: 24px;
}
@media (min-width: 640px) { .lp-form { padding: 32px; } }
.lp-form__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 4px;
}
.lp-form__sub {
  font-size: 13px;
  color: var(--secondary);
  margin-bottom: 20px;
}
.lp-form label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--secondary);
}
.lp-form input,
.lp-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 16px;               /* 16px stops iOS zoom-on-focus */
  letter-spacing: 0;
  text-transform: none;
  background: var(--surface-container-high);
  color: var(--on-surface);
  border: 0;
  border-bottom: 2px solid var(--outline);
  transition: border-color .2s;
}
.lp-form textarea { resize: vertical; min-height: 92px; }
.lp-form input::placeholder,
.lp-form textarea::placeholder { color: rgba(213,196,171,.32); }
.lp-form input:focus,
.lp-form textarea:focus { outline: none; border-bottom-color: var(--primary-container); }
.lp-form__submit {
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  background: var(--primary-container);
  color: var(--on-primary);
  border: 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background-color .2s, transform .1s;
}
.lp-form__submit:hover { background: var(--primary); }
.lp-form__submit:active { transform: scale(.99); }
.lp-form__note {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--secondary);
  text-align: center;
}

/* ---------- HOW IT WORKS: numbered ledger rows ---------- */
.lp-steps { margin-top: 36px; border-top: 1px solid var(--outline-variant); }
.lp-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--outline-variant);
}
@media (min-width: 860px) {
  .lp-step { grid-template-columns: 92px 240px 1fr; gap: 28px; align-items: center; padding: 26px 0; }
}
.lp-step__n {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 32px;
  font-style: italic;
  line-height: 1;
  color: var(--primary-container);
  opacity: .55;
}
@media (min-width: 860px) { .lp-step__n { font-size: 48px; } }
.lp-step__h {
  grid-column: 2;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 6px;
}
@media (min-width: 860px) {
  .lp-step__h { grid-column: 2; margin-bottom: 0; font-size: 21px; }
}
.lp-step__p {
  grid-column: 2;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--secondary);
}
@media (min-width: 860px) { .lp-step__p { grid-column: 3; } }
.lp-step:hover .lp-step__n { opacity: 1; }

/* ---------- SERVICES: asymmetric bento ---------- */
.lp-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 36px;
}
@media (min-width: 720px)  { .lp-bento { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; } }
@media (min-width: 1024px) { .lp-bento { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; } }
.lp-card {
  position: relative;
  padding: 22px 20px;
  background: var(--surface-container);
  border: 1px solid var(--outline-variant);
  min-width: 0;
  transition: border-color .25s, background-color .25s;
}
@media (min-width: 640px) { .lp-card { padding: 28px 26px; } }
.lp-card:hover { border-color: rgba(255,184,0,.45); background: var(--surface-container-high); }
/* first card spans wide on desktop — breaks the uniform grid */
@media (min-width: 1024px) { .lp-card:first-child { grid-column: span 2; } }
.lp-card__n {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--outline);
}
.lp-card__ico {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: rgba(255,184,0,.1);
  border: 1px solid rgba(255,184,0,.3);
}
.lp-card__ico svg { width: 19px; height: 19px; color: var(--primary-container); }
.lp-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
  padding-right: 28px;
}
.lp-card p { font-size: 14.5px; line-height: 1.6; color: var(--secondary); }

/* ---------- WHY US: image + ledger ---------- */
.lp-why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 980px) { .lp-why { grid-template-columns: 0.85fr 1.15fr; gap: 64px; } }
.lp-why__media { position: relative; order: 2; }
@media (min-width: 980px) { .lp-why__media { order: 1; } }
.lp-why__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--outline-variant);
}
.lp-why__badge {
  position: absolute;
  right: -8px; bottom: -18px;
  padding: 14px 20px;
  background: var(--primary-container);
  color: var(--on-primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0,0,0,.45);
}
.lp-why__badge small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  font-style: normal;
  opacity: .85;
}
.lp-why__body { order: 1; }
@media (min-width: 980px) { .lp-why__body { order: 2; } }
.lp-why__intro { font-size: 15px; line-height: 1.7; color: var(--secondary); margin-bottom: 24px; }
.lp-why__intro strong { color: var(--on-surface); }
.lp-whylist { margin-bottom: 28px; border-top: 1px solid var(--outline-variant); }
.lp-whylist li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--outline-variant);
}
.lp-whylist__dot {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,184,0,.1);
  border: 1px solid rgba(255,184,0,.3);
}
.lp-whylist__dot svg { width: 15px; height: 15px; color: var(--primary-container); }
.lp-whylist h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.lp-whylist p { font-size: 14px; line-height: 1.6; color: var(--secondary); }

/* ---------- REVIEWS: horizontal rail ---------- */
.lp-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 14px;
  margin-top: 36px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media (min-width: 640px)  { .lp-rail { grid-auto-columns: 48%; } }
@media (min-width: 1024px) {
  .lp-rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0,1fr));
    overflow: visible;
    gap: 16px;
  }
}
.lp-rev {
  scroll-snap-align: start;
  background: var(--surface-container);
  border: 1px solid var(--outline-variant);
  border-left: 3px solid var(--primary-container);
  padding: 22px 20px;
  min-width: 0;
}
.lp-rev__top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.lp-rev__av {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-container-highest);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  border-radius: 999px;
}
.lp-rev__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}
.lp-rev__stars { color: #f0a500; font-size: 12px; letter-spacing: 2px; }
.lp-rev p { font-size: 14px; line-height: 1.65; color: var(--secondary); }

/* ---------- FAQ: two-column ledger ---------- */
.lp-faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 40px;
  margin-top: 36px;
  border-top: 1px solid var(--outline-variant);
}
@media (min-width: 900px) {
  .lp-faq {
    grid-template-columns: 1fr 1fr;
    border-top: 0;
  }
  .lp-faq > .lp-fq { border-top: 1px solid var(--outline-variant); }
}
.lp-fq { border-bottom: 1px solid var(--outline-variant); }
.lp-fq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 18px 0;
  min-height: 56px;
  cursor: pointer;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--on-surface);
  -webkit-tap-highlight-color: transparent;
}
.lp-fq__q:hover { color: var(--primary); }
.lp-fq__q svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--primary-container);
  transition: transform .3s;
}
.lp-fq.open .lp-fq__q svg { transform: rotate(45deg); }
.lp-fq__a {
  display: none;
  padding: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--secondary);
  overflow-wrap: anywhere;
}
.lp-fq.open .lp-fq__a { display: block; }
.lp-fq__a strong { color: var(--on-surface); }

/* ---------- CTA banner ---------- */
.lp-cta {
  position: relative;
  padding: 56px 20px;
  background: var(--primary-container);
  color: var(--on-primary);
  text-align: center;
  overflow: hidden;
}
@media (min-width: 1024px) { .lp-cta { padding: 76px 20px; } }
.lp-cta::before,
.lp-cta::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 12px;
  background: repeating-linear-gradient(45deg,
    var(--on-primary), var(--on-primary) 9px,
    transparent 9px, transparent 18px);
  opacity: .5;
}
.lp-cta::before { left: 0; }
.lp-cta::after  { right: 0; }
.lp-cta__in { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.lp-cta h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(25px, 5vw, 44px);
  line-height: 1.06;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}
.lp-cta p { font-size: 15px; line-height: 1.6; margin-bottom: 26px; opacity: .9; }
.lp-cta p strong { opacity: 1; }
.lp-cta .lp-call { margin: 0 auto; }

/* ---------- Footer strip (no site footer on LPs) ---------- */
.lp-foot {
  background: var(--surface-container-lowest);
  border-top: 1px solid var(--outline-variant);
  padding: 30px 20px;
  text-align: center;
  /* clearance for the sticky call bar */
  padding-bottom: calc(30px + 76px + env(safe-area-inset-bottom, 0px));
}
.lp-foot__brand {
  display: inline-block;      /* logo only — no text to align beside */
  margin-bottom: 14px;
}
/* LP footer logo (img, not svg) — the logo IS the brand, no text beside it */
.lp-foot__logo {
  width: auto;
  height: 78px;
  max-width: 380px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (min-width: 640px) { .lp-foot__logo { height: 90px; max-width: 420px; } }
.lp-foot p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--secondary);
  line-height: 1.7;
}
.lp-foot a { color: var(--primary); }

/* ---------- Sticky call bar (the ONLY fixed element) ---------- */
.lp-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 11px 16px;
  padding-bottom: calc(11px + env(safe-area-inset-bottom, 0px));
  background: var(--primary-container);
  color: var(--on-primary);
  border-top: 3px solid var(--on-primary);
  box-shadow: 0 -8px 30px rgba(0,0,0,.5);
  transform: translateY(100%);
  transition: transform .3s ease;
  text-align: center;
}
.lp-sticky.show { transform: translateY(0); }
.lp-sticky .phone-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1.1;
}
.lp-sticky small {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .lp-sticky { gap: 2px; flex-direction: column; padding: 9px 12px; padding-bottom: calc(9px + env(safe-area-inset-bottom, 0px)); }
  .lp-sticky .phone-number { font-size: 20px; }
  .lp-sticky small { font-size: 8.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-eyebrow::before { animation: none; }
  .lp-sticky { transition: none; }
}

/* ==========================================================================
   LIGHT THEME — targeted overrides
   Things the token swap alone can't fix (elements that assumed a dark canvas).
   ========================================================================== */

/* Amber tint panels read too faint on white — lift them slightly */
body[data-page="lp"] .lp-eyebrow,
body[data-page="lp"] .lp-card__ico,
body[data-page="lp"] .lp-whylist__dot {
  background: rgba(255, 184, 0, .16);
  border-color: rgba(255, 184, 0, .55);
}
body[data-page="lp"] .lp-eyebrow { color: #8a5e00; }

/* Icons inside the tint boxes: fill amber is fine (they sit on a tint, not text) */
body[data-page="lp"] .lp-card__ico svg,
body[data-page="lp"] .lp-whylist__dot svg,
body[data-page="lp"] .lp-checks svg,
body[data-page="lp"] .lp-trust__item svg { color: #c98a00; }

/* Cards: white on grey needs a shadow, not just a border */
body[data-page="lp"] .lp-card,
body[data-page="lp"] .lp-rev,
body[data-page="lp"] .lp-form {
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 4px 16px rgba(16, 24, 40, .04);
}
body[data-page="lp"] .lp-card:hover {
  box-shadow: 0 2px 4px rgba(16, 24, 40, .06), 0 10px 28px rgba(16, 24, 40, .09);
  border-color: rgba(255, 184, 0, .8);
  background: #fff;
}

/* Hero: white canvas, so the caution rail needs contrast against it */
body[data-page="lp"] .lp-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
body[data-page="lp"] .lp-hero__media::after {
  background: repeating-linear-gradient(45deg,
    #ffb800, #ffb800 8px, #ffffff 8px, #ffffff 16px);
}

/* Ticker: amber bar on white — dark border reads better than none */
body[data-page="lp"] .lp-ticker { border-bottom-color: rgba(0,0,0,.18); }

/* Step numbers: amber at low opacity vanishes on white */
body[data-page="lp"] .lp-step__n { color: #ffb800; opacity: .85; }
body[data-page="lp"] .lp-step:hover .lp-step__n { color: #e0a000; opacity: 1; }

/* Card index numerals */
body[data-page="lp"] .lp-card__n { color: #a9b0ba; }

/* Reviews: keep the amber left rule vivid */
body[data-page="lp"] .lp-rev { border-left-color: #ffb800; }

/* FAQ chevrons / plus icons */
body[data-page="lp"] .lp-fq__q svg { color: #c98a00; }
body[data-page="lp"] .lp-fq__q:hover { color: #8a5e00; }

/* CTA band stays amber (dark text on it) — its edge stripes need dark ink */
body[data-page="lp"] .lp-cta::before,
body[data-page="lp"] .lp-cta::after { opacity: .35; }

/* Sticky bar keeps the amber fill; give it a top rule that reads on light */
body[data-page="lp"] .lp-sticky { border-top-color: rgba(0,0,0,.25); }

/* Footer strip */
body[data-page="lp"] .lp-foot { background: #14161a; border-top: 0; }
body[data-page="lp"] .lp-foot__brand { color: #ffb800; }
body[data-page="lp"] .lp-foot p { color: rgba(255,255,255,.6); }
body[data-page="lp"] .lp-foot a { color: #ffb800; }

/* Ghost call button: amber outline + amber ink on white */
body[data-page="lp"] .lp-call--ghost {
  color: #8a5e00;
  border-color: #ffb800;
}
body[data-page="lp"] .lp-call--ghost:hover { color: var(--on-primary); background: #ffb800; }

/* White CTA button sits ON the amber band — invert to dark */
body[data-page="lp"] .lp-call--white { background: #14161a; color: #ffb800; }
body[data-page="lp"] .lp-call--white:hover { background: #000; color: #fff; }

/* Form inputs on light */
body[data-page="lp"] .lp-form input,
body[data-page="lp"] .lp-form textarea { background: #fff; border-bottom-color: #c3c8d0; }
body[data-page="lp"] .lp-form input::placeholder,
body[data-page="lp"] .lp-form textarea::placeholder { color: #9aa1ab; }

/* Trust strip on the light ladder */
body[data-page="lp"] .lp-trust { background: #14161a; border-bottom: 0; }
body[data-page="lp"] .lp-trust__item { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.12); }
body[data-page="lp"] .lp-trust__item svg { color: #ffb800; }

/* ---------- reCAPTCHA badge: clear the sticky call bar ---------- */
body[data-page="lp"] .grecaptcha-badge {
  z-index: 50 !important;      /* .lp-sticky is 90 — badge must sit under it */
  bottom: 92px !important;     /* lift above the sticky call bar             */
}
@media (min-width: 601px) {
  body[data-page="lp"] .grecaptcha-badge { bottom: 80px !important; }
}
