/* ============================================================
   TRUST BADGE ROW
   ============================================================ */
.lp-badges {
  background: var(--lp-paper);
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  margin-top: 70px;
}
.lp-badges-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding: 24px 0;
  gap: 32px;
  align-items: center;
}
.lp-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.lp-badge img {
  width: 58px;
  height: auto;
  filter: grayscale(.2);
  opacity: .92;
}
.lp-badge-text { display: flex; flex-direction: column; }
.lp-badge-big {
  font-family: var(--lp-serif);
  font-size: 14.5px;
  color: var(--lp-ink);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
}
.lp-badge-small {
  font-family: var(--lp-sans);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lp-mute);
  margin-top: 3px;
}

/* ============================================================
   SECTION FRAME
   ============================================================ */
.lp-section { padding: 50px 0; position: relative; }
.lp-section-warm { background: var(--lp-paper-warm); }
.lp-section-ink { background: var(--lp-charcoal); color: var(--lp-paper); }
.lp-section-primary { background: var(--lp-secondary); color: var(--lp-paper); position: relative; overflow: hidden; }
.lp-section-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: .4;
}
.lp-section h2 {
  font-family: var(--lp-serif);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.005em;
  color: inherit;
  /* Explicit 0, not just unset — browsers apply a default h2 top margin
     (~0.83em) that stacked on top of .lp-section's own 50px padding,
     making the top of each section look taller than the bottom even
     though the padding itself was even. */
  margin-top: 0;
  margin-bottom: 28px;
  max-width: 820px;
}
.lp-section h2 em { font-style: italic; color: var(--lp-secondary); }
.lp-section-ink h2 em,
.lp-section-primary h2 em { color: var(--lp-accent); }

/* ============================================================
   PROBLEM
   ============================================================ */
.lp-problem-grid {
  display: grid;
  /* minmax(0, Nfr), not bare Nfr: without the explicit 0 floor, a grid
     track's minimum size defaults to its content's min-content width —
     so a child wider than the column (e.g. a full-width "bleed" CTA
     button below) inflates this column and crushes the other one. */
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.lp-problem-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--lp-ink-soft);
  margin-bottom: 22px;
  max-width: 580px;
}
.lp-problem-symptoms {
  margin-top: 38px;
  padding: 32px 36px;
  background: var(--lp-paper);
  border-left: 3px solid var(--lp-primary);
}
.lp-problem-symptoms .lp-sym-label {
  font-family: var(--lp-sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lp-secondary);
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}
.lp-problem-symptoms ul { list-style: none; }
.lp-problem-symptoms li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--lp-ink-soft);
  border-bottom: 1px solid var(--lp-line);
}
.lp-problem-symptoms li:last-child { border: 0; }
.lp-problem-symptoms li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 1px;
  background: var(--lp-primary);
}
.lp-problem-close {
  margin-top: 40px;
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--lp-ink);
  max-width: 600px;
}
.lp-problem-close strong {
  font-weight: 700;
  font-style: normal;
  color: var(--lp-secondary);
}
.lp-problem-visual {
  position: relative;
  margin-top: 40px;
}
.lp-problem-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.7) contrast(1.02) brightness(.95);
}
.lp-problem-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(29,32,49,.35) 100%);
  pointer-events: none;
}
.lp-problem-floater {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--lp-paper);
  padding: 20px 24px;
  max-width: 260px;
  border-left: 3px solid var(--lp-primary);
}
.lp-problem-floater .lp-floater-q {
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--lp-ink);
}


/* ============================================================
   SOLUTION
   ============================================================ */
