:root {
  --bg: #432c20;
  --bg-2: #503626;
  --bg-3: #614333;
  --ink: #f3e8e2;
  --ink-mute: #ad9087;
  --cream: #f3ece2;
  --cream-2: #e9ded0;
  --ink-dark: #1a1110;
  --ink-dark-mute: #6f5a52;
  --gold: #b06236;
  --gold-2: #874621;
  --gold-deep: #563014;
  --line: rgba(176, 98, 54, 0.32);
  --line-soft: rgba(243, 232, 226, 0.09);
  --line-dark: rgba(26, 17, 16, 0.12);
  --maxw: 600px;
}
* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
body {
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Heebo', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

/* ===== TOP KICKER ===== */
.top-kicker {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #ffffff;
  background: transparent;
}

/* ===== SECTION COMMON ===== */
section.block { padding: 46px max(22px, calc((100% - var(--maxw)) / 2)); }
.block.dark { background: var(--bg); }
.block.dark-2 { background: var(--bg-2); }
.light { background: var(--cream); color: var(--ink-dark); }

h1, h2 { text-wrap: balance; }

.hero { text-align: center; }
.hero h1 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.hero h1 .gold {
  display: block;
  color: var(--gold);
  margin-top: 10px;
}
.hero-paren {
  font-size: 15.5px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.55;
}

/* ===== FORM ===== */
.lead {
  margin: 26px auto 0;
  max-width: 460px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 22px 18px;
}
.light .lead {
  background: #fff;
  border-color: var(--line-dark);
  box-shadow: 0 10px 30px rgba(26, 21, 16, 0.06);
}
.lead-title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--ink);
}
.light .lead-title { color: var(--ink-dark); }
.field { display: block; margin-bottom: 12px; }
.field input {
  width: 100%;
  background: var(--bg-3);
  border: none;
  border-radius: 100px;
  padding: 17px 22px;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  text-align: right;
  direction: rtl;
}
.light .field input { background: #5c5751; color: #fff; }
.field input::placeholder { color: rgba(244, 236, 221, 0.62); }
.light .field input::placeholder { color: rgba(255,255,255,0.8); }
.cta {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #fdf3ef;
  font-family: inherit;
  font-weight: 800;
  font-size: 19px;
  border: none;
  border-radius: 100px;
  padding: 18px;
  margin-top: 6px;
  box-shadow: 0 10px 26px rgba(135, 70, 33, 0.42);
  cursor: pointer;
}
.lead-note {
  text-align: center;
  color: var(--ink-mute);
  font-size: 13px;
  margin: 16px 0 0;
  line-height: 1.5;
}
.light .lead-note { color: var(--ink-dark-mute); }

/* ===== HERO AVATAR (above form) ===== */
.avatar {
  border-radius: 50%;
  background-image: url('assets/natanel.png');
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: center 32%;
  background-color: var(--bg-3);
  flex-shrink: 0;
}
.avatar-hero {
  width: 188px; height: 188px;
  margin: 4px auto 26px;
  box-shadow: 0 0 0 3px var(--gold), 0 0 0 10px rgba(176,98,54,0.18), 0 14px 30px rgba(0,0,0,0.32);
}

/* ===== HERO PHOTO ===== */
.hero-photo {
  background: radial-gradient(circle at 50% 42%, rgba(176,98,54,0.42), transparent 62%), var(--bg);
  padding: 16px 22px 46px;
  display: flex;
  justify-content: center;
}

/* ===== HEADINGS IN SECTIONS ===== */
.sec-title {
  font-size: 30px;
  line-height: 1.16;
  font-weight: 900;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.sec-title .gold { color: var(--gold); }
.body-text { font-size: 16px; line-height: 1.7; }
.body-text p { margin: 0 0 16px; }
.light .body-text { color: #3a342b; }
.dark .body-text, .dark-2 .body-text { color: var(--ink-mute); }
.body-text .u { text-decoration: underline; text-underline-offset: 3px; }
.body-text strong { font-weight: 700; }
.dark .body-text strong, .dark-2 .body-text strong { color: var(--ink); }

/* ===== IMAGE BLOCK ===== */
.img-block {
  margin: 0 0 6px;
  border-radius: 16px;
  overflow: hidden;
}
.img-block image-slot, .img-block img { width: 100%; display: block; }
.img-rounded { border-radius: 18px; overflow: hidden; }

/* ===== OFFER CARDS ===== */
.offer-intro .sec-title { text-align: center; }
.offer-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offer-card {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
}
.offer-card.flag {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 12px 30px rgba(135, 70, 33, 0.2);
}
.offer-ic {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  color: var(--gold);
}
.offer-ic svg { width: 100%; height: 100%; }
.offer-card h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--ink);
}
.offer-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0;
}

