/* ========= PRF 페이지 ========= */
.hemosome-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hemosome-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hemosome-image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hemosome-image img {
    width: auto;
    height: auto;
}

.hemosome-image-text-overlay {
    position: absolute;
    top: 160px;
    left: calc(100% + 55px);
    transform: rotate(90deg);
    transform-origin: left center;
    text-align: center;
    color: #2c5aa0;
    z-index: 2;
    font-family: 'Dream Orphans';
    font-size: 64px;
    font-weight: normal;
    line-height: 1.2;
    white-space: nowrap;
}

.hemosome-content {
    position: absolute;
    right: -40%;
    top: 50%;
    transform: translateY(-30%);
    z-index: 2;
    width: 50%;
    padding-right: 40px;
    text-align: center;
}

.hemosome-subtitle {
    font-family: 'MaruBuri';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #666;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hemosome-main-title {
    font-family: 'Dream Orphans';
    font-size: 48px;
    font-weight: normal;
    line-height: 1.2;
    color: #2c5aa0;
    margin-bottom: 40px;
}

.hemosome-description {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 200;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #333;
    text-align: center;
    word-break: keep-all;
    margin-bottom: 30px;
}

.section-prf {
    padding: 120px 24px;
    background: #fff;
}

.prf-steps .step {
    padding: 0 12px;
    /* 필요 없으면 제거하세요 */
}

.prf-inner {
    max-width: 1640px;
    /* 기존 1200px → 1400px */
    margin: 0 auto;
}

/* Head */
.prf-head {
    text-align: center;
    margin-bottom: 56px;
}

.prf-about {
    text-align: center;
    line-height: 1.1;
    margin-bottom: 30px;
}

.prf-about .about {
    font-family: "Dream Orphans", sans-serif;
    /* dream orphans_regular_36 */
    font-weight: 400;
    font-size: 36px;
    display: inline-block;
    margin-right: 4px;
}

.prf-about .brand {
    font-family: "Dream Orphans", sans-serif;
    /* dream orphans_regular_48 */
    font-weight: 400;
    font-size: 48px;
    display: inline-block;
}

.prf-sub {
    margin-top: 12px;
    font-family: "MaruBuri", serif;
    /* MaruBuri_regular_24 */
    font-weight: 400;
    font-size: 24px;
    color: #333;
}

.prf-desc {
    margin-top: 16px;
    color: #000;
    font-family: "Pretendard", sans-serif;
    /* Pretendard_thin_20 */
    font-weight: 200;
    font-size: 20px;
    line-height: 1.9;
}

/* Steps line */
.prf-steps {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 40px 12px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.prf-steps::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 86px;
    /* 가로선과 만나는 지점 */
    transform: translateX(-50%);
    height: clamp(48px, 7vw, 172px);
    /* 세로 길이, 필요시 조절 */
    border-left: 1px dashed rgba(47, 109, 181, .35);
    z-index: 0;
}

.prf-steps::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 86px;
    /* 배지 중앙 높이 맞춤 */
    border-top: 1px dashed rgba(47, 109, 181, .35);
}

/* Each step */
.step {
    opacity: 0;
    transform: translateY(8px);
}

.step-title {
    margin: 14px 0 8px;
    font-family: "Pretendard", sans-serif;
    font-weight: 600;
    /* semibold */
    font-size: 20px;
    color: #000;
}

.step-text {
    margin: 0;
    color: #000;
    font-family: "Pretendard", sans-serif;
    font-weight: 200;
    /* thin */
    font-size: 20px;
    line-height: 1.6;
}

/* Badge */
.prf-badge {
    position: relative;
    width: 84px;
    height: 84px;
    margin: 0 auto;
    border-radius: 52px;
    /* ← 요청값 */
    transform: rotate(180deg);
    /* ← 요청값 */
    background: linear-gradient(180deg,
            rgba(77, 122, 189, 1) 6%,
            rgba(77, 122, 189, 0) 91%);
    /* ← 요청값 */
    display: grid;
    place-items: center;
    box-shadow: none;
    z-index: 1;
}

