/* ===== LANDING PAGE — SHARED DESIGN SYSTEM ===== */
/* Each product page sets its own --lp-* CSS variables for theming */

/* Google Fonts loaded via <link> in HTML for performance — do not use @import */

/* ── DEFAULT THEME (overridden per product) ── */
:root {
  --lp-primary: #4A6741;
  --lp-primary-light: #5C7D52;
  --lp-primary-pale: #E8EFE6;
  --lp-primary-wash: #F4F7F3;
  --lp-cream: #FDFCF9;
  --lp-warm: #F7F3ED;
  --lp-dark: #1E1E1E;
  --lp-text: #3A3A3A;
  --lp-text-light: #6B6B6B;
  --lp-gold: #C4A265;
  --lp-serif: 'Cormorant Garamond', Georgia, serif;
  --lp-sans: 'DM Sans', -apple-system, sans-serif;
  --lp-star: #F4A940;
}

.lp-page {
  font-family: var(--lp-sans);
  color: var(--lp-text);
  -webkit-font-smoothing: antialiased;
  background: var(--lp-cream);
  position: relative;
  z-index: 1;
}

/* ── HERO ── */
.lp-hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  background: linear-gradient(175deg, var(--lp-warm) 0%, var(--lp-cream) 40%, var(--lp-primary-wash) 100%);
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(74,103,65,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(196,162,101,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.lp-hero > * {
  position: relative;
  z-index: 1;
}

.lp-hero-badge {
  display: inline-block;
  font-family: var(--lp-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lp-primary);
  border: 1px solid var(--lp-primary);
  border-radius: 100px;
  padding: 8px 24px;
  margin-bottom: 40px;
  opacity: 0;
  animation: lpFadeUp 0.8s ease 0.2s forwards;
}

.lp-hero h1 {
  font-family: var(--lp-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--lp-dark);
  margin: 0 0 28px;
  opacity: 0;
  animation: lpFadeUp 0.8s ease 0.4s forwards;
}

.lp-hero h1 em {
  font-style: italic;
  color: var(--lp-primary);
}

.lp-hero-sub {
  font-family: var(--lp-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--lp-text-light);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 0 48px;
  opacity: 0;
  animation: lpFadeUp 0.8s ease 0.6s forwards;
}

.lp-hero-image {
  width: 280px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  margin-bottom: 40px;
  opacity: 0;
  animation: lpFadeUp 0.8s ease 0.3s forwards;
}

.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--lp-primary);
  color: #fff;
  font-family: var(--lp-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 18px 44px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0;
  animation: lpFadeUp 0.8s ease 0.8s forwards;
}

.lp-cta:hover {
  background: var(--lp-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.lp-cta-static {
  opacity: 1;
  animation: none;
}

.lp-hero-price {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--lp-text-light);
  opacity: 0;
  animation: lpFadeUp 0.8s ease 1s forwards;
}

.lp-hero-price strong {
  color: var(--lp-dark);
  font-size: 18px;
}

.lp-hero-price s {
  color: #999;
  font-size: 14px;
}

.lp-hero-anchor {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--lp-primary);
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0;
  animation: lpFadeUp 0.8s ease 1.1s forwards;
}

.lp-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: lpFadeUp 0.8s ease 1.2s forwards;
}

.lp-scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--lp-primary);
  margin: 0 auto;
  opacity: 0.4;
  animation: lpScrollPulse 2s ease infinite;
}

/* ── QUOTE BAND ── */
.lp-quote-band {
  padding: 80px 24px;
  text-align: center;
  background: var(--lp-primary);
  color: #fff;
}

.lp-quote-band blockquote {
  font-family: var(--lp-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

.lp-quote-band .lp-influenced {
  font-family: var(--lp-serif);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  margin-top: 32px;
  letter-spacing: 0.02em;
}

/* ── WHAT IS THIS ── */
.lp-what {
  padding: 100px 24px;
  max-width: 800px;
  margin: 0 auto;
  background: var(--lp-cream);
}

.lp-label {
  font-family: var(--lp-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-primary);
  margin-bottom: 20px;
}

.lp-what h2,
.lp-journey h2,
.lp-includes h2,
.lp-for h2,
.lp-reviews h2,
.lp-faq h2,
.lp-bundle h2,
.lp-final-cta h2 {
  font-family: var(--lp-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--lp-dark);
  line-height: 1.3;
  margin: 0 0 32px;
}

.lp-what p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--lp-text);
  margin: 0 0 20px;
  font-weight: 300;
}