.lp-solution-grid {
  display: grid;
  /* minmax(0, Nfr) — see the matching comment on .lp-problem-grid above. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  /* column-gap only, NOT the `gap` shorthand: the Solution breakout below
     places .lp-solution-copy's children as separate explicit grid ROWS
     (h2, hr, body, etc. each their own row), so a row-gap here would
     inject 80px of dead space between every one of them — they should
     keep touching with only their own element margins, same as when
     they were normal in-flow siblings inside one div. */
  column-gap: 80px;
  row-gap: 0;
  align-items: start;
}
.lp-solution-visual {
  position: relative;
}
.lp-solution-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.8) contrast(1.04);
}
.lp-solution-float {
  position: absolute;
  left: -32px;
  bottom: -32px;
  background: var(--lp-paper);
  padding: 24px 28px 26px;
  max-width: 320px;
  box-shadow: 0 24px 60px -30px rgba(29,32,49,.28);
  border-left: 3px solid var(--lp-primary);
}
.lp-solution-float .lp-float-label {
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--lp-secondary);
  font-weight: 700;
  margin-bottom: 10px;
}
.lp-solution-float .lp-float-line {
  font-family: var(--lp-serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--lp-ink);
  margin: 0;
}
.lp-solution-float .lp-float-line em {
  font-style: italic;
  color: var(--lp-secondary);
  font-weight: 700;
}
.lp-solution-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--lp-ink-soft);
  margin-bottom: 22px;
  max-width: 560px;
}
.lp-solution-body ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  max-width: 560px;
}
.lp-solution-body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--lp-ink-soft);
}
.lp-solution-body li:last-child { margin-bottom: 0; }
.lp-solution-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1px;
  background: var(--lp-primary);
}
.lp-solution-analogy {
  margin: 36px 0;
  padding: 26px 30px;
  background: var(--lp-paper);
  border: 1px solid var(--lp-line);
  position: relative;
}
.lp-solution-analogy::before {
  content: "THE SHORT VERSION";
  position: absolute;
  top: -9px;
  left: 30px;
  background: var(--lp-paper);
  padding: 0 10px;
  font-family: var(--lp-sans);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lp-primary);
  font-weight: 700;
  line-height: 1;
}
.lp-solution-analogy p {
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--lp-ink);
  margin: 0 !important;
}
.lp-solution-analogy p em {
  font-style: normal;
  font-weight: 700;
  color: var(--lp-secondary);
}
.lp-solution-benefits {
  list-style: none;
  margin: 36px 0 40px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
}
.lp-solution-benefits li {
  flex: 0 1 calc(33.333% - 19px);
  min-width: 240px;
  padding: 14px 14px 14px 22px;
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--lp-ink);
  border-left: 2px solid var(--lp-primary);
  background: var(--lp-paper);
}
.lp-solution-benefits li strong {
  display: block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--lp-secondary);
  margin-bottom: 2px;
}

/* ------------------------------------------------------------
   Problem-close CTA: kept as safe within-column centering. The
   Problem section's image and closing text often end at similar
   heights, so a full-width version of this button risks crowding the
   image's bottom-right corner. Not requested to change — left alone.
   ------------------------------------------------------------ */
