/* The X System — landing v2 */
:root {
  --lp-bg: #080808;
  --lp-bg-elevated: #111111;
  --lp-cream: #f7f2e8;
  --lp-paper: #ffffff;
  --lp-text: #141414;
  --lp-muted: rgba(255, 255, 255, 0.72);
  --lp-gold: #c9a962;
  --lp-gold-dim: #9a7d45;
  --lp-peach: #e8b86d;
  --lp-peach-hover: #d9a85a;
  --lp-red-soft: #ff9a9a;
  --lp-wrap: 920px;
  --lp-wrap-wide: 1080px;
  --lp-section-y: clamp(64px, 9vw, 96px);
  --lp-radius: 14px;
  --lp-radius-sm: 10px;
  --lp-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  --lp-font: Inter, system-ui, -apple-system, sans-serif;
  --lp-serif: Lora, Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.lp-page {
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.lp-wrap {
  width: 100%;
  max-width: var(--lp-wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.lp-back {
  position: fixed;
  top: 52px;
  left: 18px;
  z-index: 60;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-back:hover { color: #fff; }

.lp-countdown {
  background: #0c0c0c;
  border-bottom: 1px solid #1a1a1a;
  padding: 14px 24px 16px;
  text-align: center;
}

.lp-countdown-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 10px;
}

.lp-countdown-grid {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 28px);
}

.lp-countdown-num {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.lp-countdown-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-top: 4px;
}

.lp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 12px;
}

.lp-eyebrow--dark { color: var(--lp-gold-dim); }

.lp-title {
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--lp-text);
}

.lp-title--hero {
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.06;
}

.lp-title--light { color: #fff; }

.lp-lead {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.55;
  margin-top: 12px;
}

.lp-lead--dark { color: #555; }
.lp-lead--light { color: var(--lp-muted); }

.lp-micro {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
}

.lp-section {
  padding: var(--lp-section-y) 0;
}

.lp-section--cream { background: var(--lp-cream); }
.lp-section--dark { background: var(--lp-bg); }
.lp-section--tight { padding-bottom: clamp(24px, 4vw, 36px); }
.lp-section--flush { padding-top: 0; }

.lp-wrap--hero {
  max-width: var(--lp-wrap-wide);
}

.lp-hero {
  padding: clamp(48px, 7vw, 80px) 0 clamp(56px, 8vw, 88px);
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(201, 169, 98, 0.1) 0%, transparent 55%),
    var(--lp-bg);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 56px);
  align-items: start;
}

@media (min-width: 960px) {
  .lp-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px 48px;
    align-items: center;
  }
}

.lp-hero-tag {
  font-size: 15px;
  color: var(--lp-muted);
  margin-top: 10px;
}

.lp-hero-tag strong { color: var(--lp-gold); font-weight: 700; }

.lp-hero-checks {
  list-style: none;
  margin: 20px 0 24px;
  text-align: left;
}

.lp-hero-checks li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
}

.lp-hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-gold);
  font-weight: 800;
  font-size: 13px;
}

.lp-hero-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .lp-hero-media {
    max-width: 300px;
    margin: 0;
  }
}

.lp-cover-frame {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .lp-cover-frame {
    max-width: none;
    margin: 0;
  }
}

.lp-cover-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lp-cover-chip {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--lp-peach);
  color: var(--lp-text);
  border-radius: 999px;
  white-space: nowrap;
}

.lp-x-money-visual {
  margin: 0 auto;
  max-width: min(100%, 520px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #000;
}

.lp-x-money-band {
  padding: clamp(56px, 8vw, 88px) 0;
  background: var(--lp-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-x-money-band-inner {
  max-width: 640px;
  margin: 0 auto;
}

.lp-x-money-visual img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.lp-hero-proof-card {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.lp-hero-proof-quote {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  margin: 8px 0 6px;
  line-height: 1.45;
}

.lp-hero-proof {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.lp-hero-offer {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 98, 0.24);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  max-width: 440px;
}

@media (min-width: 960px) {
  .lp-hero-offer { max-width: none; }
}

.lp-hero-offer .lp-price-box {
  margin-bottom: 16px;
}

.lp-hero-offer .lp-micro {
  margin-top: 12px;
  text-align: center;
}

@media (min-width: 960px) {
  .lp-hero-offer .lp-micro { text-align: left; }
}

.lp-hero-proof-stars { color: var(--lp-gold); letter-spacing: 2px; }

.lp-price-box { margin-bottom: 20px; }

.lp-price-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-gold);
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 6px;
}

.lp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-price-was {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  font-weight: 600;
}

.lp-price-now {
  font-size: clamp(36px, 7vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lp-price-note {
  font-size: 13px;
  color: var(--lp-muted);
  margin-top: 4px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.lp-btn--primary {
  color: var(--lp-text);
  background: var(--lp-peach);
  box-shadow: 0 4px 24px rgba(232, 184, 109, 0.35);
}

.lp-btn--primary:hover {
  background: var(--lp-peach-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 184, 109, 0.45);
}

.lp-btn--ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.4);
  margin-top: 16px;
}

.lp-btn--ghost:hover {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--lp-gold);
}

.lp-section--cream .lp-btn--ghost {
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(154, 125, 69, 0.55);
}

.lp-section--cream .lp-btn--ghost:hover {
  color: var(--lp-text);
  background: rgba(201, 169, 98, 0.18);
  border-color: var(--lp-gold-dim);
}

.lp-btn--lg { padding: 16px 32px; }
.lp-btn--block { width: 100%; }
.lp-btn--sticky { padding: 12px 18px; font-size: 11px; white-space: nowrap; }

.lp-trust-bar {
  background: var(--lp-cream);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid #e5dcc8;
  padding: 20px 0;
}

.lp-trust-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  text-align: center;
}

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

@media (min-width: 900px) {
  .lp-trust-inner {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}

.lp-trust-item {
  padding: 8px 4px;
}

@media (min-width: 900px) {
  .lp-trust-item + .lp-trust-item {
    border-left: 1px solid #e5dcc8;
  }
}

.lp-trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--lp-text);
}