.prf-badge span {
    font-family: "Pretendard", sans-serif;
    /* Pretendard_thin_20 */
    font-weight: 200;
    font-size: 20px;
    color: #fff;
    letter-spacing: .2px;
    text-shadow: none;
    transform: rotate(180deg);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.section-prf.is-inview .step:nth-child(1) {
    animation: fadeUp .6s ease forwards .10s;
}

.section-prf.is-inview .step:nth-child(2) {
    animation: fadeUp .6s ease forwards .25s;
}

.section-prf.is-inview .step:nth-child(3) {
    animation: fadeUp .6s ease forwards .40s;
}

.section-prf.is-inview .step:nth-child(4) {
    animation: fadeUp .6s ease forwards .55s;
}

.hemosomes-step-section {
    background: #fff;
    padding: 120px 24px 80px;
}

.hemosomes-step-inner {
    max-width: 1600px;
    margin: 0 auto;
}

/* Headings */
.hemosomes-step-head {
    margin-bottom: 36px;
}

.hemosomes-step-title {
    font-family: "Noto Serif KR", serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.25;
    color: #111;
    margin: 0 0 8px;
}

.hemosomes-step-sub {
    font-family: "Pretendard", sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: #555;
    margin: 0 0 16px;
}

.hemosomes-step-desc {
    font-family: "Pretendard", sans-serif;
    font-weight: 200;
    font-size: 20px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* Steps grid */
.hemosomes-step-list {
    list-style: none;
    margin: 36px 0 10px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    align-items: start;
    text-align: center;
}

.hemosomes-step-item {
    position: relative;
    padding-bottom: 6px;
}

.hemosomes-step-figure {
    position: relative;
    width: 100%;
    margin: 0 auto 120px;
    overflow: visible;
}

.hemosomes-step-figure img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

/* Bubble */
.hemosomes-step-bubble {
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%) rotate(-180deg);
    width: 227px;
    height: 227px;
    border-radius: 113px;
    background: linear-gradient(180deg, rgba(131, 172, 232, 0.5) 10%, rgba(255, 255, 255, 0) 58%);
    pointer-events: none;
    z-index: 0;

}

/* STEP tag */
.hemosomes-step-tag {
    position: absolute;
    right: 6px;
    /* 필요시 미세조정 */
    bottom: -8px;
    /* 버블과 겹치게 살짝 내려놓음 */
    width: 170px;
    height: 115px;
    overflow: visible;
    z-index: 2;
    /* 이미지/버블 위 */
    pointer-events: none;
}

.hemosomes-step-tag path {
    fill: none;
    stroke: none;
    /* 디버그시 rgba(0,0,0,.2) 로 확인 가능 */
}

.hemosomes-step-text {
    font-family: "Pretendard", sans-serif;
    font-weight: 700;
    font-size: 24px;
    fill: #2b2b2b;
    letter-spacing: .5px;
}

/* Caption */
.hemosomes-step-caption {
    margin: 0;
    font-family: "Pretendard", sans-serif;
    font-weight: 200;
    font-size: 24px;
    line-height: 1.55;
    color: #222;
    opacity: 0;
    transform: translateY(8px);
}

/* Note */
.hemosomes-step-note {
    margin-top: 62px;
    text-align: right;
    font-family: "Pretendard", sans-serif;
    font-weight: 200;
    font-size: 16px;
    color: #C8C8C8;
}

/* in-view 시 순차 페이드인 (01 → 04) */
.hemosomes-step-section.is-inview .hemosomes-step-item:nth-child(1) .hemosomes-step-caption {
    animation: fadeUp .6s ease forwards .12s;
}

.hemosomes-step-section.is-inview .hemosomes-step-item:nth-child(2) .hemosomes-step-caption {
    animation: fadeUp .6s ease forwards .24s;
}

.hemosomes-step-section.is-inview .hemosomes-step-item:nth-child(3) .hemosomes-step-caption {
    animation: fadeUp .6s ease forwards .36s;
}

.hemosomes-step-section.is-inview .hemosomes-step-item:nth-child(4) .hemosomes-step-caption {
    animation: fadeUp .6s ease forwards .48s;
}

/* 모션 최소화 환경 */
@media (prefers-reduced-motion: reduce) {
    .hemosomes-step-caption {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}






.prp-compare-section {
    --blue-strong: #80A8F2;
    /* 가운데 진한 파랑 */
    --blue-soft: #C1CFE6;
    /* 양옆 연한 파랑 */
    --text-dark: #1d1d1f;

    --font-serif: 'Noto Serif KR', serif;
    --font-sans: 'Pretendard', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
}

/* ===== Layout ===== */
.prp-compare-section {
    padding: 80px 20px;
    background: #fff;
}

.prp-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== Section Title ===== */
.prp-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 36px;
    color: var(--text-dark);
}

.prp-title .title-left,
.prp-title .title-right {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.3;
    margin: 0;
}

.prp-title .title-vs {
    font-family: var(--font-sans);
    font-weight: 200;
    font-size: 40px;
    letter-spacing: 0.04em;
}

.center-head-text {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    text-align: left;
}

.right-head-text {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    text-align: left;
    color: #fff;
}

.prp-grid {
    display: grid;
    grid-template-columns: 260px 1fr 280px;
    grid-template-rows: 90px repeat(5, auto);
    grid-auto-rows: unset;
    gap: 0;
    position: relative;
    background: linear-gradient(#fff, #fff) padding-box;
}

.prp-grid .col-head {
    display: flex;
    align-items: center;
    padding: 0 22px;
    background: var(--blue-soft);
    border: none;
    border-radius: 0;
}

.prp-grid .center-head {
    background: var(--blue-strong);
    align-self: stretch;
    min-height: 90px;
    z-index: 2;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.prp-grid .col-left.col-head,
.prp-grid .col-right.col-head {
    height: 60px;
    align-self: end;
}

/* ===== 본문 셀 ===== */
.prp-grid>.row-label,
.prp-grid>.row-center,
.prp-grid>.row-right {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background: #fff;
}

.prp-grid>.row-label {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 24px;
    color: #2a384a;
}

.prp-grid>.row-center {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 24px;
    color: #2c2c2c;
    position: relative;
    z-index: 1;
    border: none;
    border-left: 1px solid #80A8F2;
    border-right: 1px solid #80A8F2;
}

.prp-grid>.row-right {
    font-family: var(--font-sans);
    font-weight: 200;
    font-size: 24px;
    color: #4a4a4a;
}

.prp-grid .row-center.last-row {
    border-bottom: 1px solid #80A8F2 !important;
    border-bottom-left-radius: 18px !important;
    border-bottom-right-radius: 18px !important;
}

.prp-grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% - 285px);
    /* 중앙+우측 컬럼 경계 위치 */
    width: 1px;
    pointer-events: none;
    box-shadow: 8px 0 16px rgb(0, 0, 0);
}

/* === 추가: 가운데 컬럼 하단 그림자 === */
.prp-grid::before {
    content: "";
    position: absolute;
    left: 260px;
    /* 좌측 컬럼 너비만큼 띄움 */
    right: 280px;
    /* 우측 컬럼 너비만큼 띄움 */
    bottom: 5px;
    height: 1px;
    pointer-events: none;
    box-shadow: 0 6px 12px rgb(0, 0, 0);
}

/* 반응형 */
@media (max-width: 980px) {
    .prp-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .col-left.col-head {
        display: none;
    }

    .col-right.col-head {
        display: none;
    }

    .center-head {
        border-radius: 14px;
    }

    .prp-grid>.row-label,
    .prp-grid>.row-right {
        border: none;
        padding-top: 10px;
        padding-bottom: 6px;
        color: #6b7a90;
        font-size: 18px;
    }

    .prp-grid>.row-center {
        border: none;
        font-size: 20px;
        margin-bottom: 14px;
        border-radius: 12px;
        box-shadow: none;
    }

    .prp-grid .center-head {
        box-shadow: 0 10px 24px rgba(30, 57, 92, 0.12);
    }

    .prp-grid>.row-center:nth-last-child(2) {
        border-bottom: 1px solid #80A8F2;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        box-shadow: 0 10px 24px rgba(30, 57, 92, 0.12);
    }

    .prp-title .title-left,
    .prp-title .title-right {
        font-size: 28px;
    }

    .prp-title .title-vs {
        font-size: 30px;
    }
}

/* === 추가: synergy-final-section 스타일 === */
.synergy-final-section {
    --dot-blue: #6FA4F4;
    --card-blue: #C1CFE6;
    --title: #1D1D1F;

    --font-serif: "Dream Orphans", "Dream Orphans Regular", serif;
    --font-sans: "Pretendard", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;

    position: relative;
    background: #fff;
    padding: 80px 20px 100px;
}

.synergy-final-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* === 추가: 상단 타이틀 영역 === */
.synergy-final-head {
    text-align: center;
    margin-bottom: 40px;
    color: var(--title);
    position: relative;
}

.synergy-final-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 10px;
}

