/* Columbia Publication — Landing Page Styles (lp.css)
   Upload to: /assets/css/lp.css
   All classes prefixed lp- to avoid collisions with site CSS. */

/* ─── Reset & Variables ─────────────────────────────────── */
:root {
  --lp-navy:       #1E3A5F;
  --lp-navy-dark:  #0F2035;
  --lp-gold:       #C6A85A;
  --lp-gold-text:  #7B5E00;
  --lp-ivory:      #FAF7F2;
  --lp-white:      #ffffff;
  --lp-text:       #1A1A1A;
  --lp-text-mid:   #444444;
  --lp-border:     #D9D0C4;
  --lp-success:    #2A7A3A;
  --lp-warn:       #B24C00;
  --ff-h:          'Playfair Display', Georgia, serif;
  --ff-b:          'Poppins', system-ui, -apple-system, sans-serif;
  --lp-max:        1100px;
  --lp-r:          8px;
  --lp-r-lg:       16px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.lp-page {
  font-family: var(--ff-b);
  font-size: 16px;
  color: var(--lp-text);
  background: var(--lp-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.lp-container {
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Top Bar ────────────────────────────────────────────── */
.lp-topbar {
  background: var(--lp-navy);
  padding: 14px 20px;
}
.lp-topbar-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lp-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--lp-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-navy);
  flex-shrink: 0;
}
.lp-logo-text {
  font-family: var(--ff-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-white);
  line-height: 1.2;
}
.lp-logo-text span {
  display: block;
  font-family: var(--ff-b);
  font-size: 10px;
  font-weight: 400;
  color: var(--lp-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-topbar-phone {
  color: var(--lp-gold);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.lp-topbar-phone:hover { color: var(--lp-white); }

/* ─── HERO ───────────────────────────────────────────────── */
.lp-hero {
  background: linear-gradient(135deg, var(--lp-navy) 0%, #163050 100%);
  padding: 56px 20px 48px;
}
.lp-hero-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .lp-hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
  }
}
.lp-hero h1 {
  font-family: var(--ff-h);
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 700;
  color: var(--lp-white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.lp-hero h1 em {
  color: var(--lp-gold);
  font-style: normal;
}
.lp-hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
  line-height: 1.5;
}
.lp-micro-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,168,90,0.18);
  border: 1px solid rgba(198,168,90,0.4);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: 14px;
  color: var(--lp-gold);
  margin-bottom: 28px;
}
.lp-micro-proof::before_DISABLED {
  content: '★';
  font-size: 13px;
}
.lp-cta-btn {
  display: inline-block;
  background: var(--lp-gold);
  color: var(--lp-navy);
  font-family: var(--ff-b);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--lp-r);
  min-height: 54px;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
  width: 100%;
}
.lp-cta-btn:hover { background: #d4b464; transform: translateY(-1px); }
.lp-cta-micro {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  text-align: left;
}
.lp-final-cta .lp-cta-micro {
  text-align: center;
}

/* Hero form card */
.lp-hero-form {
  background: var(--lp-white);
  border-radius: var(--lp-r-lg);
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.lp-hero-form h3 {
  font-family: var(--ff-h);
  font-size: 22px;
  color: var(--lp-navy);
  margin-bottom: 8px;
}
.lp-hero-form p {
  font-size: 14px;
  color: var(--lp-text-mid);
  margin-bottom: 20px;
}
.lp-form-field {
  margin-bottom: 14px;
}
.lp-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-navy);
  margin-bottom: 5px;
}
.lp-form-field input,
.lp-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--lp-border);
  border-radius: var(--lp-r);
  font-family: var(--ff-b);
  font-size: 15px;
  color: var(--lp-text);
  background: var(--lp-white);
  transition: border-color 0.2s;
}
.lp-form-field input:focus,
.lp-form-field textarea:focus {
  outline: none;
  border-color: var(--lp-navy);
}
.lp-form-field textarea { resize: vertical; min-height: 80px; }
.lp-form-submit {
  width: 100%;
  background: var(--lp-navy);
  color: var(--lp-white);
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: var(--lp-r);
  cursor: pointer;
  min-height: 50px;
  transition: background 0.2s;
}
.lp-form-submit:hover { background: #163050; }
.lp-form-note {
  font-size: 12px;
  color: var(--lp-text-mid);
  margin-top: 10px;
  text-align: center;
}

/* ─── Section Base ───────────────────────────────────────── */
.lp-section {
  padding: 64px 20px;
}
.lp-section-alt {
  background: var(--lp-ivory);
}
.lp-section-dark {
  background: var(--lp-navy);
}
.lp-section-dark .lp-section-title,
.lp-section-dark h2 { color: var(--lp-white); }
.lp-section-dark p { color: rgba(255,255,255,0.82); }

.lp-section-title {
  font-family: var(--ff-h);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--lp-navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.lp-section-sub {
  font-size: 17px;
  color: var(--lp-text-mid);
  margin-bottom: 36px;
  max-width: 680px;
}
.lp-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-gold-text);
  margin-bottom: 10px;
}
.lp-section-dark .lp-eyebrow { color: var(--lp-gold); }

