*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #1e1d2f;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Nunito', sans-serif;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.sec-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #1e1d2f;
  margin-bottom: 12px;
}

.sec-title.white {
  color: #fff;
}

.sec-title.tc-green {
  color: #0eb582;
}

.sec-sub {
  font-size: 15px;
  color: #7a7a91;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.sec-sub.white-dim {
  color: rgba(255, 255, 255, .75);
}

.tc {
  color: #0eb582;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0;
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  white-space: nowrap;
}

.logo-mark svg {
  display: block;
}

.main-nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  transition: color .2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icon {
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color .2s;
}

.nav-icon:hover {
  color: #fff;
}

.hero {
  position: relative;
  background: linear-gradient(130deg, #1b1ae0 0%, #5e22c5 55%, #7c2fb5 100%);
  padding: 140px 0 0;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
}

.hero-arch {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50% 50% 0 0;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.hero-text {
  flex: 1.1;
  padding-bottom: 80px;
}

.hero-h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-accent {
  color: #00ffd0;

  font-style: italic;
}

.text-cyan {
  color: #00ffd0;

}

.hero-light {
  color: rgba(255, 255, 255, .75);
}

.hero-desc-row {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-bar {
  flex-shrink: 0;
  width: 4px;
  border-radius: 4px;
  background: #0eb582;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-price-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  padding-left: 18px;
  border-left: 4px solid #0eb582;
  color: #fff;
  height: 48px;
}

.hero-price-badge span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-price-badge strong {
  font-size: 22px;
  font-weight: 900;
  color: #00ffd0;
  letter-spacing: -0.5px;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  padding: 13px 28px;
  transition: all .2s;
  cursor: pointer;
}

.btn-white {
  background: #fff;
  color: #4a2fc1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .55);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.hero-img-wrap {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.hero-img-tint {
  position: relative;
  transform: translate(260px, 23px);
}

.hero-person {
  max-height: 480px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;

  transform: scaleX(-1);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.25));
}

.logos-strip {
  background: #4a2fc1;
  padding: 20px 0;
}

.logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo-item {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .3px;
}

.program {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #dcebfe;
}

.feat-circle {
  position: absolute;
  top: 40px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 24px solid #e8f5f0;
  z-index: 0;
  pointer-events: none;
}

.prog-eyebrow {
  display: inline-block;
  background: #eeeaff;
  color: #6c47ff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: .4px;
}

.mod-tabs-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 24px 0 0;
  position: relative;
  z-index: 1;
}

.mod-nav-arrow {
  background: #fff;
  border: 2px solid #e1e1ec;
  color: #6c47ff;
  font-size: 26px;
  font-weight: 400;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(108, 71, 255, .08);
}

.mod-nav-arrow:hover {
  border-color: #6c47ff;
  background: #f4f0ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(108, 71, 255, .15);
}

.mod-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.mod-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8c4e0;
  cursor: pointer;
  transition: all .25s;
}

.mod-dot:hover {
  background: #a89de8;
  transform: scale(1.2);
}

.mod-dot.active {
  background: #6c47ff;
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(108, 71, 255, .3);
}

.mod-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mod-arrow {
  background: #fff;
  border: 2px solid #e1e1ec;
  color: #3b2b9e;
  font-size: 28px;
  font-weight: 300;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.mod-arrow:hover {
  border-color: #3b2b9e;
  background: #f8f8ff;
  transform: translateY(-2px);
}

.mod-tab {
  display: none;
  flex-direction: row;
  align-items: baseline;
  gap: 12px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: default;
  transition: all .25s;
  font-family: 'Nunito', sans-serif;
}

.mod-tab-num {
  display: none;
}

.mod-tab-label {
  font-size: 28px;
  font-weight: 900;
  color: #1e1d2f;
  transition: color .25s;
}

.mod-tab:hover {
  transform: none;
}

.mod-tab.active {
  display: flex;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.mod-tab.active .mod-tab-label {
  color: #1e1d2f;
}

.mod-panels {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.mod-panel {
  display: none;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  text-align: left;
  background:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 40px,
      rgba(108, 71, 255, .018) 40px,
      rgba(108, 71, 255, .018) 41px),
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 40px,
      rgba(14, 181, 130, .015) 40px,
      rgba(14, 181, 130, .015) 41px),
    radial-gradient(circle, rgba(108, 71, 255, .05) 1.2px, transparent 1.2px),
    radial-gradient(circle, rgba(108, 71, 255, .035) 1.2px, transparent 1.2px),
    linear-gradient(135deg, #f6faff 0%, #edf1ff 40%, #f2f5ff 100%);
  background-size: auto, auto, 22px 22px, 22px 22px, 100% 100%;
  background-position: 0 0, 0 0, 0 0, 11px 11px, 0 0;
  border-radius: 24px;
  padding: 48px 52px;
  box-shadow: 0 12px 50px rgba(30, 29, 47, .09);
  position: relative;
  overflow: hidden;
}

.mod-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 32px solid rgba(108, 71, 255, .06);
  pointer-events: none;
  z-index: 0;
}

.mod-panel::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 181, 130, .08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.mod-panel-left,
.mod-panel-right {
  position: relative;
  z-index: 1;
}

.mod-panel-left::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: -28px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 18px solid rgba(108, 71, 255, .04);
  pointer-events: none;
  z-index: 0;
}

