@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&display=swap");

body:has(.kaw-learning-page) {
  margin: 0;
  padding: 0;
}

.kaw-learning-page {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #f8fbfb;
  --color-text: #1d1d1d;
  --color-text-soft: rgba(29, 29, 29, 0.8);
  --color-text-muted: rgba(29, 29, 29, 0.7);
  --color-primary: #005953;
  --color-primary-strong: #00a095;
  --color-accent: #ff6400;
  --color-accent-soft: #00c1b7;
  --color-white: #ffffff;
  --color-line: #dceff0;
  --shadow-soft: 0 22px 56px rgba(0, 89, 83, 0.12);
  --shadow-card: 0 18px 50px rgba(10, 13, 11, 0.08);
  --shadow-glow: 0 18px 30px rgba(0, 0, 0, 0.08);
  --container: 1272px;
  --font-heading: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  overflow-x: clip;
}

.kaw-learning-page--paid {
  --color-primary: #005953;
  --color-primary-strong: #00a095;
  --color-accent-soft: #00c1b7;
}

.kaw-learning-page,
.kaw-learning-page * {
  box-sizing: border-box;
}

.kaw-learning-page h1,
.kaw-learning-page h2,
.kaw-learning-page h3,
.kaw-learning-page h4,
.kaw-learning-page h5,
.kaw-learning-page h6 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
}

.kaw-learning-page p,
.kaw-learning-page li,
.kaw-learning-page span,
.kaw-learning-page a,
.kaw-learning-page button {
  color: inherit;
  font-style: normal;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  word-spacing: normal;
  text-transform: none;
}

.kaw-learning-page img {
  display: block;
  max-width: 100%;
}

.kaw-learning-page a {
  color: inherit;
  text-decoration: none;
}

.kaw-learning-page button {
  font: inherit;
}

.kaw-learning-page .page {
  overflow: clip;
  width: 100%;
}

.kaw-learning-page .container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.kaw-learning-page .section {
  padding: 80px 0;
  background: var(--color-bg);
}

.kaw-learning-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 12px;
  font-family: "Inter", var(--font-heading);
  font-size: 18px;
  font-weight: 500 !important;
  letter-spacing: -0.18px;
  line-height: 26.1px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.kaw-learning-page .button:hover {
  transform: translateY(-1px);
}

.kaw-learning-page .button__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.kaw-learning-page .button--primary {
  color: #ffffff !important;
  background: linear-gradient(180deg, rgba(1, 89, 83, 1) 0%, rgba(0, 160, 149, 1) 100%);
  box-shadow: inset 0 4px 4px #019389, inset 0 -4px 4px #015a54;
}

.kaw-learning-page--paid .button--primary {
  background: linear-gradient(180deg, rgba(1, 89, 83, 1) 0%, rgba(0, 160, 149, 1) 100%);
  box-shadow: inset 0 4px 4px #019389, inset 0 -4px 4px #015a54;
}

.kaw-learning-page .button--light {
  color: #030e24 !important;
  background: #ffffff;
  border: 1px solid rgba(118, 118, 123, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.kaw-learning-page .button--secondary {
  color: #0f172a !important;
  background: #ffffff;
  border: 1px solid #e8ecef;
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.96),
    inset 0 -6px 9px rgba(15, 23, 42, 0.04),
    0 10px 24px rgba(15, 23, 42, 0.06);
}

.kaw-learning-page a.button,
.kaw-learning-page a.button:visited,
.kaw-learning-page a.button:hover,
.kaw-learning-page a.button:focus {
  -webkit-text-fill-color: currentColor;
}

.kaw-learning-page.motion-ready .scroll-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 34px, 0) scale(0.985) var(--reveal-base-transform, translateZ(0));
  transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 0.78s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.kaw-learning-page.motion-ready .scroll-reveal--left {
  transform: translate3d(-42px, 18px, 0) scale(0.985) var(--reveal-base-transform, translateZ(0));
}

.kaw-learning-page.motion-ready .scroll-reveal--right {
  transform: translate3d(42px, 18px, 0) scale(0.985) var(--reveal-base-transform, translateZ(0));
}

.kaw-learning-page.motion-ready .scroll-reveal--up {
  transform: translate3d(0, 34px, 0) scale(0.985) var(--reveal-base-transform, translateZ(0));
}

