/* MAMAN SIGNATURE — "I MADE IT" course sales page.
   Loaded after style.css; inherits its tokens, reset, buttons and top bar.
   Written with logical properties so one sheet serves both LTR and RTL. */

body.course { font-size: 1.1rem; }

/* Layout bands */
.band { padding: 78px 0; }
.band--alt { background: var(--navy-900); }
.band--tight { padding: 46px 0; }

.prose {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: 22px;
  text-align: start;
}

.prose p { margin-bottom: 1.05em; }
.prose p:last-child { margin-bottom: 0; }

.prose--center { text-align: center; }

.wide {
  max-width: 1020px;
  margin-inline: auto;
  padding-inline: 22px;
}

.band h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.3;
}

.eyebrow {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

html[lang="he"] .eyebrow { letter-spacing: 0.08em; }

/* Beats of the sales letter: short lines that should breathe */
.beat {
  color: var(--text-dim);
  margin-bottom: 0.5em;
}

.beat--strong { color: var(--cream); font-weight: 600; }

.quote-line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.4vw, 1.75rem);
  line-height: 1.45;
  color: var(--gold-light);
  text-align: center;
  margin: 1.2em auto;
  max-width: 640px;
}

.lede {
  font-size: 1.15rem;
  color: var(--cream);
}

/* Hero */
.course-hero {
  text-align: center;
  padding: 74px 20px 84px;
  background:
    radial-gradient(ellipse 75% 55% at 50% 15%, rgba(22, 41, 74, 0.6), transparent 70%),
    var(--navy-950);
}

.course-hero .wordmark {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.18em;
}

.course-hero .wordmark em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-rule {
  width: 84px;
  height: 2px;
  margin: 26px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.course-hero .beat { font-size: 1.1rem; }

.course-hero .btn { margin-top: 30px; }

.hero-note {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--text-dim);
}

/* Top bar additions for this page */
.topbar-cta {
  flex: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--navy-950);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.topbar-cta:hover { filter: brightness(1.08); }

/* Checklists */
.checklist {
  list-style: none;
  max-width: 620px;
  margin-inline: auto;
  margin-block: 26px 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-inline-start: 34px;
  color: var(--cream);
}

.checklist li::before {
  content: "✔";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.05rem;
}

.checklist--no li { color: var(--text-dim); }
.checklist--no li::before { content: "✘"; color: #a8685c; }

/* "For / not for" pair */
.audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.audience-col {
  background: var(--navy-800);
  border: 1px solid rgba(201, 164, 92, 0.14);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.audience-col h3 {
  font-size: 1.2rem;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 4px;
}

.audience-col .checklist { margin-top: 18px; }

/* Modules */
.modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.module {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
}

.module-num {
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.module h3 { font-size: 1.24rem; color: var(--cream); margin-bottom: 12px; }

.module ul {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  color: var(--text-dim);
  font-size: 0.99rem;
}

.module li { position: relative; padding-inline-start: 18px; }

.module li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
}

.module .media-ph { margin-top: auto; }

/* Bonuses */
.bonuses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.bonus {
  background: var(--navy-800);
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.bonus-tag {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.bonus h3 { font-size: 1.12rem; color: var(--gold-light); margin-bottom: 8px; }

.bonus p { color: var(--text-dim); font-size: 0.98rem; }

.bonus .checklist { margin-top: 14px; }
.bonus .checklist li { font-size: 0.96rem; color: var(--text-dim); }

/* Guarantee */
.guarantee-card {
  max-width: 700px;
  margin-inline: auto;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border: 1px solid rgba(201, 164, 92, 0.4);
  border-radius: var(--radius);
  padding: 38px 32px;
  text-align: start;
}

.guarantee-card h3 {
  font-size: 1.35rem;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 18px;
}

.guarantee-seal {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 54px;
  text-align: center;
}

/* Pricing */
.pricing-card {
  max-width: 480px;
  margin-inline: auto;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 10px 46px rgba(201, 164, 92, 0.14);
}

.price-was {
  color: var(--text-dim);
  font-size: 1.05rem;
  text-decoration: line-through;
}

.price-now {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 3.6rem);
  line-height: 1.1;
  color: var(--gold-light);
  margin: 4px 0 2px;
  direction: ltr;
}

.price-note { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 22px; }

.pricing-card .btn { width: 100%; }

.enroll-note {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-dim);
  min-height: 1.4em;
}

.enroll-note.warn { color: var(--gold-light); }

/* Media placeholders — swap the <figure> for an <img>/<video>, keep the modifier class */
.media-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    radial-gradient(ellipse at center, rgba(201, 164, 92, 0.07), transparent 70%),
    var(--navy-800);
  border: 1px dashed rgba(201, 164, 92, 0.35);
  border-radius: var(--radius);
  color: var(--text-dim);
  text-align: center;
  padding: 16px;
}

.media-ph figcaption {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.media-ph svg { width: 30px; height: 30px; opacity: 0.55; }

.media-ph--video { aspect-ratio: 16 / 9; }
.media-ph--photo { aspect-ratio: 4 / 3; }
.media-ph--portrait { aspect-ratio: 3 / 4; }
.media-ph--wide { aspect-ratio: 21 / 9; }

.ph-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.ph-grid--three { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.media-frame { max-width: 860px; margin-inline: auto; margin-top: 34px; }

/* Story */
.story .prose p { color: var(--text); }
.story .beat { color: var(--text); }

.story-highlight {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin: 1.1em 0;
}

/* Closing + P.S. */
.closer { text-align: center; }

.ps {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 22px;
  color: var(--text-dim);
  font-size: 0.98rem;
  text-align: start;
}

.ps b { color: var(--cream); }

/* Thank-you page */
.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 22px;
}

.thanks-inner { max-width: 520px; }

.thanks-mark {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .topbar-link { display: none; }
}

@media (max-width: 560px) {
  body.course { font-size: 1.05rem; }
  .band { padding: 58px 0; }
  .course-hero { padding: 54px 18px 64px; }
}
