/* ContractorStudyPlan landing — warm cream + orange + slate (v2 look) */

body.landing-v2 {
  --lp-bg: #f7f4ef;
  --lp-surface: #ffffff;
  --lp-text: #020617;
  --lp-muted: #64748b;
  --lp-border: #e2e8f0;
  --lp-orange: #ea580c;
  --lp-orange-dark: #c2410c;
  --lp-orange-light: #fff7ed;
  --lp-orange-soft: #ffedd5;
  --lp-slate: #0f172a;
  --lp-max: 80rem;
  --lp-radius: 1rem;
  --lp-radius-lg: 1.5rem;
  --lp-radius-xl: 2rem;

  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 5rem;

  @media (min-width: 768px) {
    padding-bottom: 0;
  }
}

body.landing-v2 .site-header,
body.landing-v2 .sticky-cta-mobile { display: none !important; }

body.landing-v2 a { color: inherit; }
body.landing-v2 a:hover { color: var(--lp-orange); }

/* Inline SVGs default to 300×150px without dimensions — prevent layout blow-ups */
body.landing-v2 svg:not([width]) {
  width: 1.25rem;
  height: 1.25rem;
  max-width: 1.25rem;
  max-height: 1.25rem;
  flex-shrink: 0;
  vertical-align: middle;
}

body.landing-v2 .lp-btn svg[width] {
  width: 1.0625rem;
  height: 1.0625rem;
  max-width: none;
  max-height: none;
}

.lp-wrap {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ---------- Nav ---------- */
.lp-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  flex-wrap: wrap;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--lp-text);
}

.lp-brand:hover { color: var(--lp-text); text-decoration: none; }

.lp-brand-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  background: var(--lp-slate);
  color: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.lp-brand-icon svg { width: 1.25rem; height: 1.25rem; }

.lp-brand-title {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lp-brand-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lp-muted);
}

.lp-nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-muted);
}

@media (min-width: 768px) {
  .lp-nav-links { display: flex; }
}

.lp-nav-links a {
  text-decoration: none;
  color: var(--lp-muted);
  transition: color 0.15s;
}

.lp-nav-links a:hover { color: var(--lp-text); }

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  min-height: 44px;
  padding: 0.625rem 1.25rem;
}

.lp-btn:hover { text-decoration: none; transform: translateY(-2px); }

.lp-btn-dark {
  background: var(--lp-slate);
  color: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.lp-btn-dark:hover {
  background: var(--lp-orange);
  color: #fff;
}

.lp-btn-orange {
  background: var(--lp-orange);
  color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
}

.lp-btn-orange:hover {
  background: var(--lp-orange-dark);
  color: #fff;
}

.lp-btn-outline {
  background: var(--lp-surface);
  color: var(--lp-text);
  border: 1px solid #cbd5e1;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.lp-btn-outline:hover {
  border-color: var(--lp-slate);
  color: var(--lp-text);
}

.lp-btn-block { width: 100%; border-radius: 1rem; padding: 0.75rem 1rem; }

/* ---------- Hero ---------- */
.lp-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--lp-border);
  background: linear-gradient(135deg, #fff 0%, #fff8ef 45%, #eef4ff 100%);
}

.lp-hero-blur-1,
.lp-hero-blur-2 {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
}

.lp-hero-blur-1 {
  width: 20rem;
  height: 20rem;
  top: -6rem;
  right: -6rem;
  background: rgba(253, 186, 116, 0.4);
}

.lp-hero-blur-2 {
  width: 20rem;
  height: 20rem;
  bottom: -7rem;
  left: 25%;
  background: rgba(147, 197, 253, 0.4);
}

.lp-hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0 5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 4rem;
  }
}

.lp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.lp-hero h1 {
  max-width: 56rem;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--lp-text);
}

.lp-hero-lead {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #475569;
}

.lp-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .lp-hero-ctas { flex-direction: row; flex-wrap: wrap; }
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .lp-stats { grid-template-columns: repeat(4, 1fr); }
}

.lp-stat {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lp-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.lp-stat-label {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-muted);
}

/* ---------- Finder card (hero right) ---------- */
.lp-finder-card {
  border-radius: var(--lp-radius-xl);
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.85);
  padding: 1rem;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.lp-finder-dark {
  border-radius: var(--lp-radius-lg);
  background: var(--lp-slate);
  padding: 1.25rem;
  color: #fff;
}

