:root {
  --bg: #f7f4ee;
  --bg-2: #f0ece4;
  --bg-3: #ffffff;
  --ink: #111111;
  --ink-mute: #666666;
  --cream: #f7f4ee;
  --cream-2: #f0ece4;
  --ink-dark: #111111;
  --ink-dark-mute: rgba(0,0,0,0.40);
  --gold: #8a5a20;
  --gold-2: #6e4418;
  --gold-deep: #4a2c0a;
  --gold-warm: #a06828;
  --accent: #8a5a20;
  --accent-deep: #6e4418;
  --line: rgba(0,0,0,0.08);
  --line-soft: rgba(0,0,0,0.04);
  --line-dark: rgba(0,0,0,0.12);
  --maxw: 600px;
  --serif: 'Assistant', system-ui, sans-serif;
  --sans: 'Assistant', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { background: var(--bg-2); }
html, body {
  margin: 0; padding: 0;
  width: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, video, iframe, svg { max-width: 100%; }

/* "בס״ד" mark */
.bsd {
  position: fixed;
  top: 10px;
  inset-inline-start: 14px;
  z-index: 90;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-2);
  opacity: 0.45;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
}
.light-bsd .bsd { color: var(--gold-2); opacity: 0.45; }

/* ===== SCROLL-REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ===== TOP KICKER ===== */
.top-kicker {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gold);
  background: rgba(138, 90, 32, 0.06);
  letter-spacing: 0.01em;
}

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

/* dark overrides for guarantee + final — stay dramatic */
/* specificity must beat .block.dark (0,2,0) so use tag + 2 classes (0,2,1) */
section.block.guarantee, section.block.final {
  background: #111111;
  color: #f0ebe3;
}

