/* ── Course page shell (סודות השיער היפה) ── */
.course-page {
  background-color: #050208;
  --course-header-height: 118px;
  --course-header-height-scrolled: 102px;
  --course-header-logo-max: 185px;
  --gold: #d7ad55;
  --goldSoft: #f7dc94;
}

.course-page .site-header:not(.is-scrolled):not(.is-nav-open) {
  background: rgba(5, 2, 8, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: none;
  border-block-end: 1px solid rgba(215, 173, 85, 0.18);
}

.course-page .site-header.is-scrolled,
.course-page .site-header.is-nav-open {
  background: rgba(5, 2, 8, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
  border-block-end: 1px solid rgba(215, 173, 85, 0.18);
}

.course-page .site-header__inner {
  min-height: var(--course-header-height);
  max-height: 125px;
  align-items: center;
}

.course-page .site-header.is-scrolled .site-header__inner {
  min-height: var(--course-header-height-scrolled);
  max-height: 125px;
}

.course-page .header-logo {
  align-self: center;
  margin: 0;
}

.course-page .header-logo:hover,
.course-page .header-logo:focus-visible {
  opacity: 1;
}

@keyframes course-header-logo-glow {
  0%,
  100% {
    filter:
      drop-shadow(0 0 8px rgba(212, 175, 55, 0.25))
      drop-shadow(0 0 16px rgba(212, 175, 55, 0.15));
  }

  50% {
    filter:
      drop-shadow(0 0 10px rgba(212, 175, 55, 0.32))
      drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
  }
}

.course-page .header-logo__image,
.course-page .header-logo img {
  max-width: var(--course-header-logo-max);
  max-height: calc(var(--course-header-height) - 24px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(212, 175, 55, 0.25))
    drop-shadow(0 0 16px rgba(212, 175, 55, 0.15));
  animation: course-header-logo-glow 6s ease-in-out infinite;
  transition: filter 280ms ease;
}

.course-page .site-header.is-scrolled .header-logo__image,
.course-page .site-header.is-scrolled .header-logo img {
  max-width: min(var(--course-header-logo-max), 178px);
  max-height: calc(var(--course-header-height-scrolled) - 20px);
}

@media (hover: hover) and (pointer: fine) {
  .course-page .header-logo:hover .header-logo__image,
  .course-page .header-logo:focus-visible .header-logo__image {
    animation: none;
    filter:
      drop-shadow(0 0 10px rgba(212, 175, 55, 0.34))
      drop-shadow(0 0 20px rgba(212, 175, 55, 0.22));
  }
}

@media (prefers-reduced-motion: reduce) {
  .course-page .header-logo__image,
  .course-page .header-logo img {
    animation: none;
  }
}

.course-page__main {
  padding-block-start: 0;
}

/* ── Course page — dark nav drawer & hamburger ── */
.course-page .nav-overlay {
  background: rgba(2, 0, 5, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.course-page .menu-toggle {
  border-color: rgba(215, 173, 85, 0.42);
  background: rgba(255, 255, 255, 0.05);
  color: #f7dc94;
}

.course-page .menu-toggle:hover,
.course-page .menu-toggle:focus-visible {
  border-color: rgba(215, 173, 85, 0.62);
  background: rgba(155, 77, 255, 0.12);
  box-shadow: 0 0 18px rgba(155, 77, 255, 0.2);
}

.course-page .header-cta.gold-button {
  color: #261404;
  border-color: rgba(255, 255, 255, 0.22);
}

/* ── Course page purchase CTAs — premium gold (transferred from about quote) ── */
@keyframes course-cta-gold-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes course-cta-shine {
  0%,
  85%,
  100% {
    transform: translateX(-125%) skewX(-16deg);
    opacity: 0;
  }

  90% {
    opacity: 0.42;
  }

  96% {
    transform: translateX(125%) skewX(-16deg);
    opacity: 0;
  }
}

.course-page .header-cta.gold-button,
.sodot-hasear-course .btn:not(.secondary) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    105deg,
    var(--goldSoft) 0%,
    var(--gold) 35%,
    #f0e2bc 50%,
    var(--gold) 65%,
    var(--goldSoft) 100%
  );
  background-size: 240% 100%;
  animation: course-cta-gold-shimmer 7s ease-in-out infinite;
  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.18),
    0 0 24px rgba(212, 175, 55, 0.1);
  transition: all 0.25s ease;
  filter: none;
}

.course-page .header-cta.gold-button::after,
.sodot-hasear-course .btn:not(.secondary)::after {
  content: "";
  position: absolute;
  inset: -20% -65%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 248, 232, 0.35) 48%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 248, 232, 0.35) 52%,
    transparent 60%
  );
  transform: translateX(-125%) skewX(-16deg);
  animation: course-cta-shine 7s ease-in-out infinite;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .course-page .header-cta.gold-button:hover,
  .course-page .header-cta.gold-button:focus-visible,
  .sodot-hasear-course .btn:not(.secondary):hover,
  .sodot-hasear-course .btn:not(.secondary):focus-visible {
    transform: translateY(-2px);
    box-shadow:
      0 0 18px rgba(212, 175, 55, 0.28),
      0 0 36px rgba(212, 175, 55, 0.15);
  }
}