@media (min-width: 961px) {
  .lp-problem-close a.lp-btn-primary {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 16px auto 0;
    text-align: center;
  }

  /* ------------------------------------------------------------
     Solution benefits list + CTA: TRUE full-width centering across
     the whole section (text + image), via CSS Grid breakout instead
     of the old width+transform "bleed" hack.

     Why not width+transform: that technique only shifts the element
     HORIZONTALLY — it has no concept of the image column's actual
     rendered height, so when the image ran taller than the text
     stack, the "bled" benefits list/button visually overlapped the
     image (confirmed live, both LPs, 2026-08-04).

     This technique instead makes the benefits list and CTA button
     REAL grid items of .lp-solution-grid (not nested inside the text
     column), placed in their own row(s) AFTER every other row in the
     grid. CSS Grid rows never overlap by definition, so this is
     overlap-proof regardless of image height — no per-page magic
     numbers needed.

     How: .lp-solution-copy becomes `display:contents`, which removes
     its own box but keeps its children in the DOM, promoting each of
     them to a direct grid item of .lp-solution-grid. Each is then
     explicitly placed in column 2 (the text column) at its own row;
     the benefits list and CTA get column 1/-1 (full width) in the
     rows below. The image spans rows 1 through (first full-width
     row), so its height can never intrude into the full-width rows.

     A page that swaps sides (image on the right instead of the
     default left) only needs to swap which grid-column number the
     text-column children vs. the image get — see the page-scoped
     override pattern in project_commonsensecounselingllc_griefloss_lp.md.
     The full-width rows (grid-column: 1/-1) don't change either way.
     ------------------------------------------------------------ */
  .lp-solution-copy { display: contents; }
  .lp-solution-copy > .lp-eyebrow                 { grid-column: 2; grid-row: 1; }
  .lp-solution-copy > h2                          { grid-column: 2; grid-row: 2; }
  .lp-solution-copy > .lp-rule                    { grid-column: 2; grid-row: 3; }
  .lp-solution-copy > .lp-solution-body           { grid-column: 2; grid-row: 4; }
  .lp-solution-copy > .lp-solution-analogy        { grid-column: 2; grid-row: 5; }
  .lp-solution-copy > .lp-solution-benefits-intro { grid-column: 2; grid-row: 6; }
  .lp-solution-visual { grid-column: 1; grid-row: 1 / 7; }
  .lp-solution-benefits {
    grid-column: 1 / -1;
    grid-row: 7;
    max-width: 100%;
    margin: 36px 0 40px;
  }
  .lp-solution-copy > .lp-btn-primary {
    grid-column: 1 / -1;
    grid-row: 8;
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

/* ============================================================
   PROCESS
   ============================================================ */
.lp-process-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.lp-process-intro .lp-eyebrow {
  justify-content: center;
  display: inline-flex;
  margin-bottom: 24px;
}
.lp-process-intro h2 { margin: 0 auto 18px; }
.lp-process-intro p {
  font-size: 17px;
  color: var(--lp-ink-soft);
  line-height: 1.65;
}
.lp-process-steps {
  display: grid;
  /* 3 steps is the fleet-wide standard (see tpa-dev-site skill), but the
     ACF repeater allows up to 4 — page-landing.php sets --lp-proc-cols to
     the real step count so a 4-step LP gets 4 even columns in one row
     instead of a hardcoded 3-column grid orphaning the 4th step onto its
     own row. */
  grid-template-columns: repeat(var(--lp-proc-cols, 3), 1fr);
  max-width: 960px;
  margin: 0 auto;
  gap: 0;
  position: relative;
  border-top: 1px solid var(--lp-line);
}
.lp-process-step {
  padding: 48px 32px 42px;
  border-right: 1px solid var(--lp-line);
  position: relative;
  background: var(--lp-paper);
  transition: background .4s var(--lp-ease);
}
.lp-process-step:last-child { border-right: 0; }
.lp-process-step:hover { background: #fbf9f3; }
.lp-process-num {
  font-family: var(--lp-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--lp-primary);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}
.lp-process-num sup {
  font-size: 14px;
  color: var(--lp-mute);
  margin-left: 2px;
  font-weight: 400;
  vertical-align: top;
}
.lp-process-step h3 {
  font-family: var(--lp-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: var(--lp-ink);
  margin-bottom: 14px;
}
.lp-process-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-ink-soft);
}
.lp-process-cta { margin-top: 40px; text-align: center; }

/* ============================================================
   ABOUT (pillars left, bio right)
   ============================================================ */
.lp-about { background: var(--lp-paper-warm); }
.lp-about-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 80px;
  align-items: start;
}
.lp-about-grid--pillars-only {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.lp-pillars-wrap {
  background: var(--lp-paper);
  padding: 40px 38px;
  border-left: 3px solid var(--lp-primary);
}
.lp-pillars-label {
  font-family: var(--lp-sans);
  font-size: 24px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lp-secondary);
  font-weight: 700;
  margin-bottom: 0px;
}
.lp-pillar {
  padding: 10px 0 22px;
  border-bottom: 1px solid var(--lp-line);
}
.lp-pillar:last-child { border-bottom: 0; padding-bottom: 0; }
.lp-pillar:first-child { padding-top: 0; }
.lp-pillar h5 {
  font-family: var(--lp-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--lp-ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.lp-pillar p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--lp-ink-soft);
}
.lp-about-right .lp-eyebrow { margin-bottom: 24px; }
.lp-about-right h2 { margin-bottom: 36px; }
.lp-about-right p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--lp-ink-soft);
  margin-bottom: 22px;
  max-width: 620px;
}
/* Therapist portrait in about section */
.lp-about-headshot {
  position: relative;
  width: fit-content;
  margin: 20px 0 36px;
}
/* Specificity note: the global `body.landing-page img { height: auto }`
   safety net (landing-critical.css, inlined above-fold) is (0,1,2) — one
   point higher than a plain `.lp-about-headshot img` rule (0,1,1), so it
   silently wins and the browser renders the headshot at its natural
   aspect ratio instead of the intended 260x260 crop. Any non-square
   source image (most real headshots) then overflows the fixed-height box
   and visually bleeds into the bio copy below. Scoping to
   `body.landing-page .lp-about-headshot img` (0,2,2) beats it cleanly. */