.mod-panel-right::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -30px;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  transform: rotate(30deg);
  border: 10px solid rgba(14, 181, 130, .05);
  pointer-events: none;
  z-index: 0;
}

.mod-panel.active {
  display: grid;
  animation: panelIn .4s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mod-panel-icon {
  margin-bottom: 24px;
  display: inline-flex;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(30, 29, 47, 0.05);

  background: #fff;
  padding: 4px;
}

.mod-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.mod-tag {
  font-size: 12px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: 4px 12px;
  border-radius: 20px;
}

.mod-tag--red {
  background: #ffeced;
  color: #e74c3c;
}

.mod-tag--purple {
  background: #eeeaff;
  color: #6c47ff;
}

.mod-tag--orange {
  background: #fde8e0;
  color: #e5530a;
}

.mod-tag--blue {
  background: #ddf4fd;
  color: #0a7ec2;
}

.mod-tag--amber {
  background: #fff1e5;
  color: #d06b00;
}

.mod-tag--violet {
  background: #f4eeff;
  color: #8e44ad;
}

.mod-tag--green {
  background: #e5f9f3;
  color: #0a9460;
}

.mod-free-tag {
  font-size: 12px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: 4px 12px;
  border-radius: 20px;
  background: linear-gradient(130deg, #0eb582, #09a572);
  color: #fff;
}

.mod-panel-left h3 {
  font-size: 26px;
  font-weight: 900;
  color: #1e1d2f;
  margin-bottom: 12px;
  line-height: 1.2;
}

.mod-panel-left>p {
  font-size: 15px;
  color: #7a7a91;
  line-height: 1.7;
  margin-bottom: 24px;
}

.mod-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.mod-topic {
  font-size: 13px;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  padding: 6px 14px;
  border-radius: 20px;
  background: #f4f3ff;
  color: #4a2fc1;
  border: 1px solid #e5e4f7;
}

.btn-mod-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(130deg, #1b1ae0, #6c47ff);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 6px 20px rgba(74, 47, 193, .3);
}

.btn-mod-cta:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.mod-panel-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mod-info-card {
  background: linear-gradient(135deg, #1b1ae0 0%, #5e22c5 100%);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mod-info-card-title {
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.mod-info-highlight {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-top: -10px;
}

.mod-info-format {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

.mod-info-format-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mod-panel-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.mod-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.mod-tag {
  font-size: 12px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: 4px 12px;
  border-radius: 20px;
}

.mod-tag--purple {
  background: #eeeaff;
  color: #6c47ff;
}

.mod-tag--orange {
  background: #fde8e0;
  color: #e5530a;
}

.mod-tag--blue {
  background: #ddf4fd;
  color: #0a7ec2;
}

.mod-tag--amber {
  background: #fff1e5;
  color: #d06b00;
}

.mod-tag--violet {
  background: #f4eeff;
  color: #8e44ad;
}

.mod-tag--green {
  background: #e5f9f3;
  color: #0a9460;
}

.mod-free-tag {
  font-size: 12px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: 4px 12px;
  border-radius: 20px;
  background: linear-gradient(130deg, #0eb582, #09a572);
  color: #fff;
}

.mod-panel-left h3 {
  font-size: 26px;
  font-weight: 900;
  color: #1e1d2f;
  margin-bottom: 12px;
  line-height: 1.2;
}

.mod-panel-left p {
  font-size: 15px;
  color: #7a7a91;
  line-height: 1.7;
  margin-bottom: 24px;
}

.mod-skills {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.mod-skills li {
  font-size: 14px;
  color: #3a3a52;
  padding-left: 22px;
  position: relative;
}

.mod-skills li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0eb582;
  font-weight: 800;
}

.btn-mod-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(130deg, #1b1ae0, #6c47ff);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 6px 20px rgba(74, 47, 193, .3);
}

.btn-mod-cta:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.mod-panel-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mod-screen {
  background: #f7f6ff;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 8px 30px rgba(30, 29, 47, .1);
  border: 1px solid #eae9f8;
}

.mod-screen-bar {
  background: #fff;
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid #eae9f8;
}

.mod-screen-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e5ea;
}

.mod-screen-bar span:first-child {
  background: #ff6b6b;
}

.mod-screen-bar span:nth-child(2) {
  background: #ffd166;
}

.mod-screen-bar span:nth-child(3) {
  background: #06d6a0;
}

.mod-chat {
  padding: 20px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mc-msg {
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 14px;
  max-width: 90%;
}

.mc-them {
  background: #fff;
  color: #1e1d2f;
  border: 1px solid #eae9f8;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.mc-us {
  background: linear-gradient(130deg, #1b1ae0, #6c47ff);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.mc-badge {
  align-self: center;
  background: #e5f9f3;
  color: #0a9460;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: 8px 16px;
  border-radius: 20px;
  margin-top: 4px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.ccard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(30, 29, 47, .07);
  transition: transform .3s, box-shadow .3s;
}

.ccard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 29, 47, .12);
}

.ccard-img {
  height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.ccard-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform .35s;
}

.ccard:hover .ccard-img img {
  transform: scale(1.06);
}

.bg-lavender {
  background: #eeeaff;
}

.bg-peach {
  background: #fde8e0;
}

.bg-sky {
  background: #ddf4fd;
}

.bg-orange-light {
  background: #fff1e5;
}

.bg-purple-light {
  background: #f4eeff;
}

.bg-green-light {
  background: #e5f9f3;
}

.ccard-body {
  padding: 22px 24px 20px;
}

.ccard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.ccard-who {
  font-size: 12.5px;
  font-weight: 600;
  color: #7a7a91;
  font-family: 'Nunito', sans-serif;
}

.ccard-price {
  font-weight: 800;
  font-size: 14px;
  color: #1e1d2f;
  font-family: 'Nunito', sans-serif;
}

.ccard-price.free {
  color: #0eb582;
}

.ccard-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #1e1d2f;
  font-family: 'Nunito', sans-serif;
  line-height: 1.4;
  margin-bottom: 20px;
}

.ccard-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f5;
  padding-top: 14px;
}

.ccard-dur {
  font-size: 12.5px;
  color: #7a7a91;
  font-weight: 600;
}

.cart-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8f9f4;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0eb582;
  transition: background .2s;
}

.cart-btn:hover {
  background: #0eb582;
  color: #fff;
}

.btn-center {
  margin-top: 50px;
}

.btn-outline-purple {
  display: inline-flex;
  align-items: center;
  border: 2px solid #4a2fc1;
  color: #4a2fc1;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 38px;
  border-radius: 30px;
  transition: all .2s;
}

.btn-outline-purple:hover {
  background: #4a2fc1;
  color: #fff;
}

.whylearn {
  background: linear-gradient(130deg, #2b2ad6 0%, #6e28cb 100%);
  padding: 90px 0;
  text-align: center;
}

.why-cols {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}

.why-col {
  flex: 1;
  padding: 0 48px;
}

.why-sep {
  width: 1px;
  height: 160px;
  background: rgba(255, 255, 255, .2);
  align-self: center;
  flex-shrink: 0;
}

.why-icon {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.why-col h3 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.why-col p {
  color: rgba(255, 255, 255, .75);
  font-size: 14.5px;
}

.categories {
  padding: 90px 0;
  text-align: center;
}

.cats-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.cat-box {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  padding: 28px 16px;
  box-shadow: 0 8px 24px rgba(30, 29, 47, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .3s;
}

.cat-box:hover {
  transform: translateY(-5px);
}

.cat-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cat-box strong {
  font-size: 13.5px;
  font-weight: 800;
  color: #1e1d2f;
}

.cat-box small {
  font-size: 12.5px;
  color: #7a7a91;
}

.relevance {
  padding: 80px 0 90px;
}

.relev-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.relev-art {
  flex: 0 0 400px;
  position: relative;
  height: 420px;
}

.ra-shape {
  position: absolute;
}

.ra-orange-half {
  width: 240px;
  height: 120px;
  background: #f39c12;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  bottom: 0;
  left: 0;
}

.ra-teal-rect {
  width: 135px;
  height: 135px;
  background: #0eb582;
  top: 110px;
  left: 185px;
}

.ra-pink-tri {
  width: 0;
  height: 0;
  border-left: 72px solid transparent;
  border-right: 72px solid transparent;
  border-bottom: 124px solid #e74c3c;
  bottom: 0;
  right: 40px;
  z-index: 2;
}

.ra-photo {
  position: absolute;
  object-fit: cover;
  border-radius: 50%;
}

.ra-photo1 {
  width: 138px;
  height: 138px;
  top: 0;
  right: 60px;
}

.ra-photo2 {
  width: 110px;
  height: 150px;
  border-radius: 80px;
  bottom: -10px;
  left: 130px;
  z-index: 3;
}

.relev-text {
  flex: 1;
}

.relev-text .sec-title {
  text-align: left;
}

.relev-text p {
  color: #7a7a91;
  margin: 18px 0 32px;
  font-size: 16px;
  max-width: 480px;
}

.btn-purple {
  display: inline-flex;
  align-items: center;
  background: #4a2fc1;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 30px;
  transition: background .2s, transform .2s;
}

.btn-purple:hover {
  background: #3621a1;
  transform: translateY(-2px);
}

.video-sec {
  padding: 0 0 90px;
}

.video-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 29, 47, .12);
}

.video-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: #0eb582;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 5px;
  box-shadow: 0 0 0 18px rgba(14, 181, 130, .28);
  transition: background .2s, transform .2s;
}

.play-btn:hover {
  background: #0ca070;
  transform: translate(-50%, -50%) scale(1.08);
}

.pricing {
  padding: 80px 0 100px;
  background: linear-gradient(130deg, #1b1ae0 0%, #5e22c5 55%, #7c2fb5 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.price-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.glow-1 {
  top: -150px;
  left: -200px;
  background: #00ffd0;
  opacity: 0.15;
}

.glow-2 {
  bottom: -150px;
  right: -200px;
  background: #ff007f;
  opacity: 0.15;
}

.price-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.pricing .sec-title,
.pricing .sec-sub {
  color: #fff;
  position: relative;
  z-index: 2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 860px;
  margin: 50px auto 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  transition: transform .3s, border-color .3s, background .3s, box-shadow .3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.pricing-card-pro {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);

  box-shadow: 0 0 40px rgba(0, 255, 208, 0.15);
}

.pricing-card-pro:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 50px rgba(0, 255, 208, 0.25);
}

.pc-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(130deg, #ff007f, #ff7a00);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 6px 15px rgba(255, 0, 127, 0.4);
}

.pc-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.pc-price {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.pc-price span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.pc-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 24px;
}

.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pc-features li {
  font-size: 15px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pc-check {
  color: #00ffd0;
  font-weight: 800;
  flex-shrink: 0;
}

.pc-not {
  color: rgba(255, 255, 255, 0.4);
}

.pc-cross {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 800;
  flex-shrink: 0;
}

.btn-pc {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-pc-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.btn-pc-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-pc-solid {
  background: linear-gradient(130deg, #ff007f, #ff7a00);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 0, 127, 0.3);
}

.btn-pc-solid:hover {
  opacity: .95;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 0, 127, 0.5);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .pricing-card-pro {
    transform: none;
  }

  .pricing-card-pro:hover {
    transform: translateY(-5px);
  }
}

.testimonials {
  background: #dcebfe;

  padding: 90px 0;
  text-align: center;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.tcard {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 6px 24px rgba(30, 29, 47, .05);
}

.tcard-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.tcard-av {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tcard-top b {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 2px;
}

.tcard-top span {
  font-size: 12.5px;
  color: #7a7a91;
}

.tcard p {
  font-size: 14px;
  color: #55556e;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.tstars {
  color: #f0b429;
  font-size: 18px;
  letter-spacing: 2px;
}

.footer {
  background: #3b2b9e;
  color: #fff;
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-inner span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand .logo {
  font-size: 20px;
  margin-bottom: 18px;
}

.footer-logo {
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  max-width: 280px;
  margin-bottom: 16px;
}

.footer-brand small {
  color: rgba(255, 255, 255, .45);
  font-size: 12.5px;
}

.footer-col h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

.mod-bottom-nav {
  display: none;
}

@media (max-width: 1024px) {

  .cards-grid,
  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    padding-bottom: 20px;
    gap: 20px;
  }

  .hero-text {
    flex: 1.2;
    padding-bottom: 10px;
    text-align: left;
  }

  .hero-arch {
    display: none;
  }

  .hero-img-wrap {
    flex: 0.8;
    justify-content: flex-end;
    width: auto;
  }

  .hero-img-tint {
    transform: none;
    margin: 0;
    display: flex;
    justify-content: flex-end;
  }

  .hero-person {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-position: center;
  }

  .relev-inner {
    flex-direction: column;
  }

  .relev-art {
    flex: none;
    width: 100%;
    height: 320px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 100;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .hidden-mobile {
    display: none !important;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    background: rgba(15, 14, 160, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 99;
  }

  .main-nav.active {
    display: flex;
    animation: fadeIn .3s;
  }

  .nav-link {
    font-size: 18px;
    padding: 10px;
  }

  .hero {
    padding: 60px 0 20px;
  }

  .hero-img-wrap {
    display: none;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-desc-row {
    justify-content: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-price-badge {
    border-left: 4px solid #0eb582;
    padding-left: 14px;
    margin-left: 4px;
    margin-top: 10px;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .program {
    padding: 60px 0 60px;
  }

  .prog-eyebrow {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }

  .sec-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .sec-sub {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .mod-panels {
    margin-top: 16px;
  }

  .cards-grid,
  .test-grid,
  .why-cols {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .why-col {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .why-sep {
    display: none;
  }

  .cats-row {
    flex-wrap: wrap;
  }

  .cat-box {
    min-width: calc(50% - 10px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .logos-inner {
    justify-content: center;
    gap: 12px;
  }

  .feat-circle {
    display: none;
  }

  .mod-panel {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 20px;
  }

  .mod-panel h3 {
    font-size: 20px;
  }

  .mod-panel-left>p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .mod-topics {
    gap: 6px;
    margin-bottom: 20px;
  }

  .mod-topic {
    font-size: 11px;
    padding: 6px 10px;
  }

  .btn-mod-cta {
    font-size: 14px;
    padding: 12px 24px;
    width: 100%;
    margin-bottom: 8px;
    justify-content: center;
  }

  .mod-panel-icon {
    margin-bottom: 12px;
    margin-right: 12px;
    padding: 2px;
    display: inline-flex;
    vertical-align: middle;
  }

  .mod-meta {
    display: inline-flex;
    vertical-align: middle;
    margin-bottom: 12px;
    padding-top: 6px;
  }

  .mod-panel-icon svg {
    width: 40px;
    height: 40px;
  }

  .mod-info-card {
    padding: 20px 16px;
    gap: 12px;
    border-radius: 16px;
  }

  .mod-info-highlight {
    font-size: 14px;
    margin-top: -6px;
    line-height: 1.4;
  }

  .mod-info-format {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 10px;
  }

  .mod-meta {
    margin-bottom: 12px;
  }

  .mod-nav-arrow {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .mod-dots {
    gap: 8px;
    margin-top: 14px;
  }

  .mod-dot {
    width: 8px;
    height: 8px;
  }

  .mod-dot.active {
    width: 22px;
  }

  .mod-tabs-wrapper {
    gap: 8px;
    margin: 16px 0 12px;
  }

  .mod-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .mod-bottom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 10px;
  }

  .mod-bottom-info {
    font-size: 14px;
    color: #9b96c9;
    font-weight: 600;
  }

  .mod-tab {
    padding: 0;
  }

  .mod-tab.active .mod-tab-label {
    font-size: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 30px 20px 24px;
  }

  .pc-popular {
    font-size: 10px;
    padding: 4px 12px;
    top: -10px;
  }

  .pc-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .pc-price {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .pc-desc {
    font-size: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .pc-features {
    margin: 0 0 20px;
    gap: 10px;
  }

  .pc-features li {
    font-size: 13px;
  }

  .pricing-card-pro {
    transform: none;
  }

  .pricing-card-pro:hover {
    transform: translateY(-5px);
  }

  .modal-box {
    padding: 40px 24px;
    margin: 15px;
    width: calc(100% - 30px);
  }

  .sec-title {
    font-size: 28px;
  }

  .sec-sub {
    font-size: 14px;
    padding: 0 10px;
  }

  .navbar .container {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .cat-box {
    min-width: 100%;
  }

  .mod-panel-left h3 {
    font-size: 22px;
  }
}

.btn-section-cta {
  padding: 13px 28px;
  font-size: 15px;
  margin-top: 10px;
}

.btn-purple {
  background: #4a2fc1;
  color: #fff;
  box-shadow: 0 4px 14px rgba(74, 47, 193, 0.2);
}

.btn-purple:hover {
  background: #3b2b9e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 47, 193, 0.3);
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 14, 160, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-box {
  background: #fff;
  width: 100%;
  max-width: 440px;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
  animation: modalIn .3s ease-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #9b96c9;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #1e1d2f;
}

.simple-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.reg-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e1e1ec;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.reg-input:focus {
  border-color: #4a2fc1;
}

.reg-note {
  font-size: 11px;
  color: #9b96c9;
  margin-top: 8px;
}