@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   AESTHETIC: Editorial — Classic & Trust-building
   LP ID: bgpost-lp-1b8135c2
   Brand: aesthetic-med-finance (inherits gold & navy)
   ============================================================ */

.bgpost-lp-1b8135c2 {
  --lp-display-font: var(--brand-font-display, 'Heebo', system-ui, -apple-system, sans-serif);
  --lp-body-font: var(--brand-font-body, 'Assistant', system-ui, sans-serif);
  
  --lp-primary: var(--brand-navy, #091a36);
  --lp-primary-light: var(--brand-navy-light, #15294a);
  --lp-accent: var(--brand-gold, #c5a880);
  --lp-accent-dark: var(--brand-gold-dark, #b3946a);
  --lp-accent-soft: var(--brand-gold-soft, #fbf6ee);
  --lp-bg: var(--brand-bg, #fdfbf7);
  --lp-on-bg: var(--brand-on-bg, #0f172a);
  --lp-border: var(--brand-border, #e8e3d9);
  --lp-text-muted: var(--brand-text-muted, #64748b);
  
  --lp-radius-card: var(--brand-radius-lg, 24px);
  --lp-radius-input: var(--brand-radius-md, 12px);
  --lp-radius-btn: var(--brand-radius-pill, 999px);
  
  --lp-shadow-soft: var(--brand-shadow, 0 10px 30px -15px rgba(9, 26, 54, 0.1));
  --lp-shadow-hover: var(--brand-shadow-hover, 0 20px 40px -20px rgba(9, 26, 54, 0.2));
  
  /* Layout Spacing */
  --lp-section-padding: clamp(60px, 8vw, 100px);
}

/* Base resets & font application inside container */
.bgpost-container.bgpost-lp-1b8135c2 {
  font-family: var(--lp-body-font);
  background-color: var(--lp-bg);
  color: var(--lp-on-bg);
  overflow-x: clip;
}

/* Typographic defaults inside the LP */
.bgpost-lp-1b8135c2 h1,
.bgpost-lp-1b8135c2 h2,
.bgpost-lp-1b8135c2 h3,
.bgpost-lp-1b8135c2 h4 {
  font-family: var(--lp-display-font);
  color: var(--lp-primary);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.bgpost-lp-1b8135c2 p {
  font-family: var(--lp-body-font);
  color: var(--lp-on-bg);
  margin: 0;
}

/* Utility container layout */
.bgpost-lp-1b8135c2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   PRIMITIVE: ms-ambient-canvas
   ============================================================ */
.ms-ambient-host {
  position: relative;
  isolation: isolate;
  background-color: var(--lp-bg);
}

.ms-ambient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.65;
}

.ms-ambient-host > :not(.ms-ambient) {
  position: relative;
  z-index: 1;
}

/* ============================================================
   HERO & HERO GRID
   ============================================================ */
.bgpost-lp-1b8135c2-hero-wrapper {
  border-bottom: 1px solid var(--lp-border);
  overflow: hidden;
}

.bgpost-lp-1b8135c2-hero {
  padding-block-start: clamp(24px, 4vw, 48px);
  padding-block-end: clamp(48px, 6vw, 80px);
}

.bgpost-lp-1b8135c2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .bgpost-lp-1b8135c2-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Hero Content Area */
.bgpost-lp-1b8135c2-hero__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
  text-align: start;
}

/* Editorial Split Layout for copy + elegant portrait */
.bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-hero__text-and-portrait-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-hero__portrait-wrapper {
  display: flex;
  justify-content: center;
}

.bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-hero__portrait-frame {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--lp-accent);
  box-shadow: var(--lp-shadow-soft);
  position: relative;
  background-color: var(--lp-accent-soft);
}

.bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-hero__portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--lp-accent);
  border-radius: 16px;
  margin: 6px;
  pointer-events: none;
  opacity: 0.35;
}

.bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-hero__portrait-frame:hover .bgpost-lp-1b8135c2-hero__portrait-img {
  transform: scale(1.06);
}

@media (min-width: 640px) {
  .bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-hero__text-and-portrait-grid {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: clamp(24px, 3vw, 36px);
    align-items: center;
  }

  .bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-hero__portrait-wrapper {
    justify-content: flex-end;
  }
}

.bgpost-lp-1b8135c2-hero__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--lp-display-font);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 700;
  color: var(--lp-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--lp-accent-soft);
  padding: 6px 16px;
  border-radius: var(--lp-radius-btn);
  border: 1px solid var(--lp-border);
}

.bgpost-lp-1b8135c2-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--lp-primary);
}

.bgpost-lp-1b8135c2-hero__title span.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: lp-word-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bgpost-lp-1b8135c2-hero__title span.hero-word:nth-child(1) { animation-delay: 50ms; }
.bgpost-lp-1b8135c2-hero__title span.hero-word:nth-child(2) { animation-delay: 120ms; }
.bgpost-lp-1b8135c2-hero__title span.hero-word:nth-child(3) { animation-delay: 190ms; }
.bgpost-lp-1b8135c2-hero__title span.hero-word:nth-child(4) { animation-delay: 260ms; }
.bgpost-lp-1b8135c2-hero__title span.hero-word:nth-child(5) { animation-delay: 330ms; }
.bgpost-lp-1b8135c2-hero__title span.hero-word:nth-child(6) { animation-delay: 400ms; }
.bgpost-lp-1b8135c2-hero__title span.hero-word:nth-child(7) { animation-delay: 470ms; }

@keyframes lp-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bgpost-lp-1b8135c2-hero__lede {
  font-family: var(--lp-display-font);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--lp-primary-light);
  line-height: 1.4;
  border-right: 4px solid var(--lp-accent);
  padding-right: 16px;
}

