/* ═══════════════════════════════════════════════
   איראן מבריאת העולם ועד היום — Styles
   RTL · Hebrew · Secular One + Heebo
   פלטה מתוך באנר הקורס: טורקיז עמוק · זהב · קלף
═══════════════════════════════════════════════ */

/* ── Variables ───────────────────────────── */
:root {
  --teal-deep:    #0e2c37;
  --teal:         #143a47;
  --teal-soft:    #1d4a5a;

  --gold:         #b3831f;
  --gold-warm:    #cf9f45;
  --gold-pale:    #e9d3a0;
  --gold-bg:      rgba(179, 131, 31, 0.1);
  --gold-border:  rgba(179, 131, 31, 0.3);

  --bg:           #f8efdc;
  --bg-alt:       #efe2c4;
  --bg-card:      #fffdf4;

  --text:         #211605;
  --text-2:       #41321b;
  --muted:        #77644a;
  --border:       #e3d2ac;
  --border-2:     #ccb787;

  --font-display: 'Secular One', 'Heebo', sans-serif;
  --font-body:    'Heebo', sans-serif;

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 12px rgba(33,22,5,0.06);
  --shadow:       0 4px 24px rgba(33,22,5,0.09);
  --shadow-lg:    0 8px 40px rgba(33,22,5,0.13);
  --transition:   0.2s ease;
  --max-w:        1080px;
  --pad:          80px;
}

/* ── Reset & Base ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ── Container ───────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section helpers ─────────────────────── */
.section { padding: var(--pad) 0; }
.section[id] { scroll-margin-top: 16px; }

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  justify-content: center;
  border: 2px solid transparent;
  min-height: 50px;
  white-space: nowrap;
}
.btn-large { padding: 15px 34px; font-size: 1.05rem; min-height: 56px; }
.btn-full  { width: 100%; white-space: normal; }

.btn-price {
  background: rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 2px 12px;
  font-size: 0.9em;
}

/* Gold primary */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-warm) 0%, #a1721c 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(179,131,31,0.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 26px rgba(179,131,31,0.5);
}

/* Light outline (on dark hero) */
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(233,211,160,0.5);
}
.btn-outline:hover { background: rgba(233,211,160,0.12); border-color: rgba(233,211,160,0.85); }

/* Teal outline (on light bg) */
.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-dark:hover { background: var(--teal); color: #fff; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 80px;
  background:
    radial-gradient(ellipse 70% 45% at 50% 8%, rgba(207,159,69,0.16) 0%, transparent 60%),
    linear-gradient(168deg, #133845 0%, #0c2531 55%, #113441 100%);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg at 50% 115%,
    rgba(233,211,160,0.045) 0deg,
    transparent 7deg,
    transparent 14deg
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(207,159,69,0.14);
  border: 1px solid rgba(233,211,160,0.45);
  color: var(--gold-pale);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-banner-wrap {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.5),
    0 0 110px rgba(207,159,69,0.22);
}
.hero-banner { width: 100%; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(155deg, #fff 0%, #f0dfc0 45%, var(--gold-warm) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
}
.hero-meta-sep { opacity: 0.3; }

.hero-tag {
  font-size: 0.85rem;
  color: var(--gold-pale);
  opacity: 0.85;
  margin-bottom: 30px;
}

.hero-price-teaser {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  color: #fff;
}
.hero-price-was {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
}
.hero-price-now {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-pale);
}
.hero-price-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 38px;
  background: linear-gradient(180deg, rgba(233,211,160,0.6), transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1) translateY(4px); }
}

/* ═══════════════════════════════════════════
   CONTEXT STRIP
═══════════════════════════════════════════ */
.context-strip {
  background: linear-gradient(180deg, #f2e5c6 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
}

.context-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.context-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.context-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.15;
  color: var(--teal);
}
.context-num--text { font-size: 1.45rem; padding-top: 8px; }