.lp-finder-dark-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.lp-finder-kicker {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lp-orange-light);
}

.lp-finder-title {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 900;
}

.lp-finder-search {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
}

.lp-finder-search svg { width: 1.25rem; height: 1.25rem; }

.lp-finder-fields {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .lp-finder-fields { grid-template-columns: 1fr 1fr; }
}

.lp-field-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cbd5e1;
}

.lp-field-value {
  margin-top: 0.5rem;
  border-radius: 1rem;
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-finder-body {
  margin-top: 1rem;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  padding: 1.25rem;
}

.lp-finder-body-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lp-icon-box {
  flex-shrink: 0;
  border-radius: 1rem;
  padding: 0.75rem;
  line-height: 0;
}

.lp-icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.lp-icon-box-orange {
  background: var(--lp-orange-soft);
  color: var(--lp-orange);
}

.lp-icon-box-orange svg { width: 1.25rem; height: 1.25rem; }

.lp-finder-body h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 900;
}

.lp-finder-body p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

.lp-snapshot-rows { margin-top: 1.25rem; }

.lp-snapshot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  background: #f8fafc;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.lp-snapshot-row:last-child { margin-bottom: 0; }

.lp-snapshot-row span:first-child {
  font-weight: 700;
  color: var(--lp-muted);
}

.lp-snapshot-row span:last-child {
  text-align: right;
  font-weight: 900;
  color: var(--lp-text);
}

/* ---------- Section shared ---------- */
.lp-section {
  padding: 5rem 0;
}

.lp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  background: var(--lp-orange-light);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c2410c;
}

.lp-section-label svg { width: 0.875rem; height: 0.875rem; }

.lp-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--lp-text);
}

.lp-section-lead {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--lp-muted);
}

/* ---------- As seen on (provider strip) ---------- */
.lp-asseenon {
  padding: 1.5rem 0 0.75rem;
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-asseenon-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875rem 1.75rem;
  justify-content: center;
}

.lp-asseenon-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.lp-asseenon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.125rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-asseenon-list li {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--lp-text);
  font-size: 0.9375rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--lp-border);
  border-radius: 9999px;
  background: #f8fafc;
}

/* ---------- How it works (3 steps) ---------- */
.lp-steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 760px) {
  .lp-steps-row { grid-template-columns: repeat(3, 1fr); }
}

.lp-step {
  position: relative;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 1.625rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-step:hover {
  transform: translateY(-2px);
  border-color: var(--lp-orange);
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.12);
}

.lp-step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.9375rem;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-dark));
  box-shadow: 0 8px 18px rgba(234, 88, 12, 0.24);
  margin-bottom: 0.375rem;
  flex-shrink: 0;
}

.lp-step h3 {
  font-size: 1.0625rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--lp-text);
}

.lp-step p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

.lp-step-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.375rem;
  color: #cbd5e1;
  line-height: 0;
}

.lp-step-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  display: block;
}

/* ---------- Sample plan preview ---------- */
.lp-sample {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

@media (min-width: 880px) {
  .lp-sample { grid-template-columns: 1fr 1.15fr; align-items: center; }
}

.lp-sample-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-orange);
  margin-bottom: 0.625rem;
}

.lp-sample-copy h3 {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}

.lp-sample-copy p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 1.125rem;
}

.lp-sample-card {
  background: var(--lp-slate);
  color: #f8fafc;
  border-radius: 1.125rem;
  padding: 1.375rem;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.32);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.lp-sample-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}

.lp-sample-card-state {
  font-weight: 900;
  font-size: 0.9375rem;
  color: #fff;
}

.lp-sample-card-pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  /* Opaque blend of --lp-orange at 18% on --lp-slate (passes contrast vs translucent rgba) */
  background: #362325;
  color: var(--lp-orange-light);
  border: 1px solid #9a3412;
}

.lp-sample-card-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5625rem 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  color: rgba(248, 250, 252, 0.86);
}

.lp-sample-card-row:first-of-type { border-top: 0; padding-top: 0; }

.lp-sample-card-row span:first-child {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-sample-card-row span:last-child {
  text-align: right;
  color: #fff;
  font-weight: 600;
}

.lp-sample-card-foot {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.65);
}

/* ---------- Trade paths ---------- */
.lp-two-col {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .lp-two-col-finder { grid-template-columns: 0.85fr 1.15fr; }
  .lp-two-col-pricing { grid-template-columns: 0.8fr 1.2fr; align-items: center; }
  .lp-two-col-trust { grid-template-columns: 0.95fr 1.05fr; align-items: center; }
}