.bgpost-lp-1b8135c2-hero__text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--lp-on-bg);
  line-height: 1.6;
  opacity: 0.9;
}

.bgpost-lp-1b8135c2-hero__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 24px);
  margin-top: 10px;
  border-top: 1px dashed var(--lp-border);
  padding-top: clamp(16px, 3vw, 24px);
}

.bgpost-lp-1b8135c2-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-primary);
}

.bgpost-lp-1b8135c2-hero__trust-item .bgpost-icon {
  color: var(--lp-accent-dark);
}

/* ============================================================
   HIGH CONVERTING LEAD FORM
   ============================================================ */
.bgpost-lp-1b8135c2-hero__form-container {
  width: 100%;
}

.bgpost-lp-1b8135c2-form-card {
  background-color: var(--brand-white, #ffffff);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-card);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--lp-shadow-soft);
  border-top: 5px solid var(--lp-accent);
  position: relative;
}

.bgpost-lp-1b8135c2-form-card__title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--lp-primary);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
}

.bgpost-lp-1b8135c2-leadform {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bgpost-lp-1b8135c2-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bgpost-lp-1b8135c2-field-label {
  font-family: var(--lp-display-font);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lp-primary);
}

.bgpost-lp-1b8135c2 input.bgpost-lp-1b8135c2-input,
.bgpost-lp-1b8135c2 select.bgpost-lp-1b8135c2-select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  font-family: var(--lp-body-font);
  font-size: 1rem;
  color: var(--lp-on-bg);
  background-color: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-input);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bgpost-lp-1b8135c2 input.bgpost-lp-1b8135c2-input:focus,
.bgpost-lp-1b8135c2 select.bgpost-lp-1b8135c2-select:focus {
  outline: none;
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
  background-color: var(--brand-white);
}

/* Interactive Treatment Pills Selection */
.bgpost-lp-1b8135c2-treatment-group {
  display: flex;
  gap: clamp(8px, 1.5vw, 12px);
  width: 100%;
}