.kaw-learning-page.motion-ready .scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: var(--reveal-base-transform, translateZ(0));
}

.kaw-learning-page .hero {
  position: relative;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
  background: #000000;
}

.kaw-learning-page .hero .container {
  width: 100%;
  max-width: none;
}

.kaw-learning-page .hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.kaw-learning-page .hero__glow {
  position: absolute;
  background: var(--color-primary);
  border-radius: 50%;
  filter: blur(256.2px);
}

.kaw-learning-page .hero__glow--wide {
  top: -545px;
  left: 50%;
  width: 1766px;
  height: 1288px;
  opacity: 0.16;
  transform: translateX(-50%);
}

.kaw-learning-page .hero__glow--focus {
  top: 399px;
  left: 50%;
  width: 486px;
  height: 688px;
  opacity: 0.9;
  transform: translateX(-50%);
}

.kaw-learning-page .hero__texture {
  position: absolute;
  left: 50%;
  opacity: 0.3;
  transform: translateX(-50%);
  mix-blend-mode: screen;
}

.kaw-learning-page .hero__curve {
  position: absolute;
  left: 50%;
  top: 683px;
  width: 10465px;
  height: 2866px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
}

.kaw-learning-page .hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 261px 24px 0;
  text-align: center;
}

.kaw-learning-page .hero__stack,
.kaw-learning-page .hero__text,
.kaw-learning-page .steps__group,
.kaw-learning-page .steps__header,
.kaw-learning-page .step-card__body,
.kaw-learning-page .catalog__header {
  display: flex;
  flex-direction: column;
}

.kaw-learning-page .hero__stack {
  align-items: center;
  gap: 32px;
}

.kaw-learning-page .hero__text {
  gap: 20px;
  align-items: center;
}

.kaw-learning-page .hero__eyebrow {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700 !important;
  line-height: 1;
  letter-spacing: -0.05em;
}

.kaw-learning-page .hero__title {
  max-width: 900px;
  color: #ffffff;
  font-size: clamp(2.52rem, 3.5vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.kaw-learning-page .hero__subtitle {
  max-width: 460px;
  color: #f6f6f6;
  font-family: "Satoshi", var(--font-heading);
  font-size: 18px;
  font-weight: 500 !important;
  line-height: 26.1px;
  letter-spacing: -0.18px;
}

.kaw-learning-page .hero__actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.kaw-learning-page .steps {
  background: #ffffff;
  padding: 80px 0 112px;
}

.kaw-learning-page .steps__group {
  align-items: center;
  gap: 70px;
}

.kaw-learning-page .steps__header,
.kaw-learning-page .catalog__header {
  align-items: center;
  gap: 16px;
  text-align: center;
}

.kaw-learning-page .steps__title,
.kaw-learning-page .catalog__title {
  font-size: clamp(2.4rem, 4.2vw, 3rem);
  letter-spacing: -0.04em;
}

.kaw-learning-page .steps__title {
  width: min(100%, 484px);
}

.kaw-learning-page .steps__subtitle,
.kaw-learning-page .catalog__subtitle {
  font-family: "Satoshi", var(--font-heading);
  font-size: 18px;
  font-weight: 500 !important;
  line-height: 26.1px;
  letter-spacing: -0.18px;
  color: var(--color-text-soft);
}

.kaw-learning-page .steps__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.kaw-learning-page .step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.kaw-learning-page .step-card::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 64px;
  right: -12px;
  border-top: 1px solid var(--color-line);
  opacity: 0.7;
}

.kaw-learning-page .step-card:last-child::after {
  display: none;
}

.kaw-learning-page .step-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background: var(--color-accent-soft);
  box-shadow: 0 14px 30px rgba(0, 193, 183, 0.18);
  overflow: hidden;
}

.kaw-learning-page .step-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #ffffff;
}

.kaw-learning-page .step-card__body {
  gap: 12px;
}

.kaw-learning-page .step-card__title {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.kaw-learning-page .step-card__title span {
  color: rgba(29, 29, 29, 0.7);
  font-weight: 700 !important;
}

.kaw-learning-page .step-card__copy {
  font-family: "Satoshi", var(--font-heading);
  font-size: 18px;
  font-weight: 500 !important;
  line-height: 26.1px;
  letter-spacing: -0.18px;
  color: var(--color-text-soft);
}

.kaw-learning-page .catalog {
  padding: 80px 0;
  background: #ffffff;
}

.kaw-learning-page .catalog__header {
  margin-bottom: 56px;
}

.kaw-learning-page .catalog__empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}