.course-page .header-cta.gold-button:active,
.sodot-hasear-course .btn:not(.secondary):active {
  transform: scale(0.98);
}

@media (max-width: 767px), (hover: none) and (pointer: coarse) {
  .course-page .header-cta.gold-button::after,
  .sodot-hasear-course .btn:not(.secondary)::after {
    animation: none;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .course-page .header-cta.gold-button,
  .sodot-hasear-course .btn:not(.secondary) {
    animation: none;
    background-position: 50% 50%;
  }

  .course-page .header-cta.gold-button::after,
  .sodot-hasear-course .btn:not(.secondary)::after {
    animation: none;
    opacity: 0;
  }
}

.course-page .site-nav-drawer {
  top: 0;
  right: 0;
  left: auto;
  width: 82vw;
  max-width: 340px;
  min-width: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(155, 77, 255, 0.16), transparent 44%),
    radial-gradient(circle at 0% 100%, rgba(215, 173, 85, 0.08), transparent 38%),
    linear-gradient(180deg, #130b1d 0%, #050208 52%, #0c0612 100%);
  border-inline-start: 1px solid rgba(215, 173, 85, 0.3);
  box-shadow:
    -22px 0 64px rgba(0, 0, 0, 0.58),
    -6px 0 32px rgba(155, 77, 255, 0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 100dvh;
  max-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.course-page .site-nav-drawer::-webkit-scrollbar {
  display: none;
}

.course-page .site-nav-drawer__header {
  flex-shrink: 0;
  padding:
    max(0.55rem, env(safe-area-inset-top, 0px))
    1rem
    0.4rem;
}

.course-page .site-nav-drawer__content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: visible;
}

body.course-page.is-nav-drawer-open .site-nav-drawer {
  touch-action: pan-y;
}

.course-page .site-nav-drawer__brand {
  padding: 0 0.85rem 0.35rem;
}

.course-page .site-nav-drawer__close {
  border-color: rgba(215, 173, 85, 0.45);
  background: rgba(255, 255, 255, 0.04);
  color: #f7dc94;
}

.course-page .site-nav-drawer__close:hover,
.course-page .site-nav-drawer__close:focus-visible {
  background: rgba(155, 77, 255, 0.14);
  border-color: rgba(215, 173, 85, 0.72);
  color: #fff7eb;
  box-shadow:
    0 0 20px rgba(155, 77, 255, 0.24),
    0 0 12px rgba(215, 173, 85, 0.16);
}

.course-page .site-nav-drawer__brand-link {
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(215, 173, 85, 0.34);
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 28px rgba(155, 77, 255, 0.2),
    inset 0 0 22px rgba(215, 173, 85, 0.06);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.course-page .site-nav-drawer__brand-link:hover,
.course-page .site-nav-drawer__brand-link:focus-visible {
  opacity: 1;
  border-color: rgba(215, 173, 85, 0.55);
  box-shadow:
    0 0 34px rgba(155, 77, 255, 0.28),
    0 0 16px rgba(215, 173, 85, 0.18);
}

.course-page .site-nav-drawer__logo {
  filter: drop-shadow(0 0 12px rgba(155, 77, 255, 0.32));
  max-width: clamp(118px, 34vw, 148px);
}

.course-page .site-nav-drawer__links {
  border-block-start-color: rgba(215, 173, 85, 0.32);
  flex: 0 0 auto;
  padding: 0.15rem 1.1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

.course-page .site-nav-drawer__links a {
  color: #fff7eb;
  border-block-end-color: rgba(215, 173, 85, 0.22);
  padding: 0.48rem 0;
  font-size: 1.05rem;
}

.course-page .site-nav-drawer__links a:hover,
.course-page .site-nav-drawer__links a:focus-visible {
  color: #f7dc94;
  border-block-end-color: rgba(215, 173, 85, 0.42);
  text-shadow: 0 0 16px rgba(155, 77, 255, 0.35);
  background: linear-gradient(90deg, transparent, rgba(155, 77, 255, 0.1), transparent);
}

.course-page .site-nav-drawer__links a[aria-current="page"] {
  color: #f7dc94;
  border-block-end-color: rgba(215, 173, 85, 0.55);
  text-shadow: 0 0 14px rgba(215, 173, 85, 0.28);
}

.course-page .site-nav-drawer__group {
  border-block-end-color: rgba(215, 173, 85, 0.22);
}

.course-page .site-nav-drawer__group-toggle {
  color: #fff7eb;
  padding: 0.48rem 0;
  font-size: 1.05rem;
}

.course-page .site-nav-drawer__group-toggle:hover,
.course-page .site-nav-drawer__group-toggle:focus-visible {
  color: #f7dc94;
  text-shadow: 0 0 16px rgba(155, 77, 255, 0.35);
}

.course-page .site-nav-drawer__group-toggle[aria-current="page"] {
  color: #f7dc94;
  text-shadow: 0 0 14px rgba(215, 173, 85, 0.28);
}

.course-page .site-nav-drawer__group-icon {
  color: #d7ad55;
}

.course-page .site-nav-drawer__sub-links a {
  color: #e8d4ff;
  font-size: 0.92rem;
  font-weight: 600;
}

.course-page .site-nav-drawer__sub-links a::before {
  color: #c9a8f0;
}

.course-page .site-nav-drawer__sub-links a:hover,
.course-page .site-nav-drawer__sub-links a:focus-visible {
  color: #f7dc94;
  border-color: transparent;
  text-shadow: 0 0 16px rgba(155, 77, 255, 0.35);
  background: linear-gradient(90deg, transparent, rgba(155, 77, 255, 0.1), transparent);
}

.course-page .site-nav-drawer__sub-links a[aria-current="page"] {
  color: #f7dc94;
  text-shadow: 0 0 14px rgba(215, 173, 85, 0.28);
}

@media (min-width: 1024px) {
  .course-page .site-nav-drawer {
    right: 0;
    left: auto;
    width: 420px;
    max-width: 420px;
    min-width: 420px;
    height: 100vh;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .course-page .site-nav-drawer__logo {
    width: auto;
    max-width: 100%;
    max-height: 170px;
    height: auto;
    object-fit: contain;
  }

  .course-page .site-nav-drawer__links {
    padding-bottom: 40px;
  }

  .course-page .site-nav-drawer__links a {
    padding: 0.34rem 0;
    font-size: 1.12rem;
  }

  .course-page .site-nav-drawer__group-toggle {
    padding: 0.41rem 0;
  }

  .course-page .site-nav-drawer__sub-links a {
    padding: 0.27rem 0;
  }

  .course-page .site-nav-drawer__group.is-expanded .site-nav-drawer__group-toggle {
    padding-block-end: 0.26rem;
  }
}

/* ── Course content (scoped) ── */
.sodot-hasear-course {
  --bg: #050208;
  --bg2: #0c0612;
  --panel: #130b1d;
  --panel2: #1d102c;
  --purple: #9b4dff;
  --purpleSoft: #d8b8ff;
  --gold: #d7ad55;
  --goldSoft: #f7dc94;
  --cream: #fff7eb;
  --text: #f6efff;
  --muted: #cfbddf;
  --line: rgba(215, 173, 85, 0.42);
  --glass: rgba(255, 255, 255, 0.045);
  --radius: 28px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42), 0 0 28px rgba(155, 77, 255, 0.08);

  color: var(--text);
  line-height: 1.85;
  font-family: "Heebo", Arial, "Noto Sans Hebrew", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(155, 77, 255, 0.28), transparent 29%),
    radial-gradient(circle at 92% 12%, rgba(215, 173, 85, 0.15), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(155, 77, 255, 0.13), transparent 38%),
    linear-gradient(180deg, var(--bg), var(--bg2) 56%, #030105);
}

.sodot-hasear-course a {
  color: inherit;
  text-decoration: none;
}

.sodot-hasear-course .wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: calc(var(--course-header-height) + 18px) 22px 80px;
}

.sodot-hasear-course .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--goldSoft), var(--gold));
  color: #261404;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.sodot-hasear-course .btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--goldSoft);
  border: 1px solid rgba(215, 173, 85, 0.45);
  box-shadow: none;
}

