.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;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInFromRight 1s ease-out 0.7s forwards;
}

.description-main,
.description-sub {
  font-family: "Noto Serif KR", serif;
  font-weight: 200;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin: 0;
  word-break: keep-all;
}

@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: 768px) {
  .body-sculpture-section {
    min-height: 100vh;
    background-position: 70% center;
    padding: 40px 0;
  }

  .body-sculpture-container {
    height: auto;
    min-height: 100vh;
    transform: translateX(0);
    padding: 0 20px;
    flex-direction: column;
    justify-content: center;
  }

  .body-sculpture-vertical-text {
    position: static;
    transform: none;
    font-size: 38px;
    margin-bottom: 480px;
    text-align: center;
    order: 1;
  }

  .body-sculpture-content {
    max-width: 100%;
    order: 2;
    margin-bottom: 30px;
  }

  .body-sculpture-title {
    font-size: 24px;
    margin: 0 0 20px;
    text-align: center;
    animation: none;
    opacity: 1;
    transform: translateX(0px);
  }

  .body-sculpture-description {
    gap: 20px;
    text-align: center;
    animation: none;
    opacity: 1;
    transform: translateX(0px);
  }

  .description-main,
  .description-sub {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
  }

  .description-main br,
  .description-sub br {
    display: none;
  }
}

/*=== 바디주사 효과 영역 ===*/
/* Body Sculpting Section */
.body-sculpting-section {
  background-color: #ffffff;
  padding: 80px 0 0 0;
  min-height: 800px;
}

.body-sculpting-section .container {
  max-width: 80vw;
  margin: 0 auto;
}

/* Header */
.body-sculpting-section .header {
  text-align: center;
  margin-bottom: 100px;
}

.body-sculpting-section .subtitle {
  font-size: 24px;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: "Pretendard", sans-serif;
}

.body-sculpting-section .main-title {
  font-size: 32px;
  font-weight: 500;
  color: #000;
  letter-spacing: -1px;
  font-family: "Noto Serif 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;
  margin-bottom: 80px;
  width: 80vw;
}

/* 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 .process-container.animate-in .connecting-line {
  opacity: 1;
}

.body-sculpting-section .step-number {
  font-size: 48px;
  font-weight: 700;
  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;
  z-index: 1;
}

.body-sculpting-section .step-icon img {
  width: auto;
  height: 150px;
  width: 140px;
  object-fit: contain;
  z-index: 1;
}

.body-sculpting-section .process-step:nth-child(1) .step-icon img {
  margin-right: 15px;
  margin-bottom: 15px;
}

.body-sculpting-section .process-step:nth-child(2) .step-icon img {
  margin-left: 10px;
}

.body-sculpting-section .process-step:nth-child(3) .step-icon img {
  margin-right: -30px;
}

.body-sculpting-section .step-dot {
  width: 8px;
  height: 8px;
  background-color: #6b9bd1;
  border-radius: 50%;
  margin: 20px auto;
  position: relative;
  z-index: 1;
}

.body-sculpting-section .step-description {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  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: 14.66%;
  right: 14.66%;
  height: 1px;
  background-color: #698fc7;
  border-style: dashed;
  border-width: 1px 0 0 0;
  background: none;
  border-color: #698fc7;
  z-index: 2;
}

/* Footer Note */
.body-sculpting-section .footer-note {
  text-align: right;
  margin-top: 120px;
}

.body-sculpting-section .footer-note p {
  font-size: 14px;
  color: #999;
  font-weight: 300;
  letter-spacing: 0.2px;
  font-family: "Pretendard", sans-serif;
}

@media (max-width: 768px) {
  .body-sculpting-section {
    padding: 40px 0 0 0;
    min-height: auto;
  }

  .body-sculpting-section .container {
    max-width: 90%;
    padding: 0 20px;
  }

  /* Header */
  .body-sculpting-section .header {
    margin-bottom: 60px;
  }

  .body-sculpting-section .subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .body-sculpting-section .main-title {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  /* Process Container */
  .body-sculpting-section .process-container {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
    align-items: center;
  }

  /* Process Step */
  .body-sculpting-section .process-step {
    max-width: 280px;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .body-sculpting-section .step-number {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }

  .body-sculpting-section .step-icon {
    margin: 20px 0 15px 0;
    height: 60px;
  }

  .body-sculpting-section .step-icon img {
    height: 100px;
    width: 100px;
  }

  .body-sculpting-section .process-step:nth-child(1) .step-icon img {
    margin-right: 5px;
  }

  .body-sculpting-section .step-dot {
    display: none;
  }

  .body-sculpting-section .step-description {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.2px;
    padding: 0 5px;
    margin-top: 20px;
  }

  /* 연결선 숨기기 */
  .body-sculpting-section .connecting-line {
    display: none;
  }

  /* Footer Note */
  .body-sculpting-section .footer-note {
    text-align: center;
    margin-top: 60px;
  }

  .body-sculpting-section .footer-note p {
    font-size: 12px;
  }
}

/*=== 바디조각 부위 ===*/
.body-area-section {
  background-color: #ffffff;
  padding: 80px 0;
  min-height: 800px;
}

.body-area-section .body-area-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.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;
}

.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: 1px dashed #83a6e8;
  z-index: 1;
  transform: translateY(-50%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.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;
}

.body-area-section .body-area-image {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: visible;
  margin: 0 auto 30px auto;
  position: relative;
  background-color: transparent;
  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: 1px dashed #83a6e8;
  z-index: 1;
  clip-path: none;
}

.body-area-section .body-area-item:nth-child(2) .body-area-image::before {
  clip-path: polygon(0% 55%, 100% 55%, 100% 100%, 0% 100%);
}

.body-area-section .body-area-item:nth-child(3) .body-area-image::before {
  clip-path: polygon(0% 0%, 100% 0%, 100% 55%, 0% 55%);
}

.body-area-section .body-area-item:nth-child(4) .body-area-image::before {
  clip-path: polygon(0% 55%, 100% 55%, 100% 100%, 0% 100%);
}

.body-area-section .body-area-item:nth-child(5) .body-area-image::before {
  clip-path: polygon(0% 0%, 100% 0%, 100% 55%, 0% 55%);
}

.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;
}