h1, h2, h3 {
  font-family: var(--serif);
  text-wrap: balance;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.hero {
  display: grid;
  grid-template-columns: 110px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  text-align: right;
  padding-top: 28px;
  padding-bottom: 30px;
}
.hero h1 {
  grid-column: 2;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
.hero h1 .gold {
  display: block;
  color: var(--gold);
  margin-top: 6px;
}
.hero-paren {
  grid-column: 2;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.55;
  font-weight: 500;
  opacity: 0.92;
}

/* ===== FORM ===== */
.lead {
  margin: 18px auto 0;
  max-width: 480px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 18px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.light .lead {
  background: #fff;
  border-color: var(--line-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.lead-title {
  text-align: center;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.light .lead-title { color: var(--ink-dark); }
.field { display: block; margin-bottom: 11px; }
.field input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 100px;
  padding: 16px 22px;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  text-align: right;
  direction: rtl;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: #ffffff;
}
.light .field input {
  background: var(--bg-2);
  color: var(--ink-dark);
  border-color: rgba(0, 0, 0, 0.10);
}
.light .field input:focus { border-color: var(--gold); background: #fff; }
.field input::placeholder { color: rgba(0, 0, 0, 0.35); }
.light .field input::placeholder { color: rgba(0, 0, 0, 0.35); }
.cta {
  display: block;
  width: 100%;
  background: #111111;
  color: #f7f4ee;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 19px;
  border: none;
  border-radius: 100px;
  padding: 18px;
  margin-top: 8px;
  letter-spacing: 0.005em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.10) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); }
.cta:hover::before { transform: translateX(120%); }
.cta:active { transform: translateY(0); }
.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 ===== */
.avatar {
  border-radius: 50%;
  background-image: url('../assets/natanel-about.jpg');
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: center 38%;
  background-color: var(--bg-2);
  flex-shrink: 0;
  position: relative;
}
.avatar-hero {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 118px; height: 118px;
  margin: 0;
  justify-self: center;
  box-shadow:
    0 0 0 2px var(--gold),
    0 0 0 6px rgba(138, 90, 32, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.12);
}
.avatar-hero::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(138, 90, 32, 0.10), transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.hero .lead {
  grid-column: 1 / -1;
  margin-top: 16px;
}

/* ===== HERO PHOTO ===== */
.hero-photo {
  background: var(--bg);
  padding: 16px 22px 46px;
  display: flex;
  justify-content: center;
}

/* ===== HEADINGS IN SECTIONS ===== */
.sec-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}
.sec-title .gold { color: var(--gold-warm); font-style: italic; font-weight: 700; }
.light .sec-title .gold { color: var(--gold); }
section.block.guarantee .sec-title .gold,
section.block.final .sec-title .gold { color: var(--gold-warm); }
.body-text { font-family: var(--sans); font-size: 16.5px; line-height: 1.7; }
.body-text p { margin: 0 0 16px; }
.light .body-text { color: #3a2e26; }
.dark .body-text, .dark-2 .body-text { color: #444444; }
section.block.guarantee .body-text,
section.block.final .body-text { color: rgba(240,235,227,0.92); }
.body-text .u {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.body-text strong { font-weight: 700; color: var(--gold); }
.light .body-text strong { color: var(--gold); }

.img-rounded { border-radius: 18px; overflow: hidden; }

/* ===== OFFER CARDS ===== */
.offer-intro .sec-title { text-align: center; }
.offer-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.offer-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 90, 32, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.offer-card.flag {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 28px rgba(138, 90, 32, 0.12);
  background: linear-gradient(165deg, rgba(138, 90, 32, 0.04), #ffffff);
}
.offer-card.flag::before {
  content: '⭐ הכי פופולרי';
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(180deg, var(--gold-warm), var(--gold));
  color: #ffffff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  z-index: 2;
}
.offer-ic {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  color: var(--gold);
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(138, 90, 32, 0.10), transparent 70%);
  border-radius: 50%;
  padding: 8px;
}
.offer-ic svg { width: 100%; height: 100%; }
.offer-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.offer-card p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  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(--line);
  background: var(--bg-2);
  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;
}
.reel-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  background: rgba(255,0,0,0.92);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.55), 0 0 0 4px rgba(255,255,255,0.22);
  transition: transform 0.15s ease, background 0.15s ease;
}
.reel:hover .reel-play, .reel:active .reel-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255,30,30,1);
}
.reel-play svg {
  width: 34px; height: 34px;
  fill: #fff;
  margin-right: -4px;
}
.reel-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; z-index: 3;
}
.reel.is-playing .reel-thumb,
.reel.is-playing .reel-grad,
.reel.is-playing .reel-play,
.reel.is-playing .reel-meta { display: none; }

/* ===== WHATSAPP ===== */
.wa-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wa-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.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-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 16px 0 4px;
  letter-spacing: -0.01em;
}
.wa-quote b { color: var(--gold); }

/* ===== MID CTA BUTTON ===== */
.mid-cta {
  background: var(--bg);
  padding: 8px max(22px, calc((100% - var(--maxw)) / 2)) 56px;
  text-align: center;
}
.mid-cta a {
  display: block;
  background: #111111;
  color: #f7f4ee;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 19px;
  text-decoration: none;
  border-radius: 100px;
  padding: 18px;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.mid-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* ===== QUALIFY ===== */
.qualify .lead-in {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  text-align: center;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.qualify .sec-title { text-align: center; font-size: 32px; }
.qual-group { margin-top: 26px; }
.qual-head {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
}
.qual-box.pos {
  background: linear-gradient(180deg, rgba(138, 90, 32, 0.06), rgba(138, 90, 32, 0.02));
  border: 1.5px solid rgba(138, 90, 32, 0.22);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(138, 90, 32, 0.06);
}
.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); }
.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: #d4c4a0; }
.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); color: #fff; }