body.landing-page .lp-about-headshot picture,
body.landing-page .lp-about-headshot img {
  display: block;
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.lp-about-headshot::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--lp-accent);
  border-radius: 6px;
  transform: translate(10px, 10px);
  z-index: 0;
  pointer-events: none;
}

.lp-about-signature {
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--lp-secondary);
  margin-top: 28px;
}
.lp-credentials {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--lp-line);
}
.lp-credentials h4 {
  font-family: var(--lp-sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lp-secondary);
  font-weight: 700;
  margin-bottom: 22px;
}
.lp-credentials ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.lp-credentials li {
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--lp-ink-soft);
}
.lp-credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--lp-primary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.lp-testimonials {
  background: var(--lp-charcoal);
  color: var(--lp-paper);
  position: relative;
}
.lp-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .05 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: .5;
}
.lp-testimonials .lp-eyebrow { color: var(--lp-accent); }
.lp-testimonials .lp-eyebrow::before { background: var(--lp-accent); }
.lp-testimonials h2 { color: var(--lp-paper); }
.lp-testimonials h2 em { color: var(--lp-accent); }
.lp-testimonials-intro {
  max-width: 720px;
  margin-bottom: 56px;
  position: relative;
}
.lp-testimonials-intro .lp-eyebrow { margin-bottom: 20px; }
.lp-testimonials-intro p {
  font-size: 16px;
  color: rgba(248,246,241,.75);
  line-height: 1.65;
  margin-top: 12px;
}
.lp-testimonial-list {
  position: relative;
  display: grid;
  gap: 36px;
}
.lp-testimonial {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(248,246,241,.12);
  align-items: start;
}
.lp-testimonial:last-child { border-bottom: 0; padding-bottom: 0; }
.lp-testimonial-meta { display: flex; flex-direction: column; gap: 8px; }
.lp-testimonial-name {
  font-family: var(--lp-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--lp-accent);
  line-height: 1;
  letter-spacing: .01em;
}
.lp-testimonial-detail {
  font-family: var(--lp-sans);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248,246,241,.55);
}
/* Short-quote style (no name — e.g. Sydney) */
.lp-testimonial-quote {
  display: grid;
  grid-template-columns: 1fr;
  padding: 28px 32px;
  border-left: 3px solid var(--lp-accent);
  margin-bottom: 0;
}
.lp-testimonial-quote em {
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(248,246,241,.92);
}
.lp-testimonial-quote .lp-attribution {
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(248,246,241,.5);
  margin-top: 14px;
}
.lp-testimonial-body {
  font-family: var(--lp-serif);
  font-size: 22px;
  line-height: 1.55;
  color: rgba(248,246,241,.92);
  font-weight: 400;
  max-width: 720px;
}

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.3fr;
  gap: 96px;
}
.lp-faq-head .lp-eyebrow { margin-bottom: 24px; }
.lp-faq-head h2 { margin-bottom: 24px; }
.lp-faq-head p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--lp-ink-soft);
  max-width: 380px;
  margin-bottom: 36px;
}
.lp-faq-list { display: flex; flex-direction: column; }
details.lp-faq-item {
  border-top: 1px solid var(--lp-line);
  padding: 26px 0;
}
details.lp-faq-item:last-child { border-bottom: 1px solid var(--lp-line); }
summary.lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--lp-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  color: var(--lp-ink);
  list-style: none;
  padding: 2px 0;
  transition: color .3s var(--lp-ease);
}
summary.lp-faq-q::-webkit-details-marker { display: none; }
summary.lp-faq-q::after {
  content: "+";
  font-family: var(--lp-serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--lp-primary);
  transition: transform .4s var(--lp-ease);
  flex-shrink: 0;
  line-height: 1;
}
details[open] summary.lp-faq-q::after { transform: rotate(45deg); }
details[open] summary.lp-faq-q { color: var(--lp-secondary); }
.lp-faq-a {
  padding: 18px 0 4px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-ink-soft);
  max-width: 720px;
}

/* ============================================================
   WHAT'S NEXT
   ============================================================ */