.bgpost-lp-1b8135c2 button.bgpost-lp-1b8135c2-treatment-pill {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: clamp(10px, 1.5vw, 12px) 10px;
  background-color: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-input);
  font-family: var(--lp-display-font);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lp-primary);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.bgpost-lp-1b8135c2 button.bgpost-lp-1b8135c2-treatment-pill:hover {
  background-color: var(--lp-accent-soft);
  border-color: var(--lp-accent);
  transform: translateY(-2px);
}

.bgpost-lp-1b8135c2 button.bgpost-lp-1b8135c2-treatment-pill[aria-pressed="true"] {
  background-color: var(--lp-primary);
  color: var(--brand-white, #ffffff);
  border-color: var(--lp-primary);
  box-shadow: 0 4px 12px rgba(9, 26, 54, 0.15);
}

.bgpost-lp-1b8135c2 button.bgpost-lp-1b8135c2-treatment-pill[aria-pressed="true"] .bgpost-icon {
  color: var(--lp-accent);
}

/* Checkbox and legal consent rules */
.bgpost-lp-1b8135c2-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  line-height: 1.5;
  margin-top: 4px;
  cursor: pointer;
}

.bgpost-lp-1b8135c2-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--lp-accent-dark);
}

.bgpost-lp-1b8135c2-consent a {
  color: var(--lp-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}

.bgpost-lp-1b8135c2-consent a:hover {
  color: var(--lp-accent-dark);
}

/* Primary Button - Hero Form Submit (Fulfills strict contrast + specificity rules) */
.bgpost-lp-1b8135c2 button.bgpost-lp-1b8135c2-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 16px 32px;
  background-color: var(--lp-primary);
  color: #ffffff !important;
  font-family: var(--lp-display-font);
  font-weight: 800;
  font-size: 1.15rem;
  border: 2px solid var(--lp-primary);
  border-radius: var(--lp-radius-btn);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(9, 26, 54, 0.25);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.bgpost-lp-1b8135c2 button.bgpost-lp-1b8135c2-submit-btn:hover {
  background-color: var(--lp-accent);
  border-color: var(--lp-accent);
  color: var(--lp-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 168, 128, 0.3);
}

.bgpost-lp-1b8135c2 button.bgpost-lp-1b8135c2-submit-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Lead Status Area Styles */
.bgpost-lp-1b8135c2-leadform-status {
  padding: 10px 16px;
  border-radius: var(--lp-radius-input);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.bgpost-lp-1b8135c2-leadform-status.is-success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.bgpost-lp-1b8135c2-leadform-status.is-error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ============================================================
   TRUST STATS BAR
   ============================================================ */
.bgpost-lp-1b8135c2-trust-bar {
  background-color: var(--lp-primary);
  color: var(--brand-white, #ffffff);
  border-block: 1px solid var(--lp-accent);
  padding-block: clamp(32px, 5vw, 48px);
}

.bgpost-lp-1b8135c2-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  text-align: center;
}

@media (min-width: 576px) {
  .bgpost-lp-1b8135c2-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bgpost-lp-1b8135c2-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bgpost-lp-1b8135c2-trust-number {
  font-family: var(--lp-display-font);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--lp-accent);
  line-height: 1;
  letter-spacing: -0.01em;
}

.bgpost-lp-1b8135c2-trust-label {
  font-family: var(--lp-display-font);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   FEATURES (BENEFITS GRID) — Uniform equal-height contract
   ============================================================ */
.bgpost-lp-1b8135c2-features {
  padding-block: var(--lp-section-padding);
  background-color: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
}

.bgpost-lp-1b8135c2-features-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(32px, 5vw, 56px) auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bgpost-lp-1b8135c2-kicker {
  font-family: var(--lp-display-font);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 700;
  color: var(--lp-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bgpost-lp-1b8135c2-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--lp-primary);
  font-weight: 800;
}

.bgpost-lp-1b8135c2-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}

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

/* Benefit Card — Equal height contract */
.bgpost-lp-1b8135c2-benefit-card {
  display: flex;
  flex-direction: column;
  background-color: var(--brand-white, #ffffff);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-card);
  padding: clamp(24px, 4vw, 36px);
  min-height: 100%;
  box-sizing: border-box;
  box-shadow: var(--lp-shadow-soft);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bgpost-lp-1b8135c2-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background-color: var(--lp-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bgpost-lp-1b8135c2-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-hover);
}

.bgpost-lp-1b8135c2-benefit-card:hover::before {
  transform: scaleX(1);
}

.bgpost-lp-1b8135c2-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: var(--lp-accent-soft);
  color: var(--lp-accent-dark);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: background-color 0.25s;
}

.bgpost-lp-1b8135c2-benefit-card:hover .bgpost-lp-1b8135c2-benefit-icon {
  background-color: var(--lp-primary);
  color: var(--brand-white, #ffffff);
}

.bgpost-lp-1b8135c2-benefit-title {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--lp-primary);
  margin-bottom: 12px;
}

.bgpost-lp-1b8135c2-benefit-body {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--lp-on-bg);
  opacity: 0.85;
  line-height: 1.6;
}

/* Benefit Text CTA (Inline link button with gold line and animation) */
.bgpost-lp-1b8135c2 a.bgpost-lp-1b8135c2-benefit-cta {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lp-display-font);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--lp-accent-dark) !important;
  text-decoration: none;
  transition: all 0.25s ease;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}

