* { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #0a0a0a;
    color: #f0f0f0;
  }

  .lp-root {
    max-width: 760px;
    margin: 0 auto;
    overflow-x: hidden;
  }

  /* HERO */
  .hero {
    background: linear-gradient(180deg, #1a0000 0%, #0a0a0a 100%);
    padding: 60px 32px 48px;
    text-align: center;
    border-bottom: 1px solid #2a0000;
  }

  .hero-label {
    display: inline-block;
    background: #c00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 12px;
  }

  .hero h1 span { color: #e00; }

  .hero .sub {
    font-size: 15px;
    color: #aaa;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
  }

  /* PHONE MOCKUP */
  .phone-mockup {
    width: 200px;
    margin: 0 auto 32px;
  }

  .phone-frame {
    background: #111;
    border: 2px solid #333;
    border-radius: 28px;
    padding: 12px 8px;
    box-shadow: 0 0 0 4px #1a1a1a;
  }

  .phone-notch {
    width: 60px;
    height: 10px;
    background: #222;
    border-radius: 6px;
    margin: 0 auto 8px;
  }

  .phone-screen {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
  }

  .video-thumb {
    background: linear-gradient(135deg, #1a0000, #2a0a0a);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .play-btn {
    width: 36px;
    height: 36px;
    background: rgba(200,0,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .play-btn::after {
    content: '';
    border-left: 12px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-left: 3px;
  }

  .progress-bar-wrap { height: 3px; background: #333; }
  .progress-bar-fill { height: 3px; background: #c00; width: 42%; }

  .video-info { padding: 8px 10px; }
  .video-title { font-size: 10px; font-weight: 600; color: #fff; margin-bottom: 3px; }
  .video-meta { font-size: 9px; color: #777; }

  .module-pills { display: flex; gap: 4px; padding: 8px 10px; flex-wrap: wrap; }

  .mpill {
    font-size: 8px;
    padding: 3px 7px;
    border-radius: 20px;
    background: #2a0000;
    color: #e44;
    font-weight: 500;
  }

  .mpill.active { background: #c00; color: #fff; }

  .phone-home {
    width: 30px;
    height: 3px;
    background: #444;
    border-radius: 2px;
    margin: 8px auto 0;
  }

  /* BADGES */
  .badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .badge { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #ccc; }

  .badge-dot {
    width: 16px;
    height: 16px;
    background: #1a3a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #4c4;
  }

  /* BUTTONS */
  .btn-cta {
    display: block;
    background: #1a7a1a;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    letter-spacing: 0.3px;
  }

  /* SECTION */
  .section {
    padding: 56px 32px;
    border-bottom: 1px solid #161616;
  }

  .section-red { background: #0f0000; }
  .section-dark { background: #080808; }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c00;
    margin-bottom: 12px;
  }

  .section h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .section p {
    font-size: 15px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  /* PAIN LIST */
  .pain-list { list-style: none; margin: 24px 0; }

  .pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #161616;
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
  }

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

  .pain-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #1a0000;
    border: 1px solid #400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #c44;
    margin-top: 2px;
  }

  /* PILLARS */
  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
  }

  .pillar-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
  }

  .pillar-icon { font-size: 28px; margin-bottom: 10px; }
  .pillar-card h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .pillar-card p { font-size: 12px; color: #666; line-height: 1.6; margin: 0; }

  /* BENEFITS */
  .benefits-list { list-style: none; margin: 24px 0; }

  .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    border-bottom: 1px solid #161616;
  }

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

  .check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #0f2a0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #4a4;
    margin-top: 2px;
  }

  /* DESK MOCKUP */
  .desk-mockup {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    margin: 32px 0;
  }

  .desk-mockup-bar {
    background: #1a1a1a;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #222;
  }

  .dot-r { width: 10px; height: 10px; border-radius: 50%; background: #c00; }
  .dot-y { width: 10px; height: 10px; border-radius: 50%; background: #884400; }
  .dot-g { width: 10px; height: 10px; border-radius: 50%; background: #1a5a1a; }

  .desk-screen {
    background: #0f0f0f;
    padding: 20px;
    display: flex;
    gap: 16px;
  }

  .video-player { flex: 3; background: #1a0000; border-radius: 6px; overflow: hidden; }

  .vp-video {
    height: 120px;
    background: #200005;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vp-play {
    width: 40px;
    height: 40px;
    background: rgba(180,0,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vp-play::after {
    content: '';
    border-left: 14px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 4px;
  }

  .vp-bottom {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .vp-progress { flex: 1; height: 3px; background: #333; border-radius: 2px; overflow: hidden; }
  .vp-fill { height: 3px; background: #c00; width: 28%; }
  .vp-time { font-size: 10px; color: #666; white-space: nowrap; }
  .vp-title { padding: 0 12px 10px; font-size: 11px; font-weight: 600; color: #ddd; }

  .playlist { flex: 2; display: flex; flex-direction: column; gap: 4px; }

  .pl-label {
    font-size: 9px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .pl-item {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px 8px;
    border-radius: 5px;
  }

  .pl-item.active {
    background: #1e0000;
    border: 1px solid #400;
  }

  .pl-num { font-size: 9px; color: #555; width: 14px; text-align: right; }
  .pl-name { font-size: 10px; color: #aaa; line-height: 1.4; }
  .pl-item.active .pl-name { color: #fff; }
  .pl-item.active .pl-num { color: #c00; }

  .pl-dot { width: 6px; height: 6px; border-radius: 50%; background: #333; flex-shrink: 0; }
  .pl-item.active .pl-dot { background: #c00; }

  /* MODULES */
  .modules-grid { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }

  .module-card {
    background: #111;
    border: 1px solid #222;
    border-left: 3px solid #c00;
    border-radius: 8px;
    padding: 20px 20px 20px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .module-card.featured { border-left-color: #e55; background: #130000; }

  .module-num { font-size: 11px; font-weight: 700; color: #c00; letter-spacing: 1px; white-space: nowrap; padding-top: 2px; }
  .module-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .module-card p { font-size: 13px; color: #777; line-height: 1.7; margin: 0; }

  .module-badge {
    display: inline-block;
    background: #2a0000;
    color: #e44;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  /* BONUS */
  .bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }

  .bonus-card {
    background: #0f0f0f;
    border: 1px solid #1f1f00;
    border-top: 2px solid #884400;
    border-radius: 8px;
    padding: 18px;
  }

  .bonus-tag { font-size: 9px; font-weight: 700; color: #884; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
  .bonus-card h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .bonus-card p { font-size: 12px; color: #666; line-height: 1.6; margin: 0; }

  /* PRICE STACK */
  .price-stack {
    background: #0f0000;
    border: 1px solid #2a0000;
    border-radius: 12px;
    padding: 32px 28px;
    margin: 32px 0;
  }

  .stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #1a0000;
    font-size: 14px;
    color: #888;
  }

  .stack-item:last-of-type { border-bottom: none; }
  .stack-price { font-size: 13px; color: #555; text-decoration: line-through; }
  .stack-divider { height: 1px; background: #300; margin: 16px 0; }

  .stack-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .stack-total-label { font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: 1px; }
  .stack-old { font-size: 13px; color: #555; text-decoration: line-through; }

  .price-cta { text-align: center; margin-top: 24px; }
  .price-big { font-size: 48px; font-weight: 900; color: #fff; line-height: 1; }
  .price-big span { font-size: 20px; font-weight: 500; color: #888; vertical-align: super; }
  .price-sub { font-size: 13px; color: #666; margin-top: 6px; margin-bottom: 24px; }

  /* GUARANTEE */
  .guarantee-box {
    background: #0a0f0a;
    border: 1px solid #1a2a1a;
    border-radius: 10px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 32px 0;
  }

  .guarantee-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #0f2a0f;
    border: 2px solid #1a4a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }

  .guarantee-box h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .guarantee-box p { font-size: 14px; color: #777; line-height: 1.7; margin: 0; }

  /* WHATSAPP MOCKUP */
  .whatsapp-mockup {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
  }

  .wa-header {
    background: #1a0a00;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #2a1a00;
  }

  .wa-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3a1a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #c84;
  }

  .wa-name { font-size: 13px; font-weight: 600; color: #fff; }
  .wa-online { font-size: 10px; color: #4a4; }

  .wa-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #0d0d0d;
  }

  .wa-bubble {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: #ddd;
  }

  .wa-bubble.received { background: #1a1a1a; border-bottom-left-radius: 2px; align-self: flex-start; }
  .wa-bubble.sent { background: #1a0a00; border-bottom-right-radius: 2px; align-self: flex-end; border: 1px solid #2a1a00; }
  .wa-time { font-size: 9px; color: #555; margin-top: 4px; text-align: right; }

  /* FAQ */
  .faq-list { display: flex; flex-direction: column; gap: 2px; margin: 24px 0; }

  .faq-item {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 4px;
  }

  .faq-q {
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-q::after { content: '+'; color: #c00; font-size: 18px; font-weight: 400; flex-shrink: 0; margin-left: 12px; }

  .faq-a {
    padding: 12px 18px 16px;
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    border-top: 1px solid #1e1e1e;
  }

  /* STORY */
  .story-section { padding: 56px 32px; border-bottom: 1px solid #161616; }

  .story-quote { border-left: 3px solid #c00; padding-left: 20px; margin: 24px 0; }
  .story-quote p { font-size: 15px; color: #aaa; line-height: 1.9; font-style: italic; margin: 0; }

  /* FOOTER */
  .footer {
    background: #050505;
    text-align: center;
    padding: 40px 32px;
    border-top: 1px solid #111;
  }

  .footer p { font-size: 12px; color: #444; margin-bottom: 8px; }

  .divider { height: 1px; background: #1a1a1a; }
  .text-red { color: #c00; }
  .text-center { text-align: center; }
  .mb-24 { margin-bottom: 24px; }

/* WordPress/performance refinements */
html { scroll-behavior: smooth; }
body.psl-lp-body { margin: 0; background: #0a0a0a; }
.lp-root button, .lp-root a { -webkit-tap-highlight-color: transparent; }
.lp-root .btn-cta { transition: transform .15s ease, filter .15s ease; }
.lp-root .btn-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (max-width: 640px) {
  .lp-root { max-width: 100%; }
  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 32px; }
  .section, .story-section { padding: 44px 20px; }
  .section h2 { font-size: 24px; }
  .pillars, .bonus-grid { grid-template-columns: 1fr; }
  .desk-screen { flex-direction: column; padding: 14px; }
  .module-card { flex-direction: column; gap: 8px; padding: 18px; }
  .guarantee-box { flex-direction: column; padding: 22px; }
  .price-stack { padding: 26px 18px; }
  .stack-item { align-items: flex-start; gap: 12px; }
  .stack-price { white-space: nowrap; }
  .btn-cta { font-size: 15px; padding: 17px 18px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 29px; }
  .price-big { font-size: 42px; }
  .phone-mockup { width: 188px; }
}

/* Copy update refinements */
.bonus-value {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #c84;
}
.hero h1 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .hero h1 { font-size: 29px; }
}
@media (max-width: 390px) {
  .hero h1 { font-size: 26px; }
}

/* Image mockups inserted into LP */
.lp-media {
  margin: 30px auto 32px;
  max-width: 680px;
}
.lp-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 45px rgba(0,0,0,.42);
}
.hero-media { margin-top: 24px; }
.hero-image {
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}
.modules-media {
  max-width: 520px;
  margin-top: 28px;
}
.modules-image {
  max-height: 640px;
  object-fit: cover;
  object-position: center;
}

.bonus-grid {
  grid-template-columns: 1fr;
}
.bonus-card-with-image {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
}
.bonus-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.bonus-content p { margin-bottom: 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 0;
}
.testimonial-card {
  background: #101010;
  border: 1px solid #222;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
}
.testimonial-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .lp-media { max-width: 100%; margin: 24px auto 28px; }
  .hero-image { max-height: none; }
  .modules-media { max-width: 100%; }
  .modules-image { max-height: none; }
  .bonus-card-with-image { grid-template-columns: 1fr; }
  .bonus-image { height: auto; max-height: 360px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
}