/* ===== NOT ALL / BONUS ===== */
.not-all { text-align: center; }
.not-all .big {
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 14px;
}
.not-all .sub {
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  line-height: 1.5;
  margin: 0;
}

/* ===== VIDEO TESTIMONIALS (REEL CAROUSEL) ===== */
.videos .sec-title { text-align: center; }
.reel-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 26px -22px 0;
  padding: 4px 22px 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reel-carousel::-webkit-scrollbar { display: none; }
.reel {
  flex: 0 0 74%;
  scroll-snap-align: center;
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  background: var(--bg-3);
  text-decoration: none;
}
.reel image-slot, .reel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 26%, transparent 52%, rgba(0,0,0,0.86) 100%);
  pointer-events: none;
}
.reel-meta {
  position: absolute; bottom: 16px; right: 14px; left: 14px;
  text-align: center; color: #fff;
  z-index: 2;
}
.reel-name {
  display: block;
  font-size: 19px; font-weight: 900; line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.reel-tag {
  display: inline-block;
  margin-top: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  color: #f3b878;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(243,184,120,0.5);
  border-radius: 100px;
  padding: 3px 12px;
}
.reel-hint {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ===== VIDEO LIGHTBOX ===== */
.reel-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(8, 5, 4, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.reel-modal[hidden] { display: none; }
.reel-modal-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  background: #000;
}
.reel-modal-frame iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}
.reel-modal-close {
  position: absolute;
  top: 18px; left: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(243,232,226,0.4);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
}
  position: absolute; top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 40px;
  background: #f00;
  border-radius: 11px;
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.reel-play svg { width: 22px; height: 22px; fill: #fff; }

/* ===== WHATSAPP ===== */
.wa-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wa-card {
  border: 1.5px solid var(--gold);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(233, 165, 46, 0.06), transparent);
}
.wa-chat {
  background: #0b141a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0h40v40H0z' fill='%230b141a'/%3E%3Ccircle cx='10' cy='10' r='1' fill='%23ffffff08'/%3E%3Ccircle cx='30' cy='28' r='1' fill='%23ffffff08'/%3E%3C/svg%3E");
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-day {
  align-self: center;
  background: #1d2c35;
  color: #8fa3ad;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.wa-bub {
  max-width: 82%;
  padding: 8px 11px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #e7eef0;
  position: relative;
}
.wa-bub .t {
  display: block;
  font-size: 10px;
  color: #ffffff7a;
  text-align: left;
  margin-top: 3px;
}
.wa-in { align-self: flex-start; background: #1f2c33; border-top-right-radius: 4px; }
.wa-out { align-self: flex-end; background: #144d37; border-top-left-radius: 4px; }
.wa-out .t { color: #8fd0a8; }
.wa-quote {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 14px 0 4px;
}
.wa-quote b { color: var(--gold); }

/* ===== MID CTA BUTTON ===== */
.mid-cta {
  background: var(--bg);
  padding: 8px max(22px, calc((100% - var(--maxw)) / 2)) 46px;
  text-align: center;
}
.mid-cta a {
  display: block;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #fdf3ef;
  font-weight: 800;
  font-size: 19px;
  text-decoration: none;
  border-radius: 100px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(135, 70, 33, 0.42);
}

/* ===== QUALIFY ===== */
.qualify .lead-in { font-size: 24px; font-weight: 800; margin: 0 0 4px; text-align: center; }
.qualify .sec-title { text-align: center; font-size: 30px; }
.qual-group { margin-top: 22px; }
.qual-head {
  font-size: 21px;
  font-weight: 900;
  text-align: center;
  margin: 0 0 18px;
}
.qual-box.pos {
  background: linear-gradient(180deg, rgba(233, 165, 46, 0.16), rgba(233, 165, 46, 0.04));
  border: 1.5px solid var(--gold);
  border-radius: 18px;
  padding: 24px 20px;
}
.qual-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  font-size: 16px;
  line-height: 1.45;
}
.qual-item:not(:last-child) { border-bottom: 1px solid var(--line-dark); }
.qual-item .txt { flex: 1; }
.toggle {
  flex-shrink: 0;
  width: 50px; height: 28px;
  border-radius: 100px;
  position: relative;
}
.toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
}
.toggle.off { background: #f3b6b0; }
.toggle.off::after { left: 3px; }
.toggle.on { background: #e6c6ac; }
.toggle.on::after { right: 3px; }
.toggle .ic {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 900;
  z-index: 2;
}
.toggle.off .ic { left: 3px; background: #e03a2f; color: #fff; }
.toggle.on .ic { right: 3px; background: var(--gold-2); color: #fff; }

/* ===== ABOUT ===== */
.about .sec-title .gold { display: block; }
.about-portrait {
  margin: 4px 0 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26,17,16,0.18);
}
.about-portrait image-slot { width: 100%; display: block; }
.about-photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.about-lead {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink-dark);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.about-lead .gold { color: var(--gold); }
.about-sig {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 26px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-size: 19px;
  font-weight: 900;
  color: var(--gold);
}
.about-sig span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dark-mute);
}
.stat-box {
  margin: 26px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(26,21,16,0.05);
}
.stat b {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  direction: ltr;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dark-mute);
  line-height: 1.4;
}
.about-pull {
  margin: 30px 0 22px;
  padding: 6px 18px 6px 0;
  border-right: 4px solid var(--gold);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--ink-dark);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.about-pull .gold { color: var(--gold); }
.about-cta { text-decoration: none; text-align: center; }

/* ===== GUARANTEE ===== */
.guarantee .sec-title { font-size: 28px; text-align: center; }
.pledge-box {
  margin-top: 24px;
  background: linear-gradient(180deg, rgba(176,98,54,0.18), rgba(176,98,54,0.05));
  border: 1.5px solid var(--gold);
  border-radius: 16px;
  padding: 22px 20px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.5;
  text-align: center;
}
.guar-seal {
  margin: 26px 0 6px;
  display: flex;
  justify-content: center;
}
.seal {
  position: relative;
  width: 142px; height: 142px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, #d98a48 0%, var(--gold) 42%, var(--gold-2) 100%);
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  box-shadow:
    0 0 0 5px rgba(176,98,54,0.22),
    0 0 0 11px rgba(176,98,54,0.1),
    inset 0 3px 8px rgba(255,255,255,0.4),
    inset 0 -10px 20px rgba(0,0,0,0.28),
    0 18px 38px rgba(0,0,0,0.5);
}
.seal::before {
  content: '';
  position: absolute; inset: 11px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.6);
}
.seal .pct {
  font-size: 40px; font-weight: 900; line-height: 0.95;
  text-shadow: 0 2px 3px rgba(0,0,0,0.3);
}
.seal .lbl {
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  margin-top: 3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* ===== SECRET ===== */
.secret .punch {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin: 18px 0;
  line-height: 1.5;
}
.secret .punch .gold { color: var(--gold); }

/* ===== FINAL ===== */
.final .sec-title { color: var(--gold); text-align: center; font-size: 30px; }
.final .sub {
  text-align: center;
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
}

/* ===== FOOTER ===== */
footer {
  background: #0f0c08;
  padding: 26px max(22px, calc((100% - var(--maxw)) / 2)) 36px;
  text-align: center;
  color: var(--ink-mute);
  font-size: 12px;
  border-top: 1px solid var(--line-soft);
}
footer .links {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 14px;
}
footer a { color: var(--ink-mute); text-decoration: underline; }

/* ===================================================================
   DESKTOP LAYOUT (page 1 only — scoped to .lp). Mobile is unchanged.
   =================================================================== */
@media (min-width: 880px) {
  .lp { --maxw: 1060px; }

  /* readable widths for text + headings */
  .lp .top-kicker { max-width: 720px; margin-inline: auto; }
  .lp .body-text { max-width: 720px; margin-inline: auto; }
  .lp .sec-title { max-width: 820px; margin-inline: auto; }
  .lp .pledge-box { max-width: 640px; margin-inline: auto; }

  /* HERO: photo beside headline + form */
  .lp .hero {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    column-gap: 56px;
    align-items: center;
    text-align: right;
    padding-block: 66px;
  }
  .lp .hero .avatar-hero {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 330px; height: 330px;
    margin: 0;
    justify-self: center;
    background-image: url('assets/natanel-about.jpg');
    background-size: cover;
    background-position: center 30%;
  }
  .lp .hero h1 { grid-column: 2; font-size: 42px; line-height: 1.16; margin: 0 0 12px; }
  .lp .hero .hero-paren { grid-column: 2; margin: 0; }
  .lp .hero .lead { grid-column: 2; margin: 26px 0 0; }

  /* OFFER: 3-column grid */
  .lp .offer-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
  }

  /* WHATSAPP: 3-column grid */
  .lp .wa-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
  }

  /* QUALIFY: the two groups side by side */
  .lp .qualify {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 28px;
    align-items: start;
  }
  .lp .qualify .lead-in,
  .lp .qualify .sec-title { grid-column: 1 / -1; }
  .lp .qual-group { margin-top: 18px; }

  /* ABOUT: tighter reading column */
  .lp .about { padding-inline: max(22px, calc((100% - 820px) / 2)); }
  .lp .about-portrait { max-width: 460px; margin-inline: auto; }

  /* MID CTA button shouldn't span full width */
  .lp .mid-cta a { max-width: 460px; margin-inline: auto; }

  /* REELS: show several across the row */
  .lp .reel-carousel { margin-inline: 0; padding-inline: 0; }
  .lp .reel { flex-basis: 300px; }
}