.lp-what p strong {
  font-weight: 500;
  color: var(--lp-dark);
}

/* ── SOCIAL PROOF BAR ── */
.lp-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 28px 24px;
  background: var(--lp-primary-pale);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  flex-wrap: wrap;
}

.lp-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-dark);
}

.lp-proof-item .lp-stars {
  color: var(--lp-star);
  font-size: 16px;
  letter-spacing: 1px;
}

.lp-proof-item .lp-proof-num {
  font-weight: 600;
}

.lp-proof-item .lp-proof-text {
  color: var(--lp-text-light);
  font-weight: 400;
}

/* ── JOURNEY STEPS ── */
.lp-journey {
  padding: 80px 24px 100px;
  background: var(--lp-primary-wash);
}

.lp-journey-inner {
  max-width: 900px;
  margin: 0 auto;
}

.lp-journey-desc {
  text-align: center;
  color: var(--lp-text-light);
  font-size: 15px;
  font-weight: 300;
  margin: 0 0 60px;
}

.lp-steps {
  display: grid;
  gap: 0;
}

.lp-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0;
  padding-bottom: 40px;
}

.lp-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #fff;
  font-family: var(--lp-serif);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-step-line {
  width: 1px;
  flex: 1;
  background: var(--lp-primary);
  opacity: 0.25;
  margin-top: 8px;
}

.lp-step:last-child .lp-step-line {
  display: none;
}

.lp-step-content {
  padding-top: 8px;
}

.lp-step-content h3 {
  font-family: var(--lp-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--lp-dark);
  margin: 0 0 6px;
}

.lp-step-time {
  font-size: 12px;
  color: var(--lp-primary);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
}

.lp-step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-text-light);
  font-weight: 300;
  margin: 0;
}

/* ── WHAT'S INCLUDED ── */
.lp-includes {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background: var(--lp-cream);
}

.lp-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.lp-include-card {
  background: var(--lp-primary-wash);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform 0.3s ease;
}

.lp-include-card:hover {
  transform: translateY(-4px);
}

.lp-include-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.lp-include-card h3 {
  font-family: var(--lp-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--lp-dark);
  margin: 0 0 8px;
}

.lp-include-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-text-light);
  font-weight: 300;
  margin: 0;
}

/* ── WHO THIS IS FOR ── */
.lp-for {
  padding: 80px 24px 100px;
  background: var(--lp-warm);
}

.lp-for-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.lp-for-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
}

.lp-for-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--lp-text);
  font-weight: 300;
}

.lp-for-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ── REVIEWS ── */
.lp-reviews {
  padding: 80px 24px 100px;
  background: var(--lp-cream);
}

.lp-reviews-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.lp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 48px;
}

.lp-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.lp-review-card:hover {
  transform: translateY(-3px);
}

.lp-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.lp-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lp-primary-pale);
  color: var(--lp-primary);
  font-family: var(--lp-sans);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-review-meta {
  display: flex;
  flex-direction: column;
}

.lp-review-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--lp-dark);
}

.lp-review-verified {
  font-size: 11px;
  color: var(--lp-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp-review-stars {
  color: var(--lp-star);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.lp-review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-text);
  font-weight: 300;
  font-style: italic;
  margin: 0;
}

/* ── LIMITED TIME OFFER ── */
.lp-urgency {
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--lp-dark) 0%, #2a2a2a 100%);
  color: #fff;
  text-align: center;
}

.lp-urgency-inner {
  max-width: 600px;
  margin: 0 auto;
}

.lp-urgency-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: #E05252;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.lp-urgency h3 {
  font-family: var(--lp-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  margin: 0 0 12px;
}

.lp-urgency-price {
  font-size: 18px;
  margin: 0 0 20px;
}

.lp-urgency-price s {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
}

.lp-urgency-price strong {
  font-size: 28px;
  color: #fff;
}

.lp-countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 32px;
}

.lp-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-countdown-num {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--lp-sans);
}

.lp-countdown-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  opacity: 0.6;
}

.lp-urgency .lp-cta {
  opacity: 1;
  animation: none;
  background: #fff;
  color: var(--lp-dark);
}

