/* ============================================================
   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: 70px 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;
  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;
  grid-template-columns: 1.15fr 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;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  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-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;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.lp-solution-benefits li {
  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;
}

/* ============================================================
   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;
  grid-template-columns: repeat(4, 1fr);
  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: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lp-secondary);
  font-weight: 700;
  margin-bottom: 24px;
}
.lp-pillar {
  padding: 22px 0;
  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;
}
.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-eyebrow { color: var(--lp-accent); }
.lp-whatnext .lp-eyebrow::before { background: var(--lp-accent); }
.lp-whatnext h2 { color: var(--lp-paper); max-width: 720px; }
.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 0 44px;
}
.lp-whatnext-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(248,246,241,.15);
}
.lp-whatnext-step {
  padding: 42px 40px 32px 10px;
  border-right: 1px solid rgba(248,246,241,.15);
  position: relative;
}
.lp-whatnext-step:last-child { border-right: 0; }
.lp-whatnext-num {
  font-family: var(--lp-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 52px;
  color: var(--lp-accent);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.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);
}
.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: 70px 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: 64px 0; }
  .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; }
  .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; }
  .lp-whatnext-step { border-right: 0; border-bottom: 1px solid rgba(248,246,241,.15); padding-right: 0; }
  .lp-whatnext-step:last-child { border-bottom: 0; }
  .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; flex-direction: row !important; gap: 12px; }

  .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;
  }
}
