/* ── HQ CLUB LP STYLES ── */
:root {
  --navy: #03112c;
  --navy-light: #0a1e3d;
  --green: #00ce48;
  --green-dim: rgba(0, 206, 72, 0.12);
  --amber: #f5a623;
  --white: #ffffff;
  --off-white: #e8eaed;
  --gray-300: #9ca3af;
  --gray-500: #6b7280;
  --red: #ef4444;
}

/* ── FULL WIDTH CONTAINER OVERRIDES ── */
.page-id-29694 .main-page-wrapper .container,
.page-id-29694 .main-page-wrapper,
.page-id-29694 .wd-content-area {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

.page-id-29694 article.entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

.lp {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0 !important;
}

.lp *,
.lp *::before,
.lp *::after {
  box-sizing: border-box;
}

/* Grid overlay */
.lp::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0, 206, 72, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 206, 72, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.lp-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.lp-section {
  padding: 72px 0;
  position: relative;
}

.lp-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

.lp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: white;
}

.lp-green {
  color: var(--green);
}

/* CTA */
.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}

.lp-cta:hover {
  background: #00e050;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 206, 72, 0.3);
}

.lp-cta svg {
  width: 16px;
  height: 16px;
}

.lp-cta-ghost {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

.lp-cta-ghost:hover {
  background: var(--green);
  color: var(--navy);
}

.lp-emi {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--green);
  margin-top: 8px;
  display: block;
  letter-spacing: 0.05em;
}

/* ═══ HERO ═══ */
.lp-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 48px 0;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 206, 72, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.lp-hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

p:empty {
  display: none;
}

.lp-hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: lp-pulse 2s infinite;
}

@keyframes lp-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 206, 72, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 206, 72, 0);
  }
}

.lp-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  color: white;
}

.lp-hero-sub {
  font-size: 16px;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.lp-hero-sub strong {
  color: var(--white);
}

.lp-hero-img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  filter: grayscale(0.1);
}

/* ═══ PROOF STRIP ═══ */
.lp-proof {
  background: var(--navy-light);
  border-top: 1px solid rgba(0, 206, 72, 0.08);
  border-bottom: 1px solid rgba(0, 206, 72, 0.08);
  padding: 28px 0;
}

.lp-proof-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  text-align: center;
}

.lp-proof-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--green);
  line-height: 1.2;
}

.lp-proof-desc {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gray-300);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

/* ═══ COMPARISON TABLE ═══ */
.lp-table-section {
  background: var(--navy-light);
  border-top: 1px solid rgba(0, 206, 72, 0.08);
  border-bottom: 1px solid rgba(0, 206, 72, 0.08);
}

.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.lp-table thead th {
  background: var(--navy);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--green);
  color: white;
}

.lp-table thead th:last-child {
  background: rgba(0, 206, 72, 0.08);
  text-align: center;
  color: var(--green);
}

.lp-table tbody td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--off-white);
}

.lp-table tbody td:nth-child(2) {
  text-align: center;
  color: var(--gray-500);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
}

.lp-table tbody td:last-child {
  text-align: center;
  background: rgba(0, 206, 72, 0.04);
}

.lp-check {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.lp-table tfoot td {
  padding: 14px 18px;
  font-weight: 800;
  font-size: 15px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.lp-table tfoot td:nth-child(2) {
  text-align: center;
  text-decoration: line-through;
  color: var(--gray-500);
  font-family: 'DM Mono', monospace;
}

.lp-table tfoot td:last-child {
  text-align: center;
  background: rgba(0, 206, 72, 0.08);
}

/* ═══ PROBLEM ═══ */
.lp-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.lp-pain {
  background: var(--navy);
  border-left: 3px solid var(--red);
  padding: 20px 20px 20px 20px;
  margin-bottom: 12px;
}

.lp-pain .tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lp-pain p {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.5;
}

/* ═══ BENEFITS ═══ */
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.lp-benefit {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
  transition: border-color 0.3s;
  position: relative;
}

.lp-benefit:hover {
  border-color: rgba(0, 206, 72, 0.25);
}

.lp-benefit-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.lp-benefit h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: white;
}

.lp-benefit p {
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.5;
}

/* ═══ COMMUNITY PREVIEW ═══ */
.lp-community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

.lp-community-panel {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  color: #111;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.lp-community-panel img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.lp-qa-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.lp-qa-card .lp-qa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.lp-qa-card .lp-qa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-qa-card .lp-qa-name {
  font-weight: 700;
  font-size: 13px;
}

.lp-qa-card .lp-qa-time {
  font-size: 11px;
  color: var(--gray-500);
}

.lp-qa-card .lp-qa-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.lp-qa-card .lp-qa-body {
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.5;
}

.lp-qa-reply {
  border-left: 3px solid var(--green);
  margin-top: 16px;
  padding-left: 16px;
}

.lp-qa-reply-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.lp-qa-reply-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-qa-reply-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
}