.lp-urgency .lp-cta:hover {
  background: var(--lp-primary-pale);
  color: var(--lp-primary);
}

/* ── FREE GUIDE CTA ── */
.lp-free-guide {
  padding: 80px 24px;
  background: var(--lp-primary-wash);
  text-align: center;
}

.lp-free-guide-inner {
  max-width: 520px;
  margin: 0 auto;
}

.lp-free-guide h3 {
  font-family: var(--lp-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--lp-dark);
  margin: 0 0 12px;
}

.lp-free-guide-sub {
  font-size: 15px;
  color: var(--lp-text-light);
  font-weight: 300;
  margin: 0 0 32px;
  line-height: 1.6;
}

.lp-free-guide-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.lp-free-guide-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  font-family: var(--lp-sans);
  font-size: 14px;
  color: var(--lp-dark);
  outline: none;
  transition: border-color 0.3s ease;
}

.lp-free-guide-form input:focus {
  border-color: var(--lp-primary);
}

.lp-free-guide-form input:focus-visible {
  outline: 3px solid var(--lp-primary);
  outline-offset: 2px;
}

.lp-free-guide-form button {
  padding: 14px 28px;
  background: var(--lp-primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--lp-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.lp-free-guide-form button:hover {
  background: var(--lp-primary-light);
  transform: translateY(-1px);
}

.lp-free-guide-note {
  font-size: 12px;
  color: var(--lp-text-light);
  margin-top: 16px;
}

/* ── BUNDLE UPSELL ── */
.lp-bundle {
  padding: 80px 24px 100px;
  background: var(--lp-warm);
}

.lp-bundle-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.lp-bundle-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
  margin-top: 40px;
}

.lp-bundle-scroll::-webkit-scrollbar {
  height: 6px;
}

.lp-bundle-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 3px;
}

.lp-bundle-card {
  flex-shrink: 0;
  width: 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.lp-bundle-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.lp-bundle-card-body {
  padding: 20px;
}

.lp-bundle-card-title {
  font-family: var(--lp-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--lp-dark);
  margin: 0 0 6px;
}

.lp-bundle-card-price {
  font-size: 13px;
  color: var(--lp-text-light);
}

.lp-bundle-card-price strong {
  color: var(--lp-dark);
}

.lp-bundle-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.lp-bundle-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--lp-primary);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--lp-sans);
  transition: all 0.3s ease;
}

.lp-bundle-cta-main:hover {
  background: var(--lp-primary-light);
  transform: translateY(-2px);
}

.lp-bundle-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--lp-primary);
  border: 2px solid var(--lp-primary);
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--lp-sans);
  transition: all 0.3s ease;
}

.lp-bundle-cta-secondary:hover {
  background: var(--lp-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── FINAL CTA ── */
.lp-final-cta {
  padding: 100px 24px 120px;
  text-align: center;
  background: linear-gradient(180deg, var(--lp-cream) 0%, var(--lp-primary-wash) 100%);
}

.lp-final-cta h2 em {
  font-style: italic;
  color: var(--lp-primary);
}

.lp-final-sub {
  font-size: 16px;
  color: var(--lp-text-light);
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 40px;
}

.lp-final-price {
  margin-top: 16px;
  font-size: 14px;
  color: var(--lp-text-light);
}

.lp-final-price strong {
  color: var(--lp-dark);
}

.lp-guarantee {
  margin-top: 32px;
  font-size: 13px;
  color: var(--lp-text-light);
  font-weight: 300;
}

/* ── FAQ ── */
.lp-faq {
  padding: 80px 24px;
  background: var(--lp-cream);
}

.lp-faq-inner {
  max-width: 700px;
  margin: 0 auto;
}

.lp-faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.lp-faq-item:first-of-type {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.lp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--lp-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--lp-dark);
  text-align: left;
  transition: color 0.3s ease;
}

.lp-faq-question:hover {
  color: var(--lp-primary);
}

.lp-faq-icon {
  font-size: 20px;
  color: var(--lp-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.lp-faq-item.open .lp-faq-icon {
  transform: rotate(45deg);
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.lp-faq-item.open .lp-faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.lp-faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-text-light);
  font-weight: 300;
  margin: 0;
}

/* ── BACK LINK ── */
.lp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lp-text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s ease, gap 0.25s ease;
  margin-bottom: 1.5rem;
}

.lp-back-link:hover {
  color: var(--lp-dark);
  gap: 0.6rem;
}

.lp-back-link::before {
  content: "\2190";
}

/* ── PAIN POINT SECTION ── */
.lp-pain {
  padding: 80px 24px;
  background: var(--lp-dark);
  color: #fff;
}

.lp-pain-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.lp-pain .lp-label {
  color: var(--lp-gold);
}

.lp-pain h2 {
  font-family: var(--lp-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 40px;
}

.lp-pain-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto 40px;
}

.lp-pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}