/* ─── Trust Bar ──────────────────────────────────────────── */
.lp-trust-bar {
  background: var(--lp-white);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 28px 20px;
}
.lp-trust-bar-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: center;
}
.lp-trust-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-text-mid);
  margin-bottom: 16px;
}
.lp-platform-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 24px;
}
.lp-platform {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text-mid);
  white-space: nowrap;
}
.lp-platform-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.lp-platform-amazon .lp-platform-icon  { background: #FF9900; color: #111; }
.lp-platform-bn .lp-platform-icon      { background: #1C4E2E; color: #fff; }
.lp-platform-apple .lp-platform-icon   { background: #333; color: #fff; }
.lp-platform-kobo .lp-platform-icon    { background: #E61916; color: #fff; }
.lp-platform-ingram .lp-platform-icon  { background: #003366; color: #fff; }
.lp-trust-tagline {
  font-size: 13px;
  color: var(--lp-text-mid);
  margin-top: 16px;
}

/* ─── Stakes ─────────────────────────────────────────────── */
.lp-stakes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
.lp-stake-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-left: 4px solid var(--lp-warn);
  border-radius: var(--lp-r);
  padding: 22px 20px;
}
.lp-stake-card h3 {
  font-family: var(--ff-h);
  font-size: 18px;
  color: var(--lp-warn);
  margin-bottom: 8px;
}
.lp-stake-card p {
  font-size: 15px;
  color: var(--lp-text-mid);
  line-height: 1.6;
}

/* ─── Contrast Table ─────────────────────────────────────── */
.lp-contrast-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 32px;
}
.lp-contrast-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 520px;
}
.lp-contrast-table th {
  font-family: var(--ff-h);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--lp-border);
}
.lp-contrast-table th:first-child { color: var(--lp-text-mid); }
.lp-contrast-table th:nth-child(2) { color: var(--lp-warn); }
.lp-contrast-table th:last-child {
  background: var(--lp-navy);
  color: var(--lp-gold);
  border-radius: 6px 6px 0 0;
}
.lp-contrast-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--lp-border);
  color: var(--lp-text);
  vertical-align: top;
}
.lp-contrast-table td:nth-child(2) { color: var(--lp-text-mid); }
.lp-contrast-table td:last-child {
  background: rgba(30,58,95,0.04);
  font-weight: 600;
  color: var(--lp-navy);
}
.lp-contrast-table tr:last-child td:last-child { border-radius: 0 0 6px 0; }
.lp-check { color: var(--lp-success); font-weight: 700; margin-right: 4px; }
.lp-cross { color: var(--lp-warn); margin-right: 4px; }

/* Mobile: stacked cards */
.lp-contrast-cards { display: none; }
.lp-contrast-card {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r);
  overflow: hidden;
  margin-bottom: 12px;
}
.lp-cc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--lp-border);
}
.lp-cc-header-them {
  padding: 10px 14px;
  background: rgba(178,76,0,0.06);
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-warn);
  border-right: 1px solid var(--lp-border);
}
.lp-cc-header-us {
  padding: 10px 14px;
  background: var(--lp-navy);
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-gold);
}
.lp-cc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--lp-border);
}
.lp-cc-row:last-child { border-bottom: none; }
.lp-cc-label {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-text-mid);
  background: rgba(250,247,242,0.6);
  grid-column: 1/-1;
  border-bottom: 1px solid var(--lp-border);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-cc-them {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--lp-text-mid);
  border-right: 1px solid var(--lp-border);
}
.lp-cc-us {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-navy);
  background: rgba(30,58,95,0.04);
}

