/* ================================================================
   Proofline · CONTRAST PASS (2026·05)
   Loaded LAST. Overrides + new components only.
   Goals (from brief):
   - Make hero transformation explicit (raw phone → Proof Pack)
   - Replace weak comparison with strong side-by-side emails
   - Make Photo Rescue bigger / more dominant
   - Turn "What Proofline is" into a charcoal contrast band
   - Slim down Proof Pack: 4 quiet cards + visual file stack
   - Slim down pricing: hero number + guarantee, supporting copy in
     small notes
   - Add controlled charcoal/white contrast rhythm to the page
   ================================================================ */

/* ---------------------------------------------------------------- */
/* 0 · Section rhythm — alternate paper / ivory / ink                */
/* ---------------------------------------------------------------- */
.hero.ls-hero          { background: var(--pl-paper); }
.problem               { background: var(--pl-ivory); border-bottom: 1px solid var(--pl-line); }
.rescue                { background: var(--pl-paper); }
.positioning           { background: var(--pl-ink); color: var(--pl-paper); }
.solution              { background: var(--pl-ivory); border-top: 1px solid var(--pl-line); }
.pricing               { background: var(--pl-paper); border-top: 1px solid var(--pl-line); }
.faq                   { background: var(--pl-ivory); border-top: 1px solid var(--pl-line); }
.close                 { background: var(--pl-paper); border-top: 1px solid var(--pl-line); }

/* ---------------------------------------------------------------- */
/* 1 · HERO — explicit transformation labels                         */
/* ---------------------------------------------------------------- */
.ls-h1b-split {
  background: var(--pl-paper);
  border: 1px solid var(--pl-line);
}

/* Add framing labels above the visual */
.hero-transform-frame {
  position: relative;
}
.hero-transform-frame .stage-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.hero-transform-frame .stage-row .lbl {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pl-ink);
}
.hero-transform-frame .stage-row .lbl .sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--pl-ink-quiet);
  text-transform: none;
}
.hero-transform-frame .stage-row .lbl.right { text-align: right; }
.hero-transform-frame .stage-row .arrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--pl-bronze);
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid var(--pl-bronze);
  background: var(--pl-paper);
}

/* Hide the in-stage rotated arrow now that we have a labeled row above */
.ls-h1b-arrow { display: none; }

/* Recompose the diagonal split as a calmer side-by-side */
.ls-h1b-split {
  aspect-ratio: 16/10;
  background: var(--pl-ivory);
}
.ls-h1b-split::before {
  /* vertical hairline divider, not rotated */
  left: 50%;
  top: 12%;
  bottom: 12%;
  transform: none;
  opacity: 0.45;
}
.ls-h1b-before,
.ls-h1b-after {
  position: absolute;
  top: 50%;
  width: 42%;
  transform: translateY(-50%);
  bottom: auto;
}
.ls-h1b-before { left: 5%; }
.ls-h1b-after  { right: 5%; left: auto; }
.ls-h1b-before .label-row,
.ls-h1b-after  .label-row { display: none; }

/* Phone slightly less tilted */
.ls-mini-phone { transform: rotate(-3deg); }
.ls-pdf-sheet  { transform: rotate(2deg); }

/* Hero copy: hide superfluous Proof Audit microcopy under CTA so the
   hero is sharper. Keep the headline + lead + buttons + proof bullets. */
.hero .cta-define { display: none; }

/* Stronger hero CTA + secondary link rhythm */
.hero .hero-actions { gap: 18px 24px; }
.hero .primary-cta { min-width: 220px; }


/* ---------------------------------------------------------------- */
/* 2 · COMPARISON — side-by-side laptops (price-only vs proof-backed)*/
/* ---------------------------------------------------------------- */

/* Hide the old 3-column comparison rows entirely. */
.cp-follow .cp-row,
.cp-follow .cp-divider,
.cp-follow .sample-tag-bronze {
  display: none !important;
}
.cp-follow {
  padding: 0;
  background: transparent;
  border: 0;
}

.lap-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.lap-stage::before {
  content: 'BUYER COMPARING AT HOME';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--pl-ivory);
  padding: 0 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pl-bronze);
  z-index: 3;
}