.lp-pain-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  font-size: 16px;
  text-align: center;
}

.lp-pain-closer {
  font-family: var(--lp-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

/* ── MID-PAGE CTA ── */
.lp-mid-cta {
  padding: 48px 24px;
  text-align: center;
  background: var(--lp-cream);
}

/* ── VALUE COMPARISON ── */
.lp-value {
  padding: 80px 24px;
  background: linear-gradient(135deg, #FAF6EE 0%, #F7F0E3 100%);
  text-align: center;
}

.lp-value-inner {
  max-width: 700px;
  margin: 0 auto;
}

.lp-value .lp-label {
  color: var(--lp-gold);
}

.lp-value h2 {
  font-family: var(--lp-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--lp-dark);
  line-height: 1.3;
  margin: 0 0 40px;
}

.lp-value-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 460px;
  margin: 0 auto 32px;
}

.lp-value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  font-size: 16px;
}

.lp-value-row-label {
  color: var(--lp-text);
  font-weight: 400;
}

.lp-value-row-price {
  font-weight: 600;
  color: var(--lp-text-light);
}

.lp-value-row-price s {
  color: #999;
}

.lp-value-row.highlight {
  background: var(--lp-primary);
  color: #fff;
  box-shadow: 0 8px 30px rgba(74,103,65,0.3);
  transform: scale(1.03);
}

.lp-value-row.highlight .lp-value-row-label {
  color: #fff;
  font-weight: 500;
}

.lp-value-row.highlight .lp-value-row-price {
  color: #fff;
  font-size: 22px;
}

.lp-value-bottom {
  font-family: var(--lp-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--lp-text-light);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

/* ── FOUNDER STORY ── */
.lp-founder {
  padding: 80px 24px;
  background: var(--lp-warm);
}

.lp-founder-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.lp-founder h2 {
  font-family: var(--lp-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--lp-dark);
  margin: 0 0 24px;
}

.lp-founder-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--lp-text);
  font-weight: 300;
  margin: 0 0 16px;
}

.lp-founder-quote {
  font-family: var(--lp-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--lp-primary);
  font-weight: 400;
  line-height: 1.6;
  margin: 32px 0 24px;
}

.lp-founder-sig {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text-light);
  letter-spacing: 0.5px;
}

/* ── GUARANTEE SECTION ── */
.lp-guarantee-section {
  padding: 60px 24px;
  background: var(--lp-primary-wash);
  text-align: center;
  border-top: 2px solid var(--lp-primary-pale);
  border-bottom: 2px solid var(--lp-primary-pale);
}

.lp-guarantee-inner {
  max-width: 560px;
  margin: 0 auto;
}

.lp-guarantee-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.lp-guarantee-section h3 {
  font-family: var(--lp-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--lp-dark);
  margin: 0 0 12px;
}

.lp-guarantee-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-text-light);
  font-weight: 300;
  margin: 0;
}

/* ── STICKY CTA BAR ── */
.lp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30,30,30,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.lp-sticky-bar.visible {
  transform: translateY(0);
}

.lp-sticky-bar-text {
  font-family: var(--lp-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-sticky-bar-price {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.lp-sticky-bar-price s {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.lp-sticky-bar .lp-cta {
  opacity: 1;
  animation: none;
  padding: 12px 28px;
  font-size: 14px;
}

/* ── CTA PULSE (final CTA) ── */
@keyframes lpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,103,65,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(74,103,65,0); }
}

.lp-cta-pulse {
  animation: lpPulse 2s ease infinite;
}

/* ── ANIMATIONS ── */
@keyframes lpFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lpScrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(1.2); }
}

.lp-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lp-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── AUDIO TASTE PLAYER ── */
.lp-taste {
  padding: 60px 24px;
  background: var(--lp-primary-wash);
  text-align: center;
}