.kaw-learning-page .course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.kaw-learning-page .course-card {
  display: flex;
  flex-direction: column;
  min-height: 318px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f0f3f4;
  background: #ffffff;
  box-shadow: none;
}

.kaw-learning-page .course-card__media {
  height: 190px;
  background: linear-gradient(135deg, rgba(0, 89, 83, 0.12), rgba(0, 193, 183, 0.28));
  overflow: hidden;
  flex: 0 0 auto;
}

.kaw-learning-page--paid .course-card__media {
  background: linear-gradient(135deg, rgba(0, 89, 83, 0.12), rgba(0, 193, 183, 0.28));
}

.kaw-learning-page .course-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kaw-learning-page .course-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kaw-learning-page .course-card__placeholder {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
}

.kaw-learning-page .course-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 20px;
}

.kaw-learning-page .course-card__title {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.kaw-learning-page .course-card__copy {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--color-text-soft);
}

.kaw-learning-page .course-card__actions {
  margin-top: auto;
}

.kaw-learning-page .course-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  font-family: "Satoshi", var(--font-heading);
  font-size: 18px;
  font-weight: 500 !important;
  line-height: 26.1px;
  color: var(--color-accent);
  background: transparent;
}

.kaw-learning-page .cta {
  padding: 0 0 96px;
  background: #ffffff;
}

.kaw-learning-page .cta .container {
  width: min(calc(100% - 64px), 1269px);
}

.kaw-learning-page .cta__panel {
  position: relative;
  overflow: hidden;
  min-height: 521px;
  height: 521px;
  padding: 0;
  border-radius: 12px;
  background: #ff6400;
  box-shadow: none;
}

.kaw-learning-page--paid .cta__panel {
  background: #ff6400;
}

.kaw-learning-page .cta__content {
  position: absolute;
  left: 100px;
  top: 96px;
  width: 586px;
  max-width: calc(100% - 140px);
  z-index: 4;
}

.kaw-learning-page .cta__title_custom {
  margin: 0;
  max-width: 533px;
  font-size: 55.5px;
  line-height: 1.2;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.kaw-learning-page .cta__copy {
  margin: 18px 0 0;
  max-width: 467px;
  font-size: 17.5px;
  line-height: 1.49;
  color: rgba(255, 255, 255, 0.88);
}

.kaw-learning-page .cta__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.kaw-learning-page .cta .button--secondary {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a;
  min-height: 0;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(118, 118, 123, 0.15);
  background: #ffffff !important;
  background-image: none !important;
  box-shadow: none;
}

.kaw-learning-page .cta .button.button--secondary:visited,
.kaw-learning-page .cta .button.button--secondary:hover,
.kaw-learning-page .cta .button.button--secondary:focus {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a;
  background: #ffffff !important;
  background-image: none !important;
  border-color: rgba(118, 118, 123, 0.15) !important;
}

.kaw-learning-page .cta__media {
  position: absolute;
  inset: 0;
}

.kaw-learning-page .cta__shape-top,
.kaw-learning-page .cta__shape-bottom {
  position: absolute;
  z-index: 1;
  opacity: 0.37;
}

.kaw-learning-page .cta__shape-top {
  top: 74px;
  left: 974px;
  width: 272px;
  height: 211px;
}

.kaw-learning-page .cta__shape-bottom {
  left: 0;
  top: 371px;
  width: 198px;
  height: 150px;
}

.kaw-learning-page .cta__person {
  position: absolute;
  left: 633px;
  top: 0;
  bottom: 0;
  width: 636px;
  height: 521px;
  z-index: 3;
  object-fit: cover;
  object-position: left top;
}

@media (max-width: 1280px) {
  .kaw-learning-page .course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kaw-learning-page .steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 36px;
  }

  .kaw-learning-page .step-card:nth-child(2)::after,
  .kaw-learning-page .step-card:nth-child(4)::after {
    display: none;
  }

  .kaw-learning-page .cta .container {
    width: min(calc(100% - 32px), 1269px);
  }
}

