/* sss 랜딩페이지 seciton3 스타일 코드 */

.section_3 {
  background: #fff;
  padding: 160px 0;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.section_3_subtitle {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px; /* 100% */
  letter-spacing: -1.08px;
  background: linear-gradient(90deg, #313743 0%, #899dc8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 4px;
}

.section_3_box_container {
  display: grid;
  flex-direction: column;
  gap: 24px;
}

/* 섹션3 밑에 표 부분 스타일 */
.section3_bottom_container {
  display: flex;
  flex-direction: column;
}
/* 첫번쨰 박스 부분분 */
.first_box_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.first_text_box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.first_text_box_top {
  border-radius: 8px;
  background: #333;
  width: 440px;
  height: 64px;
  flex-shrink: 0;
  /* 박스속 글자 스타일 */
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  letter-spacing: -0.72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.first_text_box_bottom {
  width: 440px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1.5px solid #f14d4d;
  background: #fff7f7;
  color: #313743;
  text-align: center;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55; /* 100% */
  letter-spacing: -0.72px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text_red {
  color: #f14d4d;
  font-weight: 700;
}

.first_text_box_area1 {
  position: relative; /* 자식의 absolute 기준 */
}

.first_text_box_area2 {
  position: relative; /* 자식의 absolute 기준 */
}

.first_text_box_area3 {
  position: relative; /* 자식의 absolute 기준 */
}

.section3_arrow1,
.section3_arrow2,
.section3_arrow3 {
  position: absolute;
  left: 50%;
  bottom: -108px; /* 박스 아래로 내리고 싶을 때 */
  transform: translateX(-50%);
  height: auto;
  pointer-events: none;
}
/*  */
.third_box_container {
  padding-top: 140px;
}

.last_box_container {
  margin-top: -4px;
  width: 100%;
  height: 104px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1.5px solid #0058ff;
  background: #f2f7ff;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #0058ff;
  text-align: center;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
  letter-spacing: -0.72px;
}

.text_bold {
  font-weight: 700;
}

/* 섹션3 애니메이션용 초기 상태 */
#section_3_text_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s, transform 0.2s;
}
#section3_first_box_container {
  opacity: 0;
  transform: translateY(-80px);
  transition: opacity 0.2s, transform 0.2s;
}

/* 화살표 숨기기 (초기상태) */
.section3_arrow1,
.section3_arrow2,
.section3_arrow3 {
  opacity: 1;
  clip-path: inset(0 0 100% 0); /* 위에서 아래로 숨김 */
  transition: clip-path 0.5s;
}

#section3_third_box_container {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.2s, transform 0.2s;
}

#section3_last_box_container {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.2s, transform 0.2s;
}