.lp-taste-inner {
  max-width: 600px;
  margin: 0 auto;
}

.lp-taste .lp-label {
  color: var(--lp-primary);
}

.lp-taste h2 {
  font-family: var(--lp-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--lp-dark);
  line-height: 1.3;
  margin: 0 0 8px;
}

.lp-taste-sub {
  font-size: 15px;
  color: var(--lp-text-light);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 32px;
}

.lp-player {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.5s ease, transform 0.3s ease;
}

.lp-player:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.lp-player.playing {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 0 0 1px var(--lp-primary-pale);
}

.lp-player-play {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lp-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.15s ease;
  position: relative;
}

.lp-player-play:hover {
  background: var(--lp-primary-light);
  transform: scale(1.08);
}

.lp-player-play:active {
  transform: scale(0.92);
}

/* Pulse ring behind play button when idle */
.lp-player:not(.playing) .lp-player-play::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--lp-primary);
  opacity: 0;
  animation: lpPlayPulse 2.5s ease-in-out infinite;
}

@keyframes lpPlayPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.15); }
}

/* Spinning ring when playing */
.lp-player.playing .lp-player-play::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--lp-primary-pale);
  border-right-color: var(--lp-primary-pale);
  animation: lpPlaySpin 2s linear infinite;
  opacity: 0.6;
}

@keyframes lpPlaySpin {
  to { transform: rotate(360deg); }
}

.lp-player-play svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  transition: transform 0.2s ease;
}

/* Icon transition animations */
.lp-player-play .lp-icon-play {
  margin-left: 2px;
}

.lp-player.playing .lp-player-play svg {
  animation: lpIconPop 0.3s ease;
}

@keyframes lpIconPop {
  0% { transform: scale(0.5); opacity: 0.5; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.lp-player-play .lp-icon-pause {
  display: none;
}

.lp-player.playing .lp-player-play .lp-icon-play {
  display: none;
}

.lp-player.playing .lp-player-play .lp-icon-pause {
  display: block;
}

.lp-player-track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.lp-player-seek {
  position: relative;
  width: 100%;
  height: 6px;
  background: var(--lp-primary-pale);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}

.lp-player-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--lp-primary), var(--lp-primary-light));
  border-radius: 3px;
  transition: width 0.1s linear;
  pointer-events: none;
}

.lp-player.playing .lp-player-progress::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-primary);
  box-shadow: 0 0 8px var(--lp-primary), 0 0 16px rgba(0,0,0,0.1);
  animation: lpDotPulse 1.5s ease-in-out infinite;
}

@keyframes lpDotPulse {
  0%, 100% { box-shadow: 0 0 4px var(--lp-primary), 0 0 8px rgba(0,0,0,0.05); transform: translateY(-50%) scale(1); }
  50% { box-shadow: 0 0 12px var(--lp-primary), 0 0 20px rgba(0,0,0,0.1); transform: translateY(-50%) scale(1.3); }
}

.lp-player-seek:hover {
  height: 8px;
  margin-top: -1px;
  margin-bottom: -1px;
}

.lp-player-seek input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.lp-player-times {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--lp-text-light);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.3px;
}

.lp-player.playing .lp-player-current {
  color: var(--lp-primary);
  font-weight: 500;
}

.lp-player-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  flex-shrink: 0;
  height: 24px;
}

.lp-player-waveform span {
  display: block;
  width: 3px;
  background: var(--lp-primary-pale);
  border-radius: 2px;
  transition: background 0.4s ease, transform 0.3s ease;
  transform-origin: bottom;
}

.lp-player.playing .lp-player-waveform span {
  background: var(--lp-primary);
  animation: lpWaveBar 0.8s ease-in-out infinite alternate;
}

.lp-player.playing .lp-player-waveform span:nth-child(1) { animation-delay: 0s; animation-duration: 0.7s; }
.lp-player.playing .lp-player-waveform span:nth-child(2) { animation-delay: 0.1s; animation-duration: 0.55s; }
.lp-player.playing .lp-player-waveform span:nth-child(3) { animation-delay: 0.2s; animation-duration: 0.65s; }
.lp-player.playing .lp-player-waveform span:nth-child(4) { animation-delay: 0.05s; animation-duration: 0.75s; }
.lp-player.playing .lp-player-waveform span:nth-child(5) { animation-delay: 0.15s; animation-duration: 0.6s; }