.context-label {
  font-size: 0.84rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { background: var(--bg); }

.about-inner { max-width: 780px; }

.about-body { margin-bottom: 40px; }
.about-body p {
  font-size: 1.08rem;
  color: var(--text-2);
  margin-bottom: 14px;
  line-height: 1.85;
}
.about-body strong { color: var(--text); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

/* מספר אי-זוגי של כרטיסים: האחרון נפרס על שתי העמודות */
.feature-item:last-child:nth-child(odd) { grid-column: 1 / -1; }

.feature-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; }

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.feature-text strong { font-size: 0.95rem; color: var(--teal); }
.feature-text span   { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.about-cta { display: flex; justify-content: flex-start; }

/* ═══════════════════════════════════════════
   SYLLABUS
═══════════════════════════════════════════ */
.syllabus { background: var(--bg-alt); }

.syllabus-intro {
  font-size: 0.97rem;
  color: var(--teal);
  margin-bottom: 26px;
  max-width: 620px;
  opacity: 0.75;
}

/* ── Module quick-nav ────────────────────── */
.module-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.module-nav a {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  padding: 7px 16px;
  transition: all var(--transition);
}
.module-nav a:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
  color: var(--gold);
}

/* ── Module block ────────────────────────── */
.module { margin-bottom: 64px; scroll-margin-top: 20px; }
.module:last-child { margin-bottom: 0; }

/* באנר מודול — placeholder עד שהבאנרים המעוצבים מוכנים */
.module-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
/* ברק אור שחולף על לוחית המודול — transform רץ על ה-GPU,
   בניגוד לגרדיאנט נע על background-clip: text ש-Chrome לא מרנדר מחדש */
.module-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    transparent 38%,
    rgba(255,246,220,0.13) 46%,
    rgba(255,251,238,0.30) 50%,
    rgba(255,246,220,0.13) 54%,
    transparent 62%);
  transform: translateX(100%);
  animation: banner-shine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes banner-shine {
  0%        { transform: translateX(100%); }
  45%, 100% { transform: translateX(-100%); }
}
.module-banner-img { width: 100%; }

.module-banner-placeholder {
  position: relative;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 30px 24px;
  background:
    radial-gradient(ellipse 75% 90% at 50% -20%, rgba(207,159,69,0.22) 0%, transparent 60%),
    linear-gradient(160deg, #133845 0%, #0d2833 60%, #123946 100%);
}
.module-banner-placeholder::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(233,211,160,0.35);
  border-radius: 8px;
  pointer-events: none;
}
.module-banner-placeholder::after {
  content: '✦';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(233,211,160,0.5);
  font-size: 0.75rem;
}

.module-banner-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.85;
}

.module-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  line-height: 1.25;
  background: linear-gradient(155deg, #fff 0%, #f0dfc0 45%, var(--gold-warm) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 760px;
}

/* ── ברק זהב על כותרת ה-HERO ──
   גרדיאנט זהב רחב עם ליבה בוהקת; הזזת background-position מעבירה
   את הבוהק על האותיות כמו אור שחולף על מתכת */
.hero-title {
  background: linear-gradient(105deg,
    #f4e3bc 0%, var(--gold-warm) 22%, #e8cf9a 38%,
    #fffdf0 50%,
    #e8cf9a 62%, var(--gold-warm) 78%, #f4e3bc 100%);
  background-size: 230% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gold-shine 5s ease-in-out infinite;
}

@keyframes gold-shine {
  0%   { background-position: 100% 0; }
  45%  { background-position: 0% 0; }
  100% { background-position: 0% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title { animation: none; }
  .module-banner::after { animation: none; content: none; }
}

.module-banner-count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
}

/* ── Accordion ───────────────────────────── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.accordion-item:hover { border-color: var(--border-2); }
.accordion-item.is-open {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 1px rgba(179,131,31,0.12), var(--shadow-sm);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: var(--font-body);
  transition: background var(--transition);
}
.accordion-trigger:hover { background: rgba(179,131,31,0.05); }
.accordion-item.is-open .accordion-trigger { background: rgba(179,131,31,0.08); }

.lesson-num-badge {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 3px 11px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  min-width: 42px;
  text-align: center;
  margin-top: 2px;
}

.lesson-head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lesson-title-text {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.35;
}

.lesson-short-desc {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
}

.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.accordion-icon::before {
  content: '+';
  font-size: 1.3rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.25s ease;
  display: inline-block;
}
.accordion-item.is-open .accordion-icon::before { content: '−'; }

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }

.accordion-panel-inner {
  overflow: hidden;
  padding: 0 22px;
  transition: padding 0.28s ease;
}
.accordion-item.is-open .accordion-panel-inner { padding: 0 22px 26px; }

.lesson-long {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.lesson-long p {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 13px;
}
.lesson-long p:last-child { margin-bottom: 0; }
.lesson-long strong { color: var(--teal); }

.lesson-long ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 13px;
}
.lesson-long ul li {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.75;
  padding-right: 16px;
  position: relative;
}
.lesson-long ul li::before {
  content: '◆';
  position: absolute;
  right: 0;
  top: 0.35em;
  font-size: 0.45rem;
  color: var(--gold);
  line-height: 1;
}

.syllabus-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
/* ── Course teasers — טעימות מהקורס (קרוסלה עם חצים) ── */
.course-teasers { background: var(--bg); text-align: center; }
.teaser-carousel { position: relative; margin-top: 36px; }
.teaser-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px;
}
.teaser-track::-webkit-scrollbar { display: none; }
.teaser-item {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 סרטונים אנכיים 9:16 בשורה */
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
}
.teaser-item iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
}
.teaser-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: rgba(255, 253, 246, 0.95);
  color: var(--teal);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.teaser-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.teaser-arrow--prev { right: -14px; }