.lp-filter-note {
  margin-top: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.lp-filter-note-inner {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.lp-filter-note-inner svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

.lp-trade-panel {
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.lp-trade-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .lp-trade-grid { grid-template-columns: 1fr 1fr; }
}

.lp-trade-btn {
  border-radius: 1.5rem;
  border: 1px solid var(--lp-border);
  background: #f8fafc;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
  font: inherit;
  color: var(--lp-text);
}

.lp-trade-btn:hover {
  transform: translateY(-2px);
  background: var(--lp-surface);
}

.lp-trade-btn.is-active {
  border-color: var(--lp-slate);
  background: var(--lp-slate);
  color: #fff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.lp-trade-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.lp-trade-icon svg { width: 1.25rem; height: 1.25rem; }

.lp-trade-btn.is-active .lp-trade-icon {
  background: rgba(255, 255, 255, 0.15);
}

.lp-trade-icon-general { background: var(--lp-slate); }
.lp-trade-icon-electrical { background: #f59e0b; }
.lp-trade-icon-plumbing { background: #2563eb; }
.lp-trade-icon-hvac { background: #059669; }

.lp-trade-name {
  font-size: 1.125rem;
  font-weight: 900;
}

.lp-trade-desc {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

.lp-trade-btn.is-active .lp-trade-desc { color: #cbd5e1; }

.lp-trade-books {
  margin-top: 1rem;
  border-radius: 1.5rem;
  background: var(--lp-orange-light);
  padding: 1.25rem;
}

.lp-trade-books-inner {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.lp-trade-books-icon {
  border-radius: 1rem;
  background: var(--lp-orange);
  color: #fff;
  padding: 0.75rem;
  flex-shrink: 0;
}

.lp-trade-books-icon svg { width: 1.25rem; height: 1.25rem; }

.lp-trade-books-kicker {
  font-size: 0.875rem;
  font-weight: 700;
  color: #c2410c;
}

.lp-trade-books-text {
  margin-top: 0.25rem;
  font-weight: 900;
  color: var(--lp-text);
  line-height: 1.5;
}

/* ---------- State table ---------- */
.lp-section-white {
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-section-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .lp-section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.lp-table-wrap {
  overflow: hidden;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.lp-table-head {
  display: none;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 1rem;
  background: var(--lp-slate);
  padding: 1rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

@media (min-width: 768px) {
  .lp-table-head { display: grid; }
}

.lp-table-row {
  padding: 1.25rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-table-row:nth-child(even) { background: #f8fafc; }
.lp-table-row:nth-child(odd) { background: #fff; }
.lp-table-row:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .lp-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 1rem;
    align-items: center;
  }
}

.lp-table-state { font-weight: 900; color: var(--lp-text); }

.lp-table-trade { font-weight: 600; color: #475569; }

.lp-format-pill {
  display: inline-block;
  border-radius: 9999px;
  background: var(--lp-orange-soft);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 900;
  color: #9a3412;
}

.lp-table-books {
  margin-top: 0.75rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

@media (min-width: 768px) {
  .lp-table-books { margin-top: 0; }
}

.lp-table-mobile-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-muted);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .lp-table-mobile-label { display: none; }
}

.lp-info-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .lp-info-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-info-card {
  border-radius: 1.5rem;
  border: 1px solid var(--lp-border);
  background: #f8fafc;
  padding: 1.25rem;
}

.lp-info-card h3 {
  margin: 0;
  font-weight: 900;
}

.lp-info-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

/* ---------- Tools grid ---------- */
.lp-section-center { text-align: center; }

.lp-tools-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .lp-tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .lp-tools-grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-tool-card {
  display: block;
  border-radius: 1.75rem;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s, box-shadow 0.15s;
}

.lp-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  text-decoration: none;
  color: inherit;
}

.lp-tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: var(--lp-slate);
  color: #fff;
  margin-bottom: 1.25rem;
}

.lp-tool-icon svg { width: 1.25rem; height: 1.25rem; }

.lp-tool-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 900;
}

.lp-tool-card p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

/* ---------- Dark trust section ---------- */
.lp-section-dark {
  background: var(--lp-slate);
  color: #fff;
  padding: 5rem 0;
}

.lp-section-dark h2 {
  color: #fff;
}

.lp-section-dark .lp-section-lead {
  color: #cbd5e1;
}

.lp-trust-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  /* Opaque blend of 10% white on --lp-slate */
  background: #272e3f;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lp-orange-light);
}

.lp-trust-label svg { width: 0.875rem; height: 0.875rem; }

.lp-trust-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lp-trust-grid { grid-template-columns: 1fr 1fr; }
}

.lp-trust-card {
  border-radius: 1.5rem;
  border: 1px solid #2d3748;
  background: #1a2234;
  padding: 1.25rem;
}

.lp-trust-card svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--lp-orange-light);
  margin-bottom: 1rem;
}

.lp-trust-card p {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

/* ---------- Pricing ---------- */
.lp-pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .lp-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-price-card {
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.lp-price-card.is-featured {
  border-color: var(--lp-orange);
  background: var(--lp-orange-light);
}

.lp-price-plan {
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-muted);
}

.lp-price-amount {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.lp-price-desc {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

.lp-price-card .lp-btn { margin-top: 1.5rem; }

.lp-price-card.is-featured .lp-btn {
  background: var(--lp-orange);
}

.lp-price-card.is-featured .lp-btn:hover {
  background: var(--lp-orange-dark);
}

/* ---------- Email + FAQ ---------- */
.lp-email-wrap {
  max-width: 40rem;
  margin: 0 auto;
}

.lp-email-wrap .email-capture {
  border-radius: var(--lp-radius-xl);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.lp-email-wrap .ec-eyebrow { color: #c2410c; }

.lp-faq { max-width: 48rem; margin: 2.5rem auto 0; }

.lp-faq .lp-faq-item,
.lp-faq .faq-item {
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  padding: 0 1rem;
}

.lp-faq summary {
  cursor: pointer;
  font-weight: 800;
  padding: 1rem 0;
  list-style: none;
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq-body {
  padding-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-faq-body p { margin: 0; }

/* ---------- Persona cards ---------- */
.lp-persona-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .lp-persona-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .lp-persona-grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-persona-card {
  display: flex;
  flex-direction: column;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 1.125rem;
  padding: 1.375rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-persona-card:hover {
  transform: translateY(-3px);
  border-color: var(--lp-orange);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.14);
  text-decoration: none;
}

.lp-persona-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-orange-dark);
  background: var(--lp-orange-light);
  border: 1px solid #fed7aa;
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.lp-persona-card h3 {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 0.375rem;
}

.lp-persona-state {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--lp-muted);
  margin-bottom: 0.75rem;
}

.lp-persona-card p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.lp-persona-cta {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--lp-orange-dark);
}

.lp-persona-card:hover .lp-persona-cta { color: var(--lp-orange); }

/* ---------- Final CTA band ---------- */
.lp-cta-band {
  background: linear-gradient(135deg, var(--lp-slate), #1e293b);
  color: #fff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem auto 0;
  max-width: 67.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

body.landing-v2 .lp-cta-band h2 {
  color: #fff;
  font-size: clamp(1.625rem, 4vw, 2.375rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.lp-cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 38.75rem;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.lp-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.lp-cta-band .lp-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.lp-cta-band .lp-btn-outline:hover {
  /* Opaque blend of 8% white on --lp-slate (gradient band) */
  background: #22293a;
  color: #fff;
  border-color: #cbd5e1;
}

.lp-footer-partner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}

.lp-footer-partner a {
  color: var(--lp-muted);
  font-weight: 600;
  text-decoration: none;
}

.lp-footer-partner a:hover { color: var(--lp-orange); }

/* ---------- Footer ---------- */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  background: var(--lp-surface);
  padding: 2.5rem 0;
}

.lp-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .lp-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.lp-footer-title {
  font-size: 1.125rem;
  font-weight: 900;
}

.lp-footer-sub {
  font-size: 0.875rem;
  color: var(--lp-muted);
}

.lp-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lp-footer-link {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--lp-muted);
}

.lp-footer-link a {
  font-weight: 700;
  color: var(--lp-text);
}

/* ---------- Mobile sticky CTA ---------- */
.lp-sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--lp-border);
  gap: 0.5rem;
}

.lp-sticky-cta .lp-btn { flex: 1; font-size: 0.8125rem; padding: 0.75rem 1rem; }

@media (min-width: 768px) {
  .lp-sticky-cta { display: none; }
}