@keyframes lpWaveBar {
  0% { transform: scaleY(0.3); opacity: 0.6; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .lp-hero {
    padding: 100px 20px 60px;
    min-height: 85vh;
  }

  .lp-hero-image {
    width: 200px;
  }

  .lp-what,
  .lp-includes {
    padding: 60px 20px;
  }

  .lp-journey,
  .lp-for {
    padding: 60px 20px;
  }

  .lp-final-cta {
    padding: 60px 20px 80px;
  }

  .lp-includes-grid {
    grid-template-columns: 1fr;
  }

  .lp-reviews-grid {
    grid-template-columns: 1fr;
  }

  .lp-proof-bar {
    gap: 20px;
    padding: 20px 16px;
  }

  .lp-countdown-num {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .lp-free-guide-form {
    flex-direction: column;
  }

  .lp-bundle-ctas {
    flex-direction: column;
    align-items: center;
  }

  .lp-pain {
    padding: 60px 20px;
  }

  .lp-value {
    padding: 60px 20px;
  }

  .lp-value-row {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .lp-founder {
    padding: 60px 20px;
  }

  .lp-sticky-bar {
    gap: 12px;
    padding: 10px 16px;
  }

  .lp-sticky-bar-text {
    font-size: 12px;
  }

  .lp-sticky-bar .lp-cta {
    padding: 10px 20px;
    font-size: 13px;
  }

  .lp-mid-cta {
    padding: 36px 20px;
  }

  .lp-taste {
    padding: 48px 20px;
  }

  .lp-player {
    padding: 20px;
    gap: 12px;
  }

  .lp-player-play {
    width: 42px;
    height: 42px;
  }

  .lp-player-waveform {
    display: none;
  }

  /* Extra bottom padding on body for sticky bar */
  .lp-page {
    padding-bottom: 60px;
  }
}

/* ===== ENGLISH-ONLY DISCLAIMER BANNER ===== */

.lp-lang-notice {
  text-align: center;
  padding: 10px 24px;
  background: var(--lp-primary-pale, #E8EFE6);
  font-size: 13px;
  font-weight: 400;
  color: var(--lp-primary, #4A6741);
  letter-spacing: 0.3px;
}

[dir="rtl"] .lp-lang-notice {
  direction: rtl;
}

/* ===== RTL SUPPORT FOR LANDING PAGES ===== */

[dir="rtl"] .lp-hero {
  text-align: center;
}

[dir="rtl"] .lp-back-link {
  direction: rtl;
}

[dir="rtl"] .lp-pain-item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .lp-pain-inner {
  text-align: right;
}

[dir="rtl"] .lp-pain-inner .lp-label,
[dir="rtl"] .lp-pain-inner h2 {
  text-align: right;
}

[dir="rtl"] .lp-what {
  text-align: right;
}

[dir="rtl"] .lp-step {
  flex-direction: row-reverse;
}

[dir="rtl"] .lp-step-content {
  text-align: right;
}

[dir="rtl"] .lp-step-line {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

[dir="rtl"] .lp-includes-grid {
  direction: rtl;
}

[dir="rtl"] .lp-include-card {
  text-align: right;
}

[dir="rtl"] .lp-value-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .lp-for-item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .lp-for-inner {
  text-align: right;
}

[dir="rtl"] .lp-review-card {
  text-align: right;
}

[dir="rtl"] .lp-review-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .lp-review-meta {
  text-align: right;
}

[dir="rtl"] .lp-founder-inner {
  text-align: right;
}

[dir="rtl"] .lp-faq-question {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .lp-faq-answer {
  text-align: right;
}

[dir="rtl"] .lp-free-guide-form {
  direction: rtl;
}

[dir="rtl"] .lp-free-guide-form input {
  text-align: right;
}

[dir="rtl"] .lp-sticky-bar {
  flex-direction: row-reverse;
}

[dir="rtl"] .lp-sticky-bar-text {
  text-align: right;
}

[dir="rtl"] .lp-bundle-scroll {
  direction: rtl;
}

[dir="rtl"] .lp-bundle-card-body {
  text-align: right;
}

[dir="rtl"] .lp-countdown {
  direction: ltr;
}

[dir="rtl"] .lp-proof-bar {
  direction: rtl;
}