.lp-whatnext {
  background: var(--lp-secondary);
  color: var(--lp-paper);
  position: relative;
  overflow: hidden;
}
.lp-whatnext::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: .4;
}
.lp-whatnext .lp-container { text-align: center; }
.lp-whatnext .lp-eyebrow { color: var(--lp-accent); justify-content: center; }
.lp-whatnext .lp-eyebrow::before { background: var(--lp-accent); }
.lp-whatnext h2 { color: var(--lp-paper); max-width: 720px; margin-left: auto; margin-right: auto; }
.lp-whatnext h2 em { color: var(--lp-accent); }
.lp-whatnext-lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(248,246,241,.8);
  max-width: 640px;
  margin: 24px auto 44px;
}
.lp-whatnext-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
  position: relative;
}
.lp-whatnext-steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: rgba(248,246,241,.2);
}
.lp-whatnext-step {
  padding: 0 12px;
  text-align: center;
  position: relative;
}
.lp-whatnext-num {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lp-accent);
  color: var(--lp-secondary);
  font-family: var(--lp-serif);
  font-weight: 700;
  font-style: normal;
  font-size: 19px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--lp-secondary);
}
.lp-whatnext-step h4 {
  font-family: var(--lp-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--lp-paper);
  margin-bottom: 12px;
  line-height: 1.25;
}
.lp-whatnext-step p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(248,246,241,.8);
  max-width: 26ch;
  margin: 0 auto;
}
.lp-whatnext-step a { color: var(--lp-accent); }

/* ============================================================
   SECURE STRIP
   ============================================================ */
.lp-secure-strip {
  background: var(--lp-paper-warm);
  padding: 26px 0;
  border-bottom: 1px solid var(--lp-line);
}
.lp-secure-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}
.lp-secure-lockup { display: flex; align-items: center; gap: 14px; }
.lp-secure-lockup img { width: 40px; height: auto; opacity: .85; }
.lp-secure-lockup .lp-secure-text strong {
  display: block;
  font-family: var(--lp-serif);
  font-size: 15px;
  color: var(--lp-ink);
  font-weight: 700;
}
.lp-secure-lockup .lp-secure-text span {
  font-family: var(--lp-sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lp-mute);
}
.lp-secure-divide { width: 1px; height: 32px; background: var(--lp-line); }

/* ============================================================
   FORM SECTION
   ============================================================ */
.lp-form-section { padding: 50px 0; }
.lp-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: start;
}
.lp-form-copy .lp-eyebrow { margin-bottom: 24px; }
.lp-form-copy h2 { max-width: 560px; margin-bottom: 28px; }
.lp-form-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lp-ink-soft);
  margin-bottom: 24px;
  max-width: 560px;
}
.lp-form-detail {
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--lp-secondary);
  line-height: 1.55;
  padding: 18px 22px;
  background: var(--lp-paper-warm);
  border-left: 3px solid var(--lp-primary);
  max-width: 520px;
  margin-top: 24px;
}
/* Scarcity chip */
.lp-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(78,117,96,.08);
  color: var(--lp-secondary);
  font-family: var(--lp-sans);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.lp-scarcity .lp-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-primary);
  animation: lp-pulse 2s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.85); }
}
/* Form card */
.lp-form-card {
  background: var(--lp-paper-warm);
  padding: 48px 44px;
  position: relative;
}
.lp-form-card h3 {
  font-family: var(--lp-serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--lp-ink);
  margin-bottom: 8px;
}
.lp-form-sub {
  font-size: 14.5px;
  color: var(--lp-ink-soft);
  margin-bottom: 28px;
}
/* WPForms overrides to match lp-form-card design */
.lp-form-card .wpforms-field { margin-bottom: 20px; }
.lp-form-card .wpforms-field-label,
.lp-form-card .wpforms-field label {
  display: block !important;
  font-family: var(--lp-sans) !important;
  font-size: 11px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--lp-secondary) !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}