.bgpost-lp-1b8135c2 a.bgpost-lp-1b8135c2-benefit-cta::after {
  content: '←';
  display: inline-block;
  transition: transform 0.2s ease;
}

.bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-benefit-card:hover a.bgpost-lp-1b8135c2-benefit-cta {
  color: var(--lp-primary) !important;
  border-bottom-color: var(--lp-accent);
}

.bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-benefit-card:hover a.bgpost-lp-1b8135c2-benefit-cta::after {
  transform: translateX(-4px);
}

/* ============================================================
   EXPERTS SPLIT BANNER
   ============================================================ */
.bgpost-lp-1b8135c2-experts-banner {
  background-color: var(--brand-white, #ffffff);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-card);
  padding: clamp(24px, 4vw, 56px);
  box-shadow: var(--lp-shadow-soft);
  margin-block-start: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.bgpost-lp-1b8135c2-experts-banner__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 48px);
  align-items: center;
}

@media (min-width: 992px) {
  .bgpost-lp-1b8135c2-experts-banner__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.bgpost-lp-1b8135c2-experts-banner__image-frame {
  border-radius: var(--lp-radius-card);
  overflow: hidden;
  box-shadow: var(--lp-shadow-soft);
  border: 1px solid var(--lp-border);
  position: relative;
  aspect-ratio: 3 / 2;
}

.bgpost-lp-1b8135c2-experts-banner__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--lp-accent);
  border-radius: var(--lp-radius-card);
  margin: 12px;
  pointer-events: none;
  opacity: 0.5;
}

.bgpost-lp-1b8135c2-experts-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bgpost-lp-1b8135c2-experts-banner__content-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: start;
}

.bgpost-lp-1b8135c2-experts-banner__title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--lp-primary);
  font-weight: 800;
  line-height: 1.3;
}

.bgpost-lp-1b8135c2-experts-banner__text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--lp-on-bg);
  line-height: 1.6;
  opacity: 0.9;
}

.bgpost-lp-1b8135c2-experts-banner__subtext {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

.bgpost-lp-1b8135c2-experts-banner__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-block-start: 8px;
  border-top: 1px dashed var(--lp-border);
  padding-block-start: 16px;
}

.bgpost-lp-1b8135c2-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-primary);
}

.bgpost-lp-1b8135c2-badge-item .bgpost-icon {
  color: var(--lp-accent-dark);
}

/* ============================================================
   HOW IT WORKS TIMELINE SECTION
   ============================================================ */
.bgpost-lp-1b8135c2-timeline {
  padding-block: var(--lp-section-padding);
  background-color: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
}