.lp-trust-item span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #777;
  margin-top: 2px;
}

.lp-card {
  background: var(--lp-paper);
  border-radius: var(--lp-radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--lp-shadow);
}

.lp-card--folders { padding: clamp(20px, 3vw, 28px); }

.lp-pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

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

.lp-pain {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  background: #faf8f3;
  border: 1px solid #e8dfc8;
  border-radius: var(--lp-radius-sm);
}

.lp-pain-close {
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--lp-text);
}

.lp-routine {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
  align-items: stretch;
}

@media (min-width: 700px) {
  .lp-routine { grid-template-columns: 1fr auto 1fr; gap: 16px; }
}

.lp-routine-block {
  padding: 22px 20px;
  background: var(--lp-bg-elevated);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: var(--lp-radius);
}

.lp-routine-block h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 14px;
}

.lp-routine-block ul { list-style: none; }

.lp-routine-block li {
  font-size: 14px;
  color: var(--lp-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-routine-block li:last-child { border-bottom: none; }

.lp-routine-block li span {
  font-weight: 700;
  color: #fff;
}

.lp-routine-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-gold);
  opacity: 0.6;
}

.lp-routine-foot {
  text-align: center;
  margin-top: 24px;
  font-family: var(--lp-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
}

.lp-folders {
  list-style: none;
  border: 1px solid #e8dfc8;
  border-radius: var(--lp-radius-sm);
  overflow: hidden;
}

.lp-folders li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #eee5d6;
  background: #faf8f3;
}

.lp-folders li:last-child { border-bottom: none; }

.lp-folders--pin {
  background: rgba(201, 169, 98, 0.14) !important;
  border-left: 3px solid var(--lp-gold-dim);
}

.lp-f-num {
  flex-shrink: 0;
  min-width: 34px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--lp-gold-dim);
  background: rgba(201, 169, 98, 0.14);
  border-radius: 6px;
}

.lp-folders li div { flex: 1; min-width: 0; }

.lp-folders strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 2px;
}

.lp-folders li div span {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.lp-folder-foot {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #666;
}

.lp-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

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

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

.lp-review {
  background: #fff;
  border: 1px solid #e8dfc8;
  border-radius: var(--lp-radius-sm);
  padding: 20px 18px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.lp-review:hover {
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.lp-stars {
  color: var(--lp-gold);
  letter-spacing: 3px;
  font-size: 11px;
  margin-bottom: 10px;
}

.lp-review blockquote {
  margin: 0 0 14px;
  font-family: var(--lp-serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: var(--lp-text);
}

.lp-review footer { font-size: 12px; color: #666; }

.lp-review-result {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-gold-dim);
  background: rgba(201, 169, 98, 0.12);
  border-radius: 4px;
}

.lp-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

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

.lp-compare {
  padding: 22px 20px;
  border-radius: var(--lp-radius);
  border: 1px solid #222;
}

.lp-compare--no {
  background: rgba(255, 80, 80, 0.05);
  border-color: rgba(255, 120, 120, 0.2);
}

.lp-compare--yes {
  background: rgba(201, 169, 98, 0.08);
  border-color: rgba(201, 169, 98, 0.3);
}

.lp-compare h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lp-compare--no h3 { color: var(--lp-red-soft); }
.lp-compare--yes h3 { color: var(--lp-gold); }

.lp-compare-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.lp-compare--no .lp-compare-icon {
  background: rgba(255, 90, 90, 0.18);
  color: var(--lp-red-soft);
}

.lp-compare--yes .lp-compare-icon {
  background: rgba(201, 169, 98, 0.22);
  color: var(--lp-gold);
}

.lp-compare ul { list-style: none; }

.lp-compare li {
  font-size: 14px;
  color: var(--lp-muted);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.45;
}

.lp-compare--no li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255, 140, 140, 0.5);
}

.lp-compare--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-gold);
  font-weight: 800;
  font-size: 11px;
}

.lp-shift-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

@media (min-width: 700px) {
  .lp-shift-row { grid-template-columns: 1fr auto 1fr; }
}

.lp-shift-card {
  padding: 18px 20px;
  border-radius: var(--lp-radius-sm);
  border: 1px solid #222;
}

.lp-shift-card--before {
  background: rgba(255, 80, 80, 0.04);
  border-color: rgba(255, 120, 120, 0.15);
}

.lp-shift-card--after {
  background: rgba(201, 169, 98, 0.08);
  border-color: rgba(201, 169, 98, 0.25);
}

.lp-shift-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-shift-card--before .lp-shift-label { color: var(--lp-red-soft); }
.lp-shift-card--after .lp-shift-label { color: var(--lp-gold); }

.lp-shift-card p {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-shift-arrow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.lp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

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

.lp-step {
  padding: 22px 20px;
  background: var(--lp-bg-elevated);
  border: 1px solid #1e1e1e;
  border-radius: var(--lp-radius);
}

.lp-step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--lp-gold);
  background: rgba(201, 169, 98, 0.14);
  border-radius: 50%;
}

.lp-step h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.lp-step p {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 40px);
  align-items: start;
}

@media (min-width: 860px) {
  .lp-offer-grid { grid-template-columns: 1fr 380px; }
}