/* ─── Deliverables ───────────────────────────────────────── */
.lp-deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
.lp-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r);
  padding: 18px 20px;
}
.lp-del-icon {
  width: 36px;
  height: 36px;
  background: var(--lp-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-del-body h4 {
  font-family: var(--ff-h);
  font-size: 17px;
  color: var(--lp-navy);
  margin-bottom: 4px;
}
.lp-del-body p {
  font-size: 14px;
  color: var(--lp-text-mid);
  line-height: 1.5;
}

/* ─── Proof / Case Study ─────────────────────────────────── */
.lp-proof-block {
  background: var(--lp-navy);
  border-radius: var(--lp-r-lg);
  padding: 36px 32px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.lp-proof-block::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: var(--ff-h);
  font-size: 180px;
  color: rgba(198,168,90,0.12);
  line-height: 1;
  pointer-events: none;
}
.lp-proof-quote {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--lp-white);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.lp-proof-attr {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-proof-avatar {
  width: 48px;
  height: 48px;
  background: var(--lp-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-navy);
  flex-shrink: 0;
}
.lp-proof-name {
  font-weight: 700;
  color: var(--lp-gold);
  font-size: 16px;
}
.lp-proof-name span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.lp-featured-in {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.lp-fi-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 4px;
}
.lp-fi-badge {
  background: rgba(198,168,90,0.15);
  border: 1px solid rgba(198,168,90,0.3);
  color: var(--lp-gold);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── Transformation Block ───────────────────────────────── */
.lp-transform {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-lg);
  overflow: hidden;
}
.lp-transform-before,
.lp-transform-after {
  padding: 28px 24px;
}
.lp-transform-before {
  background: #FFF5F0;
  border-bottom: 1px solid var(--lp-border);
}
.lp-transform-after {
  background: rgba(42,122,58,0.06);
}
.lp-transform-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lp-transform-before .lp-transform-label { color: var(--lp-warn); }
.lp-transform-after .lp-transform-label  { color: var(--lp-success); }
.lp-transform-before h3,
.lp-transform-after h3 {
  font-family: var(--ff-h);
  font-size: 20px;
  margin-bottom: 8px;
}
.lp-transform-before h3 { color: var(--lp-warn); }
.lp-transform-after h3  { color: var(--lp-success); }
.lp-transform-before p,
.lp-transform-after p { font-size: 15px; color: var(--lp-text-mid); }

/* ─── Pricing ────────────────────────────────────────────── */
.lp-pricing-card {
  background: var(--lp-white);
  border: 2px solid var(--lp-navy);
  border-radius: var(--lp-r-lg);
  overflow: hidden;
  max-width: 640px;
  margin: 32px auto 0;
}
.lp-pricing-header {
  background: var(--lp-navy);
  padding: 24px 28px;
  text-align: center;
}
.lp-pricing-header h3 {
  font-family: var(--ff-h);
  font-size: 24px;
  color: var(--lp-white);
  margin-bottom: 4px;
}
.lp-pricing-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.lp-price-range {
  font-family: var(--ff-h);
  font-size: clamp(28px, 5vw, 42px);
  color: var(--lp-gold);
  margin: 8px 0 4px;
}
.lp-price-qualifier {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.lp-pricing-body {
  padding: 28px;
}
.lp-pricing-items {
  list-style: none;
  margin-bottom: 24px;
}
.lp-pricing-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--lp-border);
  font-size: 15px;
  color: var(--lp-text);
}
.lp-pricing-items li:last-child { border-bottom: none; }
.lp-pricing-items li::before {
  content: '✓';
  color: var(--lp-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-guarantee-box {
  background: rgba(42,122,58,0.08);
  border: 1px solid rgba(42,122,58,0.25);
  border-radius: var(--lp-r);
  padding: 16px 18px;
  font-size: 14px;
  color: #1d5c2a;
  margin-top: 20px;
}
.lp-guarantee-box strong { display: block; margin-bottom: 4px; }

/* ─── Objections ─────────────────────────────────────────── */
.lp-objections-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
.lp-objection {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-r);
  overflow: hidden;
}
.lp-obj-question {
  background: var(--lp-navy);
  padding: 16px 20px;
  font-family: var(--ff-h);
  font-size: 18px;
  color: var(--lp-white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-obj-question::before {
  content: '?';
  width: 28px;
  height: 28px;
  background: var(--lp-gold);
  color: var(--lp-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.lp-obj-answer {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--lp-text-mid);
  line-height: 1.6;
  background: var(--lp-white);
}

/* ─── Gia K. Quote ───────────────────────────────────────── */
.lp-gia-quote {
  background: var(--lp-ivory);
  border-left: 5px solid var(--lp-gold);
  border-radius: 0 var(--lp-r) var(--lp-r) 0;
  padding: 28px 28px 28px 32px;
  margin: 40px 0;
}
.lp-gia-quote blockquote {
  font-family: var(--ff-h);
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--lp-navy);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}
.lp-gia-attr {
  font-size: 13px;
  color: var(--lp-gold-text);
  font-weight: 600;
}

/* ─── Final CTA ──────────────────────────────────────────── */
.lp-final-cta {
  background: linear-gradient(135deg, var(--lp-navy) 0%, #163050 100%);
  padding: 72px 20px;
  text-align: center;
}
.lp-final-cta h2 {
  font-family: var(--ff-h);
  font-size: clamp(28px, 5vw, 44px);
  color: var(--lp-white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.lp-final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 32px;
}
.lp-final-cta .lp-cta-btn {
  display: inline-block;
  width: auto;
  min-width: 280px;
  font-size: 19px;
  padding: 18px 40px;
}
.lp-final-cta .lp-cta-micro {
  font-size: 14px;
}

/* ─── Trust Footer ───────────────────────────────────────── */
.lp-footer {
  background: var(--lp-navy-dark);
  padding: 28px 20px;
  text-align: center;
}
.lp-footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.lp-footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.lp-footer a:hover { color: var(--lp-gold); }

/* ─── Utility ────────────────────────────────────────────── */
.lp-text-center { text-align: center; }
.lp-text-center .lp-section-sub { margin-left: auto; margin-right: auto; }

.lp-btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--lp-gold);
  color: var(--lp-gold);
  font-family: var(--ff-b);
  font-size: 16px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--lp-r);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  min-height: 50px;
  text-align: center;
}
.lp-btn-secondary:hover { background: var(--lp-gold); color: var(--lp-navy); }

/* ─── TABLET+ (768px) ────────────────────────────────────── */
@media (min-width: 768px) {
  .lp-hero-inner {
    grid-template-columns: 1fr 420px;
    align-items: start;
  }
  .lp-cta-btn { width: auto; }
  .lp-stakes-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-objections-list { grid-template-columns: 1fr; }
  .lp-transform {
    grid-template-columns: 1fr 1fr;
  }
  .lp-transform-before { border-bottom: none; border-right: 1px solid var(--lp-border); }
}

/* ─── DESKTOP (1024px) ───────────────────────────────────── */
@media (min-width: 1024px) {
  .lp-section { padding: 80px 20px; }
  .lp-deliverables-grid { grid-template-columns: repeat(3, 1fr); }

  /* Show table, hide cards */
  .lp-contrast-wrap { display: block; }
  .lp-contrast-cards { display: none !important; }

  .lp-pricing-card { max-width: 720px; }
}

/* ─── MOBILE: hide table, show cards ────────────────────── */
@media (max-width: 767px) {
  .lp-contrast-wrap { display: none; }
  .lp-contrast-cards { display: block; }
  .lp-hero { padding: 40px 20px 36px; }
  .lp-section { padding: 48px 20px; }
  .lp-proof-block { padding: 28px 20px; }
  .lp-proof-block::before { font-size: 120px; }
}

/* ─── FORM SUCCESS ───────────────────────────────────────── */
.lp-form-success {
  text-align: center;
  padding: 20px 10px;
}
.lp-form-success h4 {
  font-family: var(--ff-h);
  font-size: 22px;
  color: var(--lp-navy);
  margin-bottom: 8px;
}
.lp-form-success p {
  font-size: 15px;
  color: var(--lp-text-mid);
}

/* CRO v2 — proof pill star, form phone, urgency, trust micro */
.lp-micro-proof::before {
  content: '★';
  color: var(--lp-gold);
  font-size: 14px;
  flex-shrink: 0;
}
.lp-proof-below {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,168,90,0.12);
  border: 1px solid rgba(198,168,90,0.3);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--lp-gold);
  margin-top: 18px;
  width: fit-content;
}
.lp-proof-below::before {
  content: '★';
  font-size: 13px;
  flex-shrink: 0;
}
.lp-form-phone {
  margin-top: 0;
}
.lp-form-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
}
.lp-form-trust::before {
  content: '🔒';
  font-size: 12px;
}
.lp-urgency-note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-align: left;
}

/* Final CTA section — force centre on all CTA elements */
.lp-final-cta .lp-cta-btn {
  display: inline-block;
  margin: 0 auto;
}
.lp-final-cta .lp-cta-micro {
  text-align: center;
  display: block;
  width: 100%;
}
.lp-final-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── LP Stat Pills (hero trust strip) ──────────────────── */
.lp-stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}
.lp-stat-pill {
  background: rgba(198,168,90,0.15);
  border: 1px solid rgba(198,168,90,0.4);
  color: #C6A85A;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Secondary CTA ──────────────────────────────────────── */
.lp-cta-secondary {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 12px;
  cursor: pointer;
}
.lp-cta-secondary:hover { color: #C6A85A; }

/* ── Mobile: hero layout + chatbot fixes ────────────────── */
@media (max-width: 767px) {
  /* Form card always full width when flex-wraps */
  .lp-hero-form {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Chatbot panel: cap height so it doesn't overflow viewport */
  #cp-panel {
    max-height: calc(100vh - 130px) !important;
  }
  /* Hide LP auto-opened panel on mobile; user must explicitly tap bubble */
  #cp-panel[data-lp-auto].cp-open {
    display: none !important;
  }
}