.lp-form-card .wpforms-field input[type="text"],
.lp-form-card .wpforms-field input[type="email"],
.lp-form-card .wpforms-field input[type="tel"],
.lp-form-card .wpforms-field select,
.lp-form-card .wpforms-field textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1px solid var(--lp-line) !important;
  background: var(--lp-paper) !important;
  font-family: var(--lp-sans) !important;
  font-size: 15px !important;
  color: var(--lp-ink) !important;
  border-radius: var(--lp-radius) !important;
  transition: border-color .3s var(--lp-ease), box-shadow .3s var(--lp-ease) !important;
  resize: vertical;
  box-shadow: none !important;
}
.lp-form-card .wpforms-field textarea { min-height: 120px !important; }
.lp-form-card .wpforms-field input:focus,
.lp-form-card .wpforms-field select:focus,
.lp-form-card .wpforms-field textarea:focus {
  outline: 0 !important;
  border-color: var(--lp-primary) !important;
  box-shadow: 0 0 0 3px rgba(78,117,96,.15) !important;
}
.lp-form-card .wpforms-submit-container { margin-top: 8px; }
.lp-form-card .wpforms-submit,
.lp-form-card button[type="submit"] {
  width: 100% !important;
  justify-content: center !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 18px 30px !important;
  font-family: var(--lp-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  border-radius: var(--lp-radius) !important;
  border: 0 !important;
  cursor: pointer !important;
  background: var(--lp-charcoal) !important;
  color: var(--lp-paper) !important;
  transition: all .35s var(--lp-ease) !important;
}
.lp-form-card .wpforms-submit:hover,
.lp-form-card button[type="submit"]:hover {
  background: var(--lp-secondary) !important;
  transform: translateY(-1px) !important;
}
.lp-form-card .wpforms-submit::after,
.lp-form-card button[type="submit"]::after {
  content: "→" !important;
  font-family: var(--lp-serif) !important;
  font-size: 16px !important;
}
.lp-form-disclaimer {
  font-size: 12px;
  color: var(--lp-mute);
  margin-top: 18px;
  line-height: 1.5;
  text-align: center;
}
/* Trust items in form section */
.lp-form-trust { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.lp-form-trust-item { display: flex; align-items: flex-start; gap: 18px; }
.lp-form-trust-icon { width: 44px; height: auto; flex-shrink: 0; opacity: .75; }
.lp-form-trust-text h4 {
  font-family: var(--lp-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--lp-ink);
  margin-bottom: 4px;
}
.lp-form-trust-text p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--lp-mute);
  margin-bottom: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  background: var(--lp-charcoal);
  color: rgba(248,246,241,.7);
  padding: 40px 0 24px;
}
.lp-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(248,246,241,.1);
}
.lp-footer-logo { display: flex; align-items: center; gap: 14px; }
.lp-footer-logo img { width: 38px; height: auto; filter: brightness(2.4) contrast(.85); }
.lp-footer-logo .lp-footer-name {
  font-family: var(--lp-serif);
  font-size: 17px;
  color: var(--lp-paper);
  font-weight: 700;
}
.lp-footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.lp-footer-contact a {
  color: rgba(248,246,241,.85);
  transition: color .2s var(--lp-ease);
}
.lp-footer-contact a:hover { color: var(--lp-accent); }
.lp-footer-pt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid rgba(248,246,241,.18);
  border-radius: 3px;
  font-family: var(--lp-sans);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(248,246,241,.65);
  font-weight: 700;
}
.lp-footer-pt img { width: 18px; height: auto; filter: brightness(2) contrast(.8); }
.lp-footer-compliance {
  padding: 14px 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(248,246,241,.55);
  border-bottom: 1px solid rgba(248,246,241,.08);
}
.lp-footer-base {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(248,246,241,.42);
  flex-wrap: wrap;
  gap: 14px;
}
.lp-footer-base .lp-footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.lp-footer-base .lp-footer-legal a:hover { color: rgba(248,246,241,.7); }

/* ============================================================
   RESPONSIVE — below-fold sections
   Above-fold responsive rules (header + hero) live in landing-critical.css.
   ============================================================ */