.synergy-final-sub {
    font-family: var(--font-sans);
    font-weight: 200;
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
}

.synergy-final-body {
    position: relative;
}

.synergy-final-body::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    border-left: 2px dashed var(--dot-blue);
}

/* === 추가: 공통 행 레이아웃 === */
.synergy-final-row {
    position: relative;
    margin: 60px 0 200px 0;
    display: flex;
    align-items: center;
}

/* 첫번째 블록: 이미지 왼쪽 */
.synergy-final-row-olidia {
    justify-content: flex-start;
}

.synergy-final-row-olidia .synergy-final-img {
    position: absolute;
    left: -80px;
    width: 300px;
    z-index: 2;
}

.synergy-final-row-olidia .synergy-final-card {
    width: 100%;
    padding: 40px 100px;
    opacity: 0;
    transform: translateX(-60px) rotateY(-15deg);
    transform-origin: left center;
    will-change: transform, opacity;
}

/* 두번째 블록: 이미지 오른쪽 */
.synergy-final-row-exosome {
    justify-content: flex-end;
}

.synergy-final-row-exosome .synergy-final-img {
    position: absolute;
    right: -120px;
    z-index: 2;
}

.synergy-final-row-exosome .synergy-final-card {
    width: 100%;
    padding: 40px 32px;
    padding-right: 120px;
    text-align: right;
    opacity: 0;
    transform: translateX(60px) rotateY(15deg);
    transform-origin: right center;
    will-change: transform, opacity;
}