.bgpost-lp-1b8135c2-timeline-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 48px);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bgpost-lp-1b8135c2-timeline-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 40px);
  }
  
  .bgpost-lp-1b8135c2-timeline-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 10%;
    left: 10%;
    height: 2px;
    background-color: var(--lp-border);
    z-index: 0;
  }
}

.bgpost-lp-1b8135c2-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.bgpost-lp-1b8135c2-step-num {
  width: 50px;
  height: 50px;
  border-radius: var(--lp-radius-btn);
  background-color: var(--brand-white, #ffffff);
  border: 2px solid var(--lp-accent);
  color: var(--lp-primary);
  display: grid;
  place-items: center;
  font-family: var(--lp-display-font);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--lp-shadow-soft);
  transition: background-color 0.25s, color 0.25s, transform 0.25s;
}

.bgpost-lp-1b8135c2-step:hover .bgpost-lp-1b8135c2-step-num {
  background-color: var(--lp-accent);
  color: var(--brand-white, #ffffff);
  transform: scale(1.1);
}

.bgpost-lp-1b8135c2-step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bgpost-lp-1b8135c2-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-primary);
}

.bgpost-lp-1b8135c2-step-desc {
  font-size: 0.95rem;
  color: var(--lp-on-bg);
  opacity: 0.8;
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS (MASONRY BLOCKS)
   ============================================================ */
.bgpost-lp-1b8135c2-testimonials {
  padding-block: var(--lp-section-padding);
  background-color: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
}

.bgpost-lp-1b8135c2-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}

@media (min-width: 768px) {
  .bgpost-lp-1b8135c2-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.bgpost-lp-1b8135c2-testimonial-card {
  background-color: var(--brand-white, #ffffff);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-card);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--lp-shadow-soft);
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bgpost-lp-1b8135c2-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-hover);
}

.bgpost-lp-1b8135c2-testimonial-quote {
  font-family: var(--lp-display-font);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--lp-accent);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  right: 20px;
  pointer-events: none;
}

.bgpost-lp-1b8135c2-testimonial-text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-style: italic;
  color: var(--lp-primary-light);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.bgpost-lp-1b8135c2-testimonial-author {
  border-top: 1px solid var(--lp-border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bgpost-lp-1b8135c2-author-name {
  font-family: var(--lp-display-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-primary);
}

.bgpost-lp-1b8135c2-author-meta {
  font-size: 0.85rem;
  color: var(--lp-text-muted);
}

/* ============================================================
   FAQ ACCORDION & RESET COMPLIANCE
   ============================================================ */
.bgpost-lp-1b8135c2-faq {
  padding-block: var(--lp-section-padding);
  background-color: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
}

.bgpost-lp-1b8135c2-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bgpost-lp-1b8135c2 .bgpost-faq-item {
  background-color: var(--brand-white, #ffffff);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-input);
  overflow: hidden;
  box-shadow: var(--lp-shadow-soft);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.bgpost-lp-1b8135c2 .bgpost-faq-item:hover {
  border-color: var(--lp-accent);
  box-shadow: 0 8px 24px rgba(9, 26, 54, 0.06);
}

.bgpost-lp-1b8135c2 button.bgpost-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: 0;
  padding: clamp(16px, 3vw, 24px);
  text-align: start;
  cursor: pointer;
  transition: background-color 0.25s;
}

.bgpost-lp-1b8135c2 button.bgpost-faq-question:hover {
  background-color: var(--lp-accent-soft);
}

.bgpost-lp-1b8135c2 button.bgpost-faq-question:focus-visible {
  outline: 2px solid var(--lp-accent-dark);
  outline-offset: -2px;
}

.bgpost-lp-1b8135c2 .bgpost-faq-question-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--lp-primary);
  line-height: 1.4;
}

.bgpost-lp-1b8135c2 .bgpost-faq-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-accent-dark);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.bgpost-lp-1b8135c2 button.bgpost-faq-question[aria-expanded="true"] {
  background-color: var(--lp-accent-soft);
  border-bottom: 1px solid var(--lp-border);
}