.lp-qa-reply p {
  font-size: 13px;
  color: var(--off-white);
  line-height: 1.5;
}

/* ═══ WHO ═══ */
.lp-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.lp-who {
  background: var(--navy-light);
  border-left: 3px solid var(--green);
  padding: 20px;
}

.lp-who h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.lp-who p {
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.4;
}

/* ═══ PRICING ═══ */
.lp-pricing-box {
  background: linear-gradient(135deg, var(--navy-light) 0%, #061a33 100%);
  border: 2px solid var(--green);
  max-width: 520px;
  margin: 40px auto 0;
  padding: 40px;
  text-align: center;
  position: relative;
}

.lp-pricing-box::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--green);
  color: var(--navy);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
}

.lp-price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 2px;
}

.lp-price-amount .cur {
  font-size: 24px;
  vertical-align: top;
  margin-right: 4px;
}

.lp-price-period {
  color: var(--gray-300);
  font-size: 13px;
  margin-bottom: 4px;
}

.lp-price-original {
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.lp-price-perday {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--green);
  margin-bottom: 24px;
  display: block;
}

.lp-pricing-features {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  padding: 0;
}

.lp-pricing-features li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--off-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lp-pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══ ABOUT ═══ */
.lp-about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}

.lp-about-img {
  width: 100%;
}

.lp-about-text p {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 12px;
}

.lp-about-text strong {
  color: var(--white);
}

/* ═══ FAQ ═══ */
.lp-faq {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
}

.lp-faq-q {
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-faq-q::after {
  content: '+';
  color: var(--green);
  font-size: 22px;
  font-weight: 300;
}

.lp-faq.open .lp-faq-q::after {
  content: '−';
}

.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.6;
}

.lp-faq.open .lp-faq-a {
  max-height: 300px;
  padding-top: 10px;
}

/* ═══ FINAL CTA ═══ */
.lp-final {
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.lp-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 206, 72, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .lp-section {
    padding: 48px 0;
  }

  .lp-hero-grid,
  .lp-problem-grid,
  .lp-community-grid,
  .lp-about-grid {
    grid-template-columns: 1fr;
  }

  .lp-benefits-grid,
  .lp-who-grid {
    grid-template-columns: 1fr;
  }

  .lp-proof-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-proof-row> :nth-child(4),
  .lp-proof-row> :nth-child(5) {
    grid-column: span 1;
  }

  .lp-hero-img {
    max-width: 280px;
    margin-top: 24px;
  }

  .lp-pricing-box {
    padding: 28px 20px;
  }

  .lp-price-amount {
    font-size: 40px;
  }

  .lp-table {
    font-size: 12px;
  }

  .lp-table thead th,
  .lp-table tbody td,
  .lp-table tfoot td {
    padding: 8px 10px;
  }

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

  .lp-hero {
    padding-top: 80px;
  }

  .lp-final {
    padding: 10px 0;
  }

  .lp-proof-row {
    gap: 18px;
    text-align: left;
  }
}

.wd-content-layout {
  padding-bottom: 0px !important;
}

/* ── MOBILE STICKY CTA ── */
@media (max-width: 768px) {
  .page-id-29604 .wd-content-layout {
    padding-bottom: 100px !important;
    /* Space for the sticky button */
  }

  .lp-mobile-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--navy);
    padding: 12px 16px;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 206, 72, 0.15);
    display: flex;
    justify-content: center;
  }

  .lp-mobile-fixed-cta .lp-cta {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 10px 24px;
    text-align: center;
    height: auto;
    border-radius: 4px;
  }

  .lp-mobile-fixed-cta .lp-cta-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .lp-mobile-fixed-cta .lp-cta-sub {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    opacity: 0.8;
    margin-top: 2px;
    text-transform: none;
    letter-spacing: 0.02em;
  }
}

@media (min-width: 769px) {
  .lp-mobile-fixed-cta {
    display: none !important;
  }
}

/* ── PERFORMANCE OPTIMIZATIONS ── */
.lp,
.lp-title,
.lp-cta,
.lp-price-amount,
.lp-proof-num {
  font-display: swap;
}

#content-report,
#block-member,
#reported-content {
  display: none;
}