.sodot-hasear-course .course-hero {
  min-height: auto;
  height: auto;
  border: 2px solid var(--gold);
  border-radius: 28px;
  padding: clamp(18px, 2.5vw, 32px) clamp(16px, 2.5vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 63fr) minmax(0, 37fr);
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  background:
    radial-gradient(circle at 80% 24%, rgba(155, 77, 255, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(10, 5, 16, 0.96), rgba(29, 16, 44, 0.91));
  box-shadow: var(--shadow), inset 0 0 55px rgba(215, 173, 85, 0.08);
  position: relative;
  overflow: visible;
}

.sodot-hasear-course .course-hero::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(215, 173, 85, 0.28);
  border-radius: 20px;
  pointer-events: none;
}

.sodot-hasear-course .course-hero__content,
.sodot-hasear-course .course-hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.sodot-hasear-course .course-hero__content {
  text-align: right;
  align-self: center;
}

.sodot-hasear-course .course-hero h1 {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
}

.sodot-hasear-course .course-hero .subtitle {
  margin: 10px 0 0;
  max-width: none;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.4;
}

.sodot-hasear-course .course-hero__pricing {
  margin-top: 14px;
}

.sodot-hasear-course .course-hero__price-regular {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
}

.sodot-hasear-course .course-hero__price-old {
  text-decoration: line-through;
  text-decoration-color: rgba(215, 173, 85, 0.55);
  color: var(--muted);
}

