
.mora-intro {
    width: 1620px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 0 96px;
    box-sizing: border-box;
    margin-bottom: 240px;
}

.mora-intro__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 360px 1fr;
    column-gap: 60px;
    align-items: center;
    position: relative;
}

.mora-intro__copy {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    line-height: 1.4;
}

.mora-intro__eyebrow {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #1d1d1d;
}

.mora-intro__title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mora-intro__title-en {
    font-size: 50px;
    font-weight: 700;
}

.mora-intro__title-ko {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
}

.mora-intro__title-ko span {
    background: linear-gradient(transparent 60%, #2d063d30 60%);
    display: inline;
    padding-bottom: 2px;
}

.mora-intro__body {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 400;
    color: #222222;
    line-height: 1.8;
    letter-spacing: -0.01em;
    position: absolute;
    bottom: 0;
    left: 0;
}

.mora-intro__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.intro-card {
    position: relative;
    box-sizing: border-box;
    padding: 40px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.06);
}

.intro-card__text {
    z-index: 1;
}

.intro-card__eyebrow {
    font-size: 22px;
    font-weight: 600;
    color: #e7e0ec;
    margin-bottom: 10px;
}

.intro-card__eyebrow--dark {
    color: #000;
}

.intro-card__headline {
    font-size: 60px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 18px;
}

.intro-card__headline--dark {
    color: #0e0e0e;
}

.intro-card__desc {
    font-size: 18px;
    font-weight: 500;
    color: #e8e0ec;
    line-height: 1.7;
    position: absolute;
    bottom: 40px;
    width: max-content;
    z-index: 1;
}

.intro-card__desc--dark {
    color: #3c3c3c;
}

.intro-card__image {
    position: absolute;
    right: 26px;
    bottom: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.intro-card__image img {
    display: block;
    width: 260px;
    height: auto;
}

.intro-card--primary {
    flex: 1 1 60%;
    background: #2d0c3c;
    height: 400px;
}

.intro-card--light {
    flex: 1 1 30%;
    background: #f1f1f1;
    height: 400px;
}

.intro-card--muted {
    flex: 1 1 30%;
    min-width: 360px;
    background: #F4F4F4;
    height: 400px;
}

.intro-card--accent {
    flex: 1 1 60%;
    min-width: 420px;
    background: #ffe4ea;
    height: 400px;
}

.intro-card--light .intro-card__image img {
    width: 260px;
}

.intro-card--muted .intro-card__image img {
    width: 360px;
}

.intro-card--accent .intro-card__image img {
    width: 350px;
}

.intro-card__image--shield {
    right: -62px;
    bottom: 18px;
}

.intro-card__image--laptop {
    right: -109px;
    bottom: 2px;
}

.intro-card__image--chart {
    right: 12px;
    bottom: 25px;
}
.intro-card--light .intro-card__eyebrow{
    color: #000;
}
.intro-card--muted .intro-card__eyebrow{
    color: #000;
}

.mora-steps {
    width: 100%;
    background: #ffffff;
}

.mora-steps__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0 140px;
    box-sizing: border-box;
}

.mora-steps__header {
    text-align: center;
    color: #0f0f0f;
}