@media (max-width: 980px) {
  .kaw-learning-page .hero {
    min-height: 620px;
  }

  .kaw-learning-page .hero__content {
    padding-top: 190px;
    width: min(100%, 640px);
  }

  .kaw-learning-page .hero__curve {
    top: 600px;
  }

  .kaw-learning-page .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kaw-learning-page .cta {
    padding: 0 0 72px;
  }

  .kaw-learning-page .cta .container {
    width: min(calc(100% - 48px), 960px);
  }

  .kaw-learning-page .cta__panel {
    min-height: auto;
    height: auto;
    padding: 46px 32px 360px;
    border-radius: 18px;
  }

  .kaw-learning-page .cta__content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 560px;
  }

  .kaw-learning-page .cta__title_custom {
    max-width: 100%;
    font-size: clamp(3rem, 6.2vw, 4.2rem);
    line-height: 1.08;
  }

  .kaw-learning-page .cta__copy {
    max-width: 480px;
  }

  .kaw-learning-page .cta__media {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: 360px;
  }

  .kaw-learning-page .cta__shape-top {
    right: 18px;
    left: auto;
    top: 42px;
    width: 132px;
    height: auto;
  }

  .kaw-learning-page .cta__shape-bottom {
    left: 10px;
    top: auto;
    bottom: 0;
    width: 110px;
    height: auto;
  }

  .kaw-learning-page .cta__person {
    left: 50%;
    top: auto;
    bottom: 0;
    width: 384px;
    height: auto;
    transform: translateX(-20%);
  }

}

@media (max-width: 720px) {
  .kaw-learning-page .container {
    width: min(calc(100% - 24px), 420px);
  }

  .kaw-learning-page .section {
    padding: 56px 0;
  }

  .kaw-learning-page .hero {
    min-height: 560px;
  }

  .kaw-learning-page .hero__content {
    width: 100%;
    padding-top: 164px;
  }

  .kaw-learning-page .hero__stack {
    gap: 24px;
  }

  .kaw-learning-page .hero__text {
    gap: 14px;
  }

  .kaw-learning-page .hero__title {
    font-size: 2.3rem;
  }

  .kaw-learning-page .hero__subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .kaw-learning-page .hero__actions,
  .kaw-learning-page .button {
    width: 100%;
  }

  .kaw-learning-page .steps {
    padding-bottom: 72px;
  }

  .kaw-learning-page .steps__group,
  .kaw-learning-page .catalog__header {
    gap: 20px;
  }

  .kaw-learning-page .steps__grid,
  .kaw-learning-page .course-grid {
    grid-template-columns: 1fr;
  }

  .kaw-learning-page .step-card {
    gap: 18px;
  }

  .kaw-learning-page .step-card::after {
    display: none;
  }

  .kaw-learning-page .cta {
    padding: 0 0 48px;
  }

  .kaw-learning-page .cta .container {
    width: min(calc(100% - 24px), 360px);
  }

  .kaw-learning-page .cta__panel {
    padding: 26px 18px 318px;
    border-radius: 10px;
  }

  .kaw-learning-page .cta__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .kaw-learning-page .cta__title_custom {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.8vw, 3rem);
    line-height: 1.08;
  }

  .kaw-learning-page .cta__copy {
    max-width: 260px;
    margin: 14px auto 0;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .kaw-learning-page .cta__actions {
    margin-top: 18px;
    justify-content: center;
  }

  .kaw-learning-page .cta__actions .button--light {
    width: min(100%, 236px);
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 10px;
  }

  .kaw-learning-page .cta__media {
    height: 320px;
  }

  .kaw-learning-page .cta__shape-top {
    right: 18px;
    top: 44px;
    width: 96px;
  }

  .kaw-learning-page .cta__shape-bottom {
    left: 8px;
    bottom: 78px;
    width: 82px;
  }

  .kaw-learning-page .cta__person {
    left: 50%;
    width: 255px;
    transform: translateX(-50%);
  }
}