.sodot-hasear-course .course-hero__price-launch {
  margin: 0;
  color: var(--cream);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 800;
}

.sodot-hasear-course .course-hero__price-highlight {
  display: inline-block;
  margin-inline-start: 4px;
  color: var(--goldSoft);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 0 22px rgba(215, 173, 85, 0.35), 0 0 40px rgba(155, 77, 255, 0.15);
}

.sodot-hasear-course .course-hero__cta {
  margin-top: 16px;
  min-width: min(100%, 220px);
  padding: 11px 20px;
}

.sodot-hasear-course .course-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  height: fit-content;
}

.sodot-hasear-course .course-hero__cover-wrap {
  position: relative;
  width: auto;
  max-width: 100%;
  height: fit-content;
  line-height: 0;
}

.sodot-hasear-course .course-hero__cover-wrap picture {
  display: block;
  width: auto;
  height: auto;
  line-height: 0;
}

.sodot-hasear-course .course-hero__cover-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 2% 4%;
  background: radial-gradient(circle, rgba(155, 77, 255, 0.38), rgba(155, 77, 255, 0.06) 55%, transparent 72%);
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
}

.sodot-hasear-course .course-hero__cover {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 650px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 28px rgba(155, 77, 255, 0.2));
  transition: transform 0.28s ease;
}

