/* ── /how-it-works styles. Home palette and container width. ── */

/* Page tokens (home-aligned). Override shared.css surfaces; keep
   --primary / --btn-bg from shared.css so CTAs stay the brand indigo. */
:root {
  --bg: #f8fafc;
  --lpb-text: #0f172a;
  --lpb-text-secondary: #334155;
  --lpb-text-muted: #64748b;
  --lpb-border: #dbe3ee;
  --lpb-panel: #ffffff;
  --lpb-panel-soft: #eef2f7;
  --lpb-accent: #2c7a51;
  --lpb-accent-soft: #e6f4ed;

  --lpb-demo-accent: rgba(79, 70, 229, 0.06);
  --lpb-chip-selected-bg: rgba(79, 70, 229, 0.08);
}

html.dark {
  --bg: #0f172a;
  --lpb-text: #f8fafc;
  --lpb-text-secondary: #cbd5e1;
  --lpb-text-muted: #94a3b8;
  --lpb-border: #334155;
  --lpb-panel: #162033;
  --lpb-panel-soft: #1e293b;
  --lpb-accent: #6ee7a8;
  --lpb-accent-soft: #123426;

  --lpb-demo-accent: rgba(129, 140, 248, 0.08);
  --lpb-chip-selected-bg: rgba(129, 140, 248, 0.14);
}

body { background: var(--bg); color: var(--lpb-text); min-height: 100dvh; display: flex; flex-direction: column; }
.lpb-main { flex: 1; padding-bottom: 2rem; }

/* ── Container ── */
.lpb-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media (max-width: 520px) {
  .lpb-container { padding-left: 0.75rem; padding-right: 0.75rem; }
}

/* ── Sections ── */
.lpb-section { padding: 2.5rem 0 2rem; }
@media (min-width: 640px) {
  .lpb-section { padding: 3.5rem 0 2.5rem; }
}

/* ── Headings ── */
.lpb-section h1,
.lpb-section h2 {
  color: var(--lpb-text);
  margin: 0 auto 0.875rem;
  text-align: center;
  text-wrap: balance;
}
.lpb-section h1 {
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 48rem;
}
.lpb-section h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
  max-width: 44rem;
}
@media (min-width: 640px) {
  .lpb-section h1 { font-size: 2.25rem; }
  .lpb-section h2 { font-size: 1.875rem; }
}

.lpb-section-intro {
  font-size: 1rem;
  color: var(--lpb-text-secondary);
  margin: 0 auto 1.75rem;
  max-width: 44rem;
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
}

/* ── CTA row (page-level) ── */
.lpb-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  margin-top: 0.25rem;
}
.lpb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  background: var(--btn-bg);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.15s;
}
.lpb-cta:hover { background: var(--btn-bg-hover); }
.lpb-cta:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.lpb-trust-line {
  font-size: 0.875rem;
  color: var(--lpb-text-muted);
  margin: 0;
  max-width: 36rem;
  line-height: 1.5;
}

/* ────────────────────────────────────────────────────────────────────
   Interactive demo
   The demo card lives inside the wide .lpb-container but constrains
   its own width so each step stays focused and scannable.
   ──────────────────────────────────────────────────────────────────── */
.lpb-demo {
  padding: 0 0 1.5rem;
}
@media (min-width: 640px) {
  .lpb-demo { padding: 0 0 2.5rem; }
}

.lpb-demo-card {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--lpb-panel);
  border: 1px solid var(--lpb-border);
  border-radius: 1.125rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 2px 8px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  position: relative;
}
html.dark .lpb-demo-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lpb-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--lpb-border);
  background: var(--lpb-demo-accent);
}

/* ── Progress dots ── */
.lpb-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.lpb-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--lpb-border);
  transition: background 0.2s, width 0.2s;
}
.lpb-dot.done { background: var(--primary); opacity: 0.55; }
.lpb-dot.active {
  background: var(--primary);
  width: 1.25rem;
  opacity: 1;
}

.lpb-skip {
  font-size: 0.8125rem;
  color: var(--lpb-text-secondary);
  text-decoration: none;
  padding: 0.375rem 0.625rem;
  border-radius: 0.375rem;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.lpb-skip:hover { color: var(--primary); background: var(--lpb-chip-selected-bg); }

/* ── Step body ── */
.lpb-steps {
  position: relative;
  padding: 1.5rem 1rem;
}
@media (min-width: 640px) {
  .lpb-steps { padding: 2rem 2rem 1.75rem; }
}

.lpb-step {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  animation: lpb-fade-in 0.25s ease-out;
}
.lpb-step.active { display: flex; }

@keyframes lpb-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.lpb-step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  max-width: 24rem;
  margin: 0;
}
.lpb-step-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}
.lpb-step h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lpb-text);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-wrap: balance;
  max-width: none;
  text-align: center;
}
@media (min-width: 640px) {
  .lpb-step h2 { font-size: 1.25rem; }
}