@media (max-width: 960px) {
  .lp-badges-row { grid-template-columns: repeat(2,1fr); gap: 24px; padding: 26px 0; }
  .lp-section { padding: 50px 0; }
  /* Stacked single-column mobile layout: the gap above a Problem/Solution
     CTA button was much smaller than the gap below it before the image.
     Problem's button is wrapped in a <p> (lp_problem_close is free-text
     content); .lp-btn is display:inline-flex, and margin-top on an
     inline-flex element nested in a <p> doesn't behave like a plain block
     margin (collapsing rules differ), so it never lined up cleanly with
     .lp-problem-visual's plain-block 24px margin-top. Fix: zero the
     button's own margin and control the gap via its wrapping <p> instead
     (a plain block element, so it collapses/measures the same predictable
     way the image's margin-top does). Solution's button is a direct
     template-rendered child of .lp-solution-copy (no <p> wrapper), so it
     doesn't have this quirk — margin-top on it directly is fine there. */
  .lp-problem-close a.lp-btn-primary { margin-top: 0; }
  .lp-problem-close p:last-child { margin-top: 24px; margin-bottom: 0; }
  .lp-solution-copy > a.lp-btn-primary { margin-top: 24px; }
  .lp-problem-visual,
  .lp-solution-visual { margin-top: 24px; }
  .lp-problem-grid,
  .lp-solution-grid,
  .lp-about-grid,
  .lp-faq-grid,
  .lp-form-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-process-steps { grid-template-columns: 1fr 1fr; max-width: none; margin: 0; }
  .lp-process-step { border-right: 0; border-bottom: 1px solid var(--lp-line); }
  .lp-process-step:nth-child(odd) { border-right: 1px solid var(--lp-line); }
  .lp-solution-benefits { grid-template-columns: 1fr; }
  .lp-whatnext-steps { grid-template-columns: 1fr; gap: 28px; }
  .lp-whatnext-steps::before { display: none; }
  .lp-testimonial { grid-template-columns: 1fr; gap: 18px; }
  .lp-testimonial-body { font-size: 18px; }
  .lp-footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
  .lp-footer-base { flex-direction: column; text-align: left; align-items: flex-start; }
  .lp-solution-float { left: 0; bottom: -20px; }
  .lp-problem-floater { right: 0; bottom: -40px; max-width: 100%; }
}
@media (max-width: 540px) {
  .lp-process-steps { grid-template-columns: 1fr; }
  .lp-process-step { border-right: 0 !important; }
  .lp-badges-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .lp-badge img { width: 46px; }
  .lp-badge-big { font-size: 13px; }
  .lp-badge-small { font-size: 9.5px; }
}
@media (hover: none) and (pointer: coarse) {
  /* Font floor: 14px on LP small text */
  .lp-form-trust-text p { font-size: 14px !important; }
  .lp-form-card .wpforms-field-label,
  .lp-form-card .wpforms-field label { font-size: 14px !important; }
  .lp-form-disclaimer { font-size: 14px; }
  .lp-footer-compliance { font-size: 14px; }
  .lp-footer-base { font-size: 14px; }

  /* Small decorative/label text must meet 14px floor */
  .lp-btn-phone .lp-tag,
  .lp-bilateral-tag,
  .lp-hero-secondary,
  .lp-nav-links a,
  .lp-section-tag,
  .lp-badge-big,
  .lp-badge-small { font-size: 14px !important; }

  /* Tap targets: 44px minimum */
  .lp-btn,
  .lp-btn-primary,
  .lp-btn-ghost { min-height: 44px !important; }

  .lp-btn-phone { min-height: 44px; display: flex; align-items: center !important; flex-direction: column !important; text-align: center; gap: 4px !important; }

  .lp-form-card .wpforms-submit,
  .lp-form-card button[type="submit"] { min-height: 44px !important; }

  /* LP footer contact links (phone/email) */
  .lp-footer-contact a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px !important;
  }

  /* LP footer legal links (Privacy / Terms) — 44px tap target */
  .lp-footer-legal a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* ── Ported-nav floors ──────────────────────────────────────────
     Brand-adapted LPs copy the site nav into lp.css, which drags the
     site's nav defects along with it: .drop-group ~10px, .nav-phone
     13px/24px tall, bare <button> at the UA default 13.33px. Mirror
     of the client.css touch block (tpa-scaffold Step 4). A child that
     DEREGISTERS this stylesheet must carry these in its own lp.css —
     validator Check 18 enforces that. */
  .drop-group,
  li.drop-group > a { font-size: 14px !important; letter-spacing: .12em; }

  .nav-phone,
  .nav-phone .ph-num,
  .m-phone,
  .mob-phone {
    font-size: 14px !important;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
  }

  /* No !important — real button classes must still outrank this. */
  button,
  input[type="submit"],
  input[type="button"] { font-size: 14px; }
}