.teaser-arrow--next { left: -14px; }
@media (max-width: 768px) {
  .teaser-track { gap: 12px; }
  .teaser-item { flex-basis: 100%; } /* סרטון אחד בכל מסך, ברוחב הפריים */
  .teaser-arrow { width: 38px; height: 38px; }
  .teaser-arrow--prev { right: -8px; }
  .teaser-arrow--next { left: -8px; }
}

/* ── Inside look — הצצה לתוך הקורס ── */
.inside-look { background: var(--bg); text-align: center; }
.inside-look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.inside-look-item {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
}
.inside-look-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.inside-look-item figcaption {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  padding: 12px 8px 6px;
}
@media (max-width: 768px) {
  .inside-look-grid { grid-template-columns: 1fr; }
}

/* ── Fit check — למי הקורס מתאים ── */
.fit-check { background: var(--bg-alt); text-align: center; }
.fit-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  margin-top: 36px;
  text-align: right;
}
.fit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.fit-card--yes { border-top: 3px solid var(--gold-warm); }
.fit-card--no { border-top: 3px solid #c0b8a8; }
.fit-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 16px;
  color: var(--teal);
}
.fit-card--no .fit-card-title { color: var(--text-2); }
.fit-card ul { margin: 0; padding: 0; }
.fit-card li {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 12px;
  padding-right: 22px;
  position: relative;
}
.fit-card li:last-child { margin-bottom: 0; }
.fit-card--yes li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--gold-warm);
  font-weight: 800;
}
.fit-card--no li::before {
  content: '✗';
  position: absolute;
  right: 0;
  color: #b3a58e;
  font-weight: 800;
}
@media (max-width: 768px) {
  .fit-grid { grid-template-columns: 1fr; }
}

.pricing { background: var(--bg); }

.pricing .section-kicker,
.pricing .section-title,
.pricing .section-subtitle { text-align: center; }
.pricing .section-subtitle { margin-bottom: 44px; }
.pricing .section-subtitle:has(+ .pricing-connection-note) { margin-bottom: 4px; }
.pricing .pricing-connection-note { font-size: 0.85rem; }

.pricing-product-card {
  max-width: 440px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gold-warm);
  box-shadow: 0 0 0 1px rgba(179,131,31,0.2), var(--shadow-lg);
  overflow: hidden;
  background: var(--bg-card);
}

.pricing-course-img { width: 100%; }

.pricing-gift-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 11px 18px;
  background: linear-gradient(135deg, rgba(207,159,69,0.22) 0%, rgba(179,131,31,0.14) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
}

.pricing-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 5px;
}
.pricing-card-header p { font-size: 0.85rem; color: var(--muted); }

/* ── Price anatomy ───────────────────────── */
.pricing-card-price {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px dashed var(--border-2);
  padding-bottom: 14px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  color: var(--muted);
}
.price-row-value { text-decoration: line-through; opacity: 0.75; }

.price-launch {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.price-launch-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
}
.price-now-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}
.price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--muted);
}
.price-save {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 3px 12px;
}

.price-installments {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--gold-bg);
  border: 1.5px solid var(--gold-border);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
}
.price-installments strong { font-weight: 800; }

.pricing-features { display: flex; flex-direction: column; gap: 9px; }
.pricing-features li { font-size: 0.88rem; color: var(--text-2); }
.pricing-features li strong { color: var(--teal); }

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 18px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works { background: var(--teal-deep); }

.how-it-works .section-kicker { color: var(--gold-pale); }
.how-it-works .section-title  { color: #fff; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.step {
  padding: 26px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(233,211,160,0.14);
  background: rgba(255,255,255,0.05);
  position: relative;
  transition: background var(--transition);
}
.step:hover { background: rgba(255,255,255,0.09); }

.step:not(:last-child)::after {
  content: '←';
  position: absolute;
  left: -13px;
  top: 28px;
  font-size: 1rem;
  color: rgba(233,211,160,0.4);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-pale);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 10px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   INSTRUCTOR