.lpb-step-body {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  text-align: left;
}

/* ── Inline editable name ── */
.lpb-inline-name {
  font: inherit;
  color: var(--primary);
  background: var(--lpb-demo-accent);
  border: none;
  border-bottom: 2px solid var(--primary);
  border-radius: 0.25rem 0.25rem 0 0;
  padding: 0 0.375rem 0.0625rem;
  margin: 0 0.125rem;
  min-width: 5ch;
  outline: none;
  transition: background 0.15s;
  vertical-align: baseline;
  font-weight: inherit;
}
.lpb-inline-name:hover,
.lpb-inline-name:focus {
  background: var(--lpb-chip-selected-bg);
}

/* ── Inputs ── */
.lpb-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--lpb-text);
  background: var(--lpb-panel-soft);
  border: 1px solid var(--lpb-border);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.lpb-input:focus {
  border-color: var(--primary);
  background: var(--lpb-panel);
}

/* ── Chips ── */
.lpb-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 22rem;
}
.lpb-chip {
  padding: 0.5rem 0.9375rem;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: var(--lpb-text);
  background: var(--lpb-panel-soft);
  border: 1px solid var(--lpb-border);
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: inherit;
}
.lpb-chip:hover { border-color: var(--primary); }
.lpb-chip[aria-pressed="true"] {
  background: var(--lpb-chip-selected-bg);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 500;
}

.lpb-field-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lpb-text-secondary);
  margin-bottom: 0.375rem;
}

/* ── Auto-detect contact hint ── */
.lpb-contact-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--lpb-text-muted);
  transition: color 0.15s;
}
.lpb-contact-hint[data-channel="sms"],
.lpb-contact-hint[data-channel="email"] {
  color: var(--primary);
}
.lpb-contact-hint-icon {
  width: 0.875rem;
  height: 0.875rem;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  flex-shrink: 0;
  opacity: 0.85;
}
.lpb-contact-hint[data-channel="sms"] .lpb-contact-hint-icon {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/></svg>");
}
.lpb-contact-hint[data-channel="email"] .lpb-contact-hint-icon {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>");
}

/* ── SMS mockup ── */
.lpb-phone {
  width: 100%;
  max-width: 19rem;
  margin: 0 auto;
  background: var(--lpb-panel-soft);
  border: 1px solid var(--lpb-border);
  border-radius: 1.375rem;
  padding: 0.625rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.lpb-phone-notch {
  width: 3rem;
  height: 0.25rem;
  background: var(--lpb-border);
  border-radius: 9999px;
  margin: 0 auto 0.5rem;
}
.lpb-phone-screen {
  background: var(--lpb-panel);
  border-radius: 0.875rem;
  padding: 1rem 0.875rem;
}
.lpb-phone-from {
  font-size: 0.75rem;
  color: var(--lpb-text-muted);
  text-align: center;
  margin-bottom: 0.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--lpb-border);
}
.lpb-sms-bubble {
  display: inline-block;
  max-width: 85%;
  padding: 0.5rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  text-align: left;
  background: var(--primary);
  color: #ffffff;
  border-bottom-right-radius: 0.25rem;
  word-wrap: break-word;
}
.lpb-sms-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.375rem;
}
.lpb-sms-link {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}
.lpb-sms-meta {
  font-size: 0.6875rem;
  color: var(--lpb-text-muted);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  opacity: 0;
  animation: lpb-delivered 0.4s 0.6s ease-out forwards;
}
@keyframes lpb-delivered {
  from { opacity: 0; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(0); }
}
.lpb-sms-check {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  color: var(--lpb-accent);
}