.lp-offer-list {
  list-style: none;
  margin: 20px 0 0;
}

.lp-offer-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #eee;
}

.lp-offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-gold-dim);
  font-weight: 800;
}

.lp-value-stack {
  margin-top: 24px;
  padding: 20px 22px;
  background: #faf8f3;
  border: 1px solid #e8dfc8;
  border-radius: var(--lp-radius-sm);
}

.lp-value-list { list-style: none; }

.lp-value-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #e8dfc8;
}

.lp-value-list li:last-child { border-bottom: none; }

.lp-value-total {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0d5c0;
  font-weight: 700;
  font-size: 15px;
  color: var(--lp-text);
}

.lp-value-launch {
  margin-top: 8px;
  font-size: 16px;
  color: #444;
}

.lp-value-launch strong {
  color: var(--lp-gold-dim);
  font-size: 20px;
}

.lp-offer-card {
  background: var(--lp-paper);
  border: 2px solid var(--lp-gold);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  box-shadow: var(--lp-shadow);
  text-align: center;
}

.lp-offer-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}

.lp-offer-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
}

.lp-offer-card-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.lp-offer-price { margin-bottom: 20px; }

.lp-offer-price .lp-price-was {
  display: block;
  font-size: 16px;
  color: #999;
  margin-bottom: 4px;
}

.lp-offer-price .lp-price-now {
  font-size: 44px;
  color: var(--lp-text);
}

.lp-offer-secure {
  margin-top: 12px;
  font-size: 11px;
  color: #888;
}

.lp-offer-delivery {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.lp-guarantee-inline {
  margin-top: 20px;
  padding: 14px 16px;
  background: #faf8f3;
  border: 1px solid #e8dfc8;
  border-radius: var(--lp-radius-sm);
  text-align: left;
}

.lp-guarantee-inline strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold-dim);
  margin-bottom: 6px;
}

.lp-guarantee-inline span {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.lp-author-section {
  background: var(--lp-cream);
}

.lp-author-card {
  display: grid;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 20px;
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

@media (min-width: 640px) {
  .lp-author-card {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
  }
}

.lp-author-media {
  text-align: center;
}

.lp-author-img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--lp-gold);
  box-shadow: 0 0 0 6px rgba(201, 169, 98, 0.12);
  margin: 0 auto;
  display: block;
}

.lp-author-badge {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.lp-author-copy {
  text-align: center;
}

@media (min-width: 640px) {
  .lp-author-copy { text-align: left; }
}

.lp-author-title {
  font-size: clamp(24px, 4.2vw, 32px);
  line-height: 1.15;
}

.lp-author-lead {
  font-size: 15px;
  color: var(--lp-muted);
  line-height: 1.6;
  margin-top: 10px;
}

.lp-author-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  list-style: none;
  padding: 0;
}

@media (min-width: 640px) {
  .lp-author-stats { justify-content: flex-start; }
}

.lp-author-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.lp-author-stat-val {
  color: var(--lp-peach);
  font-weight: 800;
}

.lp-author-card .x-app-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  height: 1.35em;
  margin-left: 0.05em;
  background: #ffffff;
  color: #000000;
  font-weight: 900;
  font-size: 0.72em;
  line-height: 1;
  border-radius: 0.28em;
  vertical-align: -0.06em;
}

.lp-author-proof {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-gold);
}

.lp-faq {
  padding-bottom: clamp(40px, 6vw, 56px);
}

.lp-faq-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.lp-faq-head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 36px);
}

.lp-faq-title {
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.lp-faq-lead {
  font-size: 15px;
  color: var(--lp-muted);
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto;
}

.lp-eyebrow--center {
  text-align: center;
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-faq-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lp-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.lp-faq-item[open] {
  border-color: rgba(201, 169, 98, 0.35);
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.07) 0%, rgba(8, 8, 8, 0.6) 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.lp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  user-select: none;
  color: rgba(255, 255, 255, 0.92);
}

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

.lp-faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' stroke='%23c9a962' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lp-faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: rgba(201, 169, 98, 0.12);
}

.lp-faq-body {
  padding: 0 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-faq-body p {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.65;
  padding-top: 14px;
}

.lp-faq-body a {
  color: var(--lp-peach);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-final-cta {
  padding: clamp(32px, 5vw, 48px) 0 clamp(56px, 8vw, 80px);
  background: var(--lp-bg);
}

.lp-final-card {
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 36px) clamp(22px, 4vw, 32px);
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 98, 0.22);
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.lp-final-title {
  font-size: clamp(24px, 4.5vw, 32px);
  margin-bottom: 8px;
}

.lp-final-lead {
  margin-bottom: 22px;
  font-size: 15px;
}

.lp-final-note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.45;
}

.lp-final-inner .lp-lead { margin-bottom: 24px; }

.lp-footer {
  text-align: center;
  padding: 32px 24px 40px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.01em;
  background: #000000;
}

.lp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.95);
  border-top: 1px solid #222;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

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

.lp-sticky-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-sticky-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-sticky-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-gold);
}

.lp-sticky-price { font-size: 17px; font-weight: 800; }

.lp-sticky-was {
  font-size: 12px;
  color: #666;
  text-decoration: line-through;
  margin-right: 4px;
}

body.has-sticky-cta { padding-bottom: 72px; }

@media (min-width: 768px) {
  .lp-sticky-cta {
    display: block !important;
    max-width: 420px;
    left: auto;
    right: 24px;
    bottom: 24px;
    border-radius: 14px;
    border: 1px solid #2a2a2a;
    transform: translateY(120%);
  }
  .lp-sticky-cta.is-visible { transform: translateY(0); }
  body.has-sticky-cta { padding-bottom: 0; }
}