@media (min-width: 721px) and (max-width: 1120px) {
  .kaw-learning-page .container {
    width: min(calc(100% - 48px), 960px);
  }

  .kaw-learning-page .section {
    padding: 72px 0;
  }

  .kaw-learning-page .hero {
    min-height: 620px;
  }

  .kaw-learning-page .hero__content {
    width: min(100%, 780px);
    padding-top: 186px;
  }

  .kaw-learning-page .hero__title {
    max-width: 720px;
    font-size: clamp(2.7rem, 5.3vw, 3.7rem);
  }

  .kaw-learning-page .hero__subtitle {
    max-width: 520px;
  }

  .kaw-learning-page .steps {
    padding: 72px 0 96px;
  }

  .kaw-learning-page .steps__group {
    gap: 56px;
  }

  .kaw-learning-page .steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .kaw-learning-page .step-card {
    gap: 24px;
  }

  .kaw-learning-page .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .kaw-learning-page .course-card {
    min-height: 0;
  }

  .kaw-learning-page .course-card__media {
    height: 178px;
  }

  .kaw-learning-page .catalog__header {
    margin-bottom: 42px;
  }
}

@media (max-width: 520px) {
  .kaw-learning-page .container {
    width: min(calc(100% - 24px), 360px);
  }

  .kaw-learning-page .hero {
    min-height: 596px;
  }

  .kaw-learning-page .hero__texture {
    width: 680px;
    height: 596px;
    opacity: 0.15;
  }

  .kaw-learning-page .hero__glow--wide {
    top: -260px;
    width: 980px;
    height: 840px;
  }

  .kaw-learning-page .hero__glow--focus {
    top: 310px;
    width: 320px;
    height: 430px;
  }

  .kaw-learning-page .hero__curve {
    top: 566px;
  }

  .kaw-learning-page .hero__content {
    width: min(100%, 368px);
    padding: 110px 12px 0;
  }

  .kaw-learning-page .hero__stack {
    gap: 26px;
  }

  .kaw-learning-page .hero__text {
    gap: 18px;
  }

  .kaw-learning-page .hero__title {
    max-width: 360px;
    font-size: clamp(2.25rem, 10.8vw, 3rem);
    line-height: 1.1;
  }

  .kaw-learning-page .hero__subtitle {
    max-width: 300px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .kaw-learning-page .hero__actions {
    width: min(100%, 420px);
  }

  .kaw-learning-page .hero__actions .button {
    width: 100%;
    min-height: 62px;
    border-radius: 14px;
  }

  .kaw-learning-page .steps {
    padding: 56px 0 72px;
  }

  .kaw-learning-page .steps__group {
    align-items: stretch;
    gap: 28px;
  }

  .kaw-learning-page .steps__header {
    gap: 14px;
  }

  .kaw-learning-page .steps__title {
    width: 100%;
    font-size: clamp(2.05rem, 9.4vw, 2.7rem);
  }

  .kaw-learning-page .steps__subtitle {
    font-size: 1rem;
    line-height: 1.45;
  }

  .kaw-learning-page .steps__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 84vw);
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scrollbar-width: none;
    padding-bottom: 6px;
  }

  .kaw-learning-page .steps__grid::-webkit-scrollbar {
    display: none;
  }

  .kaw-learning-page .step-card {
    gap: 18px;
    scroll-snap-align: start;
  }

  .kaw-learning-page .step-card::after {
    display: block;
    left: 64px;
    right: -18px;
  }

  .kaw-learning-page .catalog {
    padding: 56px 0;
  }

  .kaw-learning-page .catalog__header {
    margin-bottom: 28px;
    gap: 14px;
  }

  .kaw-learning-page .catalog__title {
    max-width: 320px;
    font-size: clamp(2.05rem, 9vw, 2.8rem);
    line-height: 1.08;
  }

  .kaw-learning-page .catalog__subtitle {
    max-width: 290px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .kaw-learning-page .course-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .kaw-learning-page .course-card {
    min-height: 0;
    border-radius: 16px;
  }

  .kaw-learning-page .course-card__media {
    height: 176px;
  }

  .kaw-learning-page .course-card__body {
    gap: 10px;
    padding: 16px 18px 18px;
  }

  .kaw-learning-page .course-card__title {
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .kaw-learning-page .course-card__copy {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.kaw-learning-page--paid .hero {
  min-height: 640px;
}

.kaw-learning-page--paid .hero__content {
  width: min(100%, 980px);
  padding-top: 150px;
}

.kaw-learning-page--paid .hero__curve {
  top: 600px;
}

.kaw-learning-page--paid .hero__stack {
  gap: 30px;
}

.kaw-learning-page--paid .hero__eyebrow {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
}

.kaw-learning-page--paid .hero__title {
  max-width: 820px;
  font-size: clamp(2.65rem, 4.4vw, 4.15rem);
  letter-spacing: -0.055em;
}

.kaw-learning-page--paid .hero__subtitle {
  max-width: 760px;
}

.kaw-learning-page--paid .paid-catalog {
  padding-top: 72px;
  padding-bottom: 76px;
}

.kaw-learning-page--paid .paid-course-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.kaw-learning-page--paid .course-card {
  min-height: 318px;
  border-color: #edf1f1;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(9, 18, 20, 0.04);
}

.kaw-learning-page--paid .course-card__media {
  height: 178px;
}

.kaw-learning-page--paid .course-card__title {
  font-size: 1.35rem;
}

.kaw-learning-page--paid .course-card__copy {
  font-size: 1rem;
  line-height: 1.58;
}

.kaw-learning-page--paid .course-card__link {
  color: var(--color-accent);
}

.kaw-learning-page--paid .paid-story,
.kaw-learning-page--paid .paid-experts,
.kaw-learning-page--paid .paid-process,
.kaw-learning-page--paid .paid-outcomes,
.kaw-learning-page--paid .paid-video-testimonials {
  background: #ffffff;
}

.kaw-learning-page--paid .paid-story {
  padding-top: 58px;
  padding-bottom: 48px;
}

.kaw-learning-page--paid .paid-story__stack {
  display: grid;
  gap: 88px;
}

.kaw-learning-page--paid .paid-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.kaw-learning-page--paid .paid-split--reverse .paid-split__media {
  order: 2;
}

.kaw-learning-page--paid .paid-split--reverse .paid-split__content {
  order: 1;
}

.kaw-learning-page--paid .paid-split--compact {
  gap: clamp(44px, 7vw, 104px);
}

.kaw-learning-page--paid .paid-split__media {
  min-width: 0;
}

.kaw-learning-page--paid .paid-split__image,
.kaw-learning-page--paid .paid-expert-card__image,
.kaw-learning-page--paid .paid-video-card__image {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #eef6f5;
}

.kaw-learning-page--paid .paid-split__image {
  height: clamp(190px, 24vw, 294px);
  border-radius: 8px;
}

.kaw-learning-page--paid .paid-split__image--placeholder,
.kaw-learning-page--paid .paid-expert-card__image--placeholder,
.kaw-learning-page--paid .paid-video-card__image--placeholder,
.kaw-learning-page--paid .paid-testimonial-card__avatar--placeholder {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 28%, rgba(0, 193, 183, 0.28), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255, 100, 0, 0.18), transparent 24%),
    linear-gradient(135deg, #eef8f7 0%, #e6eeee 100%);
}

.kaw-learning-page--paid .paid-split__image--placeholder::after,
.kaw-learning-page--paid .paid-expert-card__image--placeholder::after,
.kaw-learning-page--paid .paid-video-card__image--placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(0, 89, 83, 0.28);
  border-radius: inherit;
}

.kaw-learning-page--paid .paid-split__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}