.lap-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 28px;
}
.lap-col.weak    { opacity: 1; }

.lap-tag {
  display: flex; flex-direction: column; gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pl-line);
}
.lap-tag .lbl {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pl-ink);
  line-height: 1.2;
}
.lap-col.weak .lap-tag .lbl { color: var(--pl-ink-quiet); }
.lap-tag .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--pl-ink-quiet);
}

/* Laptop body */
.lap-machine {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* The screen */
.lap-screen {
  position: relative;
  background: var(--pl-ink);
  padding: 12px 12px 14px;
  border-radius: 14px 14px 4px 4px;
  border: 1px solid #000;
  box-shadow:
    0 1px 0 rgba(13,13,11,0.08),
    0 28px 50px -28px rgba(13,13,11,0.45);
}
.lap-screen::before {
  /* webcam dot */
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
}

.lap-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: var(--pl-ivory);
  border-radius: 4px 4px 0 0;
  border-bottom: 1px solid var(--pl-line);
}
.lap-chrome .dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lap-chrome .dots i {
  width: 9px; height: 9px;
  background: var(--pl-line);
  border-radius: 50%;
  display: inline-block;
}
.lap-chrome .dots i:nth-child(1) { background: #e5a399; }
.lap-chrome .dots i:nth-child(2) { background: #e5cf99; }
.lap-chrome .dots i:nth-child(3) { background: #a8c9a8; }
.lap-chrome .url {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--pl-ink-quiet);
  text-align: center;
  background: var(--pl-paper);
  padding: 4px 12px;
  border: 1px solid var(--pl-line-soft);
}

/* Mail content inside the screen */
.lap-mail {
  background: var(--pl-paper);
  padding: 22px 24px 24px;
  border-radius: 0 0 4px 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.lap-mail-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pl-line-soft);
  gap: 10px;
}
.lap-mail-head .from {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--pl-ink-quiet);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lap-mail-head .when {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--pl-ink-quiet);
}
.lap-subj {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.25;
  color: var(--pl-ink);
  letter-spacing: -0.005em;
}
.lap-lines {
  display: flex; flex-direction: column; gap: 6px;
}
.lap-lines .ln {
  height: 4px;
  background: var(--pl-line-soft);
}
.lap-lines .ln.l  { width: 100%; }
.lap-lines .ln.m  { width: 78%; }
.lap-lines .ln.s  { width: 52%; }
.lap-lines .ln.xs { width: 38%; }

.lap-attach {
  margin-top: auto;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 12px;
  background: var(--pl-ivory);
  border: 1px solid var(--pl-line);
  align-items: center;
}
.lap-attach .thumb {
  width: 64px;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  filter: saturate(0.88);
  border: 1px solid var(--pl-line);
}
.lap-attach .info {
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0;
}
.lap-attach .info .badge {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pl-bronze);
}
.lap-attach .info .nm {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--pl-ink);
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lap-attach .info .sz {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--pl-ink-quiet);
}

/* The laptop base (trapezoid hinge) */
.lap-base {
  position: relative;
  width: 116%;
  margin: 0 -8%;
  height: 14px;
  background:
    linear-gradient(180deg, #1d1d1b 0%, #0d0d0b 60%, #0d0d0b 100%);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 14px -10px rgba(13,13,11,0.45);
}
.lap-base::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 6px;
  background: #000;
  border-radius: 0 0 8px 8px;
}

.lap-outcome {
  padding-top: 18px;
  border-top: 1px solid var(--pl-line);
  display: flex; flex-direction: column;
  gap: 6px;
}
.lap-outcome .key {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pl-ink-quiet);
}
.lap-outcome .v {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.3;
  color: var(--pl-ink);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.lap-col.weak .lap-outcome .v { color: var(--pl-ink-quiet); }


/* ---------------------------------------------------------------- */
/* 3 · PHOTO RESCUE — bigger, more dominant                          */
/* ---------------------------------------------------------------- */
.rescue.section-pad {
  padding-top: clamp(112px, 12vw, 192px);
  padding-bottom: clamp(112px, 12vw, 192px);
}

.ls-rescue-head h2 {
  font-size: clamp(40px, 4.4vw, 60px);
}

/* Push the visual wider */
.pr-three {
  margin-top: clamp(56px, 6vw, 80px);
  grid-template-columns: 1fr 64px 1fr 64px 1fr;
  align-items: stretch;
}

.pr-step { gap: 22px; }

/* Larger, sharper labels */
.pr-label-row {
  align-items: baseline;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--pl-ink);
}
.pr-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--pl-ink-quiet);
}
.pr-name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--pl-ink);
}