@media (max-width: 600px) {
  .lp-back { top: 12px; left: 12px; }
  .lp-wrap { padding: 0 20px; }
  .lp-hero-visual-row { flex-direction: column; }
}

/* —— Stijn / 2hourwriter inspired layout —— */

.lp-urgency {
  background: #0c0c0c;
  border-bottom: 1px solid #1a1a1a;
  padding: 12px 24px 14px;
  text-align: center;
}

.lp-urgency-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 8px;
}

.lp-urgency-text strong { color: #fff; }

.lp-urgency-hidden { display: none; }

.lp-hero-center { text-align: center; }

.lp-title--mega {
  font-size: clamp(32px, 5.5vw, 48px);
  line-height: 1.08;
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
}

.lp-hero-sub {
  font-size: clamp(17px, 2.4vw, 20px);
  color: var(--lp-muted);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.55;
}

.lp-hero-sub strong { color: #fff; }

.lp-hero-visual-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 48px);
  margin-top: 36px;
  flex-wrap: wrap;
}

.lp-cover-img--hero {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
}

.lp-hero-price-col {
  text-align: left;
  max-width: 320px;
}

.lp-price-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.lp-price-label span { text-decoration: line-through; }

.lp-price-today {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.lp-price-today span { color: var(--lp-peach); }

.lp-btn--xl {
  padding: 18px 36px;
  font-size: 14px;
  width: 100%;
  max-width: 320px;
}

.lp-quote-band {
  padding: 28px 0;
  background: var(--lp-cream);
  border-bottom: 1px solid #e5dcc8;
}

.lp-quote-band--dark {
  background: var(--lp-bg);
  border-bottom: 1px solid #1a1a1a;
}

.lp-quote-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}

.lp-quote-card blockquote {
  font-family: var(--lp-serif);
  font-size: clamp(17px, 2.2vw, 20px);
  font-style: italic;
  line-height: 1.65;
  color: var(--lp-text);
  margin: 12px 0 16px;
}

.lp-quote-card--dark blockquote { color: rgba(255, 255, 255, 0.88); }

.lp-quote-card footer {
  font-size: 13px;
  color: #666;
}

.lp-quote-card--dark footer { color: rgba(255, 255, 255, 0.55); }

.lp-prose p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.lp-prose .lp-btn { margin-top: 8px; }

.lp-story-list {
  margin: 16px 0 20px;
  padding-left: 0;
  list-style: none;
}

.lp-story-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 16px;
  color: #444;
}

.lp-story-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--lp-gold-dim);
  font-weight: 700;
}

.lp-intro-head {
  text-align: center;
  margin-bottom: 28px;
}

.lp-outcomes-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold-dim);
  margin-bottom: 14px;
}

.lp-outcomes {
  list-style: none;
  margin-bottom: 24px;
}

.lp-outcomes li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #eee;
}

.lp-outcomes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-gold-dim);
  font-weight: 800;
}

.lp-module {
  background: #fff;
  border: 1px solid #e8dfc8;
  border-radius: var(--lp-radius);
  padding: 28px 26px;
  margin-bottom: 16px;
}

.lp-module-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--lp-gold-dim);
  background: rgba(201, 169, 98, 0.14);
  border-radius: 50%;
}

.lp-module h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.lp-module p {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 0;
}

.lp-module-end {
  margin-top: 14px !important;
  font-size: 14px !important;
  color: var(--lp-gold-dim) !important;
}

.lp-folders--compact {
  margin-top: 16px;
  border-radius: var(--lp-radius-sm);
}

.lp-bonus-list {
  list-style: none;
  margin-top: 20px;
  max-width: 560px;
}

.lp-bonus-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: 16px;
  color: var(--lp-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-bonus-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--lp-gold);
  font-weight: 800;
}

.lp-who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

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

.lp-who {
  padding: 24px 22px;
  border-radius: var(--lp-radius);
  border: 1px solid #e8dfc8;
}