.kaw-learning-page--paid .paid-section-header {
  width: min(100%, 720px);
  margin: 0 auto 54px;
  text-align: center;
}

.kaw-learning-page--paid .paid-section-header .paid-section-title,
.kaw-learning-page--paid .paid-section-header .paid-section-copy {
  margin-left: auto;
  margin-right: auto;
}

.kaw-learning-page--paid .paid-section-title {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2.05rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.kaw-learning-page--paid .paid-section-copy {
  margin: 0;
  max-width: 590px;
  color: var(--color-text-soft);
  font-size: 1.06rem;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.kaw-learning-page--paid .paid-check-list {
  display: grid;
  gap: 12px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.kaw-learning-page--paid .paid-check-list--columns {
  width: min(100%, 520px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
}

.kaw-learning-page--paid .paid-check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: rgba(29, 29, 29, 0.84);
  font-size: 0.98rem;
  line-height: 1.45;
}

.kaw-learning-page--paid .paid-check-list__icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: #16c784;
  font-size: 9px;
  font-weight: 700;
}

.kaw-learning-page--paid .paid-experts {
  padding-top: 84px;
  padding-bottom: 80px;
}

.kaw-learning-page--paid .paid-experts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.kaw-learning-page--paid .paid-expert-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.kaw-learning-page--paid .paid-expert-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.83;
  border-radius: 16px;
  background: #eef6f5;
}

.kaw-learning-page--paid .paid-expert-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kaw-learning-page--paid .paid-expert-card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0e302d;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 600 !important;
  box-shadow: 0 10px 24px rgba(4, 19, 19, 0.12);
}