/* ── Email inbox mockup ── */
.lpb-email {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  background: var(--lpb-panel);
  border: 1px solid var(--lpb-border);
  border-radius: 0.875rem;
  padding: 0.875rem;
  text-align: left;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.lpb-email-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--lpb-border);
}
.lpb-email-head-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lpb-text-muted);
}
.lpb-email-head-count {
  font-size: 0.6875rem;
  color: var(--primary);
  background: var(--lpb-chip-selected-bg);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
}
.lpb-email-row {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}
.lpb-email-unread {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.lpb-email-body { flex: 1; min-width: 0; }
.lpb-email-line1 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.125rem;
}
.lpb-email-sender {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lpb-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lpb-email-time {
  font-size: 0.6875rem;
  color: var(--lpb-text-muted);
  flex-shrink: 0;
}
.lpb-email-to {
  font-size: 0.6875rem;
  color: var(--lpb-text-muted);
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lpb-email-subject {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lpb-text);
  margin-bottom: 0.1875rem;
  line-height: 1.35;
}
.lpb-email-preview {
  font-size: 0.75rem;
  color: var(--lpb-text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Upload mockup ── */
.lpb-upload-mock {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  background: var(--lpb-panel-soft);
  border: 1px solid var(--lpb-border);
  border-radius: 0.875rem;
  padding: 1.125rem 1rem;
  text-align: left;
}
.lpb-upload-head {
  font-size: 0.8125rem;
  color: var(--lpb-text-secondary);
  margin-bottom: 0.875rem;
  text-align: center;
}
.lpb-upload-head strong { color: var(--lpb-text); }
.lpb-upload-file {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6875rem 0.875rem;
  background: var(--lpb-panel);
  border: 1px solid var(--lpb-border);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}
.lpb-upload-file svg {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--primary);
  flex-shrink: 0;
}
.lpb-upload-file-info {
  flex: 1;
  min-width: 0;
}
.lpb-upload-file-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lpb-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lpb-upload-file-size {
  font-size: 0.6875rem;
  color: var(--lpb-text-muted);
  margin-top: 0.125rem;
}
.lpb-upload-progress {
  height: 0.375rem;
  background: var(--lpb-border);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.625rem;
}
.lpb-upload-progress-bar {
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 9999px;
  transition: width 0.1s linear;
}
.lpb-upload-status {
  font-size: 0.75rem;
  color: var(--lpb-text-muted);
  text-align: center;
  min-height: 1rem;
}
.lpb-upload-status.done {
  color: var(--lpb-accent);
  font-weight: 500;
}

/* ── Dashboard mockup ── */
.lpb-dash {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  background: var(--lpb-panel-soft);
  border: 1px solid var(--lpb-border);
  border-radius: 0.875rem;
  padding: 0.875rem;
  text-align: left;
}
.lpb-dash-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--lpb-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
  padding: 0 0.125rem;
}
.lpb-dash-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.875rem;
  background: var(--lpb-panel);
  border: 1px solid var(--lpb-border);
  border-radius: 0.625rem;
}
.lpb-dash-meta { min-width: 0; }
.lpb-dash-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lpb-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.125rem;
}
.lpb-dash-sub {
  font-size: 0.75rem;
  color: var(--lpb-text-muted);
}
.lpb-dash-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--lpb-border);
}
.lpb-dash-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.1875rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lpb-accent);
  background: var(--lpb-accent-soft);
  border-radius: 9999px;
  flex-shrink: 0;
}
.lpb-dash-status svg { width: 0.8125rem; height: 0.8125rem; }
.lpb-dash-download {
  flex-shrink: 0;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--lpb-border);
  border-radius: 0.375rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.lpb-dash-download:hover { border-color: var(--primary); background: var(--lpb-chip-selected-bg); }

/* ── Controls (Back/Next bar) ── */
.lpb-controls {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: flex-end;
  padding: 0.875rem 1rem;
  border-top: 1px solid var(--lpb-border);
  background: var(--lpb-demo-accent);
}
.lpb-controls-left { margin-right: auto; }
@media (min-width: 640px) {
  .lpb-controls { padding: 1rem 2rem; }
}

.lpb-btn[hidden] { display: none; }
.lpb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: inherit;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
}
.lpb-btn-primary {
  background: var(--btn-bg);
  color: #ffffff;
  border-color: var(--btn-bg);
}
.lpb-btn-primary:hover { background: var(--btn-bg-hover); border-color: var(--btn-bg-hover); }
.lpb-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.lpb-btn-ghost {
  background: transparent;
  color: var(--lpb-text-secondary);
  border-color: var(--lpb-border);
}
.lpb-btn-ghost:hover { color: var(--lpb-text); border-color: var(--primary); }

.lpb-step-final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 22rem;
}
.lpb-step-final-cta .lpb-btn-primary {
  font-size: 1rem;
  padding: 0.6875rem 1.375rem;
}
.lpb-step-final-cta p {
  font-size: 0.8125rem;
  color: var(--lpb-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ────────────────────────────────────────────────────────────────────
   Trust grid
   ──────────────────────────────────────────────────────────────────── */
.lpb-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .lpb-trust-list { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 960px) {
  .lpb-trust-list { grid-template-columns: repeat(3, 1fr); }
}
.lpb-trust-item {
  background: var(--lpb-panel);
  border: 1px solid var(--lpb-border);
  border-radius: 0.625rem;
  padding: 1.125rem 1.25rem;
}
.lpb-trust-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lpb-text);
  margin: 0 0 0.4rem;
  letter-spacing: -0.005em;
}
.lpb-trust-item p {
  font-size: 0.9375rem;
  color: var(--lpb-text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ── Final section ── */
.lpb-final h2 { margin-bottom: 1.25rem; }
.lpb-final .lpb-trust-line { margin: 0 auto; }