/* Bigger stages */
.pr-stage {
  aspect-ratio: 4/5;
  border: 1px solid var(--pl-line);
}
.pr-stage-pack {
  background: var(--pl-ink);
  padding: 26px 22px;
}
.pr-stage-pack .pr-doc {
  box-shadow:
    0 1px 0 rgba(13,13,11,0.05),
    0 32px 56px -22px rgba(0,0,0,0.5);
}

/* Reduce small captions: hide them; let the visual do the work. */
.pr-step figcaption { display: none; }

/* Optional tiny meta below stage (replaces caption) */
.pr-step .pr-foot {
  margin-top: -6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--pl-ink-quiet);
}

/* Honesty line stays */


/* ---------------------------------------------------------------- */
/* 4 · POSITIONING — charcoal contrast band                          */
/* ---------------------------------------------------------------- */
.positioning {
  background: var(--pl-ink);
}
.positioning.section-pad {
  padding-top: clamp(88px, 9vw, 132px);
  padding-bottom: clamp(88px, 9vw, 132px);
}
.positioning-shell {
  grid-template-columns: 220px 1fr;
  gap: 64px;
}
.positioning-shell .kicker {
  color: var(--pl-bronze-soft);
  border-top-color: rgba(251,248,241,0.18);
}
.positioning-statement {
  color: var(--pl-paper);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
  max-width: 28ch;
  letter-spacing: -0.015em;
}
.positioning-statement em {
  font-style: normal;
  color: var(--pl-bronze-soft);
}
.positioning-statement .neg {
  display: block;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(251,248,241,0.18);
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  letter-spacing: 0;
  color: rgba(251,248,241,0.72);
  max-width: 44ch;
}


/* ---------------------------------------------------------------- */
/* 5 · PROOF PACK — keep original 4-card grid + deliverables list    */
/* ---------------------------------------------------------------- */
.solution.section-pad {
  padding-top: clamp(96px, 10vw, 160px);
  padding-bottom: clamp(96px, 10vw, 160px);
}
/* (No overrides — use the existing landing-sections.css system + deliv-block.) */


/* ---------------------------------------------------------------- */
/* 6 · PRICING — hero number + guarantee, supporting copy small      */
/* ---------------------------------------------------------------- */
.pricing.section-pad {
  padding-top: clamp(96px, 10vw, 160px);
  padding-bottom: clamp(96px, 10vw, 160px);
}

/* Reframe the pilot card: bold price + payment + guarantee */
.ls-pilot-card {
  background: var(--pl-ink);
  color: var(--pl-paper);
  border: 1px solid var(--pl-ink);
  margin-top: clamp(32px, 4vw, 56px);
}
.ls-pilot-grid {
  grid-template-columns: 1fr;
  background: transparent;
  color: inherit;
  border: 0;
  padding: 0;
}
.ls-pilot-price {
  padding: clamp(40px, 5vw, 64px) clamp(36px, 5vw, 64px) clamp(32px, 4vw, 48px);
  border-right: 0;
  border-bottom: 1px solid rgba(251,248,241,0.16);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: end;
}
.ls-pilot-price .head-row { grid-column: 1 / -1; border-bottom-color: rgba(251,248,241,0.16); padding-bottom: 18px; }
.ls-pilot-price .head-row .mk-label { color: var(--pl-bronze-soft); }
.ls-pilot-price .head-row .mk-meta  { color: rgba(251,248,241,0.55); }
.ls-pilot-price .name {
  grid-column: 1;
  color: var(--pl-paper);
  font-size: clamp(22px, 2vw, 26px);
  max-width: 16ch;
  margin-top: 18px;
}
.ls-pilot-price .price {
  grid-column: 1;
  color: var(--pl-paper);
  font-size: clamp(72px, 8vw, 112px);
  margin-top: 8px;
  font-weight: 300;
}
.ls-pilot-price .price small {
  color: rgba(251,248,241,0.55);
  font-size: 12px;
}