.lp-who--yes { background: rgba(201, 169, 98, 0.08); }
.lp-who--no { background: #faf8f3; }

.lp-who h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lp-who--yes h3 { color: var(--lp-gold-dim); }
.lp-who--no h3 { color: #888; }

.lp-who ul { list-style: none; }

.lp-who li {
  font-size: 14px;
  line-height: 1.55;
  color: #555;
  padding: 6px 0 6px 16px;
  position: relative;
}

.lp-who li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.lp-pricing-hero {
  text-align: center;
  padding-top: clamp(72px, 10vw, 104px);
}

.lp-author-section {
  padding-top: clamp(48px, 7vw, 72px);
  padding-bottom: clamp(48px, 7vw, 72px);
}

.lp-faq {
  padding-top: clamp(56px, 8vw, 88px);
}

.lp-pricing-stack { max-width: 520px; }

.lp-pricing-box {
  background: var(--lp-bg-elevated);
  border: 2px solid rgba(201, 169, 98, 0.35);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  margin-top: 24px;
}

.lp-pricing-you-get {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 12px;
}

.lp-pricing-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.lp-pricing-includes li {
  font-size: 14px;
  color: var(--lp-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-pricing-regular {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.lp-strike { text-decoration: line-through; }

.lp-pricing-today {
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.lp-pricing-vat {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.lp-value-stack--dark {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lp-radius-sm);
  padding: 20px 22px;
}

.lp-value-stack--dark .lp-value-list li {
  color: var(--lp-muted);
  border-color: rgba(255, 255, 255, 0.08);
}

.lp-value-stack--dark .lp-value-total {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.lp-value-stack--dark .lp-value-launch {
  color: var(--lp-muted);
}

.lp-guarantee-inline--dark {
  background: rgba(201, 169, 98, 0.08);
  border-color: rgba(201, 169, 98, 0.25);
  margin-top: 20px;
}

.lp-guarantee-inline--dark span { color: var(--lp-muted); }

/* —— Landing v3 conversion polish —— */

.lp-urgency-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
}

.lp-urgency-inner .lp-countdown-grid { margin: 0; }

.lp-hero .lp-price-now { color: var(--lp-peach); }

.lp-highlight {
  color: var(--lp-peach);
  text-shadow: 0 0 40px rgba(232, 184, 109, 0.2);
}

.lp-hero-grid .lp-hero-copy { text-align: left; }

.lp-story-grid {
  display: grid;
  gap: 40px;
  align-items: start;
  max-width: var(--lp-wrap-wide);
  margin: 0 auto;
}

@media (min-width: 800px) {
  .lp-story-grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}

.lp-story-copy {
  padding: clamp(24px, 4vw, 32px);
  background: #fff;
  border: 1px solid #e8dfc8;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.lp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 52px);
}

.lp-pillar-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

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

.lp-story-copy .lp-title em {
  font-style: normal;
  color: var(--lp-gold-dim);
}

.lp-steps-inline {
  margin: 16px 0 20px;
  padding-left: 1.25rem;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.lp-quote-card--boxed {
  background: #fff;
  border: 1px solid #e5dcc8;
  border-radius: var(--lp-radius);
  padding: 24px 20px;
  text-align: left;
}

.lp-pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lp-radius-sm);
  padding: 22px 18px;
}

.lp-pillar-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

.lp-pillar h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.lp-pillar p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--lp-muted);
}

.lp-folders-panel {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lp-radius);
  padding: 20px 18px;
}

.lp-folders-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 14px;
  text-align: center;
}

.lp-folders--grid {
  display: grid;
  gap: 8px;
}

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

.lp-bonus-inline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--lp-muted);
}

.lp-bonus-inline li::before {
  content: "✓ ";
  color: var(--lp-gold);
  font-weight: 700;
}

.lp-reviews-heading {
  margin-top: clamp(40px, 6vw, 56px);
  margin-bottom: 20px;
  text-align: center;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 800;
  color: var(--lp-text);
}

.lp-reviews--compact {
  grid-template-columns: repeat(2, 1fr);
}

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

.lp-reviews--compact .lp-review {
  padding: 16px 14px;
}

.lp-reviews--compact blockquote {
  font-size: 13px;
}