@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;
  }

  .body-area-section .body-area-item:nth-child(2) .body-area-image::before,
  .body-area-section .body-area-item:nth-child(3) .body-area-image::before,
  .body-area-section .body-area-item:nth-child(4) .body-area-image::before,
  .body-area-section .body-area-item:nth-child(5) .body-area-image::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  .body-area-section .body-area-item {
    opacity: 1;
    transform: none;
  }
}

/* 추천 고객 영역 */
.body-sp-recommended-types-section {
  width: 100%;
  background: #ffffff;
  padding: 120px 0;
}

.body-sp-recommended-types-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.body-sp-recommended-types-header {
  text-align: center;
  margin-bottom: 80px;
}

.body-sp-recommended-types-subtitle {
  font-family: "Pretendard", sans-serif;
  font-weight: 100;
  font-size: 20px;
  color: #666;
  margin: 0 0 20px;
  line-height: 1.5;
}

.body-sp-recommended-types-title {
  font-family: "Dream Orphans", serif;
  font-weight: 400;
  font-size: 64px;
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.body-sp-recommended-types-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.body-sp-recommended-types-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -40px;
  bottom: -40px;
  width: 1px;
  border-left: 1px dashed #6fa4f4;
  transform: translateX(-50%);
  z-index: 1;
}

.body-sp-recommended-type-item {
  width: 100%;
  padding: 25px 40px;
  border: 1px solid #d3d3d3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.6s ease;
  opacity: 1;
  transform: translateY(0);
}

.body-sp-recommended-type-text {
  font-family: "Pretendard", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #333;
  text-align: center;
  line-height: 1.5;
  word-break: keep-all;
}

/* 768px 이하 모바일 */
@media (max-width: 768px) {
  .body-sp-recommended-types-section {
    padding: 60px 0;
  }

  .body-sp-recommended-types-container {
    min-width: auto;
    margin: 0;
    padding: 0 20px;
  }

  .body-sp-recommended-types-header {
    margin-bottom: 50px;
  }

  .body-sp-recommended-types-subtitle {
    font-size: 16px;
    margin: 0 0 15px;
  }

  .body-sp-recommended-types-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .body-sp-recommended-types-list {
    gap: 25px;
  }

  /* .body-sp-recommended-types-list::before {
    display: none;
  } */

  .body-sp-recommended-type-item {
    padding: 20px 14px;
    border-radius: 8px;
    margin: 0;
  }

  .body-sp-recommended-type-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

.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;
  overflow: hidden;
}

.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 {
  width: 70%;
  min-width: 1400px;
  position: relative;
  z-index: 1;
  margin: auto;
}

.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;
  word-break: keep-all;
}

.body-qna-answer .bold {
  font-weight: 600;
}

.body-qna-answer {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 25px;
  border-radius: 47px 0 47px 47px;
  line-height: 1.6;
  margin-left: auto;
  /* max-width: 80%; */
  min-width: 30vw;
}

.body-qna-item:nth-child(1) .body-qna-answer {
  margin-left: 550px;
}

.body-qna-item:nth-child(2) .body-qna-answer {
  margin-left: 400px;
}

.body-qna-item:nth-child(3) .body-qna-answer {
  margin-left: 300px;
}

.body-qna-item:nth-child(4) .body-qna-answer {
  margin-left: 600px;
}

/* 768px 이하 모바일 반응형 스타일 */
@media screen and (max-width: 768px) {
  .body-qna-section {
    padding: 60px 0;
  }

  .body-qna-bubble-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
  }

  .body-qna-bubble-2 {
    width: 150px;
    height: 150px;
    top: 100px;
    right: -50px;
  }

  .body-qna-container {
    width: 90%;
    min-width: auto;
    max-width: none;
    padding: 0 20px;
  }

  .body-qna-header {
    margin-bottom: 40px;
  }

  .body-qna-title {
    font-size: 28px;
    margin: 0 0 15px;
  }

  .body-qna-subtitle {
    font-size: 16px;
  }

  .body-qna-list {
    gap: 30px;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-size: 100% 100%;
  }

  .body-qna-item {
    gap: 15px;
  }

  .body-qna-question {
    font-size: 18px;
    padding: 0 10px;
  }

  .body-qna-answer {
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 20px 0 20px 20px;
    margin-left: 0;
    margin-left: auto;
    max-width: 100%;
    min-width: auto;
    width: fit-content;
    word-break: keep-all;
  }

  .body-qna-answer br {
    display: none;
  }

  /* 모바일에서는 모든 답변의 margin-left를 통일 */
  .body-qna-item:nth-child(1) .body-qna-answer,
  .body-qna-item:nth-child(2) .body-qna-answer,
  .body-qna-item:nth-child(3) .body-qna-answer,
  .body-qna-item:nth-child(4) .body-qna-answer {
    margin-left: auto;
  }
}