/* Payment split — right column on dark */
.ls-pilot-price .ls-pay-split {
  grid-column: 2;
  margin: 0;
  border: 1px solid rgba(251,248,241,0.2);
  background: transparent;
}
.ls-pilot-price .ls-pay-split .col {
  padding: 16px 18px;
}
.ls-pilot-price .ls-pay-split .col + .col {
  border-left: 1px solid rgba(251,248,241,0.16);
  padding-left: 18px;
}
.ls-pilot-price .ls-pay-split .lbl { color: var(--pl-bronze-soft); }
.ls-pilot-price .ls-pay-split .v   { color: var(--pl-paper); font-size: clamp(28px, 3vw, 36px); }
.ls-pilot-price .ls-pay-split .when{ color: rgba(251,248,241,0.6); }

/* Hide the verbose approval-clarify on the dark card — content moves
   to the guarantee panel which is bigger. */
.ls-pilot-price .approval-clarify { display: none; }

/* CTA: full block on dark */
.ls-pilot-price .cta {
  grid-column: 1 / -1;
  margin-top: 24px;
  background: var(--pl-paper);
  color: var(--pl-ink);
  border-color: var(--pl-paper);
  padding: 18px 24px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  justify-self: start;
  min-width: 280px;
  text-align: center;
}
.ls-pilot-price .cta:hover { background: var(--pl-ivory); color: var(--pl-ink); }
.ls-pilot-price .text-link.sec {
  grid-column: 1 / -1;
  align-self: start;
  margin-top: 8px;
  color: var(--pl-bronze-soft);
  border-bottom-color: rgba(251,248,241,0.24);
}
.ls-pilot-price .text-link.sec:hover { border-bottom-color: var(--pl-paper); }

/* GUARANTEE — visually clear, on dark */
.ls-pilot-guarantee {
  background: transparent;
  border-top: 0;
  border-bottom: 1px solid rgba(251,248,241,0.16);
  padding: clamp(32px, 4vw, 48px) clamp(36px, 5vw, 64px);
  grid-template-columns: 1fr;
  gap: 18px;
}
.ls-pilot-guarantee .g-mark { padding-top: 0; }
.ls-pilot-guarantee .g-mark .lbl { color: var(--pl-bronze-soft); }
.ls-pilot-guarantee .g-mark .mk-meta { color: rgba(251,248,241,0.55); }
.ls-pilot-guarantee .g-copy {
  color: var(--pl-paper);
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  max-width: 36ch;
}

/* Includes: collapsed into a <details> on dark */
.pilot-includes-fold {
  border-top: 1px solid rgba(251,248,241,0.16);
}
.pilot-includes-fold[open] { padding-bottom: 8px; }
.pilot-includes-fold > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px clamp(36px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pl-paper);
  background: transparent;
}
.pilot-includes-fold > summary::-webkit-details-marker { display: none; }
.pilot-includes-fold > summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 20px;
  color: var(--pl-bronze-soft);
}
.pilot-includes-fold[open] > summary::after { content: '−'; }
.pilot-includes-fold > summary > span {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--pl-bronze-soft);
  margin-left: 14px;
}
.pilot-includes-fold .ls-pilot-includes {
  padding: 0 clamp(36px, 5vw, 64px) clamp(24px, 3vw, 36px);
  background: transparent;
}
.pilot-includes-fold .ls-pilot-includes .lbl { display: none; }
.pilot-includes-fold .ls-pilot-includes .lst {
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.pilot-includes-fold .ls-pilot-includes .lst li {
  color: rgba(251,248,241,0.78);
  border-bottom-color: rgba(251,248,241,0.1);
  font-size: 13px;
  padding-bottom: 8px;
  grid-template-columns: 28px 1fr;
}
.pilot-includes-fold .ls-pilot-includes .lst li .n {
  color: var(--pl-bronze-soft);
}

/* Photo check + urgency: compact small note row beneath */
.pricing .photo-check,
.pricing .ls-pilot-urgency {
  padding: 16px clamp(36px, 5vw, 64px);
  border-top: 1px solid rgba(251,248,241,0.16);
  background: transparent;
}
.pricing .photo-check {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
}
.pricing .photo-check .g-mark .lbl { color: var(--pl-bronze-soft); }
.pricing .photo-check .g-mark .mk-meta { color: rgba(251,248,241,0.55); }
.pricing .photo-check .g-copy {
  color: rgba(251,248,241,0.78);
  font-size: 13px;
  font-family: var(--font-sans);
  line-height: 1.55;
  max-width: 56ch;
}
.pricing .ls-pilot-urgency {
  color: rgba(251,248,241,0.55);
  text-align: left;
  font-size: 12px;
  line-height: 1.55;
}

/* Trust lines: pull out of dark card, place beneath as small notes */
.pricing .trust-lines {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--pl-line);
}
.pricing .trust-lines p {
  color: var(--pl-ink-quiet);
  text-align: left;
  font-size: 13px;
}