═══════════════════════════════════════════ */
.instructor { background: var(--bg); }

.instructor-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.instructor-photo-wrap { position: sticky; top: 40px; }

.instructor-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-alt);
}

.instructor-photo-credit {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

.instructor-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  color: var(--teal);
  margin-bottom: 8px;
}

.instructor-tagline {
  font-size: 0.97rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.45;
}

.instructor-text p {
  font-size: 0.98rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 12px;
}
.instructor-text strong { color: var(--text); }

.instructor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.credential {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq { background: var(--bg-alt); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin-top: 30px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: var(--border-2); }
.faq-item[open] {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 1px rgba(179,131,31,0.12), var(--shadow-sm);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  padding-left: 48px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--teal);
  position: relative;
  transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-question:hover { background: rgba(179,131,31,0.05); border-radius: var(--radius); }

.faq-answer { padding: 0 22px 20px; }
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 10px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.faq-banner-img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 10px;
  margin: 4px auto 14px;
  box-shadow: var(--shadow);
}
.faq-lecture-list {
  margin: 0 0 10px;
  padding-right: 4px;
}
.faq-lecture-list li {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 8px;
  padding-right: 18px;
  position: relative;
}
.faq-lecture-list li::before {
  content: '✦';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 5px;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { background: var(--bg); text-align: center; }
.contact-inner { max-width: 560px; margin: 0 auto; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--teal);
  margin-bottom: 8px;
}
.contact-subtitle { font-size: 0.93rem; color: var(--muted); margin-bottom: 32px; }

.contact-channels { display: flex; flex-direction: column; gap: 12px; align-items: center; }

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 440px;
  transition: all var(--transition);
  text-align: right;
}
.contact-channel:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20,58,71,0.07);
}

.contact-channel-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-channel div  { display: flex; flex-direction: column; gap: 2px; }
.contact-channel strong { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.contact-channel span   { font-size: 0.8rem; color: var(--muted); direction: ltr; text-align: right; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1faf54;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 14px 28px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(31,175,84,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 7px 22px rgba(31,175,84,0.42); }
.whatsapp-icon { width: 20px; height: 20px; fill: currentColor; }

.contact-note { font-size: 0.8rem; color: var(--muted); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--teal-deep);
  border-top: 1px solid rgba(179,131,31,0.25);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand { display: flex; flex-direction: column; gap: 2px; }
.footer-title  { font-family: var(--font-display); font-size: 1rem; color: var(--gold-pale); }
.footer-subtitle { font-size: 0.78rem; color: rgba(255,255,255,0.38); }

.footer-support {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.footer-support-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-pale);
}
.footer-support-links { font-size: 0.8rem; color: rgba(255,255,255,0.42); }
.footer-support-links a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-support-links a:hover { color: rgba(255,255,255,0.85); }
.footer-support-links span { margin: 0 6px; }

.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.42); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,0.78); }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ═══════════════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(14,44,55,0.97);
  border-top: 1px solid rgba(233,211,160,0.3);
  backdrop-filter: blur(6px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta-price { display: flex; flex-direction: column; line-height: 1.25; }
.sticky-cta-price .now { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-pale); }
.sticky-cta-price .price-line { display: flex; align-items: baseline; gap: 8px; }
.sticky-cta-price .old { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.sticky-cta-price .was { font-size: 0.72rem; color: rgba(255,255,255,0.75); }

.sticky-cta .btn { min-height: 44px; padding: 10px 22px; font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   RESPONSIVE — 900px
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .instructor-inner { grid-template-columns: 200px 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .step:not(:last-child)::after { display: none; }
  .context-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .about-features { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 768px Mobile
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad: 52px; }

  .hero { padding: 52px 18px 68px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; max-width: 380px; }
  .hero-ctas .btn-large { width: 100%; }
  .hero-meta { gap: 5px 12px; }

  .module-banner-placeholder { min-height: 132px; }

  .accordion-trigger { padding: 15px 16px; gap: 12px; }
  .accordion-panel-inner { padding: 0 16px; }
  .accordion-item.is-open .accordion-panel-inner { padding: 0 16px 22px; }

  .instructor-inner { grid-template-columns: 1fr; gap: 28px; }
  .instructor-photo-wrap {
    position: static;
    max-width: 340px;
    margin: 0 auto;
  }

  .steps-grid { grid-template-columns: 1fr; gap: 10px; }

  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-links { justify-content: center; }

  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 76px; }
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════ */
:focus-visible { outline: 3px solid var(--gold-warm); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero-scroll-indicator { display: none; }
}