.sodot-hasear-course .course-hero__cover-wrap:hover .course-hero__cover {
  transform: scale(1.03);
}

.sodot-hasear-course .badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 20px;
  border: 1px solid rgba(215, 173, 85, 0.75);
  border-radius: 999px;
  background: rgba(215, 173, 85, 0.08);
  color: var(--goldSoft);
  font-weight: 900;
}

.sodot-hasear-course h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.04;
  color: var(--purpleSoft);
  -webkit-text-stroke: 1.15px var(--gold);
  text-shadow: 0 0 16px rgba(155, 77, 255, 0.72), 0 0 34px rgba(215, 173, 85, 0.18);
}

.sodot-hasear-course .subtitle {
  margin: 20px 0 0;
  max-width: 560px;
  color: var(--goldSoft);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 850;
  line-height: 1.45;
}

.sodot-hasear-course section {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(19, 11, 29, 0.96), rgba(11, 6, 17, 0.96));
  padding: 34px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32), 0 0 26px rgba(155, 77, 255, 0.09);
}

.sodot-hasear-course h2 {
  margin: 0 0 18px;
  color: var(--purpleSoft);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  -webkit-text-stroke: 0.45px var(--gold);
  text-shadow: 0 0 14px rgba(155, 77, 255, 0.35);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(215, 173, 85, 0.34);
}

.sodot-hasear-course h3 {
  margin: 0 0 10px;
  color: var(--goldSoft);
  font-size: 23px;
  line-height: 1.25;
}

.sodot-hasear-course p {
  margin: 0 0 15px;
}

.sodot-hasear-course .section-lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 850px;
}

.sodot-hasear-course .grid {
  display: grid;
  gap: 16px;
}

.sodot-hasear-course .cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.sodot-hasear-course .cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.sodot-hasear-course .box {
  border: 1px solid rgba(155, 77, 255, 0.42);
  border-right: 5px solid var(--purple);
  border-radius: 20px;
  background: rgba(155, 77, 255, 0.07);
  padding: 20px;
}

.sodot-hasear-course .box.gold {
  border-color: rgba(215, 173, 85, 0.5);
  border-right-color: var(--gold);
  background: rgba(215, 173, 85, 0.07);
}

.sodot-hasear-course .box p {
  color: var(--muted);
}

.sodot-hasear-course .split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.sodot-hasear-course .notice {
  margin: 20px 0 0;
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(215, 173, 85, 0.55);
  border-right: 5px solid var(--gold);
  color: var(--cream);
}

.sodot-hasear-course .modules {
  counter-reset: module;
}

.sodot-hasear-course .module {
  counter-increment: module;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
}

.sodot-hasear-course .num {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(155, 77, 255, 0.75), rgba(57, 25, 82, 0.95));
  border: 1px solid rgba(215, 173, 85, 0.38);
  color: var(--goldSoft);
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 0 24px rgba(155, 77, 255, 0.18);
}

.sodot-hasear-course .num::before {
  content: counter(module, decimal-leading-zero);
}

.sodot-hasear-course .toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.sodot-hasear-course .toc-grid a {
  min-height: 62px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(215, 173, 85, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 14px 16px;
  color: var(--cream);
  font-weight: 800;
}

.sodot-hasear-course .price-card {
  text-align: center;
  padding: 48px 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 173, 85, 0.15), transparent 28%),
    linear-gradient(145deg, rgba(29, 16, 44, 0.98), rgba(8, 4, 13, 0.98));
}

.sodot-hasear-course .price {
  display: none;
}