.kaw-learning-page--paid .paid-expert-card__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-primary-strong);
}

.kaw-learning-page--paid .paid-expert-card__name {
  margin: 18px 0 6px;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.kaw-learning-page--paid .paid-expert-card__role {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.kaw-learning-page--paid .paid-process {
  padding-top: 72px;
  padding-bottom: 72px;
}

.kaw-learning-page--paid .paid-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.kaw-learning-page--paid .paid-process-card {
  position: relative;
  display: grid;
  gap: 24px;
  align-content: start;
  min-width: 0;
}

.kaw-learning-page--paid .paid-process-card::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 58px;
  right: -12px;
  border-top: 1px dashed rgba(0, 193, 183, 0.4);
}

.kaw-learning-page--paid .paid-process-card:last-child::after {
  display: none;
}

.kaw-learning-page--paid .paid-process-card__icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-accent-soft);
  box-shadow: 0 14px 28px rgba(0, 193, 183, 0.18);
}

.kaw-learning-page--paid .paid-process-card__icon svg {
  width: 20px;
  height: 20px;
}

.kaw-learning-page--paid .paid-process-card__title {
  max-width: 250px;
  font-size: 1.08rem;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.kaw-learning-page--paid .paid-process-card__title span {
  color: rgba(29, 29, 29, 0.68);
}

.kaw-learning-page--paid .paid-outcomes {
  padding-top: 84px;
  padding-bottom: 88px;
}

.kaw-learning-page--paid .paid-outcomes .container {
  display: grid;
  gap: 108px;
}

.kaw-learning-page--paid .paid-testimonials {
  padding-top: 78px;
  padding-bottom: 76px;
  background: #f7f7f7;
}

.kaw-learning-page--paid .paid-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.kaw-learning-page--paid .paid-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.kaw-learning-page--paid .paid-carousel__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.kaw-learning-page--paid .paid-carousel__nav {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: var(--color-text);
  background: #ffffff;
  cursor: pointer;
}

.kaw-learning-page--paid .paid-carousel__nav--next {
  color: #ffffff;
  background: var(--color-primary);
}

.kaw-learning-page--paid .paid-carousel__nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.kaw-learning-page--paid .paid-carousel__count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #292929;
  font-size: 1rem;
}

.kaw-learning-page--paid .paid-testimonial-card {
  flex: 0 0 calc((100% - 24px) / 2.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 220px;
  padding: 32px;
  border-radius: 12px;
  background: #ffffff;
}

.kaw-learning-page--paid .paid-testimonial-card h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.kaw-learning-page--paid .paid-testimonial-card p {
  margin: 0;
  color: rgba(3, 14, 36, 0.86);
  font-size: 1.03rem;
  line-height: 1.6;
}

.kaw-learning-page--paid .paid-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.kaw-learning-page--paid .paid-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  object-fit: cover;
}

.kaw-learning-page--paid .paid-testimonial-card__author strong,
.kaw-learning-page--paid .paid-testimonial-card__author span {
  display: block;
}

.kaw-learning-page--paid .paid-testimonial-card__author strong {
  color: var(--color-primary);
  font-size: 0.98rem;
  font-weight: 500 !important;
}

.kaw-learning-page--paid .paid-testimonial-card__author span {
  color: rgba(3, 14, 36, 0.72);
  font-size: 0.85rem;
  line-height: 1.4;
}

.kaw-learning-page--paid .paid-video-testimonials {
  padding-top: 80px;
  padding-bottom: 88px;
}

.kaw-learning-page--paid .paid-video-row {
  gap: 24px;
}

.kaw-learning-page--paid .paid-video-card {
  flex: 0 0 calc((100% - 24px) / 2.14);
  overflow: hidden;
  border-radius: 8px;
  background: #eef6f5;
}

.kaw-learning-page--paid .paid-video-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 360 / 232;
  overflow: hidden;
  border-radius: 8px;
}

.kaw-learning-page--paid .paid-video-card__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.kaw-learning-page--paid [data-video-frame].is-loaded {
  background: #000000;
}