.bgpost-lp-1b8135c2 [data-bgpost-accordion-panel] {
  padding: clamp(16px, 3vw, 24px);
  border-top: 1px solid var(--lp-border);
  background-color: rgba(253, 251, 247, 0.4);
}

.bgpost-lp-1b8135c2 [data-bgpost-accordion-panel] p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--lp-on-bg);
  opacity: 0.9;
  line-height: 1.6;
}

/* ============================================================
   FINAL CLOSED CTA BAND
   ============================================================ */
.bgpost-lp-1b8135c2-finalcta {
  background-color: var(--lp-primary);
  color: var(--brand-white, #ffffff);
  border-top: 3px solid var(--lp-accent);
  padding-block: clamp(64px, 10vw, 110px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bgpost-lp-1b8135c2-finalcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(197, 168, 128, 0.12) 0%, rgba(9, 26, 54, 0) 70%);
  pointer-events: none;
}

.bgpost-lp-1b8135c2-final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bgpost-lp-1b8135c2-final-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brand-white, #ffffff);
  font-weight: 800;
  line-height: 1.2;
}

.bgpost-lp-1b8135c2-final-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 12px;
}

.bgpost-lp-1b8135c2-final-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Final CTA Button - Fulfills strict contrast, readability + hover requirements */
.bgpost-lp-1b8135c2 a.bgpost-lp-1b8135c2-final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background-color: var(--lp-accent);
  color: var(--lp-primary) !important;
  font-family: var(--lp-display-font);
  font-weight: 800;
  font-size: 1.15rem;
  border: 2px solid var(--lp-accent);
  border-radius: var(--lp-radius-btn);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.25);
  text-decoration: none;
}

.bgpost-lp-1b8135c2 a.bgpost-lp-1b8135c2-final-cta-btn:hover {
  background-color: transparent;
  color: #ffffff !important;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.bgpost-lp-1b8135c2 a.bgpost-lp-1b8135c2-final-cta-btn:active {
  transform: translateY(0);
}

/* High specificity color override for finalcta dark background readability */
.bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-finalcta h2.bgpost-lp-1b8135c2-final-title {
  color: #ffffff !important;
}
.bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-finalcta p.bgpost-lp-1b8135c2-final-desc {
  color: #f1ebd9 !important;
}

/* ============================================================
   ACCESSIBILITY & MOTION SAFEGUARDS
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .bgpost-lp-1b8135c2 *,
  .bgpost-lp-1b8135c2 *::before,
  .bgpost-lp-1b8135c2 *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .bgpost-lp-1b8135c2-hero__title span.hero-word {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* BOT: Add safe mobile responsiveness refinements (stack treatment pills, optimize card padding, and align trust strip on small mobile viewports) — 2026-06-09T14:22:33+00:00 */
/* ============================================================
   MOBILE RESPONSIVENESS REFINEMENTS (Safe additions)
   ============================================================ */
@media (max-width: 480px) {
  /* Prevent squishing of treatment selection pills on small screens */
  .bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-treatment-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .bgpost-lp-1b8135c2 button.bgpost-lp-1b8135c2-treatment-pill {
    width: 100%;
    justify-content: flex-start; /* Align icon and text to start for better reading flow */
    padding: 14px 16px;
    font-size: 1rem;
    min-height: 48px; /* Ensures great touch target size */
  }

  /* Maximize usable viewport width on mobile inside the form card */
  .bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-form-card {
    padding: 24px 16px;
  }

  /* Compact spacing for trust items under hero */
  .bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-hero__trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Adjust line heights of title on ultra-small screens */
  .bgpost-lp-1b8135c2 .bgpost-lp-1b8135c2-hero__title {
    line-height: 1.15;
  }
}
/* /BOT */