.mora-steps__title {
    font-size: 55px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.mora-steps__subtitle {
    margin-top: 10px;
    font-size: 22px;
    color: #5e5b66;
    font-weight: 500;
}

.mora-steps__body {
    width: 100%;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    gap: 52px;
    align-items: center;
}

.mora-steps__list {
    width: 60%;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.mora-steps__list::before {
    content: "";
    height: 88%;
    position: absolute;
    left: 14px;
    top: 10px;
    bottom: 0;
    width: 2px;
    background: #d8d6df;
}

.mora-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: start;
    column-gap: 20px;
}

.mora-step__bullet {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #c3c0c9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #7f7a88;
    background: #ffffff;
    z-index: 1;
    transition: all 0.25s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.mora-step__content {
    padding: 20px 24px;
    border-radius: 14px;
    background: transparent;
    transition: all 0.25s ease;
}

.mora-step__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mora-step__text {
    font-size: 18px;
    line-height: 1.8;
    color: #595861;
    font-weight: 500;
    word-break: keep-all;
}

.mora-step.is-active .mora-step__bullet {
    background: #3c0b61;
    border-color: #3c0b61;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(60, 11, 97, 0.35);
}

.mora-step.is-active .mora-step__content {
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
}

.mora-steps__visual {
    width: 50%;
    height: 1050px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mora-steps__frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #0b0b0f;
    box-shadow: 0 38px 70px rgba(0, 0, 0, 0.18);
}

.mora-step__images {
    position: absolute;
    inset: 0;
}

.mora-step-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.mora-step-image.is-active {
    opacity: 1;
}

.mora-steps__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    color: #f5f3f8;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px 24px 46px;
    font-weight: 700;
    text-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.mora-steps__outline {
    position: absolute;
    top: 22%;
    left: 50%;
    width: 212px;
    height: 142px;
    transform: translateX(-50%);
    border: 2px solid rgba(255, 255, 255, 0.58);
    border-radius: 9px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.mora-steps__overlay-text {
    font-size: 18px;
    letter-spacing: -0.01em;
    padding: 5px 10px;
    background: #fff;
    border-radius: 10px;
    color: #3c0b61;
}

.mora-reviews {
    background: radial-gradient(circle at 50% -80%, #7c4b9e 0%, #2c0f39 32%, #1b0a2a 70%, #12061f 100%);
    color: #f7f2ff;
}

.mora-reviews__inner {
    max-width: 1700px;
    overflow: hidden;
    border-radius: 50px;
    margin: 0 auto;
    padding: 120px 24px 140px;
    box-sizing: border-box;
}

.mora-reviews__header {
    text-align: center;
}

.mora-reviews__title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.mora-reviews__subtitle {
    margin-top: 12px;
    font-size: 16px;
    color: #d9c8e8;
    font-weight: 500;
}

.mora-reviews__marquee {
    margin-top: 60px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.mora-reviews__track {
    display: flex;
    gap: 28px;
    align-items: stretch;
    transform: translateX(0);
    transition: transform 0.6s ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 56px) / 3);
    min-width: 320px;
    min-height: 500px;
    background: #ffffff;
    border-radius: 28px;
    padding: 60px 40px 40px;
    color: #120d1f;
    box-shadow: 0 30px 60px rgba(8, 1, 19, 0.28);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 74px rgba(8, 1, 19, 0.36);
}

.review-card__hearts {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
}

.review-card__heart {
    width: 50px;
    height: 50px;
}

.review-card__text {
    font-family: 'GangwonEducationModuche';
    font-size: 22px;
    line-height: 1.9;
    color: #1e1a2b;
    margin: 0;
    height: 345px;
    overflow: hidden;
    position: relative;
    padding-bottom: 14px;
    word-break: keep-all;
}

.review-card__text::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 78px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 58%, #ffffff 100%);
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.review-card:hover .review-card__text::after {
    opacity: 0;
}

.review-card__text::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.review-card__meta {
    margin-top: auto;
    font-weight: 700;
    font-size: 18px;
    color: #282135;
    letter-spacing: -0.01em;
}

@keyframes reviews-flow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


@media (max-width: 1280px) {
    .mora-intro {
        width: 100%;
        max-width: 100%;
        padding: 72px 24px 96px;
        box-sizing: border-box;
    }

    .mora-intro__inner {
        column-gap: 40px;
    }

    .mora-intro__body {
        position: static;
        margin-top: 10px;
    }

    .mora-intro__cards {
        gap: 18px;
    }

    .intro-card {
        min-height: 360px;
    }

    .intro-card--primary,
    .intro-card--light,
    .intro-card--muted,
    .intro-card--accent {
        height: 360px;
    }

    .mora-steps__inner {
        padding: 110px 24px 130px;
    }

    .mora-steps__visual {
        height: 780px;
    }

    .mora-steps__frame {
        min-height: 780px;
    }

    .mora-reviews__inner {
        max-width: 1400px;
        padding: 110px 24px 130px;
    }
}

@media (max-width: 1180px) {
    .mora-intro__inner {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .mora-intro__copy {
        order: 1;
        text-align: center;
    }

    .mora-intro__cards {
        order: 2;
    }

    .mora-steps__inner {
        padding: 96px 20px 110px;
    }

    .mora-steps__body {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .mora-steps__visual {
        width: 100%;
        order: 2;
        height: 400px;
    }

    .mora-steps__list {
        order: 2;
        width: 100%;
    }

    .mora-steps__frame {
        max-width: 520px;
        margin: 0 auto;
        min-height: 640px;
    }

    .mora-reviews__inner {
        padding: 96px 20px 110px;
    }

    .mora-reviews__track {
        gap: 20px;
    }

    .review-card {
        flex: 0 0 calc((100% - 20px) / 2);
        min-width: 340px;
    }
}

@media (max-width: 820px) {
    .mora-intro {
        padding: 56px 20px 72px;
    }

    .mora-intro__title-en {
        font-size: 34px;
    }

    .mora-intro__title-ko {
        font-size: 32px;
    }

    .intro-card--primary,
    .intro-card--light,
    .intro-card--muted,
    .intro-card--accent {
        flex: 1 1 100%;
        min-width: 0;
        height: auto;
    }

    .intro-card {
        padding: 24px 24px 80px;
    }

    .intro-card__image {
        right: 18px;
        bottom: 18px;
    }

    .intro-card__headline {
        font-size: 38px;
    }

    .intro-card__desc {
        font-size: 14px;
    }

    .intro-card__image img {
        width: 160px;
    }

    .mora-steps__inner {
        padding: 70px 16px 90px;
    }

    .mora-steps__title {
        font-size: 28px;
    }

    .mora-steps__subtitle {
        font-size: 14px;
    }

    .mora-steps__body {
        gap: 26px;
    }

    .mora-step {
        grid-template-columns: 50px 1fr;
    }

    .mora-step__bullet {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .mora-step__title {
        font-size: 16px;
    }

    .mora-step__text {
        font-size: 14px;
        line-height: 1.6;
    }

    .mora-steps__frame {
        min-height: 480px;
    }

    .mora-steps__outline {
        width: 180px;
        height: 118px;
        top: 20%;
    }

    .mora-steps__overlay {
        padding-bottom: 32px;
    }

    .mora-reviews__inner {
        padding: 70px 16px 90px;
    }

    .mora-reviews__title {
        font-size: 28px;
    }

    .mora-reviews__subtitle {
        font-size: 14px;
    }

    .mora-reviews__track {
        gap: 16px;
    }

    .review-card {
        flex: 0 0 100%;
        min-width: 0;
        padding: 26px 22px;
        border-radius: 22px;
    }

    .review-card__heart {
        width: 20px;
        height: 20px;
    }

    .review-card__text {
        font-size: 15px;
        line-height: 1.7;
        max-height: 150px;
    }

    .review-card__meta {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .mora-reviews__marquee{
    border-radius: 20px;
    margin-top: 30px;
}
    .mora-intro {
        padding: 0 14px 0;
        margin-bottom: 100px;
    }

    .mora-intro__title-en {
        font-size: 30px;
    }

    .mora-intro__title-ko {
        font-size: 28px;
    }

    .mora-intro__body {
        font-size: 16px;
        line-height: 1.65;
    }

    .intro-card {
        padding: 22px 18px 70px;
        border-radius: 20px;
        min-height: 200px;
    }

    .intro-card__headline {
        font-size: 32px;
    }

    .intro-card__desc {
        /* position: absolute; */
        /* right: 18px; */
        /* top: 22px; */
        /* text-align: right; */
    }

    .intro-card__image img {
        width: 43% !important;
    }

    .mora-steps__inner {
        padding: 60px 14px 80px;
    }

    .mora-steps__title {
        font-size: 24px;
    }

    .mora-steps__subtitle {
        font-size: 13px;
    }

    .mora-steps__body {
        gap: 22px;
        flex-direction: column;
    }

    .mora-step {
        grid-template-columns: 44px 1fr;
    }

    .mora-step__bullet {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .mora-step__title {
        font-size: 15px;
    }

    .mora-step__text {
        font-size: 13px;
        line-height: 1.55;
    }

    .mora-steps__frame {
        min-height: 360px;
        order: 0;
    }

    .mora-steps__outline {
        width: 150px;
        height: 98px;
        top: 18%;
    }

    .mora-steps__overlay {
        padding-bottom: 26px;
    }

    .mora-steps__overlay-text {
        font-size: 15px;
    }

    .mora-reviews__inner {
        padding: 60px 14px 78px;
    }

    .mora-reviews__title {
        font-size: 24px;
    }

    .mora-reviews__subtitle {
        font-size: 13px;
    }

    .mora-reviews__track {
        gap: 12px;
    }

    .review-card {
        padding: 25px;
        border-radius: 18px;
        height: 400px;
        min-height: unset;
    }

    .review-card__heart {
        width: 30px;
        height: 30px;
    }

    .review-card__text {
        font-size: 14px;
        line-height: 1.6;
        max-height: 300px;
    }

    .review-card__meta {
        font-size: 13px;
    }
}