/* Pricing header: tighter */
.pricing .section-head.narrow h2 {
  font-size: clamp(40px, 4vw, 56px);
}


/* ---------------------------------------------------------------- */
/* 7 · Hero proof: cleaner inline dot separator                      */
/* ---------------------------------------------------------------- */
.hero-proof {
  align-items: baseline;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
  /* Hero transform stage row shrinks but stays visible */
  .hero-transform-frame .stage-row { gap: 10px; }
  .hero-transform-frame .stage-row .arrow { padding: 4px 8px; font-size: 10px; }

  /* Pilot price stacks */
  .ls-pilot-price {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ls-pilot-price .ls-pay-split { grid-column: 1; }
  .ls-pilot-price .name { margin-top: 8px; }
}

@media (max-width: 980px) {
  /* Photo Rescue: stack but keep labels big */
  .pr-three {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pr-arrow { display: none; }
  .pr-stage { aspect-ratio: 16/12; max-height: 420px; }

  /* Comparison stacks */
  .lap-stage { grid-template-columns: 1fr; gap: 32px; }
  .lap-stage::before { display: none; }
  .lap-col { padding-top: 0; }

  .positioning-shell { grid-template-columns: 1fr; gap: 24px; }
  .positioning-shell .kicker { padding-top: 0; border-top: 0; }
}

@media (max-width: 780px) {
  /* HERO: mini before/after must remain legible — switch to 2-up grid */
  .ls-h1b-split {
    position: relative;
    aspect-ratio: 8/5;
    max-height: 280px;
  }
  .ls-h1b-before { left: 4%; width: 44%; }
  .ls-h1b-after  { right: 4%; width: 48%; }

  /* Hero transform labels stack on tiny screens */
  .hero-transform-frame .stage-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
  .hero-transform-frame .stage-row .lbl.right { text-align: left; }
  .hero-transform-frame .stage-row .arrow { display: none; }

  /* Comparison: large labels per column on mobile */
  .lap-tag .lbl { font-size: 14px; }
  .lap-mail { min-height: 0; padding: 18px 18px 20px; }

  /* Photo Rescue: still large labels per the brief */
  .pr-name { font-size: 26px; }

  /* Positioning: tight on mobile */
  .positioning-statement {
    font-size: clamp(24px, 6.4vw, 32px);
    line-height: 1.22;
  }
  .positioning-statement .neg { font-size: 14px; }

  /* (file stack removed) */

  /* Pricing: shorter — primary CTA full-width, includes-fold compact */
  .ls-pilot-price { padding: 28px 22px 24px; }
  .ls-pilot-price .price { font-size: clamp(64px, 18vw, 88px); }
  .ls-pilot-price .cta { width: 100%; min-width: 0; padding: 16px; }
  .pilot-includes-fold > summary { padding: 16px 22px; }
  .pilot-includes-fold .ls-pilot-includes { padding: 0 22px 20px; }
  .pilot-includes-fold .ls-pilot-includes .lst { grid-template-columns: 1fr; }
  .ls-pilot-guarantee { padding: 24px 22px; }
  .ls-pilot-guarantee .g-copy { font-size: 19px; }
  .pricing .photo-check {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 22px;
  }
  .pricing .ls-pilot-urgency { padding: 14px 22px; }
}