/* ===== ABOUT ===== */
.about .sec-title .gold { display: block; }
.about-portrait {
  margin: 4px 0 28px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
  position: relative;
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(247,244,238,0.20) 100%);
  pointer-events: none;
}
.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 60%;
}
.about-lead {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink-dark);
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.about-lead .gold { color: var(--gold); font-style: italic; }
.about-sig {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 26px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}
.about-sig span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dark-mute);
}
.stat-box {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat {
  background: var(--bg-2);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-warm));
  opacity: 0.7;
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.025em;
  direction: ltr;
}
.stat span {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #555555;
  line-height: 1.4;
}
.stat.hero-stat {
  grid-column: 1 / -1;
  background: linear-gradient(165deg, #fff 0%, #fff 60%, rgba(138, 90, 32, 0.06) 100%);
  padding: 28px 18px;
  border-color: rgba(138, 90, 32, 0.20);
  box-shadow: 0 8px 24px rgba(138, 90, 32, 0.08);
}
.stat.hero-stat::before {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-warm));
}
.stat.hero-stat b {
  font-size: 56px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat.hero-stat span {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-dark);
  margin-top: 12px;
}
.about-pull {
  margin: 32px 0 24px;
  padding: 10px 22px 10px 0;
  border-right: 4px solid var(--gold);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink-dark);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.about-pull .gold { color: var(--gold); font-style: italic; }
.about-cta { text-decoration: none; text-align: center; }

/* ===== GUARANTEE ===== */
.guarantee .sec-title { font-size: 30px; text-align: center; }
.pledge-box {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 24px 22px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: #f0ebe3;
  line-height: 1.55;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}
.guar-seal {
  margin: 26px 0 6px;
  display: flex;
  justify-content: center;
}
.seal {
  position: relative;
  width: 156px; height: 156px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, var(--gold-warm) 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(138, 90, 32, 0.22),
    0 0 0 12px rgba(138, 90, 32, 0.10),
    0 0 60px rgba(160, 104, 40, 0.20),
    inset 0 3px 8px rgba(255, 255, 255, 0.45),
    inset 0 -12px 22px rgba(0, 0, 0, 0.25),
    0 22px 44px rgba(0, 0, 0, 0.35);
}
.seal::before {
  content: '';
  position: absolute; inset: 11px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.62);
}
.seal .pct {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 800;
  line-height: 0.95;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.30);
  letter-spacing: -0.03em;
}
.seal .lbl {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-top: 4px;
  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-warm); }

/* ===== FINAL ===== */
.final .sec-title { color: var(--gold-warm); text-align: center; font-size: 32px; }
.final .sub {
  text-align: center;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: rgba(240, 235, 227, 0.85);
  margin: 0 0 6px;
}

/* ===== FOOTER ===== */
footer {
  background: #111111;
  padding: 30px max(22px, calc((100% - var(--maxw)) / 2)) 40px;
  text-align: center;
  color: rgba(240, 235, 227, 0.45);
  font-family: var(--sans);
  font-size: 12.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
footer .links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
footer a { color: rgba(240, 235, 227, 0.45); text-decoration: underline; transition: color 0.2s var(--ease); }
footer a:hover { color: var(--gold-warm); }

/* ===== MOBILE: tighter side padding so forms feel full-width ===== */
@media (max-width: 640px) {
  section.block { padding-inline: 14px; }
  .hero .lead {
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
    margin-inline: 0;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.10);
    border-color: rgba(0, 0, 0, 0.13);
  }
}

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

  .lp .top-kicker { max-width: 820px; margin-inline: auto; }
  .lp .body-text { max-width: 820px; margin-inline: auto; }
  .lp .sec-title { max-width: 880px; margin-inline: auto; }
  .lp .pledge-box { max-width: 720px; margin-inline: auto; }

  .lp .hero {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    column-gap: 48px;
    align-items: center;
    text-align: right;
    padding-block: 66px;
  }
  .lp .hero .avatar-hero {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 300px; height: 300px;
    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;
    text-wrap: wrap;
  }
  .lp .hero .hero-paren { grid-column: 2; margin: 0; }
  .lp .hero .lead { grid-column: 2; margin: 26px 0 0; }

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

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

  .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; }

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

  .lp .mid-cta a { max-width: 460px; margin-inline: auto; }

  .lp .reel-carousel { margin-inline: 0; padding-inline: 0; }
  .lp .reel { flex-basis: 300px; }
}