/* ── Offer box (launch / join pricing) ── */
.sodot-hasear-course .offer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 28px;
  padding: 24px 20px;
  border-radius: 22px;
  border: 1px solid rgba(215, 173, 85, 0.45);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 173, 85, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.sodot-hasear-course .offer-box--join {
  max-width: 420px;
  margin: 20px auto 22px;
}

.sodot-hasear-course .launch-pricing.offer-box {
  margin-top: 36px;
}

.sodot-hasear-course .launch-pricing__label {
  margin: 0 0 14px;
  color: var(--goldSoft);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 900;
}

.sodot-hasear-course .offer-box__savings {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--goldSoft), var(--gold));
  color: #261404;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 22px rgba(215, 173, 85, 0.24);
}

.sodot-hasear-course .offer-box__prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.sodot-hasear-course .offer-box__regular {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
}

.sodot-hasear-course .offer-box__old {
  text-decoration: line-through;
  text-decoration-color: rgba(215, 173, 85, 0.55);
}

.sodot-hasear-course .offer-box__current {
  margin: 0;
  color: var(--cream);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
}

.sodot-hasear-course .offer-box__highlight {
  display: inline-block;
  margin-inline-start: 4px;
  color: var(--goldSoft);
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 22px rgba(215, 173, 85, 0.35), 0 0 40px rgba(155, 77, 255, 0.15);
}

/* ── Pricing packages ── */
.sodot-hasear-course .course-hero + .pricing-section {
  margin-top: clamp(40px, 5vw, 60px);
}

.sodot-hasear-course .pricing-section {
  text-align: center;
}

.sodot-hasear-course .pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
  align-items: stretch;
}

.sodot-hasear-course .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: right;
  border: 1px solid rgba(155, 77, 255, 0.42);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(19, 11, 29, 0.98), rgba(11, 6, 17, 0.96));
  padding: 28px 22px 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.sodot-hasear-course .pricing-card--featured {
  border: 2px solid var(--gold);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 173, 85, 0.14), transparent 34%),
    linear-gradient(160deg, rgba(29, 16, 44, 0.98), rgba(13, 7, 20, 0.98));
  box-shadow:
    0 0 32px rgba(215, 173, 85, 0.22),
    0 22px 55px rgba(0, 0, 0, 0.36),
    inset 0 0 40px rgba(215, 173, 85, 0.06);
  transform: scale(1);
  z-index: 1;
}

.sodot-hasear-course .pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--goldSoft), var(--gold));
  color: #261404;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 22px rgba(215, 173, 85, 0.28);
}

.sodot-hasear-course .pricing-card__title {
  margin: 0 0 16px;
  color: var(--purpleSoft);
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.35;
  text-align: center;
}

.sodot-hasear-course .pricing-card__price {
  margin: 0 0 20px;
  text-align: center;
  color: var(--goldSoft);
  font-weight: 900;
  line-height: 1.2;
}

.sodot-hasear-course .pricing-card__amount {
  font-size: clamp(38px, 5vw, 52px);
  text-shadow: 0 0 16px rgba(215, 173, 85, 0.2);
}

.sodot-hasear-course .pricing-card__price--sale {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sodot-hasear-course .pricing-card__price-old {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: rgba(215, 173, 85, 0.65);
}

.sodot-hasear-course .pricing-card__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.sodot-hasear-course .pricing-card__features li {
  position: relative;
  padding: 0 22px 12px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.sodot-hasear-course .pricing-card__features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--goldSoft);
  font-weight: 900;
}

.sodot-hasear-course .pricing-card__btn {
  width: 100%;
  margin-top: auto;
}

.sodot-hasear-course .pricing-card__price {
  white-space: nowrap;
}

@media (min-width: 901px) {
  .sodot-hasear-course .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: center;
  }

  .sodot-hasear-course .pricing-card--featured {
    padding: 34px 24px 28px;
    transform: scale(1.05);
  }
}

