.body-sculpture-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('/home_assets/img/main/jab_center/body_sculpture_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body-sculpture-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-120px);
}

.body-sculpture-vertical-text {
    position: absolute;
    left: -2vw;
    top: 52%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    font-family: 'Dream Orphans', serif;
    font-weight: 400;
    font-size: clamp(35px, 4vw, 60px);
    color: #333;
    white-space: nowrap;
    z-index: 2;
}

.body-sculpture-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 650px;
    z-index: 2;
}

.body-sculpture-title {
    font-family: 'JNE Bareun OTF', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #333;
    margin: 0 0 30px;
    line-height: 1.4;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInFromRight 1s ease-out 0.5s forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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


.body-sculpture-description {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.description-main,
.description-sub {
    font-family: 'Noto Serif KR', serif;
    font-weight: 200;
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

@media (min-width: 2560px) {
    .body-sculpture-container {
        transform: translateX(-140px);
    }

    .body-sculpture-vertical-text {
        left: -14vw;
        font-size: clamp(45px, 3.5vw, 90px);
    }

    .body-sculpture-content {
        max-width: 800px;
    }

    .body-sculpture-title {
        font-size: 40px;
        margin: 0 0 40px;
    }

    .body-sculpture-description {
        gap: 30px;
    }

    .description-main,
    .description-sub {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .body-sculpture-vertical-text {
        font-size: 70px;
        left: 60px;
    }

    .body-sculpture-title {
        font-size: 32px;
    }

    .description-main,
    .description-sub {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .body-sculpture-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .body-sculpture-container {
        height: auto;
        flex-direction: column;
        gap: 40px;
    }

    .body-sculpture-vertical-text {
        position: static;
        transform: none;
        font-size: 48px;
        text-align: center;
    }

    .body-sculpture-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .description-main,
    .description-sub {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .body-sculpture-vertical-text {
        font-size: 36px;
    }

    .body-sculpture-title {
        font-size: 24px;
    }

    .description-main,
    .description-sub {
        font-size: 14px;
    }
}

/*=== 바디주사 효과 영역 ===*/
/* Body Sculpting Section */
.body-sculpting-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.body-sculpting-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.body-sculpting-section .header {
    text-align: center;
    margin-bottom: 100px;
}

.body-sculpting-section .subtitle {
    font-size: 16px;
    color: #698FC7;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

.body-sculpting-section .main-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    letter-spacing: -1px;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

/* Process Container */
.body-sculpting-section .process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

/* Process Step - 초기 상태 */
.body-sculpting-section .process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* 스크롤 애니메이션 활성화 시 순차적 딜레이 */
.body-sculpting-section .process-container.animate-in .process-step:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.body-sculpting-section .process-container.animate-in .process-step:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.body-sculpting-section .process-container.animate-in .process-step:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* 연결선 애니메이션 */
.body-sculpting-section .connecting-line {
    position: absolute;
    top: 192px;
    left: 13.66%;
    right: 13.66%;
    height: 1px;
    background-color: #698FC7;
    border-style: dashed;
    border-width: 1px 0 0 0;
    background: none;
    border-color: #698FC7;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease-out 0.8s;
}

.body-sculpting-section .process-container.animate-in .connecting-line {
    opacity: 1;
}

.body-sculpting-section .step-number {
    font-size: 48px;
    font-weight: 300;
    color: #6B9BD1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    font-family: 'Pretendard', sans-serif;
}

.body-sculpting-section .step-icon {
    margin: 30px 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.body-sculpting-section .step-icon img {
    width: auto;
    height: 60px;
    max-width: 80px;
    object-fit: contain;
}

/* 개별 아이콘 마진 조정 */
.body-sculpting-section .process-step:nth-child(1) .step-icon {
    margin: 30px 0 20px 0;
}

.body-sculpting-section .process-step:nth-child(2) .step-icon {
    margin: 30px 0 20px 0;
}

.body-sculpting-section .process-step:nth-child(3) .step-icon {
    margin: 30px 0 20px 0;
}

.body-sculpting-section .step-dot {
    width: 8px;
    height: 8px;
    background-color: #6B9BD1;
    border-radius: 50%;
    margin: 20px auto;
    position: relative;
    z-index: 3;
}

.body-sculpting-section .step-description {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    letter-spacing: -0.3px;
    word-break: keep-all;
    padding: 0 10px;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    margin-top: 30px;
}

/* 점들을 연결하는 선 */
.body-sculpting-section .connecting-line {
    position: absolute;
    top: 192px;
    left: 13.66%;
    right: 13.66%;
    height: 1px;
    background-color: #698FC7;
    border-style: dashed;
    border-width: 1px 0 0 0;
    background: none;
    border-color: #698FC7;
    z-index: 1;
}

/* Footer Note */
.body-sculpting-section .footer-note {
    text-align: right;
    margin-top: 60px;
}

.body-sculpting-section .footer-note p {
    font-size: 14px;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.2px;
    font-family: 'Pretendard', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .body-sculpting-section {
        padding: 60px 0;
    }

    .body-sculpting-section .container {
        padding: 0 20px;
    }

    .body-sculpting-section .main-title {
        font-size: 28px;
    }

    .body-sculpting-section .process-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .body-sculpting-section .connecting-line {
        display: none;
    }

    .body-sculpting-section .step-number {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .body-sculpting-section .step-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .body-sculpting-section .footer-note {
        text-align: center;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .body-sculpting-section {
        padding: 40px 0;
    }

    .body-sculpting-section .container {
        padding: 0 15px;
    }

    .body-sculpting-section .main-title {
        font-size: 24px;
    }

    .body-sculpting-section .subtitle {
        font-size: 14px;
    }

    .body-sculpting-section .step-description {
        font-size: 14px;
        padding: 0 15px;
    }

    .body-sculpting-section .step-icon img {
        height: 50px;
    }
}

/*=== 바디조각 부위 ===*/
/* Body Area Section */
.body-area-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.body-area-section .body-area-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.body-area-section .body-area-header {
    text-align: center;
    margin-bottom: 80px;
}

.body-area-section .body-area-main-title {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    font-family: 'Noto Serif KR', serif;
    letter-spacing: -0.5px;
}

/* Area Container */
.body-area-section .body-area-process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* 배경 점선 */
.body-area-section .body-area-background-line {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    height: 1px;
    border-top: 2px dashed #83A6E8;
    z-index: 1;
    transform: translateY(-50%);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Area Item */
.body-area-section .body-area-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.body-area-section .body-area-process-container.animate-in .body-area-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.body-area-section .body-area-process-container.animate-in .body-area-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.body-area-section .body-area-process-container.animate-in .body-area-item:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.body-area-section .body-area-process-container.animate-in .body-area-item:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Area Image 기본 스타일 */
.body-area-section .body-area-image {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: visible;
    margin: 0 auto 30px auto;
    position: relative;
    background-color: #f8f9fa;
    padding: 5px;
}

.body-area-section .body-area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 50%;
}

/* 모든 이미지에 기본 테두리 (숨김) */
.body-area-section .body-area-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 3px dashed #83A6E8;
    z-index: 1;
    clip-path: none;
}

/* 1번째 이미지 (홀수) - 아래쪽 반원 테두리 */
.body-area-section .body-area-item:nth-child(2) .body-area-image::before {
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
}

/* 2번째 이미지 (짝수) - 위쪽 반원 테두리 */
.body-area-section .body-area-item:nth-child(3) .body-area-image::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
}

/* 3번째 이미지 (홀수) - 아래쪽 반원 테두리 */
.body-area-section .body-area-item:nth-child(4) .body-area-image::before {
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
}

/* 4번째 이미지 (짝수) - 위쪽 반원 테두리 */
.body-area-section .body-area-item:nth-child(5) .body-area-image::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
}

/* Area Label */
.body-area-section .body-area-label {
    background-color: #83A6E8;
    color: white;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Pretendard', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    display: inline-block;
    letter-spacing: -0.3px;
    min-width: 80px;
    text-align: center;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8);
}

/* 배경선 애니메이션 */
.body-area-section .body-area-background-line {
    opacity: 0;
    transition: opacity 0.8s ease-out 1s;
}

.body-area-section .body-area-process-container.animate-in .body-area-background-line {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .body-area-section {
        padding: 60px 0;
    }

    .body-area-section .body-area-container {
        padding: 0 20px;
    }

    .body-area-section .body-area-main-title {
        font-size: 28px;
    }

    .body-area-section .body-area-process-container {
        flex-direction: column;
        gap: 40px;
    }

    .body-area-section .body-area-background-line {
        display: none;
    }

    .body-area-section .body-area-image {
        width: 200px;
        height: 200px;
    }

    .body-area-section .body-area-label {
        font-size: 18px;
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .body-area-section .body-area-main-title {
        font-size: 24px;
    }

    .body-area-section .body-area-image {
        width: 180px;
        height: 180px;
    }

    .body-area-section .body-area-label {
        font-size: 16px;
        padding: 8px 20px;
    }
}

/*=== 바디주사 QNA 영역 ===*/
.body-qna-section {
    width: 100%;
    background: #ffffff url('/home_assets/img/main/jab_center/ear_qna_bottom_background.png') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    position: relative;
}

.body-qna-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
}

.body-qna-bubble-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    left: 50px;
    background: linear-gradient(340deg, rgba(131, 172, 232, 0.4) 6%, rgba(255, 255, 255, 0) 91%);
}

.body-qna-bubble-2 {
    width: 200px;
    height: 200px;
    top: 200px;
    right: 350px;
    z-index: 0;
    background: linear-gradient(240deg, rgba(131, 172, 232, 0.4) 6%, rgba(255, 255, 255, 0) 91%);
}

.body-qna-container {
    min-width: 1200px;
    margin: 0 18vw;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.body-qna-header {
    text-align: center;
    margin-bottom: 80px;
}

.body-qna-title {
    font-family: 'Dream Orphans', serif;
    font-weight: 400;
    font-size: 48px;
    color: #000000;
    margin: 0 0 20px;
    line-height: 1.2;
}

.body-qna-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: #000000;
    margin: 0;
    line-height: 1.5;
}

.body-qna-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #ffffff url('/home_assets/img/main/jab_center/ear_content_background.png') no-repeat center center;
    background-size: cover;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.body-qna-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.body-qna-question {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    line-height: 1.5;
}

.body-qna-answer {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 40px;
    border-radius: 30px 0 30px 30px;
    line-height: 1.6;
    margin-left: auto;
    max-width: 80%;
    min-width: 30vw;
}

.body-qna-item:nth-child(1) .body-qna-answer {
    margin-left: 300px;
}

.body-qna-item:nth-child(2) .body-qna-answer {
    margin-left: 400px;
}

.body-qna-item:nth-child(3) .body-qna-answer {
    margin-left: auto;
}

.body-qna-item:nth-child(4) .body-qna-answer {
    margin-left: auto;
}

@media (max-width: 768px) {
    .body-qna-section {
        padding: 80px 0;
    }

    .body-qna-container {
        padding: 0 20px;
    }

    .body-qna-header {
        margin-bottom: 60px;
    }

    .body-qna-title {
        font-size: 36px;
    }

    .body-qna-subtitle {
        font-size: 18px;
    }

    .body-qna-list {
        gap: 30px;
    }

    .body-qna-question {
        font-size: 20px;
    }

    .body-qna-answer {
        font-size: 20px;
        padding: 25px 30px;
        max-width: 90%;
    }
}

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

    .body-qna-question {
        font-size: 18px;
    }

    .body-qna-answer {
        font-size: 18px;
        padding: 20px 25px;
        max-width: 95%;
    }
}