.kaw-learning-page--paid [data-video-frame].is-loaded .paid-video-card__image {
  display: none;
}

.kaw-learning-page--paid .video-frame__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: inherit;
}

.kaw-learning-page--paid .paid-video-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.kaw-learning-page--paid .paid-video-card__play-button {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #030e24;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.kaw-learning-page--paid .paid-video-card__play-button svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

@media (max-width: 1120px) {
  .kaw-learning-page--paid .hero {
    min-height: 640px;
  }

  .kaw-learning-page--paid .hero__content {
    padding-top: 112px;
  }

  .kaw-learning-page--paid .hero__curve {
    top: 590px;
  }

  .kaw-learning-page--paid .paid-experts__grid,
  .kaw-learning-page--paid .paid-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kaw-learning-page--paid .paid-process-card:nth-child(2)::after,
  .kaw-learning-page--paid .paid-process-card:nth-child(4)::after {
    display: none;
  }

  .kaw-learning-page--paid .paid-split {
    gap: 42px;
  }

}

@media (max-width: 820px) {
  .kaw-learning-page--paid .hero {
    min-height: 650px;
  }

  .kaw-learning-page--paid .hero__content {
    padding-top: 118px;
  }

  .kaw-learning-page--paid .hero__curve {
    top: 602px;
  }

  .kaw-learning-page--paid .paid-course-grid,
  .kaw-learning-page--paid .paid-experts__grid,
  .kaw-learning-page--paid .paid-process__grid,
  .kaw-learning-page--paid .paid-split,
  .kaw-learning-page--paid .paid-check-list--columns {
    grid-template-columns: 1fr;
  }

  .kaw-learning-page--paid .paid-split--reverse .paid-split__media,
  .kaw-learning-page--paid .paid-split--reverse .paid-split__content {
    order: initial;
  }

  .kaw-learning-page--paid .paid-story__stack,
  .kaw-learning-page--paid .paid-outcomes .container {
    gap: 62px;
  }

  .kaw-learning-page--paid .paid-process-card::after {
    display: none;
  }

  .kaw-learning-page--paid .paid-testimonial-card,
  .kaw-learning-page--paid .paid-video-card {
    flex-basis: min(86vw, 420px);
  }

}

@media (max-width: 520px) {
  .kaw-learning-page--paid .hero {
    min-height: 650px;
  }

  .kaw-learning-page--paid .hero__content {
    padding-top: 110px;
  }

  .kaw-learning-page--paid .hero__curve {
    top: 604px;
  }

  .kaw-learning-page--paid .hero__eyebrow {
    font-size: clamp(2.1rem, 11vw, 2.9rem);
  }

  .kaw-learning-page--paid .hero__title {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .kaw-learning-page--paid .paid-catalog,
  .kaw-learning-page--paid .paid-story,
  .kaw-learning-page--paid .paid-experts,
  .kaw-learning-page--paid .paid-process,
  .kaw-learning-page--paid .paid-outcomes,
  .kaw-learning-page--paid .paid-testimonials,
  .kaw-learning-page--paid .paid-video-testimonials {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .kaw-learning-page--paid .paid-section-header {
    margin-bottom: 32px;
  }

  .kaw-learning-page--paid .paid-section-title {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .kaw-learning-page--paid .paid-split__content {
    gap: 14px;
  }

  .kaw-learning-page--paid .paid-testimonial-card {
    flex-basis: min(84vw, 320px);
    padding: 24px;
  }

  .kaw-learning-page--paid .paid-video-card {
    flex-basis: min(84vw, 320px);
  }

  .kaw-learning-page--paid .paid-carousel__track {
    gap: 14px;
  }

  .kaw-learning-page--paid .paid-carousel__pagination {
    gap: 14px;
  }

  .kaw-learning-page--paid .paid-carousel__nav {
    width: 44px;
    height: 44px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .kaw-learning-page.motion-ready .scroll-reveal,
  .kaw-learning-page.motion-ready .scroll-reveal--left,
  .kaw-learning-page.motion-ready .scroll-reveal--right,
  .kaw-learning-page.motion-ready .scroll-reveal--up {
    opacity: 1;
    filter: none;
    transform: var(--reveal-base-transform, translateZ(0));
    transition: none;
  }
}