.synergy-final-img img {
    height: auto;
    display: block;
    margin-bottom: 50px;
}

.synergy-final-row-olidia .synergy-final-img img {
    width: 60%;
}

/* === 수정: 두 번째(Exosome) 이미지 === */
.synergy-final-row-exosome .synergy-final-img img {
    width: 100%;
}

/* === 추가: 카드 === */
.synergy-final-card {
    background: var(--card-blue);
    border-radius: 10px;
}

.synergy-final-name {
    position: absolute;

    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 96px;
    line-height: 1;
    margin: 0 0 8px;
    color: #000;
}

.synergy-final-row-olidia .synergy-final-name {
    top: -50px;
}

.synergy-final-row-exosome .synergy-final-name {
    top: -50px;
    right: 120px;
}

.synergy-final-desc {
    font-family: var(--font-sans);
    font-weight: 200;
    font-size: 24px;
    line-height: 1.8;
    margin: 0;
    color: #1f2a3a;
}

/* === 추가: 하단 카피 === */
.synergy-final-bottom-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    /* 카드 크기만큼만 감싸도록 */
}

.synergy-final-bottom {
    margin-top: 70px;
    display: flex;
    justify-content: center;
}

.synergy-final-bottom-card {
    background: var(--card-blue);
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    width: 100%;
    z-index: 1;
    /* 텍스트는 항상 위 */
}

.synergy-final-bottom-wrap::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 120px;
    background: var(--card-blue);
    border-radius: 60px;
    z-index: 0;
    /* 카드 배경과 같은 레벨 */
}

.synergy-final-bottom-line1 {
    font-family: var(--font-sans);
    font-weight: 200;
    font-size: 36px;
    line-height: 1.5;
    color: #243447;
}

.synergy-final-bottom-line2 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.4;
    margin: 0;
    color: #000;
}

.synergy-final-row.in-view .synergy-final-card {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
    transition: transform 2s cubic-bezier(.25, .8, .25, 1),
        opacity 2s ease-out;
}

.synergy-final-row-exosome.in-view .synergy-final-card {
    transition-delay: 80ms;
}

/* === 추가: 반응형 === */
@media (max-width: 980px) {
    .synergy-final-section {
        padding: 60px 16px 80px;
    }

    .synergy-final-row-olidia,
    .synergy-final-row-exosome {
        flex-direction: column;
        gap: 18px;
    }

    .synergy-final-row-olidia .synergy-final-img,
    .synergy-final-row-exosome .synergy-final-img {
        position: relative;
        left: auto;
        right: auto;
        width: 100%;
        max-width: 300px;
    }

    .synergy-final-row-olidia .synergy-final-card,
    .synergy-final-row-exosome .synergy-final-card {
        width: 100%;
        margin: 0;
        padding: 28px 32px;
        line-height: 1;
    }

    .synergy-final-name {
        font-size: 64px;
    }

    .synergy-final-desc {
        font-size: 20px;
        line-height: 1.7;
    }

    .synergy-final-bottom-line1,
    .synergy-final-bottom-line2 {
        font-size: 26px;
    }
}