.lp-pricing-single {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

/* —— iPhone prototype mockup —— */

.lp-iphone-proto {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lp-iphone-frame {
  position: relative;
  width: min(100%, 390px);
  padding: 11px;
  border-radius: 54px;
  background: linear-gradient(145deg, #3a3a3c 0%, #1c1c1e 35%, #0d0d0f 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 3px #1a1a1c,
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(201, 169, 98, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.lp-iphone-btn {
  position: absolute;
  background: linear-gradient(90deg, #2c2c2e, #3a3a3c);
  border-radius: 2px;
  z-index: 2;
}

.lp-iphone-btn--silent {
  left: -2px;
  top: 108px;
  width: 3px;
  height: 28px;
}

.lp-iphone-btn--volume-up {
  left: -2px;
  top: 148px;
  width: 3px;
  height: 44px;
}

.lp-iphone-btn--volume-down {
  left: -2px;
  top: 204px;
  width: 3px;
  height: 44px;
}

.lp-iphone-btn--power {
  right: -2px;
  top: 148px;
  width: 3px;
  height: 64px;
}

.lp-iphone-screen {
  position: relative;
  background: #050505;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 620px;
  max-height: min(78vh, 720px);
}

.lp-iphone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.lp-iphone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  z-index: 4;
}

.lp-iphone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lp-iphone-icon {
  display: block;
  opacity: 0.95;
}

.lp-iphone-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4px 14px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.lp-iphone-scroll::-webkit-scrollbar {
  width: 4px;
}

.lp-iphone-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.lp-iphone-home {
  flex-shrink: 0;
  width: 118px;
  height: 5px;
  margin: 6px auto 10px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 100px;
}

.lp-iphone-caption {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.02em;
}

.lp-pricing-hero .lp-offer-card.lp-offer-card--phone {
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 18px;
  padding: 18px 16px 16px;
  margin-top: 0;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lp-offer-card--phone .lp-offer-now {
  font-size: clamp(34px, 9vw, 44px);
}

.lp-offer-card--phone .lp-offer-includes li {
  font-size: 13px;
  padding: 7px 0;
  padding-left: 20px;
}

.lp-offer-card--phone .lp-value-list--inline li {
  font-size: 12px;
}

.lp-offer-card--phone .lp-value-total-line {
  font-size: 14px;
  margin-bottom: 16px;
}

.lp-offer-card--phone .lp-btn--xl {
  font-size: 14px;
  padding: 14px 16px;
}

.lp-offer-card--phone .lp-guarantee-inline {
  margin-top: 14px;
  padding: 12px 14px;
}

.lp-offer-card--phone .lp-guarantee-inline strong {
  font-size: 12px;
}

.lp-offer-card--phone .lp-guarantee-inline span {
  font-size: 12px;
  line-height: 1.45;
}

.lp-pricing-hero .lp-offer-card {
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
  border: 2px solid rgba(201, 169, 98, 0.35);
  border-radius: var(--lp-radius);
  padding: 28px 22px;
  margin-top: 28px;
  text-align: left;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 60px rgba(201, 169, 98, 0.06);
}

.lp-offer-top { margin-bottom: 20px; text-align: center; }

.lp-offer-price-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-offer-was {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  font-weight: 600;
}

.lp-offer-now {
  font-size: clamp(40px, 8vw, 52px);
  font-weight: 800;
  color: var(--lp-peach);
  letter-spacing: -0.03em;
}

.lp-offer-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(201, 169, 98, 0.15);
  color: var(--lp-gold);
  border-radius: 6px;
}

.lp-offer-sub {
  font-size: 13px;
  color: var(--lp-muted);
  margin-top: 6px;
}

.lp-offer-includes {
  list-style: none;
  margin-bottom: 20px;
}

.lp-offer-includes li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  padding-left: 22px;
}

.lp-offer-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-gold);
  font-weight: 800;
  font-size: 12px;
}

.lp-value-list--inline {
  margin-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.lp-value-total-line {
  text-align: center;
  font-size: 15px;
  color: var(--lp-muted);
  margin-bottom: 20px;
}

.lp-value-total-line strong {
  color: var(--lp-peach);
  font-size: 18px;
}

.lp-pricing-hero .lp-offer-secure {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
}

.lp-hero-proof-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.lp-urgency.is-ended .lp-countdown-grid { display: none; }

.lp-urgency.is-ended .lp-urgency-text::after {
  content: " — grab launch price before it goes to €147";
}

@media (max-width: 600px) {
  .lp-back { top: 48px; left: 12px; }
  .lp-hero-grid .lp-hero-copy { text-align: center; }
  .lp-hero-checks { text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
  .lp-price-box { text-align: center; }
  .lp-btn--xl { max-width: 100%; }
}

/* —— Stijn template structure —— */

.lp-wrap--narrow {
  max-width: 680px;
}

.lp-page--stijn .lp-back {
  top: 52px;
}

.lp-hero--stijn {
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 80px);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 55%),
    var(--lp-bg);
}

.lp-title--section {
  font-size: clamp(28px, 5vw, 36px);
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.lp-hero-sub--lead {
  margin-top: 20px;
  max-width: none;
}

.lp-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 24px;
  line-height: 1.55;
}

.lp-hero-checks--center {
  max-width: 480px;
  margin: 16px auto 20px;
  text-align: left;
}

.lp-roi-line {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 28px;
  font-family: var(--lp-serif);
  font-style: italic;
}

.lp-hero-buy {
  max-width: 400px;
  margin: 0 auto;
}

.lp-price-label-top {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.lp-hero-price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.lp-price-was--hero {
  font-size: clamp(28px, 5vw, 36px);
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  font-weight: 700;
}

.lp-price-now--hero {
  font-size: clamp(40px, 8vw, 56px);
  font-weight: 800;
  color: var(--lp-peach);
  letter-spacing: -0.03em;
}

.lp-price-vat {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.lp-micro--center {
  text-align: center;
  margin-top: 12px;
}

.lp-btn--arrow {
  letter-spacing: 0.08em;
}

.lp-pain-section {
  text-align: center;
}

.lp-pain-list {
  list-style: none;
  text-align: left;
  max-width: 520px;
  margin: 0 auto 24px;
}

.lp-pain-list li {
  position: relative;
  padding: 7px 0 7px 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}

.lp-pain-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--lp-gold-dim);
}

.lp-pain-cta-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.lp-intro-section {
  text-align: center;
}

.lp-intro-visual {
  margin: 0 auto 28px;
  max-width: 280px;
}

.lp-cover-img--intro {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.lp-intro-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--lp-muted);
  margin-bottom: 20px;
}

.lp-outcomes--light {
  max-width: 480px;
  margin: 0 auto 24px;
  text-align: left;
}

.lp-outcomes--light li {
  color: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.lp-outcomes--light li::before {
  color: var(--lp-gold);
}

.lp-intro-tagline {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.lp-modules-heading {
  margin-bottom: clamp(24px, 4vw, 32px);
}

.lp-module-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-gold-dim);
  margin-bottom: 8px;
}

.lp-module-list {
  margin: 14px 0 0;
  padding-left: 1.2rem;
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}

.lp-module-list li {
  margin-bottom: 8px;
}

.lp-modules-cta {
  margin-top: 8px;
}

/* —— What's Inside — visual module rows —— */

.lp-modules-section--visual {
  padding: clamp(48px, 7vw, 88px) 0;
}

.lp-modules-section--visual .lp-modules-heading {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.lp-module-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.lp-white-divider,
.lp-module-divider {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(32px, 5vw, 52px);
  background: #ffffff;
  flex-shrink: 0;
  border: none;
}

.lp-fit-divider {
  width: 100%;
  height: clamp(24px, 3vw, 36px);
  background: #ffffff;
  border-radius: 4px;
  margin: clamp(8px, 2vw, 12px) 0;
}

@media (min-width: 820px) {
  .lp-fit-divider {
    width: clamp(20px, 3vw, 28px);
    height: auto;
    align-self: stretch;
    margin: 0;
    flex-shrink: 0;
  }

  .lp-fit-grid {
    align-items: stretch;
  }
}

.lp-module-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 44px) 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 768px) {
  .lp-module-row {
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: clamp(32px, 4vw, 48px) 0;
  }
}

.lp-module-visual {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .lp-module-visual {
    justify-content: flex-end;
  }
}

.lp-module-diagram {
  width: 100%;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.lp-diagram-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-peach);
  text-align: center;
  margin-bottom: 12px;
}

.lp-diagram-foot {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

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

.lp-diagram-table th,
.lp-diagram-table td {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: middle;
}

.lp-diagram-table th {
  width: 38%;
  font-weight: 700;
  color: #fff;
  background: rgba(201, 169, 98, 0.12);
}

.lp-diagram-table td {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.2);
}

