.elementor .e-9dd225b{padding:0px;flex-direction:column;}.elementor .e-474f8e5-a88438d{padding:0px;flex-direction:column;}.elementor .e-f4685f7-43cfabb{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS COURSE SNAPSHOT
 Desktop: 6 Cards in One Row
 Tablet: 3 × 2 Grid
 Mobile: 2 × 3 Grid
========================================= */

.jmc-eleven-snapshot,
.jmc-eleven-snapshot * {
box-sizing: border-box;
}

.jmc-eleven-snapshot {
--snapshot-bg: #f7f9fc;
--snapshot-text: #171a2b;
--snapshot-muted: #606779;
--snapshot-violet: #6d4aff;
--snapshot-cyan: #14b8c4;
--snapshot-indigo: #3f46c8;

position: relative;
width: 100%;
overflow: hidden;
padding: 88px 20px;
color: var(--snapshot-text);
font-family: Arial, sans-serif;
background:
  radial-gradient(
    circle at 8% 15%,
    rgba(109, 74, 255, 0.1),
    transparent 26%
  ),
  radial-gradient(
    circle at 92% 85%,
    rgba(20, 184, 196, 0.1),
    transparent 28%
  ),
  linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

.jmc-eleven-snapshot::before {
content: "";
position: absolute;
top: -230px;
right: -120px;
width: 410px;
height: 410px;
border: 1px solid rgba(109, 74, 255, 0.13);
border-radius: 50%;
box-shadow:
  0 0 0 50px rgba(109, 74, 255, 0.02),
  0 0 0 100px rgba(20, 184, 196, 0.014);
pointer-events: none;
}

.jmc-eleven-snapshot::after {
content: "";
position: absolute;
bottom: -180px;
left: -120px;
width: 300px;
height: 300px;
border: 1px solid rgba(20, 184, 196, 0.11);
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-snapshot__container {
position: relative;
z-index: 2;
width: min(1280px, 100%);
margin: 0 auto;
}

/* Section Header */

.jmc-eleven-snapshot__header {
width: min(820px, 100%);
margin: 0 auto 48px;
text-align: center;
}

.jmc-eleven-snapshot__eyebrow {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
margin-bottom: 18px;
padding: 9px 17px;
border: 1px solid rgba(109, 74, 255, 0.16);
border-radius: 999px;
color: #6d4aff;
background: #f1eeff;
font-size: 12px;
font-weight: 800;
line-height: 1;
letter-spacing: 1.6px;
text-transform: uppercase;
box-shadow: 0 8px 20px rgba(23, 26, 43, 0.05);
}

.jmc-eleven-snapshot__eyebrow .dashicons {
width: auto;
height: auto;
font-size: 17px;
line-height: 1;
}

.jmc-eleven-snapshot__heading {
margin: 0;
color: #171a2b;
font-family: "Times New Roman", Times, serif;
font-size: clamp(42px, 5vw, 68px);
font-weight: 700;
line-height: 1.05;
letter-spacing: -1.8px;
}

.jmc-eleven-snapshot__heading span {
color: #6d4aff;
}

.jmc-eleven-snapshot__heading span::after {
content: "";
width: 66px;
height: 3px;
display: block;
margin: 12px auto 0;
border-radius: 999px;
background:
  linear-gradient(
    90deg,
    #6d4aff,
    #14b8c4
  );
}

.jmc-eleven-snapshot__intro {
width: min(720px, 100%);
margin: 22px auto 0;
color: #606779;
font-size: 17px;
line-height: 1.75;
}

/* Card Grid */

.jmc-eleven-snapshot__grid {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 18px;
}

/* Cards */

.jmc-eleven-snapshot-card {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.16);

position: relative;
min-width: 0;
min-height: 275px;
overflow: hidden;
padding: 24px 20px 23px;
border: 1px solid var(--card-border);
border-radius: 20px;
background: #ffffff;
box-shadow:
  0 18px 40px rgba(23, 26, 43, 0.08),
  0 6px 14px rgba(23, 26, 43, 0.04);
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-eleven-snapshot-card::before {
content: "";
position: absolute;
top: -65px;
right: -55px;
width: 125px;
height: 125px;
border-radius: 50%;
background: var(--card-soft);
transition: transform 0.4s ease;
pointer-events: none;
}

.jmc-eleven-snapshot-card::after {
content: "";
position: absolute;
left: 20px;
bottom: 0;
width: 0;
height: 3px;
border-radius: 999px;
background: var(--card-accent);
transition: width 0.4s ease;
}

.jmc-eleven-snapshot-card:hover {
transform: translateY(-8px);
border-color: var(--card-accent);
box-shadow:
  0 28px 58px rgba(57, 48, 130, 0.14),
  0 10px 22px rgba(23, 26, 43, 0.07);
}

.jmc-eleven-snapshot-card:hover::before {
transform: scale(1.18);
}

.jmc-eleven-snapshot-card:hover::after {
width: calc(100% - 40px);
}

.jmc-eleven-snapshot-card__top {
position: relative;
z-index: 2;
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 12px;
margin-bottom: 21px;
}

.jmc-eleven-snapshot-card__icon {
width: 52px;
height: 52px;
flex: 0 0 52px;
display: grid;
place-items: center;
border: 1px solid var(--card-border);
border-radius: 15px;
color: var(--card-accent);
background: var(--card-soft);
box-shadow: 0 8px 18px rgba(23, 26, 43, 0.06);
}

.jmc-eleven-snapshot-card__icon .dashicons {
width: auto;
height: auto;
font-size: 26px;
line-height: 1;
}

.jmc-eleven-snapshot-card__number {
color: var(--card-accent);
font-size: 14px;
font-weight: 800;
line-height: 1;
}

.jmc-eleven-snapshot-card__title {
position: relative;
z-index: 2;
margin: 0;
color: #171a2b;
font-family: "Times New Roman", Times, serif;
font-size: 21px;
font-weight: 700;
line-height: 1.25;
}

.jmc-eleven-snapshot-card__line {
width: 100%;
height: 1px;
margin: 13px 0 15px;
background:
  linear-gradient(
    90deg,
    var(--card-accent),
    transparent
  );
opacity: 0.38;
}

.jmc-eleven-snapshot-card__value {
position: relative;
z-index: 2;
margin: 0 0 10px;
color: var(--card-accent);
font-family: "Times New Roman", Times, serif;
font-size: 23px;
font-weight: 700;
line-height: 1.2;
}

.jmc-eleven-snapshot-card__description {
position: relative;
z-index: 2;
margin: 0;
color: #606779;
font-size: 14px;
line-height: 1.65;
}

/* Card Variations */

.jmc-eleven-snapshot-card--violet {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.18);
}

.jmc-eleven-snapshot-card--cyan {
--card-accent: #0d9da8;
--card-soft: #eafbfd;
--card-border: rgba(20, 184, 196, 0.2);
}

.jmc-eleven-snapshot-card--indigo {
--card-accent: #3f46c8;
--card-soft: #eceeff;
--card-border: rgba(63, 70, 200, 0.18);
}

/* Optional Feature Strip */

.jmc-eleven-snapshot__strip {
display: flex;
align-items: center;
justify-content: center;
gap: 13px;
flex-wrap: wrap;
margin-top: 36px;
padding: 18px 22px;
border: 1px solid rgba(109, 74, 255, 0.14);
border-radius: 18px;
background: rgba(255, 255, 255, 0.86);
box-shadow: 0 13px 30px rgba(23, 26, 43, 0.06);
}

.jmc-eleven-snapshot__strip-item {
display: inline-flex;
align-items: center;
gap: 7px;
color: #43495d;
font-size: 13px;
font-weight: 800;
}

.jmc-eleven-snapshot__strip-item::after {
content: "•";
margin-left: 6px;
color: #14b8c4;
}

.jmc-eleven-snapshot__strip-item:last-child::after {
display: none;
}

/* Tablet: 3 × 2 */

@media (max-width: 1100px) {
.jmc-eleven-snapshot__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.jmc-eleven-snapshot-card {
  min-height: 260px;
}
}

/* Mobile: 2 × 3 */

@media (max-width: 700px) {
.jmc-eleven-snapshot {
  padding: 66px 14px;
}

.jmc-eleven-snapshot__header {
  margin-bottom: 36px;
}

.jmc-eleven-snapshot__eyebrow {
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 1.2px;
}

.jmc-eleven-snapshot__heading {
  font-size: clamp(38px, 11vw, 52px);
  letter-spacing: -1px;
}

.jmc-eleven-snapshot__intro {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.65;
}

.jmc-eleven-snapshot__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.jmc-eleven-snapshot-card {
  min-height: 245px;
  padding: 20px 16px;
  border-radius: 17px;
}

.jmc-eleven-snapshot-card__top {
  margin-bottom: 17px;
}

.jmc-eleven-snapshot-card__icon {
  width: 45px;
  height: 45px;
  flex-basis: 45px;
  border-radius: 13px;
}

.jmc-eleven-snapshot-card__icon .dashicons {
  font-size: 23px;
}

.jmc-eleven-snapshot-card__title {
  font-size: 18px;
}

.jmc-eleven-snapshot-card__value {
  font-size: 20px;
}

.jmc-eleven-snapshot-card__description {
  font-size: 13px;
  line-height: 1.55;
}

.jmc-eleven-snapshot__strip {
  gap: 8px;
  margin-top: 26px;
  padding: 16px;
}

.jmc-eleven-snapshot__strip-item {
  font-size: 12px;
}
}

/* Small Mobile */

@media (max-width: 430px) {
.jmc-eleven-snapshot__grid {
  grid-template-columns: 1fr;
}

.jmc-eleven-snapshot-card {
  width: calc(100% - 20px);
  max-width: 390px;
  min-height: auto;
  justify-self: center;
}

.jmc-eleven-snapshot__strip {
  width: calc(100% - 20px);
  margin-right: auto;
  margin-left: auto;
}

.jmc-eleven-snapshot__strip-item {
  width: 100%;
  justify-content: center;
}

.jmc-eleven-snapshot__strip-item::after {
  display: none;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-eleven-snapshot-card,
.jmc-eleven-snapshot-card::before,
.jmc-eleven-snapshot-card::after {
  transition: none;
}

.jmc-eleven-snapshot-card:hover {
  transform: none;
}
}\n}.elementor .e-0b70ebf{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS COURSE OVERVIEW VIDEO
========================================= */

.jmc-eleven-video,
.jmc-eleven-video * {
box-sizing: border-box;
}

.jmc-eleven-video {
--video-text: #171a2b;
--video-muted: #606779;
--video-violet: #6d4aff;
--video-cyan: #14b8c4;
--video-indigo: #3f46c8;

position: relative;
width: 100%;
overflow: hidden;
padding: 94px 20px;
color: var(--video-text);
font-family: Arial, sans-serif;
background:
  radial-gradient(
    circle at 8% 18%,
    rgba(109, 74, 255, 0.1),
    transparent 28%
  ),
  radial-gradient(
    circle at 92% 82%,
    rgba(20, 184, 196, 0.1),
    transparent 28%
  ),
  linear-gradient(
    135deg,
    #f1eeff 0%,
    #f7f9fc 52%,
    #eafbfd 100%
  );
}

.jmc-eleven-video::before {
content: "";
position: absolute;
top: -280px;
left: -170px;
width: 460px;
height: 460px;
border: 1px solid rgba(109, 74, 255, 0.14);
border-radius: 50%;
box-shadow:
  0 0 0 48px rgba(109, 74, 255, 0.018),
  0 0 0 96px rgba(109, 74, 255, 0.012);
pointer-events: none;
}

.jmc-eleven-video::after {
content: "";
position: absolute;
right: -170px;
bottom: -230px;
width: 370px;
height: 370px;
border: 1px solid rgba(20, 184, 196, 0.14);
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-video__container {
position: relative;
z-index: 2;
width: min(1180px, 100%);
margin: 0 auto;
}

/* Header */

.jmc-eleven-video__header {
width: min(840px, 100%);
margin: 0 auto 46px;
text-align: center;
}

.jmc-eleven-video__badge {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
margin: 0 auto 18px;
padding: 9px 17px;
border: 1px solid rgba(109, 74, 255, 0.17);
border-radius: 999px;
color: #6d4aff;
background: rgba(255, 255, 255, 0.74);
box-shadow: 0 8px 20px rgba(23, 26, 43, 0.05);
font-size: 12px;
font-weight: 800;
line-height: 1;
letter-spacing: 1.6px;
text-transform: uppercase;
}

.jmc-eleven-video__badge .dashicons {
width: auto;
height: auto;
font-size: 18px;
line-height: 1;
}

.jmc-eleven-video__heading {
margin: 0;
color: #171a2b;
font-family: "Times New Roman", Times, serif;
font-size: clamp(42px, 5vw, 68px);
font-weight: 700;
line-height: 1.05;
letter-spacing: -1.7px;
}

.jmc-eleven-video__heading span {
color: #6d4aff;
}

.jmc-eleven-video__heading span::after {
content: "";
display: block;
width: 68px;
height: 3px;
margin: 12px auto 0;
border-radius: 999px;
background:
  linear-gradient(
    90deg,
    #6d4aff,
    #14b8c4
  );
}

.jmc-eleven-video__intro {
width: min(760px, 100%);
margin: 22px auto 0;
color: #606779;
font-size: 17px;
line-height: 1.75;
}

/* Main Layout */

.jmc-eleven-video__layout {
display: grid;
grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.75fr);
align-items: stretch;
gap: 30px;
}

/* Video Player */

.jmc-eleven-video__player-card {
position: relative;
padding: 14px;
border: 1px solid rgba(109, 74, 255, 0.14);
border-radius: 26px;
background: rgba(255, 255, 255, 0.92);
box-shadow:
  0 26px 68px rgba(57, 48, 130, 0.14),
  0 8px 22px rgba(23, 26, 43, 0.06);
}

.jmc-eleven-video__player-card::before {
content: "";
position: absolute;
inset: -1px;
z-index: -1;
border-radius: 27px;
background:
  linear-gradient(
    135deg,
    rgba(109, 74, 255, 0.28),
    rgba(20, 184, 196, 0.2),
    transparent 65%
  );
}

.jmc-eleven-video__responsive {
position: relative;
width: 100%;
overflow: hidden;
padding-top: 56.25%;
border-radius: 18px;
background: #171a2b;
}

.jmc-eleven-video__responsive iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: 0;
}

/* Details Card */

.jmc-eleven-video__details {
display: flex;
flex-direction: column;
justify-content: center;
padding: 34px 30px;
border: 1px solid rgba(63, 70, 200, 0.14);
border-radius: 24px;
background: rgba(255, 255, 255, 0.9);
box-shadow:
  0 20px 52px rgba(57, 48, 130, 0.11),
  0 6px 16px rgba(23, 26, 43, 0.05);
}

.jmc-eleven-video__details-label {
margin: 0 0 12px;
color: #6d4aff;
font-size: 13px;
font-weight: 800;
letter-spacing: 1.5px;
text-transform: uppercase;
}

.jmc-eleven-video__details-title {
margin: 0;
color: #171a2b;
font-family: "Times New Roman", Times, serif;
font-size: 34px;
line-height: 1.15;
}

.jmc-eleven-video__details-text {
margin: 17px 0 24px;
color: #606779;
font-size: 15px;
line-height: 1.7;
}

.jmc-eleven-video__points {
display: grid;
gap: 14px;
margin: 0;
padding: 0;
list-style: none;
}

.jmc-eleven-video__point {
display: flex;
align-items: flex-start;
gap: 12px;
color: #43495d;
font-size: 15px;
line-height: 1.55;
}

.jmc-eleven-video__point-icon {
width: 35px;
height: 35px;
flex: 0 0 35px;
display: grid;
place-items: center;
border: 1px solid rgba(109, 74, 255, 0.16);
border-radius: 11px;
color: #6d4aff;
background: #f1eeff;
}

.jmc-eleven-video__point:nth-child(even)
.jmc-eleven-video__point-icon {
color: #0d9da8;
border-color: rgba(20, 184, 196, 0.2);
background: #eafbfd;
}

.jmc-eleven-video__point-icon .dashicons {
width: auto;
height: auto;
font-size: 18px;
line-height: 1;
}

.jmc-eleven-video__note {
margin: 24px 0 0;
padding-top: 20px;
border-top: 1px solid rgba(109, 74, 255, 0.12);
color: #717789;
font-size: 13px;
line-height: 1.55;
}

.jmc-eleven-video__note strong {
color: #3f46c8;
}

/* Tablet */

@media (max-width: 980px) {
.jmc-eleven-video__layout {
  grid-template-columns: 1fr;
}

.jmc-eleven-video__details {
  padding: 30px;
}

.jmc-eleven-video__points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

/* Mobile */

@media (max-width: 767px) {
.jmc-eleven-video {
  padding: 68px 15px;
}

.jmc-eleven-video__header {
  margin-bottom: 32px;
}

.jmc-eleven-video__badge {
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 1.2px;
}

.jmc-eleven-video__heading {
  font-size: clamp(39px, 12vw, 52px);
  letter-spacing: -1px;
}

.jmc-eleven-video__intro {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.65;
}

.jmc-eleven-video__layout {
  gap: 20px;
}

.jmc-eleven-video__player-card {
  padding: 8px;
  border-radius: 18px;
}

.jmc-eleven-video__responsive {
  border-radius: 13px;
}

.jmc-eleven-video__details {
  padding: 25px 21px;
  border-radius: 18px;
}

.jmc-eleven-video__details-title {
  font-size: 29px;
}

.jmc-eleven-video__points {
  grid-template-columns: 1fr;
}
}

@media (max-width: 420px) {
.jmc-eleven-video {
  padding-right: 12px;
  padding-left: 12px;
}

.jmc-eleven-video__player-card,
.jmc-eleven-video__details {
  width: calc(100% - 10px);
  margin-right: auto;
  margin-left: auto;
}
}\n}.elementor .e-42c034e-be901c9{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS COURSE INTRODUCTION
========================================= */

.jmc-eleven-introduction,
.jmc-eleven-introduction * {
box-sizing: border-box;
}

.jmc-eleven-introduction {
--intro-text: #171a2b;
--intro-muted: #606779;
--intro-violet: #6d4aff;
--intro-cyan: #14b8c4;
--intro-indigo: #3f46c8;
--intro-lavender: #f1eeff;
--intro-cyan-soft: #eafbfd;

position: relative;
width: 100%;
overflow: hidden;
padding: 94px 20px;
color: var(--intro-text);
font-family: "Times New Roman", Times, serif;
background:
  radial-gradient(
    circle at 5% 12%,
    rgba(109, 74, 255, 0.08),
    transparent 25%
  ),
  radial-gradient(
    circle at 95% 88%,
    rgba(20, 184, 196, 0.08),
    transparent 27%
  ),
  linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

.jmc-eleven-introduction p,
.jmc-eleven-introduction h2,
.jmc-eleven-introduction h3,
.jmc-eleven-introduction span:not(.dashicons),
.jmc-eleven-introduction strong {
font-family: "Times New Roman", Times, serif;
}

.jmc-eleven-introduction .dashicons {
display: inline-block;
width: 1em;
height: 1em;
font-family: dashicons !important;
font-style: normal;
font-weight: normal;
line-height: 1;
text-align: center;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
}

.jmc-eleven-introduction::before {
content: "";
position: absolute;
top: -270px;
left: -180px;
width: 410px;
height: 410px;
border: 1px solid rgba(109, 74, 255, 0.13);
border-radius: 50%;
box-shadow:
  0 0 0 50px rgba(109, 74, 255, 0.018),
  0 0 0 100px rgba(20, 184, 196, 0.012);
pointer-events: none;
}

.jmc-eleven-introduction::after {
content: "";
position: absolute;
right: -210px;
bottom: -220px;
width: 350px;
height: 350px;
border: 1px solid rgba(20, 184, 196, 0.14);
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-introduction__container {
position: relative;
z-index: 2;
width: min(1240px, 100%);
margin: 0 auto;
}

/* Main Layout */

.jmc-eleven-introduction__main {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(400px, 0.95fr);
align-items: center;
gap: 70px;
}

.jmc-eleven-introduction__content {
min-width: 0;
}

/* Badge */

.jmc-eleven-introduction__badge {
display: inline-flex;
align-items: center;
gap: 9px;
margin: 0 0 24px;
padding: 9px 17px;
border: 1px solid rgba(109, 74, 255, 0.17);
border-radius: 999px;
color: #6d4aff;
background: #f1eeff;
box-shadow: 0 8px 20px rgba(23, 26, 43, 0.05);
font-size: 13px;
font-weight: 700;
line-height: 1;
letter-spacing: 1.6px;
text-transform: uppercase;
}

.jmc-eleven-introduction__badge .dashicons {
width: auto;
height: auto;
color: #6d4aff;
font-size: 18px;
}

/* Heading */

.jmc-eleven-introduction__heading {
margin: 0;
color: #171a2b;
font-size: clamp(47px, 5.3vw, 76px);
font-weight: 700;
line-height: 1.02;
letter-spacing: -2px;
}

.jmc-eleven-introduction__heading-accent {
display: block;
color: #6d4aff;
}

.jmc-eleven-introduction__divider {
width: 230px;
margin: 27px 0;
display: flex;
align-items: center;
gap: 16px;
}

.jmc-eleven-introduction__divider-line {
flex: 1;
height: 1px;
background:
  linear-gradient(
    90deg,
    rgba(109, 74, 255, 0.5),
    rgba(20, 184, 196, 0.5)
  );
}

.jmc-eleven-introduction__divider-symbol {
color: #14b8c4;
font-size: 20px;
line-height: 1;
}

/* Text */

.jmc-eleven-introduction__text {
margin: 0;
color: #606779;
font-size: 18px;
line-height: 1.8;
}

.jmc-eleven-introduction__text +
.jmc-eleven-introduction__text {
margin-top: 19px;
}

.jmc-eleven-introduction__text strong {
color: #3f46c8;
}

/* Image Area */

.jmc-eleven-introduction__visual {
position: relative;
min-width: 0;
perspective: 1200px;
}

.jmc-eleven-introduction__image-frame {
position: relative;
padding: 12px;
border: 1px solid rgba(109, 74, 255, 0.2);
border-radius: 42px 42px 42px 105px;
background: rgba(255, 255, 255, 0.9);
box-shadow:
  0 32px 70px rgba(57, 48, 130, 0.15),
  0 10px 24px rgba(23, 26, 43, 0.07);
transform: rotateY(-2deg) rotateX(1deg);
transition:
  transform 0.45s ease,
  box-shadow 0.45s ease;
}

.jmc-eleven-introduction__image-frame:hover {
transform: rotateY(0deg) rotateX(0deg) translateY(-7px);
box-shadow:
  0 42px 85px rgba(57, 48, 130, 0.19),
  0 14px 30px rgba(23, 26, 43, 0.09);
}

.jmc-eleven-introduction__image-frame::before {
content: "";
position: absolute;
inset: -14px 14px 14px -14px;
z-index: -1;
border: 1px solid rgba(20, 184, 196, 0.28);
border-radius: 42px 42px 42px 105px;
}

.jmc-eleven-introduction__image {
display: block;
width: 100%;
min-height: 410px;
object-fit: cover;
border-radius: 31px 31px 31px 90px;
}

/* Floating Note */

.jmc-eleven-introduction__floating-note {
position: absolute;
left: -55px;
bottom: 52px;
width: 190px;
padding: 23px 18px;
border: 1px solid rgba(109, 74, 255, 0.18);
border-radius: 50%;
color: #171a2b;
text-align: center;
background:
  linear-gradient(
    145deg,
    #f1eeff 0%,
    #eafbfd 100%
  );
box-shadow:
  0 22px 45px rgba(57, 48, 130, 0.18),
  inset 0 1px 0 rgba(255, 255, 255, 0.9);
animation: jmcElevenIntroFloat 4s ease-in-out infinite;
}

.jmc-eleven-introduction__floating-note .dashicons {
display: block;
width: auto;
height: auto;
margin: 0 auto 9px;
color: #6d4aff;
font-size: 34px;
}

.jmc-eleven-introduction__floating-note strong {
display: block;
color: #171a2b;
font-size: 18px;
line-height: 1.25;
}

.jmc-eleven-introduction__floating-note span {
display: block;
margin-top: 5px;
color: #606779;
font-size: 14px;
line-height: 1.4;
}

/* Benefit Cards */

.jmc-eleven-introduction__cards {
margin-top: 65px;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 21px;
}

.jmc-eleven-intro-benefit {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.16);

position: relative;
min-height: 235px;
padding: 28px 20px 24px;
border: 1px solid var(--card-border);
border-radius: 22px;
background: #ffffff;
text-align: center;
box-shadow:
  0 22px 40px rgba(23, 26, 43, 0.09),
  0 8px 16px rgba(23, 26, 43, 0.04);
transition:
  transform 0.4s ease,
  box-shadow 0.4s ease,
  border-color 0.4s ease;
}

.jmc-eleven-intro-benefit::before {
content: "";
position: absolute;
inset: 9px -7px -9px 7px;
z-index: -1;
border-radius: 22px;
background: var(--card-soft);
opacity: 0.7;
transition:
  transform 0.4s ease,
  opacity 0.4s ease;
}

.jmc-eleven-intro-benefit:hover {
border-color: var(--card-accent);
transform: translateY(-10px);
box-shadow:
  0 34px 58px rgba(57, 48, 130, 0.15),
  0 12px 20px rgba(23, 26, 43, 0.07);
}

.jmc-eleven-intro-benefit:hover::before {
transform: translate(4px, 7px);
opacity: 0.95;
}

.jmc-eleven-intro-benefit__icon {
width: 64px;
height: 64px;
margin: 0 auto 18px;
display: grid;
place-items: center;
border: 1px solid var(--card-border);
border-radius: 50%;
color: var(--card-accent);
background: var(--card-soft);
box-shadow:
  0 12px 24px rgba(23, 26, 43, 0.07),
  inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.jmc-eleven-intro-benefit__icon .dashicons {
width: auto;
height: auto;
font-size: 31px;
}

.jmc-eleven-intro-benefit__title {
margin: 0;
color: #171a2b;
font-size: 21px;
font-weight: 700;
line-height: 1.25;
}

.jmc-eleven-intro-benefit__line {
width: 42px;
height: 2px;
margin: 13px auto;
border-radius: 999px;
background: var(--card-accent);
}

.jmc-eleven-intro-benefit__description {
margin: 0;
color: #606779;
font-size: 15px;
line-height: 1.55;
}

/* Card Colours */

.jmc-eleven-intro-benefit--violet {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.18);
}

.jmc-eleven-intro-benefit--cyan {
--card-accent: #0d9da8;
--card-soft: #eafbfd;
--card-border: rgba(20, 184, 196, 0.2);
}

.jmc-eleven-intro-benefit--indigo {
--card-accent: #3f46c8;
--card-soft: #eceeff;
--card-border: rgba(63, 70, 200, 0.18);
}

/* Floating Animation */

@keyframes jmcElevenIntroFloat {
0%,
100% {
  transform: translateY(0);
}

50% {
  transform: translateY(-10px);
}
}

/* Tablet */

@media (max-width: 1100px) {
.jmc-eleven-introduction__main {
  grid-template-columns: 1fr 0.9fr;
  gap: 45px;
}

.jmc-eleven-introduction__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media (max-width: 850px) {
.jmc-eleven-introduction__main {
  grid-template-columns: 1fr;
}

.jmc-eleven-introduction__visual {
  width: min(650px, 100%);
  margin: 10px auto 0;
}

.jmc-eleven-introduction__floating-note {
  left: 18px;
  bottom: 25px;
}

.jmc-eleven-introduction__cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jmc-eleven-intro-benefit:last-child {
  grid-column: 1 / -1;
  width: calc(50% - 11px);
  justify-self: center;
}
}

/* Mobile */

@media (max-width: 600px) {
.jmc-eleven-introduction {
  padding: 68px 15px;
}

.jmc-eleven-introduction__main {
  gap: 35px;
}

.jmc-eleven-introduction__badge {
  margin-bottom: 20px;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 1.2px;
}

.jmc-eleven-introduction__heading {
  font-size: clamp(42px, 13vw, 57px);
  letter-spacing: -1px;
}

.jmc-eleven-introduction__divider {
  width: 190px;
  margin: 23px 0;
}

.jmc-eleven-introduction__text {
  font-size: 16px;
  line-height: 1.7;
}

.jmc-eleven-introduction__image-frame {
  padding: 8px;
  border-radius: 25px 25px 25px 60px;
  transform: none;
}

.jmc-eleven-introduction__image-frame::before {
  display: none;
}

.jmc-eleven-introduction__image {
  min-height: 290px;
  border-radius: 18px 18px 18px 50px;
}

.jmc-eleven-introduction__floating-note {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  animation: none;
}

.jmc-eleven-introduction__floating-note .dashicons {
  display: inline-block;
  margin: 0 8px 0 0;
  font-size: 24px;
}

.jmc-eleven-introduction__floating-note strong,
.jmc-eleven-introduction__floating-note span {
  display: inline;
  font-size: 15px;
}

.jmc-eleven-introduction__cards {
  margin-top: 42px;
  grid-template-columns: 1fr;
  gap: 17px;
}

.jmc-eleven-intro-benefit,
.jmc-eleven-intro-benefit:last-child {
  width: calc(100% - 18px);
  min-height: 0;
  grid-column: auto;
  justify-self: center;
  padding: 24px 20px;
}

.jmc-eleven-intro-benefit:hover {
  transform: translateY(-5px);
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-eleven-introduction__floating-note {
  animation: none;
}

.jmc-eleven-intro-benefit,
.jmc-eleven-intro-benefit::before,
.jmc-eleven-introduction__image-frame {
  transition: none;
}
}\n}.elementor .e-e5c4529-09a9b97{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS — PROBLEM THIS COURSE SOLVES
 Desktop: 4 Cards
 Tablet: 2 Cards
 Mobile: 1 Card
========================================= */

.jmc-eleven-problems,
.jmc-eleven-problems * {
box-sizing: border-box;
}

.jmc-eleven-problems {
--problem-text: #171a2b;
--problem-muted: #606779;
--problem-violet: #6d4aff;
--problem-cyan: #14b8c4;
--problem-indigo: #3f46c8;

position: relative;
width: 100%;
overflow: hidden;
padding: 92px 20px 76px;
color: var(--problem-text);
font-family: "Times New Roman", Times, serif;
background:
  radial-gradient(
    circle at 8% 12%,
    rgba(109, 74, 255, 0.1),
    transparent 25%
  ),
  radial-gradient(
    circle at 94% 88%,
    rgba(20, 184, 196, 0.1),
    transparent 27%
  ),
  linear-gradient(
    135deg,
    #f1eeff 0%,
    #f7f9fc 50%,
    #eafbfd 100%
  );
}

.jmc-eleven-problems::before,
.jmc-eleven-problems::after {
content: "";
position: absolute;
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-problems::before {
top: 180px;
left: -145px;
width: 230px;
height: 230px;
border: 30px solid rgba(109, 74, 255, 0.045);
}

.jmc-eleven-problems::after {
right: -190px;
bottom: 30px;
width: 310px;
height: 310px;
border: 1px solid rgba(20, 184, 196, 0.13);
box-shadow:
  0 0 0 42px rgba(20, 184, 196, 0.025),
  0 0 0 84px rgba(109, 74, 255, 0.015);
}

.jmc-eleven-problems__container {
position: relative;
z-index: 2;
width: min(1240px, 100%);
margin: 0 auto;
}

/* Section Heading */

.jmc-eleven-problems__header {
width: min(900px, 100%);
margin: 0 auto 50px;
text-align: center;
}

.jmc-eleven-problems__eyebrow {
display: flex;
align-items: center;
justify-content: center;
gap: 13px;
margin-bottom: 18px;
}

.jmc-eleven-problems__eyebrow-line {
width: 42px;
height: 2px;
border-radius: 999px;
background: linear-gradient(90deg, #6d4aff, #14b8c4);
}

.jmc-eleven-problems__eyebrow strong {
color: #6d4aff;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: 800;
line-height: 1.3;
letter-spacing: 1.5px;
text-transform: uppercase;
}

.jmc-eleven-problems__heading {
margin: 0;
color: #171a2b;
font-size: clamp(43px, 5vw, 68px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -1.6px;
}

.jmc-eleven-problems__heading span {
display: block;
margin-top: 5px;
color: #6d4aff;
}

.jmc-eleven-problems__intro {
width: min(800px, 100%);
margin: 23px auto 0;
color: #606779;
font-family: Arial, Helvetica, sans-serif;
font-size: 17px;
line-height: 1.75;
}

/* Card Grid */

.jmc-eleven-problems__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 25px;
}

/* Problem Card */

.jmc-eleven-problem-card {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.17);

position: relative;
min-height: 318px;
overflow: hidden;
padding: 28px 23px 26px;
border: 1px solid var(--card-border);
border-top: 5px solid var(--card-accent);
border-radius: 21px;
background: #ffffff;
text-align: center;
box-shadow:
  0 21px 42px rgba(23, 26, 43, 0.1),
  0 7px 16px rgba(23, 26, 43, 0.05);
transition:
  transform 0.32s ease,
  border-color 0.32s ease,
  box-shadow 0.32s ease;
}

.jmc-eleven-problem-card::before {
content: "";
position: absolute;
top: -65px;
right: -55px;
width: 135px;
height: 135px;
border-radius: 50%;
background: var(--card-soft);
opacity: 0.8;
transition: transform 0.4s ease;
}

.jmc-eleven-problem-card::after {
content: "";
position: absolute;
right: 14%;
bottom: -13px;
left: 14%;
height: 22px;
border-radius: 50%;
background: rgba(23, 26, 43, 0.13);
filter: blur(13px);
opacity: 0.55;
pointer-events: none;
}

.jmc-eleven-problem-card:hover {
transform: translateY(-9px);
border-color: var(--card-accent);
box-shadow:
  0 31px 55px rgba(57, 48, 130, 0.16),
  0 11px 22px rgba(23, 26, 43, 0.08);
}

.jmc-eleven-problem-card:hover::before {
transform: scale(1.17);
}

.jmc-eleven-problem-card__icon {
position: relative;
z-index: 2;
width: 82px;
height: 82px;
margin: 0 auto 22px;
display: grid;
place-items: center;
border: 1px solid var(--card-border);
border-radius: 23px;
color: var(--card-accent);
background: var(--card-soft);
box-shadow:
  0 12px 24px rgba(23, 26, 43, 0.08),
  inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.jmc-eleven-problem-card__icon .dashicons {
width: auto;
height: auto;
font-size: 39px;
line-height: 1;
}

.jmc-eleven-problem-card__title {
position: relative;
z-index: 2;
min-height: 57px;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
color: #171a2b;
font-size: 22px;
font-weight: 700;
line-height: 1.3;
}

.jmc-eleven-problem-card__line {
position: relative;
z-index: 2;
display: block;
width: 44px;
height: 3px;
margin: 15px auto 17px;
border-radius: 999px;
background: var(--card-accent);
}

.jmc-eleven-problem-card__description {
position: relative;
z-index: 2;
margin: 0;
color: #606779;
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
line-height: 1.65;
}

/* Card Variations */

.jmc-eleven-problem-card--violet {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.18);
}

.jmc-eleven-problem-card--cyan {
--card-accent: #0d9da8;
--card-soft: #eafbfd;
--card-border: rgba(20, 184, 196, 0.21);
}

.jmc-eleven-problem-card--indigo {
--card-accent: #3f46c8;
--card-soft: #eceeff;
--card-border: rgba(63, 70, 200, 0.19);
}

/* Closing Highlight */

.jmc-eleven-problems__closing {
width: min(880px, 100%);
margin: 46px auto 0;
padding: 24px 29px;
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
border: 1px solid rgba(109, 74, 255, 0.17);
border-radius: 19px;
background: rgba(255, 255, 255, 0.9);
box-shadow:
  0 18px 34px rgba(57, 48, 130, 0.1),
  0 6px 14px rgba(23, 26, 43, 0.05);
}

.jmc-eleven-problems__closing-icon {
width: 60px;
height: 60px;
flex: 0 0 60px;
display: grid;
place-items: center;
border: 1px solid rgba(109, 74, 255, 0.17);
border-radius: 18px;
color: #6d4aff;
background:
  linear-gradient(
    145deg,
    #f1eeff,
    #eafbfd
  );
}

.jmc-eleven-problems__closing-icon .dashicons {
width: auto;
height: auto;
font-size: 30px;
line-height: 1;
}

.jmc-eleven-problems__closing h3 {
margin: 0 0 6px;
color: #171a2b;
font-size: 23px;
line-height: 1.3;
}

.jmc-eleven-problems__closing p {
margin: 0;
color: #606779;
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
line-height: 1.6;
}

/* Tablet */

@media (max-width: 1024px) {
.jmc-eleven-problems {
  padding: 76px 22px 62px;
}

.jmc-eleven-problems__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.jmc-eleven-problem-card {
  min-height: 300px;
}
}

/* Mobile */

@media (max-width: 650px) {
.jmc-eleven-problems {
  padding: 65px 15px 52px;
}

.jmc-eleven-problems__header {
  margin-bottom: 36px;
}

.jmc-eleven-problems__eyebrow {
  gap: 8px;
}

.jmc-eleven-problems__eyebrow-line {
  width: 25px;
}

.jmc-eleven-problems__eyebrow strong {
  font-size: 11px;
  letter-spacing: 1.1px;
}

.jmc-eleven-problems__heading {
  font-size: clamp(38px, 11vw, 50px);
  letter-spacing: -0.8px;
}

.jmc-eleven-problems__intro {
  margin-top: 19px;
  font-size: 15px;
  line-height: 1.65;
}

.jmc-eleven-problems__grid {
  grid-template-columns: 1fr;
  gap: 17px;
}

.jmc-eleven-problem-card {
  width: calc(100% - 18px);
  max-width: 430px;
  min-height: 0;
  justify-self: center;
  padding: 25px 20px;
  border-radius: 18px;
}

.jmc-eleven-problem-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 20px;
}

.jmc-eleven-problem-card__icon .dashicons {
  font-size: 34px;
}

.jmc-eleven-problem-card__title {
  min-height: 0;
  font-size: 20px;
}

.jmc-eleven-problem-card__description {
  font-size: 14px;
}

.jmc-eleven-problems__closing {
  width: calc(100% - 18px);
  margin-top: 34px;
  padding: 21px 19px;
  align-items: flex-start;
}

.jmc-eleven-problems__closing h3 {
  font-size: 20px;
}

.jmc-eleven-problems__closing p {
  font-size: 14px;
}
}

@media (max-width: 430px) {
.jmc-eleven-problems__closing {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-eleven-problem-card,
.jmc-eleven-problem-card::before {
  transition: none;
}

.jmc-eleven-problem-card:hover {
  transform: none;
}
}\n}.elementor .e-ff5ba2f-76b7533{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS LEARNER OUTCOMES SECTION
 Desktop: 4 Cards
 Tablet: 2 × 2
 Mobile: 1 Column
========================================= */

.jmc-eleven-outcomes {
position: relative;
overflow: hidden;
padding: 90px 20px;
color: #171a2b;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(
    circle at 8% 18%,
    rgba(109, 74, 255, 0.08),
    transparent 25%
  ),
  radial-gradient(
    circle at 92% 84%,
    rgba(20, 184, 196, 0.08),
    transparent 27%
  ),
  linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

.jmc-eleven-outcomes *,
.jmc-eleven-outcomes *::before,
.jmc-eleven-outcomes *::after {
box-sizing: border-box;
}

.jmc-eleven-outcomes::before {
content: "";
position: absolute;
top: -230px;
right: -130px;
width: 410px;
height: 410px;
border: 1px solid rgba(109, 74, 255, 0.12);
border-radius: 50%;
box-shadow:
  0 0 0 48px rgba(109, 74, 255, 0.018),
  0 0 0 96px rgba(20, 184, 196, 0.012);
pointer-events: none;
}

.jmc-eleven-outcomes::after {
content: "";
position: absolute;
bottom: -190px;
left: -120px;
width: 310px;
height: 310px;
border: 1px solid rgba(20, 184, 196, 0.12);
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-outcomes__container {
position: relative;
z-index: 2;
width: min(1220px, 100%);
margin: 0 auto;
}

/* Header */

.jmc-eleven-outcomes__header {
max-width: 800px;
margin: 0 auto 52px;
text-align: center;
}

.jmc-eleven-outcomes__eyebrow {
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
color: #6d4aff;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-eleven-outcomes__eyebrow::before,
.jmc-eleven-outcomes__eyebrow::after {
content: "";
width: 40px;
height: 1px;
background:
  linear-gradient(
    90deg,
    #6d4aff,
    #14b8c4
  );
}

.jmc-eleven-outcomes__title {
margin: 0;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(38px, 4.7vw, 62px);
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-eleven-outcomes__title span {
color: #6d4aff;
}

.jmc-eleven-outcomes__intro {
max-width: 720px;
margin: 20px auto 0;
color: #606779;
font-size: 17px;
line-height: 1.75;
}

/* Grid */

.jmc-eleven-outcomes__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 24px;
}

/* Cards */

.jmc-eleven-outcome-card {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.16);

position: relative;
min-width: 0;
min-height: 345px;
overflow: hidden;
padding: 32px 28px 30px;
border: 1px solid var(--card-border);
border-radius: 24px;
background: #ffffff;
box-shadow:
  0 20px 45px rgba(23, 26, 43, 0.09),
  0 6px 16px rgba(23, 26, 43, 0.05);
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-eleven-outcome-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background:
  linear-gradient(
    90deg,
    var(--card-accent),
    #14b8c4
  );
}

.jmc-eleven-outcome-card::after {
content: "";
position: absolute;
right: -65px;
bottom: -75px;
width: 180px;
height: 180px;
border-radius: 50%;
background: var(--card-soft);
opacity: 0.75;
transition: transform 0.4s ease;
}

.jmc-eleven-outcome-card:hover {
transform: translateY(-9px);
border-color: var(--card-accent);
box-shadow:
  0 30px 65px rgba(57, 48, 130, 0.14),
  0 12px 24px rgba(23, 26, 43, 0.08);
}

.jmc-eleven-outcome-card:hover::after {
transform: scale(1.25);
}

.jmc-eleven-outcome-card__top {
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-bottom: 26px;
}

.jmc-eleven-outcome-card__icon {
width: 62px;
height: 62px;
flex: 0 0 62px;
display: grid;
place-items: center;
border: 1px solid var(--card-border);
border-radius: 18px;
color: var(--card-accent);
background: var(--card-soft);
box-shadow:
  0 14px 24px rgba(23, 26, 43, 0.09),
  inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jmc-eleven-outcome-card__icon .dashicons {
width: auto;
height: auto;
font-size: 29px;
line-height: 1;
}

.jmc-eleven-outcome-card__number {
color: var(--card-accent);
font-family: Georgia, "Times New Roman", serif;
font-size: 42px;
font-weight: 700;
line-height: 1;
opacity: 0.18;
}

.jmc-eleven-outcome-card__content {
position: relative;
z-index: 2;
}

.jmc-eleven-outcome-card__label {
display: block;
margin-bottom: 10px;
color: var(--card-accent);
font-size: 12px;
font-weight: 800;
letter-spacing: 0.13em;
text-transform: uppercase;
}

.jmc-eleven-outcome-card__title {
margin: 0 0 16px;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: 21px;
line-height: 1.28;
letter-spacing: -0.015em;
}

.jmc-eleven-outcome-card__text {
margin: 0;
color: #606779;
font-size: 15px;
line-height: 1.72;
}

/* Card Variations */

.jmc-eleven-outcome-card--violet {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.18);
}

.jmc-eleven-outcome-card--cyan {
--card-accent: #0d9da8;
--card-soft: #eafbfd;
--card-border: rgba(20, 184, 196, 0.2);
}

.jmc-eleven-outcome-card--indigo {
--card-accent: #3f46c8;
--card-soft: #eceeff;
--card-border: rgba(63, 70, 200, 0.18);
}

/* Tablet: 2 × 2 */

@media (max-width: 980px) {
.jmc-eleven-outcomes {
  padding: 78px 24px;
}

.jmc-eleven-outcomes__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.jmc-eleven-outcome-card {
  min-height: 315px;
}
}

/* Mobile: One Column */

@media (max-width: 620px) {
.jmc-eleven-outcomes {
  padding: 64px 15px;
}

.jmc-eleven-outcomes__header {
  margin-bottom: 38px;
}

.jmc-eleven-outcomes__eyebrow {
  font-size: 11px;
  letter-spacing: 0.11em;
}

.jmc-eleven-outcomes__eyebrow::before,
.jmc-eleven-outcomes__eyebrow::after {
  width: 24px;
}

.jmc-eleven-outcomes__title {
  font-size: 39px;
}

.jmc-eleven-outcomes__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-eleven-outcomes__grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.jmc-eleven-outcome-card {
  width: calc(100% - 18px);
  max-width: 430px;
  min-height: auto;
  justify-self: center;
  padding: 28px 24px;
}

.jmc-eleven-outcome-card__top {
  margin-bottom: 22px;
}

.jmc-eleven-outcome-card__title {
  font-size: 22px;
}

.jmc-eleven-outcome-card__text {
  font-size: 15px;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-eleven-outcome-card,
.jmc-eleven-outcome-card::after {
  transition: none;
}

.jmc-eleven-outcome-card:hover {
  transform: none;
}
}\n}.elementor .e-749f19d-dca8f40{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS LEARNING JOURNEY SECTION
 Desktop: 5 Cards
 Tablet: 2 Columns + Final Card Centred
 Mobile: 1 Column
========================================= */

.jmc-eleven-journey {
position: relative;
overflow: hidden;
padding: 90px 20px;
color: #171a2b;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(
    circle at 10% 15%,
    rgba(109, 74, 255, 0.1),
    transparent 25%
  ),
  radial-gradient(
    circle at 90% 85%,
    rgba(20, 184, 196, 0.09),
    transparent 27%
  ),
  linear-gradient(
    180deg,
    #f1eeff 0%,
    #f7f9fc 52%,
    #eafbfd 100%
  );
}

.jmc-eleven-journey *,
.jmc-eleven-journey *::before,
.jmc-eleven-journey *::after {
box-sizing: border-box;
}

.jmc-eleven-journey::before {
content: "";
position: absolute;
top: -230px;
left: -150px;
width: 410px;
height: 410px;
border: 1px solid rgba(109, 74, 255, 0.13);
border-radius: 50%;
box-shadow:
  0 0 0 48px rgba(109, 74, 255, 0.018),
  0 0 0 96px rgba(20, 184, 196, 0.012);
pointer-events: none;
}

.jmc-eleven-journey::after {
content: "";
position: absolute;
right: -170px;
bottom: -220px;
width: 340px;
height: 340px;
border: 1px solid rgba(20, 184, 196, 0.13);
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-journey__container {
position: relative;
z-index: 2;
width: min(1220px, 100%);
margin: 0 auto;
}

/* Section Heading */

.jmc-eleven-journey__header {
max-width: 780px;
margin: 0 auto 58px;
text-align: center;
}

.jmc-eleven-journey__eyebrow {
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 17px;
color: #6d4aff;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-eleven-journey__eyebrow::before,
.jmc-eleven-journey__eyebrow::after {
content: "";
width: 42px;
height: 1px;
background:
  linear-gradient(
    90deg,
    #6d4aff,
    #14b8c4
  );
}

.jmc-eleven-journey__title {
margin: 0;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(38px, 4.8vw, 62px);
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-eleven-journey__title span {
color: #6d4aff;
}

.jmc-eleven-journey__intro {
max-width: 700px;
margin: 20px auto 0;
color: #606779;
font-size: 17px;
line-height: 1.75;
}

/* Journey Grid */

.jmc-eleven-journey__timeline {
position: relative;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 24px;
align-items: stretch;
}

/* Horizontal Connecting Line */

.jmc-eleven-journey__timeline::before {
content: "";
position: absolute;
top: 62px;
left: 9%;
right: 9%;
z-index: 0;
height: 2px;
background:
  linear-gradient(
    90deg,
    rgba(109, 74, 255, 0.23),
    rgba(20, 184, 196, 0.55),
    rgba(63, 70, 200, 0.25)
  );
}

/* Journey Cards */

.jmc-eleven-journey-card {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.17);

position: relative;
z-index: 2;
min-width: 0;
min-height: 315px;
padding: 28px 22px;
border: 1px solid var(--card-border);
border-radius: 24px;
background: #ffffff;
text-align: center;
box-shadow:
  0 20px 45px rgba(23, 26, 43, 0.1),
  0 7px 18px rgba(23, 26, 43, 0.05);
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-eleven-journey-card::before {
content: "";
position: absolute;
right: -52px;
bottom: -62px;
width: 145px;
height: 145px;
border-radius: 50%;
background: var(--card-soft);
opacity: 0.72;
transition: transform 0.4s ease;
pointer-events: none;
}

.jmc-eleven-journey-card:hover {
transform: translateY(-9px);
border-color: var(--card-accent);
box-shadow:
  0 30px 65px rgba(57, 48, 130, 0.15),
  0 12px 25px rgba(23, 26, 43, 0.08);
}

.jmc-eleven-journey-card:hover::before {
transform: scale(1.22);
}

/* Step Icon */

.jmc-eleven-journey-card__step {
position: relative;
z-index: 3;
width: 68px;
height: 68px;
display: grid;
place-items: center;
margin: 0 auto 23px;
border: 7px solid #f7f9fc;
border-radius: 50%;
color: var(--card-accent);
background: var(--card-soft);
box-shadow:
  0 13px 25px rgba(23, 26, 43, 0.11),
  inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jmc-eleven-journey-card__step .dashicons {
width: auto;
height: auto;
font-size: 28px;
line-height: 1;
}

/* Card Content */

.jmc-eleven-journey-card__number {
position: relative;
z-index: 2;
display: block;
margin-bottom: 9px;
color: var(--card-accent);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.13em;
text-transform: uppercase;
}

.jmc-eleven-journey-card__title {
position: relative;
z-index: 2;
margin: 0 0 14px;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: 26px;
line-height: 1.2;
}

.jmc-eleven-journey-card__text {
position: relative;
z-index: 2;
margin: 0;
color: #606779;
font-size: 14px;
line-height: 1.65;
}

/* Card Variations */

.jmc-eleven-journey-card--violet {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.18);
}

.jmc-eleven-journey-card--cyan {
--card-accent: #0d9da8;
--card-soft: #eafbfd;
--card-border: rgba(20, 184, 196, 0.2);
}

.jmc-eleven-journey-card--indigo {
--card-accent: #3f46c8;
--card-soft: #eceeff;
--card-border: rgba(63, 70, 200, 0.18);
}

/* Tablet */

@media (max-width: 980px) {
.jmc-eleven-journey {
  padding: 78px 24px;
}

.jmc-eleven-journey__timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.jmc-eleven-journey__timeline::before {
  display: none;
}

.jmc-eleven-journey-card {
  min-height: 285px;
}

.jmc-eleven-journey-card:last-child {
  grid-column: 1 / -1;
  width: calc(50% - 12px);
  justify-self: center;
}
}

/* Mobile */

@media (max-width: 620px) {
.jmc-eleven-journey {
  padding: 64px 15px;
}

.jmc-eleven-journey__header {
  margin-bottom: 40px;
}

.jmc-eleven-journey__eyebrow {
  font-size: 11px;
  letter-spacing: 0.11em;
}

.jmc-eleven-journey__eyebrow::before,
.jmc-eleven-journey__eyebrow::after {
  width: 24px;
}

.jmc-eleven-journey__title {
  font-size: 39px;
}

.jmc-eleven-journey__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-eleven-journey__timeline {
  grid-template-columns: 1fr;
  gap: 18px;
}

.jmc-eleven-journey-card,
.jmc-eleven-journey-card:last-child {
  width: calc(100% - 18px);
  max-width: 430px;
  min-height: auto;
  grid-column: auto;
  justify-self: center;
  padding: 28px 24px;
}

.jmc-eleven-journey-card__step {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
}

.jmc-eleven-journey-card__title {
  font-size: 25px;
}

.jmc-eleven-journey-card__text {
  font-size: 15px;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-eleven-journey-card,
.jmc-eleven-journey-card::before {
  transition: none;
}

.jmc-eleven-journey-card:hover {
  transform: none;
}
}\n}.elementor .e-e6ac1aa-a8be67a{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS COURSE CURRICULUM SECTION
 Desktop: 3 × 2
 Tablet: 2 × 3
 Mobile: 1 Column
========================================= */

.jmc-eleven-curriculum {
position: relative;
overflow: hidden;
padding: 90px 20px;
color: #171a2b;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(
    circle at 8% 15%,
    rgba(109, 74, 255, 0.09),
    transparent 25%
  ),
  radial-gradient(
    circle at 92% 86%,
    rgba(20, 184, 196, 0.09),
    transparent 27%
  ),
  linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

.jmc-eleven-curriculum *,
.jmc-eleven-curriculum *::before,
.jmc-eleven-curriculum *::after {
box-sizing: border-box;
}

.jmc-eleven-curriculum::before {
content: "";
position: absolute;
top: -190px;
left: -160px;
width: 410px;
height: 410px;
border: 1px solid rgba(109, 74, 255, 0.14);
border-radius: 50%;
box-shadow:
  0 0 0 55px rgba(109, 74, 255, 0.022),
  0 0 0 105px rgba(20, 184, 196, 0.014);
pointer-events: none;
}

.jmc-eleven-curriculum::after {
content: "";
position: absolute;
right: -180px;
bottom: -210px;
width: 350px;
height: 350px;
border: 1px solid rgba(20, 184, 196, 0.13);
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-curriculum__container {
position: relative;
z-index: 2;
width: min(1220px, 100%);
margin: 0 auto;
}

/* Section Heading */

.jmc-eleven-curriculum__header {
max-width: 800px;
margin: 0 auto 55px;
text-align: center;
}

.jmc-eleven-curriculum__eyebrow {
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 17px;
color: #6d4aff;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-eleven-curriculum__eyebrow::before,
.jmc-eleven-curriculum__eyebrow::after {
content: "";
width: 42px;
height: 1px;
background:
  linear-gradient(
    90deg,
    #6d4aff,
    #14b8c4
  );
}

.jmc-eleven-curriculum__title {
margin: 0;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(39px, 5vw, 64px);
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-eleven-curriculum__title span {
color: #6d4aff;
}

.jmc-eleven-curriculum__intro {
max-width: 720px;
margin: 20px auto 0;
color: #606779;
font-size: 17px;
line-height: 1.75;
}

/* Curriculum Grid */

.jmc-eleven-curriculum__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
align-items: stretch;
}

/* Curriculum Card */

.jmc-eleven-curriculum-card {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.18);

position: relative;
min-width: 0;
min-height: 430px;
overflow: hidden;
display: flex;
flex-direction: column;
padding: 30px 27px 28px;
border: 1px solid var(--card-border);
border-radius: 24px;
background: #ffffff;
text-align: center;
box-shadow:
  0 20px 45px rgba(23, 26, 43, 0.09),
  0 7px 17px rgba(23, 26, 43, 0.05);
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-eleven-curriculum-card::before {
content: "";
position: absolute;
right: -72px;
bottom: -80px;
width: 190px;
height: 190px;
border-radius: 50%;
background: var(--card-soft);
opacity: 0.75;
transition: transform 0.4s ease;
pointer-events: none;
}

.jmc-eleven-curriculum-card::after {
content: "";
position: absolute;
top: 0;
left: 28px;
width: calc(100% - 56px);
height: 4px;
border-radius: 0 0 999px 999px;
background:
  linear-gradient(
    90deg,
    var(--card-accent),
    #14b8c4
  );
}

.jmc-eleven-curriculum-card:hover {
transform: translateY(-9px);
border-color: var(--card-accent);
box-shadow:
  0 31px 65px rgba(57, 48, 130, 0.14),
  0 12px 25px rgba(23, 26, 43, 0.08);
}

.jmc-eleven-curriculum-card:hover::before {
transform: scale(1.25);
}

/* Card Variations */

.jmc-eleven-curriculum-card--violet {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.18);
}

.jmc-eleven-curriculum-card--cyan {
--card-accent: #0d9da8;
--card-soft: #eafbfd;
--card-border: rgba(20, 184, 196, 0.21);
}

.jmc-eleven-curriculum-card--indigo {
--card-accent: #3f46c8;
--card-soft: #eceeff;
--card-border: rgba(63, 70, 200, 0.19);
}

/* Icon */

.jmc-eleven-curriculum-card__icon {
position: relative;
z-index: 2;
width: 76px;
height: 76px;
flex: 0 0 76px;
display: grid;
place-items: center;
margin: 0 auto 23px;
border: 5px solid #f7f9fc;
border-radius: 50%;
color: var(--card-accent);
background: var(--card-soft);
box-shadow:
  0 15px 28px rgba(23, 26, 43, 0.11),
  inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jmc-eleven-curriculum-card__icon .dashicons {
width: auto;
height: auto;
font-size: 33px;
line-height: 1;
}

/* Card Content */

.jmc-eleven-curriculum-card__module {
position: relative;
z-index: 2;
display: block;
margin-bottom: 11px;
color: var(--card-accent);
font-size: 12px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-eleven-curriculum-card__title {
position: relative;
z-index: 2;
min-height: 64px;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: 24px;
line-height: 1.25;
letter-spacing: -0.015em;
}

.jmc-eleven-curriculum-card__divider {
position: relative;
z-index: 2;
width: 70px;
height: 1px;
margin: 20px auto;
background: var(--card-accent);
opacity: 0.46;
}

.jmc-eleven-curriculum-card__divider::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 7px;
height: 7px;
background: var(--card-accent);
transform: translate(-50%, -50%) rotate(45deg);
}

.jmc-eleven-curriculum-card__text {
position: relative;
z-index: 2;
margin: 0;
color: #606779;
font-size: 15px;
line-height: 1.7;
}

.jmc-eleven-curriculum-card__topics {
position: relative;
z-index: 2;
margin: 18px 0 0;
padding: 0;
display: grid;
gap: 8px;
text-align: left;
list-style: none;
}

.jmc-eleven-curriculum-card__topics li {
position: relative;
padding-left: 20px;
color: #52596b;
font-size: 13px;
line-height: 1.5;
}

.jmc-eleven-curriculum-card__topics li::before {
content: "";
position: absolute;
top: 7px;
left: 2px;
width: 7px;
height: 7px;
border: 2px solid var(--card-accent);
border-radius: 50%;
}

.jmc-eleven-curriculum-card__meta {
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
gap: 7px;
margin-top: auto;
padding-top: 23px;
color: var(--card-accent);
font-size: 13px;
font-weight: 800;
}

.jmc-eleven-curriculum-card__meta .dashicons {
width: auto;
height: auto;
font-size: 18px;
line-height: 1;
}

/* Bottom Summary */

.jmc-eleven-curriculum__summary {
display: flex;
align-items: center;
justify-content: center;
gap: 28px;
flex-wrap: wrap;
max-width: 840px;
margin: 42px auto 0;
padding: 19px 24px;
border: 1px solid rgba(109, 74, 255, 0.15);
border-radius: 18px;
background: rgba(255, 255, 255, 0.86);
box-shadow:
  0 13px 30px rgba(23, 26, 43, 0.07),
  inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jmc-eleven-curriculum__summary-item {
display: inline-flex;
align-items: center;
gap: 8px;
color: #4e5568;
font-size: 14px;
font-weight: 700;
}

.jmc-eleven-curriculum__summary-item .dashicons {
width: auto;
height: auto;
color: #6d4aff;
font-size: 20px;
line-height: 1;
}

.jmc-eleven-curriculum__summary-item:nth-child(2) .dashicons {
color: #0d9da8;
}

.jmc-eleven-curriculum__summary-item:nth-child(3) .dashicons {
color: #3f46c8;
}

/* Tablet */

@media (max-width: 980px) {
.jmc-eleven-curriculum {
  padding: 78px 24px;
}

.jmc-eleven-curriculum__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.jmc-eleven-curriculum-card {
  min-height: 420px;
}
}

/* Mobile */

@media (max-width: 620px) {
.jmc-eleven-curriculum {
  padding: 64px 14px;
}

.jmc-eleven-curriculum__header {
  margin-bottom: 38px;
}

.jmc-eleven-curriculum__eyebrow {
  font-size: 11px;
  letter-spacing: 0.11em;
}

.jmc-eleven-curriculum__eyebrow::before,
.jmc-eleven-curriculum__eyebrow::after {
  width: 24px;
}

.jmc-eleven-curriculum__title {
  font-size: 39px;
}

.jmc-eleven-curriculum__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-eleven-curriculum__grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.jmc-eleven-curriculum-card {
  width: calc(100% - 22px);
  max-width: 410px;
  min-height: auto;
  justify-self: center;
  padding: 26px 22px;
  border-radius: 21px;
}

.jmc-eleven-curriculum-card__icon {
  width: 66px;
  height: 66px;
  flex-basis: 66px;
  margin-bottom: 19px;
}

.jmc-eleven-curriculum-card__icon .dashicons {
  font-size: 29px;
}

.jmc-eleven-curriculum-card__title {
  min-height: auto;
  font-size: 23px;
}

.jmc-eleven-curriculum-card__divider {
  margin: 17px auto;
}

.jmc-eleven-curriculum-card__text {
  font-size: 14px;
  line-height: 1.65;
}

.jmc-eleven-curriculum-card__topics li {
  font-size: 13px;
}

.jmc-eleven-curriculum__summary {
  width: calc(100% - 22px);
  margin-top: 30px;
  gap: 12px;
  padding: 17px 18px;
}

.jmc-eleven-curriculum__summary-item {
  width: 100%;
  justify-content: center;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-eleven-curriculum-card,
.jmc-eleven-curriculum-card::before {
  transition: none;
}

.jmc-eleven-curriculum-card:hover {
  transform: none;
}
}\n}.elementor .e-6eac4dd-f7d3e9d{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS WHAT IS INCLUDED SECTION
 Desktop: 4 × 2
 Tablet: 2 × 4
 Mobile: 1 Column
========================================= */

.jmc-eleven-included {
position: relative;
overflow: hidden;
padding: 90px 20px;
color: #171a2b;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(
    circle at 5% 10%,
    rgba(109, 74, 255, 0.09),
    transparent 24%
  ),
  radial-gradient(
    circle at 95% 85%,
    rgba(20, 184, 196, 0.08),
    transparent 26%
  ),
  linear-gradient(
    180deg,
    #f1eeff 0%,
    #f7f9fc 52%,
    #eafbfd 100%
  );
}

.jmc-eleven-included *,
.jmc-eleven-included *::before,
.jmc-eleven-included *::after {
box-sizing: border-box;
}

.jmc-eleven-included::before {
content: "";
position: absolute;
top: -180px;
right: -150px;
width: 420px;
height: 420px;
border: 1px solid rgba(109, 74, 255, 0.14);
border-radius: 50%;
box-shadow:
  0 0 0 55px rgba(109, 74, 255, 0.02),
  0 0 0 105px rgba(20, 184, 196, 0.014);
pointer-events: none;
}

.jmc-eleven-included::after {
content: "";
position: absolute;
bottom: -210px;
left: -150px;
width: 340px;
height: 340px;
border: 1px solid rgba(20, 184, 196, 0.12);
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-included__container {
position: relative;
z-index: 2;
width: min(1220px, 100%);
margin: 0 auto;
}

/* Section Header */

.jmc-eleven-included__header {
max-width: 800px;
margin: 0 auto 54px;
text-align: center;
}

.jmc-eleven-included__eyebrow {
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 17px;
color: #6d4aff;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-eleven-included__eyebrow::before,
.jmc-eleven-included__eyebrow::after {
content: "";
width: 42px;
height: 1px;
background: linear-gradient(90deg, #6d4aff, #14b8c4);
}

.jmc-eleven-included__title {
margin: 0;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(39px, 5vw, 64px);
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-eleven-included__title span {
color: #6d4aff;
}

.jmc-eleven-included__intro {
max-width: 720px;
margin: 20px auto 0;
color: #606779;
font-size: 17px;
line-height: 1.75;
}

/* Cards Grid */

.jmc-eleven-included__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 22px;
}

.jmc-eleven-included-card {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.17);

position: relative;
min-width: 0;
min-height: 285px;
overflow: hidden;
padding: 28px 24px;
border: 1px solid var(--card-border);
border-radius: 23px;
background: #ffffff;
box-shadow:
  0 19px 42px rgba(23, 26, 43, 0.09),
  0 6px 16px rgba(23, 26, 43, 0.05);
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-eleven-included-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background:
  linear-gradient(
    90deg,
    var(--card-accent),
    #14b8c4
  );
}

.jmc-eleven-included-card::after {
content: "";
position: absolute;
right: -65px;
bottom: -75px;
width: 175px;
height: 175px;
border-radius: 50%;
background: var(--card-soft);
opacity: 0.75;
transition: transform 0.4s ease;
pointer-events: none;
}

.jmc-eleven-included-card:hover {
transform: translateY(-8px);
border-color: var(--card-accent);
box-shadow:
  0 29px 62px rgba(57, 48, 130, 0.14),
  0 11px 24px rgba(23, 26, 43, 0.08);
}

.jmc-eleven-included-card:hover::after {
transform: scale(1.24);
}

/* Card Variations */

.jmc-eleven-included-card--violet {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.18);
}

.jmc-eleven-included-card--cyan {
--card-accent: #0d9da8;
--card-soft: #eafbfd;
--card-border: rgba(20, 184, 196, 0.2);
}

.jmc-eleven-included-card--indigo {
--card-accent: #3f46c8;
--card-soft: #eceeff;
--card-border: rgba(63, 70, 200, 0.18);
}

/* Card Icon */

.jmc-eleven-included-card__icon {
position: relative;
z-index: 2;
width: 62px;
height: 62px;
display: grid;
place-items: center;
margin-bottom: 23px;
border: 1px solid var(--card-border);
border-radius: 19px;
color: var(--card-accent);
background: var(--card-soft);
box-shadow:
  0 14px 25px rgba(23, 26, 43, 0.09),
  inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jmc-eleven-included-card__icon .dashicons {
width: auto;
height: auto;
font-size: 29px;
line-height: 1;
}

/* Card Content */

.jmc-eleven-included-card__title {
position: relative;
z-index: 2;
min-height: 58px;
display: flex;
align-items: center;
margin: 0 0 13px;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: 22px;
line-height: 1.28;
letter-spacing: -0.012em;
}

.jmc-eleven-included-card__text {
position: relative;
z-index: 2;
margin: 0;
color: #606779;
font-size: 14px;
line-height: 1.7;
}

/* Supporting Feature Strip */

.jmc-eleven-included__extras {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1px;
overflow: hidden;
margin-top: 36px;
border: 1px solid rgba(109, 74, 255, 0.14);
border-radius: 20px;
background: rgba(109, 74, 255, 0.12);
box-shadow: 0 13px 32px rgba(23, 26, 43, 0.07);
}

.jmc-eleven-included__extra {
min-width: 0;
min-height: 82px;
padding: 18px 16px;
display: flex;
align-items: center;
justify-content: center;
gap: 11px;
color: #43495d;
background: rgba(255, 255, 255, 0.95);
text-align: center;
}

.jmc-eleven-included__extra-icon {
width: 39px;
height: 39px;
flex: 0 0 39px;
display: grid;
place-items: center;
border: 1px solid rgba(109, 74, 255, 0.15);
border-radius: 12px;
color: #6d4aff;
background: #f1eeff;
}

.jmc-eleven-included__extra:nth-child(even)
.jmc-eleven-included__extra-icon {
color: #0d9da8;
border-color: rgba(20, 184, 196, 0.18);
background: #eafbfd;
}

.jmc-eleven-included__extra-icon .dashicons {
width: auto;
height: auto;
font-size: 20px;
line-height: 1;
}

.jmc-eleven-included__extra-text {
font-size: 15px;
font-weight: 600;
line-height: 1.35;
}

/* Tablet */

@media (max-width: 980px) {
.jmc-eleven-included {
  padding: 78px 24px;
}

.jmc-eleven-included__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jmc-eleven-included-card {
  min-height: 265px;
}

.jmc-eleven-included__extras {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

/* Mobile */

@media (max-width: 620px) {
.jmc-eleven-included {
  padding: 64px 14px;
}

.jmc-eleven-included__header {
  margin-bottom: 38px;
}

.jmc-eleven-included__eyebrow {
  font-size: 11px;
  letter-spacing: 0.11em;
}

.jmc-eleven-included__eyebrow::before,
.jmc-eleven-included__eyebrow::after {
  width: 24px;
}

.jmc-eleven-included__title {
  font-size: 39px;
}

.jmc-eleven-included__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-eleven-included__grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.jmc-eleven-included-card {
  width: calc(100% - 24px);
  max-width: 400px;
  min-height: auto;
  justify-self: center;
  padding: 25px 22px;
  border-radius: 21px;
}

.jmc-eleven-included-card__icon {
  width: 57px;
  height: 57px;
  margin-bottom: 19px;
}

.jmc-eleven-included-card__icon .dashicons {
  font-size: 26px;
}

.jmc-eleven-included-card__title {
  min-height: auto;
  margin-bottom: 10px;
  font-size: 22px;
}

.jmc-eleven-included-card__text {
  font-size: 14px;
  line-height: 1.65;
}

.jmc-eleven-included__extras {
  width: calc(100% - 24px);
  max-width: 400px;
  grid-template-columns: 1fr;
  margin: 28px auto 0;
  border-radius: 18px;
}

.jmc-eleven-included__extra {
  justify-content: flex-start;
  min-height: 68px;
  padding: 14px 17px;
  text-align: left;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-eleven-included-card,
.jmc-eleven-included-card::after {
  transition: none;
}

.jmc-eleven-included-card:hover {
  transform: none;
}
}\n}.elementor .e-2e490d3-1cd6060{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS COURSE EDUCATOR SECTION
========================================= */

.jmc-eleven-educator,
.jmc-eleven-educator * {
box-sizing: border-box;
}

.jmc-eleven-educator {
position: relative;
width: 100%;
overflow: hidden;
padding: 82px 20px 0;
color: #171a2b;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(
    circle at 8% 18%,
    rgba(109, 74, 255, 0.09),
    transparent 25%
  ),
  radial-gradient(
    circle at 92% 88%,
    rgba(20, 184, 196, 0.08),
    transparent 27%
  ),
  linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

.jmc-eleven-educator::before {
content: "";
position: absolute;
top: -180px;
right: -150px;
width: 420px;
height: 420px;
border: 1px solid rgba(109, 74, 255, 0.14);
border-radius: 50%;
box-shadow:
  0 0 0 55px rgba(109, 74, 255, 0.02),
  0 0 0 105px rgba(20, 184, 196, 0.014);
pointer-events: none;
}

.jmc-eleven-educator::after {
content: "";
position: absolute;
bottom: -210px;
left: -150px;
width: 340px;
height: 340px;
border: 1px solid rgba(20, 184, 196, 0.12);
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-educator__wrap {
position: relative;
z-index: 2;
width: min(1200px, 100%);
margin: 0 auto;
}

/* Eyebrow */

.jmc-eleven-educator__eyebrow {
width: max-content;
max-width: 100%;
margin: 0 auto 50px;
padding: 10px 28px;
border: 1px solid rgba(109, 74, 255, 0.17);
border-radius: 999px;
color: #6d4aff;
background: #f1eeff;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.15em;
text-align: center;
text-transform: uppercase;
box-shadow:
  0 10px 24px rgba(23, 26, 43, 0.06),
  inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Main Grid */

.jmc-eleven-educator__grid {
display: grid;
grid-template-columns: 42% 58%;
align-items: stretch;
gap: 60px;
}

/* Educator Image */

.jmc-eleven-educator__image-box {
position: relative;
display: flex;
min-height: 550px;
align-self: stretch;
align-items: flex-end;
justify-content: center;
margin-bottom: 0;
}

.jmc-eleven-educator__circle {
position: absolute;
top: 35px;
left: 50%;
width: 465px;
height: 465px;
border: 3px solid rgba(109, 74, 255, 0.58);
border-radius: 50%;
background:
  radial-gradient(
    circle at 35% 28%,
    rgba(255, 255, 255, 0.98),
    transparent 32%
  ),
  linear-gradient(
    145deg,
    #f1eeff 0%,
    #dcd5ff 52%,
    #eafbfd 100%
  );
box-shadow:
  0 25px 50px rgba(57, 48, 130, 0.15),
  inset 0 3px 6px rgba(255, 255, 255, 0.85);
transform: translateX(-50%);
}

.jmc-eleven-educator__circle::before {
content: "";
position: absolute;
inset: 18px;
border: 1px dashed rgba(20, 184, 196, 0.48);
border-radius: 50%;
}

.jmc-eleven-educator__circle::after {
content: "";
position: absolute;
inset: 44px;
border: 1px solid rgba(63, 70, 200, 0.12);
border-radius: 50%;
}

.jmc-eleven-educator__img {
position: relative;
z-index: 2;
width: 100%;
max-width: 430px;
object-fit: contain;
}

/* Content */

.jmc-eleven-educator__content {
position: relative;
}

.jmc-eleven-educator__content::after {
content: "“";
position: absolute;
top: -48px;
right: 5px;
color: rgba(109, 74, 255, 0.075);
font-family: Georgia, "Times New Roman", serif;
font-size: 180px;
font-weight: 700;
line-height: 1;
pointer-events: none;
}

.jmc-eleven-educator__heading {
position: relative;
z-index: 2;
margin: 0;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(40px, 4.4vw, 56px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-eleven-educator__heading span {
color: #6d4aff;
}

.jmc-eleven-educator__line {
width: 82px;
height: 4px;
margin: 20px 0 24px;
border-radius: 30px;
background:
  linear-gradient(
    90deg,
    #6d4aff,
    #14b8c4
  );
}

.jmc-eleven-educator__name {
margin: 0 0 6px;
color: #3f46c8;
font-family: Georgia, "Times New Roman", serif;
font-size: 34px;
font-weight: 700;
}

.jmc-eleven-educator__designation {
margin: 0;
color: #555d70;
font-size: 18px;
font-weight: 700;
line-height: 1.55;
}

.jmc-eleven-educator__intro {
max-width: 720px;
margin: 19px 0 0;
color: #606779;
font-size: 16px;
line-height: 1.75;
}

.jmc-eleven-educator__divider {
position: relative;
width: 100%;
height: 1px;
margin: 27px 0;
border-top: 2px dotted rgba(109, 74, 255, 0.25);
}

.jmc-eleven-educator__divider::after {
content: "";
position: absolute;
top: -6px;
left: 50%;
width: 10px;
height: 10px;
border-radius: 50%;
background: #14b8c4;
}

/* Credentials */

.jmc-eleven-educator__credentials {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 13px;
margin-bottom: 27px;
}

.jmc-eleven-educator__credential {
display: flex;
min-height: 58px;
align-items: center;
gap: 12px;
padding: 13px 15px;
border: 1px solid rgba(109, 74, 255, 0.13);
border-radius: 13px;
color: #30374a;
background: rgba(255, 255, 255, 0.86);
font-size: 15px;
font-weight: 800;
line-height: 1.4;
box-shadow:
  0 8px 18px rgba(23, 26, 43, 0.055),
  inset 0 1px 0 rgba(255, 255, 255, 0.95);
transition:
  transform 0.3s ease,
  border-color 0.3s ease,
  box-shadow 0.3s ease;
}

.jmc-eleven-educator__credential:hover {
transform: translateY(-4px);
border-color: rgba(20, 184, 196, 0.38);
box-shadow:
  0 14px 27px rgba(57, 48, 130, 0.1),
  0 6px 14px rgba(23, 26, 43, 0.05);
}



.jmc-eleven-educator__credential .dashicons {
width: auto;
height: auto;
flex: 0 0 auto;
color: #6d4aff;
font-size: 24px;
line-height: 1;
}

.jmc-eleven-educator__credential:nth-child(even) .dashicons {
color: #0d9da8;
}

/* Expertise Tags */

.jmc-eleven-educator__expertise {
display: flex;
flex-wrap: wrap;
gap: 9px;
margin: 0 0 27px;
}

.jmc-eleven-educator__tag {
display: inline-flex;
align-items: center;
min-height: 34px;
padding: 7px 13px;
border: 1px solid rgba(109, 74, 255, 0.15);
border-radius: 999px;
color: #5d43d6;
background: #f1eeff;
font-size: 12px;
font-weight: 800;
}

.jmc-eleven-educator__tag:nth-child(even) {
color: #0d8f99;
border-color: rgba(20, 184, 196, 0.18);
background: #eafbfd;
}

/* Educator Message */

.jmc-eleven-educator__message {
position: relative;
margin: 0 0 36px;
padding: 23px 25px 23px 30px;
border: 1px solid rgba(109, 74, 255, 0.22);
border-left: 5px solid #6d4aff;
border-radius: 0 15px 15px 0;
color: #293044;
background:
  linear-gradient(
    135deg,
    rgba(241, 238, 255, 0.92),
    rgba(234, 251, 253, 0.82)
  );
font-family: Georgia, "Times New Roman", serif;
font-size: 19px;
font-style: italic;
line-height: 1.55;
box-shadow:
  0 13px 28px rgba(57, 48, 130, 0.08),
  inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Tablet */

@media (max-width: 1024px) {
.jmc-eleven-educator {
  padding: 76px 24px 0;
}

.jmc-eleven-educator__grid {
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}

.jmc-eleven-educator__image-box {
  min-height: 490px;
}

.jmc-eleven-educator__content {
  max-width: 820px;
  margin: 0 auto;
}

.jmc-eleven-educator__line {
  margin-right: auto;
  margin-left: auto;
}

.jmc-eleven-educator__intro {
  margin-right: auto;
  margin-left: auto;
}

.jmc-eleven-educator__credential,
.jmc-eleven-educator__message {
  text-align: left;
}

.jmc-eleven-educator__expertise {
  justify-content: center;
}
}

/* Mobile */

@media (max-width: 767px) {
.jmc-eleven-educator {
  padding: 62px 16px 0;
}

.jmc-eleven-educator__eyebrow {
  margin-bottom: 32px;
  padding: 8px 19px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.jmc-eleven-educator__image-box {
  min-height: 370px;
}

.jmc-eleven-educator__circle {
  width: 315px;
  height: 315px;
}

.jmc-eleven-educator__img {
  max-width: 310px;
}

.jmc-eleven-educator__content {
  padding-bottom: 34px;
}

.jmc-eleven-educator__heading {
  font-size: 37px;
}

.jmc-eleven-educator__name {
  font-size: 29px;
}

.jmc-eleven-educator__designation {
  font-size: 16px;
}

.jmc-eleven-educator__intro {
  font-size: 15px;
}

.jmc-eleven-educator__content::after {
  top: -15px;
  right: 0;
  font-size: 95px;
}

.jmc-eleven-educator__credentials {
  grid-template-columns: 1fr;
}



.jmc-eleven-educator__credential {
  min-height: 54px;
  font-size: 14px;
  text-align: left;
}

.jmc-eleven-educator__expertise {
  justify-content: center;
}

.jmc-eleven-educator__message {
  padding: 20px 18px 20px 22px;
  font-size: 17px;
  text-align: left;
}
}

@media (max-width: 370px) {
.jmc-eleven-educator__circle {
  width: 280px;
  height: 280px;
}

.jmc-eleven-educator__img {
  max-width: 280px;
}

.jmc-eleven-educator__image-box {
  min-height: 330px;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-eleven-educator__credential {
  transition: none;
}

.jmc-eleven-educator__credential:hover {
  transform: none;
}
}
/* UGC-NET qualified text */
.jmc-net-qualified-item {
overflow: visible;
}

.jmc-net-qualified-label {
position: relative;
display: inline-block;
padding-right: 48px;

font-family: Georgia, "Times New Roman", serif;
}

/* x²-style superscript */
.jmc-net-qualified-count {
position: absolute;
top: -8px;
right: 0;

margin: 0;

color: #d79a00;

font-family: Georgia, "Times New Roman", serif;
font-size: 11px;
line-height: 1;
font-style: italic;
font-weight: 700;
letter-spacing: 0;
white-space: nowrap;
}

@media (max-width: 767px) {
.jmc-net-qualified-label {
  padding-right: 43px;
}

.jmc-net-qualified-count {
  top: -7px;
  font-size: 10px;
}
}\n}.elementor .e-d0706b5-0531e44{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS COURSE ENROLMENT PROCESS
 Desktop: 4 Cards in One Row
 Tablet: 2 × 2 Grid
 Mobile: Vertical Column
========================================= */

.jmc-eleven-enrolment,
.jmc-eleven-enrolment * {
box-sizing: border-box;
}

.jmc-eleven-enrolment {
position: relative;
width: 100%;
overflow: hidden;
padding: 90px 24px;
color: #171a2b;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(
    circle at 5% 10%,
    rgba(109, 74, 255, 0.1),
    transparent 24%
  ),
  radial-gradient(
    circle at 95% 85%,
    rgba(20, 184, 196, 0.09),
    transparent 26%
  ),
  linear-gradient(
    180deg,
    #f1eeff 0%,
    #f7f9fc 52%,
    #eafbfd 100%
  );
}

.jmc-eleven-enrolment::before {
content: "";
position: absolute;
top: 60px;
left: -150px;
width: 340px;
height: 340px;
border: 1px solid rgba(109, 74, 255, 0.09);
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-enrolment::after {
content: "";
position: absolute;
right: -160px;
bottom: -170px;
width: 390px;
height: 390px;
border: 1px solid rgba(20, 184, 196, 0.1);
border-radius: 50%;
box-shadow:
  0 0 0 45px rgba(20, 184, 196, 0.02),
  0 0 0 90px rgba(109, 74, 255, 0.012);
pointer-events: none;
}

.jmc-eleven-enrolment__wrap {
position: relative;
z-index: 2;
width: 100%;
max-width: 1320px;
margin: 0 auto;
}

/* Section Heading */

.jmc-eleven-enrolment__heading {
max-width: 850px;
margin: 0 auto 54px;
text-align: center;
}

.jmc-eleven-enrolment__label {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
margin-bottom: 18px;
color: #6d4aff;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-eleven-enrolment__label span {
display: block;
width: 42px;
height: 1px;
background:
  linear-gradient(
    90deg,
    #6d4aff,
    #14b8c4
  );
}

.jmc-eleven-enrolment__heading h2 {
margin: 0;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(39px, 4.8vw, 62px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-eleven-enrolment__heading h2 strong {
color: #6d4aff;
font-weight: 700;
}

.jmc-eleven-enrolment__heading-line {
width: 68px;
height: 4px;
margin: 21px auto;
border-radius: 10px;
background:
  linear-gradient(
    90deg,
    #6d4aff,
    #14b8c4
  );
}

.jmc-eleven-enrolment__heading p {
max-width: 720px;
margin: 0 auto;
color: #606779;
font-size: 17px;
line-height: 1.75;
}

/* Cards Grid */

.jmc-eleven-enrolment__grid {
display: grid;
grid-template-columns:
  minmax(0, 1fr)
  48px
  minmax(0, 1fr)
  48px
  minmax(0, 1fr)
  48px
  minmax(0, 1fr);
align-items: center;
gap: 12px;
width: 100%;
}

.jmc-eleven-enrolment-card {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.18);

position: relative;
display: flex;
width: 100%;
min-height: 360px;
flex-direction: column;
align-items: center;
overflow: hidden;
padding: 56px 24px 0;
border: 1px solid var(--card-border);
border-radius: 22px;
color: var(--card-accent);
background: #ffffff;
text-align: center;
box-shadow:
  0 20px 42px rgba(23, 26, 43, 0.1),
  0 7px 17px rgba(23, 26, 43, 0.05);
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-eleven-enrolment-card::before {
content: "";
position: absolute;
top: -58px;
right: -54px;
width: 155px;
height: 155px;
border-radius: 50%;
background: var(--card-soft);
opacity: 0.9;
pointer-events: none;
}

.jmc-eleven-enrolment-card:hover {
z-index: 4;
transform: translateY(-9px);
border-color: var(--card-accent);
box-shadow:
  0 30px 62px rgba(57, 48, 130, 0.15),
  0 12px 24px rgba(23, 26, 43, 0.08);
}

/* Step Badge */

.jmc-eleven-enrolment-card__step {
position: absolute;
top: 16px;
left: 16px;
padding: 8px 13px;
border: 1px solid var(--card-border);
border-radius: 9px;
color: var(--card-accent);
background: var(--card-soft);
font-size: 12px;
font-weight: 800;
line-height: 1;
box-shadow: 0 7px 14px rgba(23, 26, 43, 0.08);
}

/* Icon */

.jmc-eleven-enrolment-card__icon {
display: flex;
width: 84px;
height: 84px;
flex: 0 0 84px;
align-items: center;
justify-content: center;
margin-bottom: 22px;
border: 2px solid var(--card-accent);
border-radius: 22px;
color: var(--card-accent);
background: var(--card-soft);
box-shadow:
  0 13px 22px rgba(23, 26, 43, 0.1),
  inset 0 2px 3px rgba(255, 255, 255, 0.95);
}

.jmc-eleven-enrolment-card__icon .dashicons {
width: auto;
height: auto;
font-size: 42px;
line-height: 1;
}

.jmc-eleven-enrolment-card h3 {
margin: 0;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: 29px;
font-weight: 700;
line-height: 1.15;
}

.jmc-eleven-enrolment-card__line {
width: 44px;
height: 3px;
margin: 14px 0 16px;
border-radius: 10px;
background: var(--card-accent);
}

.jmc-eleven-enrolment-card p {
margin: 0;
color: #606779;
font-size: 15px;
line-height: 1.7;
}

.jmc-eleven-enrolment-card__bottom {
display: flex;
width: calc(100% + 48px);
min-height: 50px;
align-items: center;
justify-content: center;
margin-top: auto;
padding: 10px 16px;
color: #ffffff;
background: var(--card-accent);
font-size: 14px;
font-weight: 800;
line-height: 1.25;
}

/* Card Themes */

.jmc-eleven-enrolment-card--choose {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.18);
}

.jmc-eleven-enrolment-card--purchase {
--card-accent: #3f46c8;
--card-soft: #eceeff;
--card-border: rgba(63, 70, 200, 0.18);
}

.jmc-eleven-enrolment-card--access {
--card-accent: #0d9da8;
--card-soft: #eafbfd;
--card-border: rgba(20, 184, 196, 0.21);
}

.jmc-eleven-enrolment-card--learn {
--card-accent: #7357d8;
--card-soft: #f1eeff;
--card-border: rgba(115, 87, 216, 0.18);
}

/* Arrows */

.jmc-eleven-enrolment__arrow {
position: relative;
display: flex;
width: 48px;
height: 48px;
align-items: center;
justify-content: center;
border: 2px dashed rgba(109, 74, 255, 0.28);
border-radius: 50%;
color: #6d4aff;
background: rgba(255, 255, 255, 0.9);
}

.jmc-eleven-enrolment__arrow .dashicons {
width: auto;
height: auto;
font-size: 24px;
line-height: 1;
}

/* Support Strip */

.jmc-eleven-enrolment__support {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1px;
overflow: hidden;
margin-top: 38px;
border: 1px solid rgba(109, 74, 255, 0.13);
border-radius: 18px;
background: rgba(109, 74, 255, 0.12);
box-shadow: 0 13px 30px rgba(23, 26, 43, 0.07);
}

.jmc-eleven-enrolment__support-item {
display: flex;
min-height: 78px;
align-items: center;
justify-content: center;
gap: 10px;
padding: 16px;
color: #43495d;
background: rgba(255, 255, 255, 0.95);
text-align: center;
}

.jmc-eleven-enrolment__support-item .dashicons {
width: auto;
height: auto;
color: #6d4aff;
font-size: 22px;
line-height: 1;
}

.jmc-eleven-enrolment__support-item:nth-child(even) .dashicons {
color: #0d9da8;
}

.jmc-eleven-enrolment__support-item span:last-child {
font-size: 14px;
font-weight: 800;
line-height: 1.35;
}

/* Help Box */

.jmc-eleven-enrolment__help {
display: flex;
max-width: 860px;
align-items: center;
justify-content: space-between;
gap: 24px;
margin: 34px auto 0;
padding: 22px 26px;
border: 1px solid rgba(109, 74, 255, 0.18);
border-radius: 17px;
background: rgba(255, 255, 255, 0.9);
box-shadow:
  0 13px 28px rgba(57, 48, 130, 0.08),
  inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jmc-eleven-enrolment__help-content h3 {
margin: 0 0 5px;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: 23px;
}

.jmc-eleven-enrolment__help-content p {
margin: 0;
color: #606779;
font-size: 14px;
line-height: 1.6;
}

.jmc-eleven-enrolment__help-button {
flex: 0 0 auto;
display: inline-flex;
min-height: 45px;
align-items: center;
justify-content: center;
gap: 8px;
padding: 11px 20px;
border-radius: 999px;
color: #ffffff;
background:
  linear-gradient(
    135deg,
    #6d4aff,
    #3f46c8
  );
text-decoration: none;
font-size: 14px;
font-weight: 800;
box-shadow: 0 11px 22px rgba(109, 74, 255, 0.22);
transition:
  transform 0.25s ease,
  box-shadow 0.25s ease;
}

.jmc-eleven-enrolment__help-button:hover {
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 15px 28px rgba(109, 74, 255, 0.3);
}

/* Tablet: 2 × 2 */

@media screen and (max-width: 1050px) {
.jmc-eleven-enrolment__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 850px;
  margin: 0 auto;
}

.jmc-eleven-enrolment__arrow {
  display: none;
}

.jmc-eleven-enrolment-card {
  min-height: 345px;
}

.jmc-eleven-enrolment__support {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

/* Mobile */

@media screen and (max-width: 620px) {
.jmc-eleven-enrolment {
  padding: 62px 14px;
}

.jmc-eleven-enrolment__heading {
  margin-bottom: 38px;
}

.jmc-eleven-enrolment__label {
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.jmc-eleven-enrolment__label span {
  width: 24px;
}

.jmc-eleven-enrolment__heading h2 {
  font-size: 38px;
}

.jmc-eleven-enrolment__heading p {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-eleven-enrolment__grid {
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 420px;
}

.jmc-eleven-enrolment-card {
  width: calc(100% - 24px);
  min-height: 325px;
  justify-self: center;
  padding: 52px 22px 0;
}

.jmc-eleven-enrolment-card__icon {
  width: 74px;
  height: 74px;
  flex-basis: 74px;
  margin-bottom: 18px;
}

.jmc-eleven-enrolment-card__icon .dashicons {
  font-size: 37px;
}

.jmc-eleven-enrolment-card h3 {
  font-size: 26px;
}

.jmc-eleven-enrolment-card p {
  font-size: 14px;
}

.jmc-eleven-enrolment__support {
  width: calc(100% - 24px);
  max-width: 396px;
  grid-template-columns: 1fr;
  margin: 28px auto 0;
}

.jmc-eleven-enrolment__support-item {
  justify-content: flex-start;
  min-height: 66px;
  padding: 14px 18px;
  text-align: left;
}

.jmc-eleven-enrolment__help {
  width: calc(100% - 24px);
  max-width: 396px;
  flex-direction: column;
  align-items: stretch;
  padding: 21px 19px;
  text-align: center;
}

.jmc-eleven-enrolment__help-button {
  width: 100%;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-eleven-enrolment-card,
.jmc-eleven-enrolment__help-button {
  transition: none;
}

.jmc-eleven-enrolment-card:hover,
.jmc-eleven-enrolment__help-button:hover {
  transform: none;
}
}\n}.elementor .e-e21290b-f2d4c6a{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS COURSE FAQ SECTION
 Desktop/Tablet: Two Columns
 Mobile: One Column
========================================= */

.jmc-eleven-faq,
.jmc-eleven-faq * {
box-sizing: border-box;
}

.jmc-eleven-faq {
position: relative;
width: 100%;
overflow: hidden;
padding: 90px 22px;
color: #171a2b;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(
    circle at 7% 15%,
    rgba(109, 74, 255, 0.09),
    transparent 24%
  ),
  radial-gradient(
    circle at 93% 85%,
    rgba(20, 184, 196, 0.08),
    transparent 26%
  ),
  linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

.jmc-eleven-faq::before {
content: "";
position: absolute;
top: -170px;
right: -150px;
width: 410px;
height: 410px;
border: 1px solid rgba(109, 74, 255, 0.14);
border-radius: 50%;
box-shadow:
  0 0 0 55px rgba(109, 74, 255, 0.022),
  0 0 0 105px rgba(20, 184, 196, 0.017);
pointer-events: none;
}

.jmc-eleven-faq::after {
content: "";
position: absolute;
bottom: -200px;
left: -150px;
width: 340px;
height: 340px;
border: 1px solid rgba(20, 184, 196, 0.12);
border-radius: 50%;
pointer-events: none;
}

.jmc-eleven-faq__container {
position: relative;
z-index: 2;
width: min(1180px, 100%);
margin: 0 auto;
}

/* Section Header */

.jmc-eleven-faq__header {
max-width: 800px;
margin: 0 auto 52px;
text-align: center;
}

.jmc-eleven-faq__eyebrow {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 17px;
color: #6d4aff;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-eleven-faq__eyebrow::before,
.jmc-eleven-faq__eyebrow::after {
content: "";
width: 42px;
height: 1px;
background: linear-gradient(90deg, #6d4aff, #14b8c4);
}

.jmc-eleven-faq__title {
margin: 0;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(39px, 4.8vw, 62px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-eleven-faq__title span {
color: #6d4aff;
}

.jmc-eleven-faq__intro {
max-width: 720px;
margin: 20px auto 0;
color: #606779;
font-size: 17px;
line-height: 1.75;
}

/* FAQ Columns */

.jmc-eleven-faq__columns {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: start;
gap: 22px;
}

.jmc-eleven-faq__column {
display: flex;
min-width: 0;
flex-direction: column;
gap: 16px;
}

/* FAQ Item */

.jmc-eleven-faq-item {
--faq-accent: #6d4aff;
--faq-soft: #f1eeff;
--faq-border: rgba(109, 74, 255, 0.16);

position: relative;
overflow: hidden;
border: 1px solid var(--faq-border);
border-radius: 18px;
background: rgba(255, 255, 255, 0.94);
box-shadow:
  0 14px 32px rgba(23, 26, 43, 0.07),
  0 5px 12px rgba(23, 26, 43, 0.04);
transition:
  border-color 0.3s ease,
  box-shadow 0.3s ease,
  transform 0.3s ease;
}

.jmc-eleven-faq-item:nth-child(even) {
--faq-accent: #0d9da8;
--faq-soft: #eafbfd;
--faq-border: rgba(20, 184, 196, 0.18);
}

.jmc-eleven-faq-item:hover {
border-color: var(--faq-accent);
box-shadow:
  0 20px 40px rgba(57, 48, 130, 0.1),
  0 8px 16px rgba(23, 26, 43, 0.05);
transform: translateY(-2px);
}

.jmc-eleven-faq-item[open] {
border-color: var(--faq-accent);
background:
  linear-gradient(
    145deg,
    #ffffff,
    var(--faq-soft)
  );
}

/* FAQ Question */

.jmc-eleven-faq-item__question {
position: relative;
display: flex;
min-height: 82px;
align-items: center;
gap: 15px;
padding: 20px 60px 20px 21px;
color: #24293a;
font-family: Georgia, "Times New Roman", serif;
font-size: 16px;
font-weight: 700;
line-height: 1.4;
list-style: none;
cursor: pointer;
transition:
  color 0.3s ease,
  background-color 0.3s ease;
}

.jmc-eleven-faq-item__question::-webkit-details-marker {
display: none;
}

.jmc-eleven-faq-item__number {
width: 36px;
height: 36px;
flex: 0 0 36px;
display: grid;
place-items: center;
border-radius: 11px;
color: #ffffff;
background: var(--faq-accent);
font-family: "Inter", Arial, sans-serif;
font-size: 12px;
font-weight: 800;
line-height: 1;
box-shadow: 0 8px 16px rgba(57, 48, 130, 0.16);
}

/* Plus and Minus */

.jmc-eleven-faq-item__question::before,
.jmc-eleven-faq-item__question::after {
content: "";
position: absolute;
top: 50%;
right: 23px;
width: 18px;
height: 2px;
border-radius: 999px;
background: var(--faq-accent);
transform: translateY(-50%);
transition: transform 0.3s ease;
}

.jmc-eleven-faq-item__question::after {
transform: translateY(-50%) rotate(90deg);
}

.jmc-eleven-faq-item[open]
.jmc-eleven-faq-item__question::after {
transform: translateY(-50%) rotate(0deg);
}

.jmc-eleven-faq-item[open]
.jmc-eleven-faq-item__question {
color: var(--faq-accent);
background: rgba(109, 74, 255, 0.025);
}

/* FAQ Answer */

.jmc-eleven-faq-item__answer {
padding: 0 24px 22px 72px;
}

.jmc-eleven-faq-item__answer p {
margin: 0;
padding-top: 17px;
border-top: 1px solid var(--faq-border);
color: #606779;
font-size: 15px;
line-height: 1.75;
}

/* Support Box */

.jmc-eleven-faq__support {
display: flex;
max-width: 860px;
align-items: center;
justify-content: space-between;
gap: 24px;
margin: 38px auto 0;
padding: 23px 26px;
border: 1px solid rgba(109, 74, 255, 0.18);
border-radius: 18px;
background: rgba(255, 255, 255, 0.9);
box-shadow:
  0 14px 30px rgba(57, 48, 130, 0.08),
  inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jmc-eleven-faq__support-content {
display: flex;
align-items: center;
gap: 15px;
}

.jmc-eleven-faq__support-icon {
width: 50px;
height: 50px;
flex: 0 0 50px;
display: grid;
place-items: center;
border-radius: 15px;
color: #ffffff;
background:
  linear-gradient(
    145deg,
    #6d4aff,
    #3f46c8
  );
box-shadow: 0 11px 20px rgba(109, 74, 255, 0.22);
}

.jmc-eleven-faq__support-icon .dashicons {
width: auto;
height: auto;
font-size: 25px;
line-height: 1;
}

.jmc-eleven-faq__support-text h3 {
margin: 0 0 5px;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: 22px;
}

.jmc-eleven-faq__support-text p {
margin: 0;
color: #606779;
font-size: 14px;
line-height: 1.55;
}

.jmc-eleven-faq__support-button {
flex: 0 0 auto;
display: inline-flex;
min-height: 44px;
align-items: center;
justify-content: center;
gap: 8px;
padding: 11px 20px;
border-radius: 999px;
color: #ffffff;
background:
  linear-gradient(
    135deg,
    #6d4aff,
    #3f46c8
  );
text-decoration: none;
font-size: 14px;
font-weight: 800;
box-shadow: 0 11px 22px rgba(109, 74, 255, 0.22);
transition:
  transform 0.25s ease,
  box-shadow 0.25s ease;
}

.jmc-eleven-faq__support-button:hover {
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 15px 28px rgba(109, 74, 255, 0.3);
}

/* Tablet */

@media screen and (max-width: 900px) {
.jmc-eleven-faq {
  padding: 78px 22px;
}

.jmc-eleven-faq__columns {
  gap: 18px;
}

.jmc-eleven-faq-item__question {
  min-height: 88px;
  padding-right: 52px;
  font-size: 18px;
}
}

/* Mobile */

@media screen and (max-width: 680px) {
.jmc-eleven-faq {
  padding: 62px 14px;
}

.jmc-eleven-faq__header {
  margin-bottom: 38px;
}

.jmc-eleven-faq__eyebrow {
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.jmc-eleven-faq__eyebrow::before,
.jmc-eleven-faq__eyebrow::after {
  width: 24px;
}

.jmc-eleven-faq__title {
  font-size: 38px;
}

.jmc-eleven-faq__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-eleven-faq__columns {
  width: calc(100% - 20px);
  max-width: 420px;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 auto;
}

.jmc-eleven-faq__column {
  gap: 16px;
}

.jmc-eleven-faq-item {
  border-radius: 16px;
}

.jmc-eleven-faq-item__question {
  min-height: 76px;
  gap: 12px;
  padding: 17px 48px 17px 17px;
  font-size: 17px;
  line-height: 1.4;
}

.jmc-eleven-faq-item__number {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  font-size: 11px;
}

.jmc-eleven-faq-item__question::before,
.jmc-eleven-faq-item__question::after {
  right: 18px;
  width: 15px;
}

.jmc-eleven-faq-item__answer {
  padding: 0 18px 19px;
}

.jmc-eleven-faq-item__answer p {
  padding-top: 15px;
  font-size: 14px;
  line-height: 1.7;
}

.jmc-eleven-faq__support {
  width: calc(100% - 20px);
  max-width: 420px;
  flex-direction: column;
  align-items: stretch;
  margin-top: 28px;
  padding: 20px 18px;
  text-align: center;
}

.jmc-eleven-faq__support-content {
  flex-direction: column;
}

.jmc-eleven-faq__support-button {
  width: 100%;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-eleven-faq-item,
.jmc-eleven-faq-item__question,
.jmc-eleven-faq-item__question::after,
.jmc-eleven-faq__support-button {
  transition: none;
}

.jmc-eleven-faq-item:hover,
.jmc-eleven-faq__support-button:hover {
  transform: none;
}
}\n}.elementor .e-cbc7086-90e4b12{padding:0px;flex-direction:column;/* =========================================
 JMC EXPLORE MORE COURSES SECTION
 ELEVENLABS LIGHT VIOLET / CYAN THEME
 Desktop: 4 Cards in One Row
 Tablet: 2 × 2 Grid
 Mobile: 4 Cards in One Column
========================================= */

.jmc-more-courses,
.jmc-more-courses * {
box-sizing: border-box;
}

.jmc-more-courses {
position: relative;
width: 100%;
overflow: hidden;
padding: 90px 22px;
color: #171a2b;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(
    circle at 7% 14%,
    rgba(109, 74, 255, 0.09),
    transparent 24%
  ),
  radial-gradient(
    circle at 93% 86%,
    rgba(20, 184, 196, 0.08),
    transparent 26%
  ),
  linear-gradient(
    180deg,
    #f1eeff 0%,
    #f7f9fc 52%,
    #eafbfd 100%
  );
}

.jmc-more-courses::before {
content: "";
position: absolute;
top: -170px;
left: -150px;
width: 410px;
height: 410px;
border: 1px solid rgba(109, 74, 255, 0.14);
border-radius: 50%;
box-shadow:
  0 0 0 55px rgba(109, 74, 255, 0.022),
  0 0 0 105px rgba(20, 184, 196, 0.017);
pointer-events: none;
}

.jmc-more-courses::after {
content: "";
position: absolute;
right: -170px;
bottom: -210px;
width: 350px;
height: 350px;
border: 1px solid rgba(20, 184, 196, 0.12);
border-radius: 50%;
pointer-events: none;
}

.jmc-more-courses__container {
position: relative;
z-index: 2;
width: min(1220px, 100%);
margin: 0 auto;
}

/* Section Header */

.jmc-more-courses__header {
max-width: 800px;
margin: 0 auto 52px;
text-align: center;
}

.jmc-more-courses__eyebrow {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 17px;
color: #6d4aff;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.jmc-more-courses__eyebrow::before,
.jmc-more-courses__eyebrow::after {
content: "";
width: 42px;
height: 1px;
background: linear-gradient(90deg, #6d4aff, #14b8c4);
}

.jmc-more-courses__title {
margin: 0;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(39px, 4.8vw, 62px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.035em;
}

.jmc-more-courses__title span {
color: #6d4aff;
}

.jmc-more-courses__intro {
max-width: 700px;
margin: 20px auto 0;
color: #606779;
font-size: 17px;
line-height: 1.75;
}

/* Course Grid */

.jmc-more-courses__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 24px;
align-items: stretch;
}

/* Course Card */

.jmc-more-course-card {
--card-accent: #6d4aff;
--card-soft: #f1eeff;
--card-border: rgba(109, 74, 255, 0.16);

position: relative;
min-width: 0;
overflow: hidden;
display: flex;
min-height: 440px;
flex-direction: column;
border: 1px solid var(--card-border);
border-radius: 24px;
background: rgba(255, 255, 255, 0.96);
box-shadow:
  0 20px 44px rgba(23, 26, 43, 0.09),
  0 7px 17px rgba(23, 26, 43, 0.05);
transition:
  transform 0.35s ease,
  box-shadow 0.35s ease,
  border-color 0.35s ease;
}

.jmc-more-course-card:nth-child(2),
.jmc-more-course-card:nth-child(4) {
--card-accent: #0d9da8;
--card-soft: #eafbfd;
--card-border: rgba(20, 184, 196, 0.18);
}

.jmc-more-course-card:nth-child(3) {
--card-accent: #3f46c8;
--card-soft: #eceeff;
--card-border: rgba(63, 70, 200, 0.18);
}

.jmc-more-course-card:hover {
transform: translateY(-8px);
border-color: var(--card-accent);
box-shadow:
  0 30px 62px rgba(57, 48, 130, 0.14),
  0 12px 24px rgba(23, 26, 43, 0.08);
}

/* Thumbnail */

.jmc-more-course-card__media {
position: relative;
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
background: var(--card-soft);
}

.jmc-more-course-card__media::after {
content: "";
position: absolute;
inset: 0;
background:
  linear-gradient(
    180deg,
    transparent 48%,
    rgba(23, 26, 43, 0.28) 100%
  );
pointer-events: none;
}

.jmc-more-course-card__image {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
transition: transform 0.45s ease;
}

.jmc-more-course-card:hover .jmc-more-course-card__image {
transform: scale(1.045);
}

.jmc-more-course-card__type {
position: absolute;
z-index: 2;
top: 15px;
left: 15px;
display: inline-flex;
min-height: 30px;
align-items: center;
padding: 6px 11px;
border: 1px solid var(--card-border);
border-radius: 999px;
color: var(--card-accent);
background: rgba(255, 255, 255, 0.92);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.07em;
text-transform: uppercase;
box-shadow: 0 7px 17px rgba(23, 26, 43, 0.12);
backdrop-filter: blur(6px);
}

/* Card Content */

.jmc-more-course-card__content {
display: flex;
flex: 1;
flex-direction: column;
padding: 25px 23px 22px;
}

.jmc-more-course-card__category {
display: block;
margin-bottom: 10px;
color: var(--card-accent);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
}

.jmc-more-course-card__title {
margin: 0 0 13px;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: 24px;
line-height: 1.25;
letter-spacing: -0.015em;
}

.jmc-more-course-card__description {
margin: 0;
color: #606779;
font-size: 14px;
line-height: 1.7;
}

.jmc-more-course-card__meta {
display: flex;
align-items: center;
gap: 8px;
margin-top: 18px;
color: #52596b;
font-size: 13px;
font-weight: 700;
}

.jmc-more-course-card__meta .dashicons {
width: auto;
height: auto;
color: var(--card-accent);
font-size: 18px;
line-height: 1;
}

/* Card Button */

.jmc-more-course-card__button {
display: inline-flex;
width: 100%;
min-height: 46px;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-top: auto;
padding: 12px 16px;
border-radius: 13px;
color: #ffffff;
background: var(--card-accent);
text-decoration: none;
font-size: 14px;
font-weight: 800;
box-shadow: 0 10px 20px rgba(57, 48, 130, 0.16);
transition:
  transform 0.25s ease,
  filter 0.25s ease,
  box-shadow 0.25s ease;
}

.jmc-more-course-card__button:hover {
color: #ffffff;
transform: translateY(-2px);
filter: brightness(0.92);
box-shadow: 0 14px 26px rgba(57, 48, 130, 0.24);
}

.jmc-more-course-card__button .dashicons {
width: auto;
height: auto;
font-size: 19px;
line-height: 1;
}

/* Bottom CTA */

.jmc-more-courses__footer {
display: flex;
max-width: 900px;
align-items: center;
justify-content: space-between;
gap: 26px;
margin: 40px auto 0;
padding: 24px 27px;
border: 1px solid rgba(109, 74, 255, 0.15);
border-radius: 18px;
background: rgba(255, 255, 255, 0.9);
box-shadow:
  0 14px 32px rgba(57, 48, 130, 0.08),
  inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jmc-more-courses__footer-content h3 {
margin: 0 0 6px;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: 24px;
line-height: 1.25;
}

.jmc-more-courses__footer-content p {
margin: 0;
color: #606779;
font-size: 14px;
line-height: 1.6;
}

.jmc-more-courses__footer-button {
flex: 0 0 auto;
display: inline-flex;
min-height: 46px;
align-items: center;
justify-content: center;
gap: 9px;
padding: 12px 21px;
border-radius: 999px;
color: #ffffff;
background:
  linear-gradient(
    135deg,
    #6d4aff,
    #3f46c8
  );
text-decoration: none;
font-size: 14px;
font-weight: 800;
box-shadow: 0 11px 22px rgba(109, 74, 255, 0.22);
transition:
  transform 0.25s ease,
  box-shadow 0.25s ease;
}

.jmc-more-courses__footer-button:hover {
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 15px 28px rgba(109, 74, 255, 0.3);
}

.jmc-more-courses__footer-button .dashicons {
width: auto;
height: auto;
font-size: 19px;
line-height: 1;
}

/* Tablet: 2 × 2 */

@media screen and (max-width: 980px) {
.jmc-more-courses {
  padding: 78px 22px;
}

.jmc-more-courses__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 850px;
  margin: 0 auto;
}

.jmc-more-course-card {
  min-height: 430px;
}
}

/* Mobile: 4 Cards in One Column */

@media screen and (max-width: 620px) {
.jmc-more-courses {
  padding: 62px 14px;
}

.jmc-more-courses__header {
  margin-bottom: 38px;
}

.jmc-more-courses__eyebrow {
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.jmc-more-courses__eyebrow::before,
.jmc-more-courses__eyebrow::after {
  width: 24px;
}

.jmc-more-courses__title {
  font-size: 38px;
}

.jmc-more-courses__intro {
  font-size: 15px;
  line-height: 1.7;
}

.jmc-more-courses__grid {
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 420px;
}

.jmc-more-course-card {
  width: calc(100% - 24px);
  min-height: auto;
  justify-self: center;
  border-radius: 20px;
}

.jmc-more-course-card__content {
  padding: 22px 20px 20px;
}

.jmc-more-course-card__title {
  font-size: 22px;
}

.jmc-more-course-card__description {
  font-size: 14px;
  line-height: 1.65;
}

.jmc-more-course-card__button {
  margin-top: 22px;
}

.jmc-more-courses__footer {
  width: calc(100% - 24px);
  max-width: 396px;
  flex-direction: column;
  align-items: stretch;
  margin-top: 30px;
  padding: 21px 19px;
  text-align: center;
}

.jmc-more-courses__footer-button {
  width: 100%;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-more-course-card,
.jmc-more-course-card__image,
.jmc-more-course-card__button,
.jmc-more-courses__footer-button {
  transition: none;
}

.jmc-more-course-card:hover,
.jmc-more-course-card__button:hover,
.jmc-more-courses__footer-button:hover {
  transform: none;
}
}\n}.elementor .e-9436c73-1a1acfc{padding:0px;flex-direction:column;/* =========================================
 ELEVENLABS FINAL CONVERSION SECTION
 Light Violet + Cyan + Indigo Theme
========================================= */

.jmc-final-conversion,
.jmc-final-conversion * {
box-sizing: border-box;
}

.jmc-final-conversion {
position: relative;
width: 100%;
overflow: hidden;
padding: 96px 22px;
color: #171a2b;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(
    circle at 12% 18%,
    rgba(109, 74, 255, 0.12),
    transparent 28%
  ),
  radial-gradient(
    circle at 88% 82%,
    rgba(20, 184, 196, 0.13),
    transparent 30%
  ),
  linear-gradient(
    135deg,
    #f1eeff 0%,
    #f7f9fc 48%,
    #eafbfd 100%
  );
}

.jmc-final-conversion::before {
content: "";
position: absolute;
top: -180px;
right: -120px;
width: 430px;
height: 430px;
border: 1px solid rgba(109, 74, 255, 0.14);
border-radius: 50%;
box-shadow:
  0 0 0 60px rgba(109, 74, 255, 0.025),
  0 0 0 120px rgba(20, 184, 196, 0.018);
pointer-events: none;
}

.jmc-final-conversion::after {
content: "";
position: absolute;
bottom: -210px;
left: -160px;
width: 430px;
height: 430px;
border: 1px solid rgba(20, 184, 196, 0.12);
border-radius: 50%;
background: rgba(255, 255, 255, 0.18);
pointer-events: none;
}

.jmc-final-conversion__container {
position: relative;
z-index: 2;
width: min(1040px, 100%);
margin: 0 auto;
text-align: center;
}

/* Eyebrow */

.jmc-final-conversion__eyebrow {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 22px;
color: #6d4aff;
font-size: 13px;
font-weight: 800;
letter-spacing: 0.17em;
text-transform: uppercase;
}

.jmc-final-conversion__eyebrow::before,
.jmc-final-conversion__eyebrow::after {
content: "";
width: 44px;
height: 1px;
background:
  linear-gradient(
    90deg,
    #6d4aff,
    #14b8c4
  );
}

/* Heading */

.jmc-final-conversion__title {
max-width: 980px;
margin: 0 auto;
color: #171a2b;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(45px, 6vw, 76px);
font-weight: 700;
line-height: 1.05;
letter-spacing: -0.04em;
}

.jmc-final-conversion__title span {
display: block;
color: #6d4aff;
}

/* Supporting Text */

.jmc-final-conversion__text {
max-width: 780px;
margin: 25px auto 0;
color: #606779;
font-size: 18px;
line-height: 1.75;
}

/* CTA Button */

.jmc-final-conversion__button {
display: inline-flex;
min-height: 56px;
align-items: center;
justify-content: center;
gap: 11px;
margin-top: 34px;
padding: 15px 31px;
border: 1px solid rgba(109, 74, 255, 0.28);
border-radius: 999px;
color: #ffffff;
background:
  linear-gradient(
    135deg,
    #6d4aff,
    #3f46c8
  );
text-decoration: none;
font-size: 15px;
font-weight: 800;
box-shadow:
  0 18px 38px rgba(109, 74, 255, 0.24),
  inset 0 1px 0 rgba(255, 255, 255, 0.24);
transition:
  transform 0.3s ease,
  box-shadow 0.3s ease,
  filter 0.3s ease;
}

.jmc-final-conversion__button:hover,
.jmc-final-conversion__button:focus-visible {
color: #ffffff;
transform: translateY(-3px);
filter: brightness(0.95);
box-shadow:
  0 24px 46px rgba(109, 74, 255, 0.32),
  inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.jmc-final-conversion__button .dashicons {
width: auto;
height: auto;
font-size: 20px;
line-height: 1;
}

/* Supporting Trust Points */

.jmc-final-conversion__features {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px 24px;
margin-top: 30px;
}

.jmc-final-conversion__feature {
display: inline-flex;
align-items: center;
gap: 8px;
color: #4e5568;
font-size: 14px;
font-weight: 700;
}

.jmc-final-conversion__feature .dashicons {
width: auto;
height: auto;
color: #0d9da8;
font-size: 19px;
line-height: 1;
}

/* Tablet */

@media screen and (max-width: 900px) {
.jmc-final-conversion {
  padding: 82px 22px;
}

.jmc-final-conversion__title {
  max-width: 780px;
}
}

/* Mobile */

@media screen and (max-width: 767px) {
.jmc-final-conversion {
  padding: 68px 18px;
}

.jmc-final-conversion__eyebrow {
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.jmc-final-conversion__eyebrow::before,
.jmc-final-conversion__eyebrow::after {
  width: 24px;
}

.jmc-final-conversion__title {
  font-size: 42px;
  line-height: 1.08;
}

.jmc-final-conversion__text {
  max-width: 520px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.jmc-final-conversion__button {
  width: min(100%, 320px);
  min-height: 51px;
  margin-top: 28px;
  padding: 14px 23px;
}

.jmc-final-conversion__features {
  flex-direction: column;
  align-items: center;
  gap: 11px;
  margin-top: 25px;
}
}

@media screen and (max-width: 390px) {
.jmc-final-conversion {
  padding: 60px 15px;
}

.jmc-final-conversion__title {
  font-size: 37px;
}

.jmc-final-conversion__text {
  font-size: 15px;
}
}

@media (prefers-reduced-motion: reduce) {
.jmc-final-conversion__button {
  transition: none;
}

.jmc-final-conversion__button:hover {
  transform: none;
}
}

/* =========================================
 ELEVENLABS FINAL CONVERSION SECTION
 Dark Violet + Indigo + Cyan Theme
========================================= */

.jmc-final-conversion {
position: relative;
width: 100%;
overflow: hidden;
padding: 96px 22px;
color: #ffffff;
font-family: "Inter", Arial, sans-serif;
background:
  radial-gradient(
    circle at 12% 18%,
    rgba(129, 92, 255, 0.24),
    transparent 29%
  ),
  radial-gradient(
    circle at 88% 82%,
    rgba(20, 184, 196, 0.2),
    transparent 31%
  ),
  linear-gradient(
    135deg,
    #111326 0%,
    #21184a 48%,
    #123d47 100%
  );
}

.jmc-final-conversion::before {
content: "";
position: absolute;
top: -180px;
right: -120px;
width: 430px;
height: 430px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 50%;
box-shadow:
  0 0 0 60px rgba(109, 74, 255, 0.04),
  0 0 0 120px rgba(20, 184, 196, 0.025);
pointer-events: none;
}

.jmc-final-conversion::after {
content: "";
position: absolute;
bottom: -210px;
left: -160px;
width: 430px;
height: 430px;
border: 1px solid rgba(20, 184, 196, 0.11);
border-radius: 50%;
background: rgba(255, 255, 255, 0.025);
pointer-events: none;
}

/* Eyebrow */

.jmc-final-conversion__eyebrow {
color: #d8d2ff;
}

.jmc-final-conversion__eyebrow::before,
.jmc-final-conversion__eyebrow::after {
background:
  linear-gradient(
    90deg,
    #9e86ff,
    #4fd8df
  );
}

/* Heading */

.jmc-final-conversion__title {
color: #ffffff;
}

.jmc-final-conversion__title span {
color: #6de0e5;
}

/* Supporting Text */

.jmc-final-conversion__text {
color: rgba(255, 255, 255, 0.8);
}

/* CTA Button */

.jmc-final-conversion__button {
border: 1px solid rgba(255, 255, 255, 0.22);
color: #171a2b;
background:
  linear-gradient(
    135deg,
    #ffffff,
    #e9e5ff
  );
box-shadow:
  0 18px 38px rgba(0, 0, 0, 0.3),
  0 8px 22px rgba(109, 74, 255, 0.2),
  inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.jmc-final-conversion__button:hover,
.jmc-final-conversion__button:focus-visible {
color: #101426;
background:
  linear-gradient(
    135deg,
    #9ff1f3,
    #dcd5ff
  );
filter: none;
transform: translateY(-3px);
box-shadow:
  0 24px 48px rgba(0, 0, 0, 0.36),
  0 10px 28px rgba(20, 184, 196, 0.24);
}

/* Supporting Trust Points */

.jmc-final-conversion__feature {
color: rgba(255, 255, 255, 0.82);
}

.jmc-final-conversion__feature .dashicons {
color: #6de0e5;
}\n}