.sodot-hasear-course details {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(215, 173, 85, 0.24);
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 12px;
}

.sodot-hasear-course summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--goldSoft);
  font-size: 18px;
}

.sodot-hasear-course details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.sodot-hasear-course .course-footer-note {
  text-align: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .course-page {
    --course-header-height: 108px;
    --course-header-height-scrolled: 96px;
    --course-header-logo-max: 168px;
  }

  .sodot-hasear-course .course-hero {
    grid-template-columns: 1fr;
    padding: 20px 16px 24px;
    gap: 14px;
  }

  .sodot-hasear-course .course-hero__visual {
    order: -1;
    width: 100%;
  }

  .sodot-hasear-course .course-hero__content {
    order: 0;
    text-align: center;
  }

  .sodot-hasear-course .course-hero .subtitle {
    margin-inline: auto;
  }

  .sodot-hasear-course .course-hero__cover {
    max-height: min(320px, 48vh);
  }

  .sodot-hasear-course .course-hero__cta {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .sodot-hasear-course .split,
  .sodot-hasear-course .cols-3,
  .sodot-hasear-course .cols-2 {
    grid-template-columns: 1fr;
  }

  .sodot-hasear-course section {
    padding: 24px 16px;
  }

  .sodot-hasear-course .module {
    grid-template-columns: 56px 1fr;
  }

  .sodot-hasear-course .num {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  .course-page {
    --course-header-height: 96px;
    --course-header-height-scrolled: 88px;
    --course-header-logo-max: 148px;
  }

  .sodot-hasear-course .wrap {
    padding: calc(var(--course-header-height) + 12px) 12px 60px;
  }

  .sodot-hasear-course .btn {
    padding: 11px 15px;
    font-size: 14px;
  }

  .sodot-hasear-course .course-hero::before {
    inset: 10px;
  }

  .sodot-hasear-course .course-hero__cover {
    max-height: min(280px, 42vh);
  }
}

@media (max-width: 1023px) {
  html:has(.course-page) {
    margin: 0;
    padding: 0;
    background-color: #050208;
    min-height: 100%;
    min-height: -webkit-fill-available;
  }

  body.course-page {
    margin: 0;
    padding: 0;
    background: #050208 !important;
    background-color: #050208 !important;
  }

  .course-page .site-header,
  .course-page header.site-header {
    transition: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    -webkit-filter: none !important;
  }

  .course-page .site-header.is-scrolled,
  .course-page .site-header.is-nav-open,
  .course-page .site-header.is-scrolled.is-scrolling-up,
  .course-page .site-header.is-scrolled.is-scrolling-down {
    background: #050208 !important;
    background-color: #050208 !important;
    border: none !important;
    border-block-start: 0 !important;
    border-block-end: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .course-page .site-header.is-scrolled .site-header__inner,
  .course-page .site-header.is-nav-open .site-header__inner,
  .course-page .site-header.is-scrolled.is-scrolling-up .site-header__inner,
  .course-page .site-header.is-scrolled.is-scrolling-down .site-header__inner {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .course-page .site-header.mobile-header,
  .course-page .site-header.mobile-header.is-scrolled,
  .course-page .site-header.mobile-header.is-nav-open,
  .course-page .site-header.mobile-header.is-scrolling-up,
  .course-page .site-header.mobile-header.is-reveal {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 9999 !important;
    isolation: isolate;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .course-page .site-header.mobile-header .site-header__inner {
    position: relative;
    z-index: 2;
  }

  .course-page .site-header.mobile-header::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    top: calc(-4px - env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    width: 100%;
    height: calc(4px + env(safe-area-inset-top, 0px));
    background: #050208 !important;
    pointer-events: none;
    z-index: 0;
    border: none !important;
    box-shadow: none !important;
  }

  .course-page .site-header.mobile-header::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: rgba(212, 175, 55, 0.7) !important;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2) !important;
    pointer-events: none;
    z-index: 1;
    border: none !important;
  }
}