.lp-flow-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.lp-flow-node {
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #fff;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.lp-flow-node--highlight {
  color: var(--lp-bg);
  background: linear-gradient(135deg, var(--lp-peach) 0%, var(--lp-gold) 100%);
  border-color: transparent;
}

.lp-flow-arrow {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 4px 0;
  color: var(--lp-peach);
}

.lp-module-card {
  background: #fff;
  border: 1px solid #e8dfc8;
  border-radius: 16px;
  padding: clamp(22px, 3vw, 28px) clamp(20px, 3vw, 26px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.lp-module-card .lp-module-label {
  color: var(--lp-gold-dim);
}

.lp-module-card h3 {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-text);
  margin-bottom: 10px;
}

.lp-module-card > p {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
}

.lp-module-list--checks {
  list-style: none;
  padding-left: 0;
  margin: 14px 0 0;
}

.lp-module-list--checks li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.lp-module-list--checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  font-weight: 800;
  color: var(--lp-gold-dim);
}

.lp-module-card .lp-module-end {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-gold-dim);
  font-weight: 600;
}

.lp-pricing-stijn {
  text-align: center;
}

.lp-pricing-stijn-head {
  margin-bottom: 32px;
}

.lp-pricing-cards {
  display: grid;
  gap: 20px;
  max-width: 420px;
  margin: 0 auto;
}

.lp-pricing-cards--single {
  max-width: 480px;
}

.lp-pricing-card-lead {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.lp-value-stack-list {
  list-style: none;
  text-align: left;
  margin-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 4px;
}

.lp-value-stack-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.4;
}

.lp-value-stack-list li span:last-child {
  flex-shrink: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.lp-value-included {
  color: var(--lp-gold) !important;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-value-stack-summary {
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 169, 98, 0.25);
}

.lp-value-stack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--lp-muted);
  padding: 6px 0;
}

.lp-value-stack-row--pay {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  color: #fff;
}

.lp-value-stack-row--pay .lp-pricing-card-price {
  font-size: clamp(36px, 7vw, 44px);
  margin: 0;
  color: var(--lp-peach);
}

.lp-pricing-card {
  background: var(--lp-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lp-radius);
  padding: 28px 22px;
  text-align: center;
}

.lp-pricing-card--featured {
  border-color: rgba(201, 169, 98, 0.4);
  background: linear-gradient(165deg, rgba(201, 169, 98, 0.1) 0%, rgba(8, 8, 8, 0.9) 100%);
}

.lp-pricing-card-tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 8px;
}

.lp-pricing-card-price {
  font-size: clamp(36px, 7vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.lp-pricing-card-price--alt {
  color: var(--lp-peach);
}

.lp-pricing-card-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.lp-pricing-card-includes li {
  font-size: 14px;
  color: var(--lp-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  padding-left: 20px;
}

.lp-pricing-card-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-gold);
  font-weight: 800;
  font-size: 11px;
}

.lp-pricing-card-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

.lp-pricing-anchor {
  margin-top: 28px;
  font-size: 15px;
  color: var(--lp-muted);
}

.lp-pricing-anchor strong {
  color: var(--lp-peach);
  font-size: 18px;
}

.lp-faq--stijn {
  padding-bottom: clamp(56px, 8vw, 80px);
}

.lp-faq-title--stijn {
  text-align: center;
  margin-bottom: 28px;
}

.lp-faq--stijn .lp-faq-wrap {
  max-width: 680px;
}

.lp-section--cream .lp-title {
  color: var(--lp-text);
}

@media (max-width: 600px) {
  .lp-page--stijn .lp-back { top: 48px; }
  .lp-pricing-cards { grid-template-columns: 1fr; }
}

/* —— Testimonials grid —— */

.lp-wrap--wide {
  max-width: var(--lp-wrap-wide);
}

.lp-testimonials-section {
  padding: clamp(48px, 7vw, 88px) 0;
}

.lp-testimonials-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.lp-testimonials-sub {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.lp-testimonials-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lp-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }

  .lp-testimonial-card--featured {
    padding: 32px 40px;
  }
}

@media (min-width: 960px) {
  .lp-testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lp-testimonial-card--featured,
.lp-testimonial-card--long {
  grid-column: 1 / -1;
}

.lp-testimonial-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8dfc8;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lp-testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.lp-testimonial-card--featured {
  background: linear-gradient(135deg, #fff 0%, #faf6ee 100%);
  border-color: rgba(201, 169, 98, 0.55);
  padding: 28px 24px;
  text-align: center;
}

.lp-testimonial-card--long {
  padding: 26px 24px;
}

.lp-testimonial-card blockquote {
  flex: 1;
  margin: 0 0 16px;
  font-family: var(--lp-serif);
  font-size: clamp(15px, 2vw, 17px);
  font-style: italic;
  line-height: 1.65;
  color: var(--lp-text);
}

.lp-testimonial-card--featured blockquote {
  font-size: clamp(17px, 2.4vw, 22px);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.lp-testimonial-card--long blockquote {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.75;
  max-width: 720px;
}

.lp-testimonial-card--featured.lp-testimonial-card--long blockquote {
  max-width: 680px;
}

.lp-testimonial-card footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  font-size: 13px;
  color: #666;
  margin-top: auto;
}

.lp-testimonial-card--featured footer {
  justify-content: center;
}

.lp-testimonial-card footer strong {
  color: var(--lp-text);
  font-weight: 700;
}

.lp-testimonial-card footer span {
  color: #888;
}

.lp-testimonial-card footer span::before {
  content: "·";
  margin-right: 8px;
  color: #ccc;
}

.lp-testimonials-cta {
  margin-top: 40px;
  text-align: center;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.lp-testimonials-cta .lp-micro {
  margin-top: 12px;
}

/* —— Fit check tables —— */

.lp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-fit-section {
  padding: clamp(48px, 7vw, 88px) 0;
}

.lp-fit-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.lp-fit-sub {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.lp-fit-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 820px) {
  .lp-fit-grid {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0;
  }
}

.lp-fit-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 20px 18px;
  overflow: hidden;
}

.lp-fit-panel--no {
  border-color: rgba(239, 68, 68, 0.28);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.lp-fit-panel--yes {
  border-color: rgba(201, 169, 98, 0.42);
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.lp-fit-panel-title {
  margin: 0 0 16px;
  padding: 0 4px 14px;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-fit-panel-title em {
  font-style: normal;
}

.lp-fit-panel--no .lp-fit-panel-title em {
  color: #f87171;
}

.lp-fit-panel--yes .lp-fit-panel-title em {
  color: var(--lp-peach);
}

.lp-fit-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.lp-fit-table td {
  position: relative;
  padding: 11px 8px 11px 28px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-fit-table tr:last-child td {
  border-bottom: none;
}

.lp-fit-panel--no .lp-fit-table td::before {
  content: "✕";
  position: absolute;
  left: 4px;
  top: 11px;
  font-size: 12px;
  font-weight: 800;
  color: #f87171;
}

.lp-fit-panel--yes .lp-fit-table td::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 11px;
  font-size: 12px;
  font-weight: 800;
  color: var(--lp-peach);
}

@media (max-width: 819px) {
  .lp-fit-panel {
    padding: 20px 16px 14px;
  }

  .lp-fit-table td {
    font-size: 15px;
    padding: 12px 4px 12px 28px;
  }
}

.lp-fit-cta {
  margin-top: 36px;
  text-align: center;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.lp-fit-cta .lp-btn {
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
}

.lp-fit-cta .lp-micro {
  margin-top: 12px;
}

/* —— Bonus ebooks grid —— */

.lp-bonus-section {
  padding: clamp(48px, 7vw, 88px) 0;
}

.lp-bonus-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.lp-bonus-sub {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.lp-bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (min-width: 900px) {
  .lp-bonus-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 599px) {
  .lp-bonus-grid {
    grid-template-columns: 1fr;
  }
}

.lp-bonus-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.lp-bonus-card:hover {
  border-color: rgba(201, 169, 98, 0.5);
  transform: translateY(-2px);
}

.lp-bonus-cover {
  aspect-ratio: 3 / 4;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp-bonus-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-bonus-body {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-bonus-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.lp-bonus-free {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-gold);
}

.lp-bonus-body h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.lp-bonus-body p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

.lp-bonus-cta {
  margin-top: 40px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lp-bonus-cta .lp-micro {
  margin-top: 12px;
}

/* —— Unified offer bundle —— */

.lp-offer-bundle-sub {
  margin: 14px auto 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.lp-offer-bundle-card {
  text-align: left;
  padding: 24px 22px 28px;
}

.lp-offer-product-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.25);
}

.lp-offer-cover.lp-offer-cover--main {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.lp-offer-bonuses-section {
  margin-bottom: 22px;
  padding-top: 6px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.lp-offer-section-title--center {
  text-align: center;
  margin-bottom: 18px;
}

.lp-offer-free-tag {
  color: var(--lp-gold);
  font-weight: 800;
}

.lp-offer-feature-list--bonuses {
  margin-top: 18px;
}

.lp-offer-total-block {
  text-align: center;
}

.lp-offer-total-lead {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lp-offer-visual {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.lp-offer-covers {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.lp-offer-covers--bonuses {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 520px) {
  .lp-offer-covers--bonuses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .lp-offer-cover.lp-offer-cover--main {
    max-width: 200px;
  }
}

.lp-offer-cover {
  margin: 0;
  text-align: center;
}

.lp-offer-cover--main img {
  display: block;
  margin: 0 auto;
  border-color: var(--lp-gold);
  box-shadow: 0 8px 28px rgba(201, 169, 98, 0.3);
}

.lp-offer-cover--main figcaption {
  color: var(--lp-gold);
  font-weight: 800;
  font-size: 11px;
}

.lp-offer-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.lp-offer-cover figcaption {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.55);
}

.lp-offer-covers-tag {
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.lp-offer-covers-tag strong {
  color: var(--lp-gold);
  font-weight: 800;
}


.lp-offer-section-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold);
  text-align: left;
  margin-bottom: 14px;
}

.lp-offer-section-tag {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.lp-offer-system-block {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-offer-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-offer-feature-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-offer-feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lp-offer-feature-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.lp-offer-feature-body strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.lp-offer-feature-body span {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}

.lp-offer-feature-value {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.lp-offer-bonus-block {
  margin-bottom: 20px;
}

.lp-offer-bonus-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-offer-bonus-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.4;
}

.lp-offer-bonus-list li:last-child {
  border-bottom: none;
}

.lp-value-stack-group {
  display: block !important;
  padding-top: 14px !important;
  padding-bottom: 4px !important;
  border-bottom: none !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-gold) !important;
}

.lp-offer-bundle-card .lp-pricing-card-tier {
  text-align: center;
  margin-bottom: 4px;
}

.lp-offer-bundle-card .lp-btn {
  display: flex;
  margin: 4px auto 0;
  width: 100%;
  max-width: 320px;
}

.lp-offer-bundle-card .lp-pricing-card-note {
  text-align: center;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
