/* sss 랜딩페이지 seciton6 스타일 코드 */
.section_7 {
  width: 100%;
  background: linear-gradient(180deg, #313743 0%, #0a46b6 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  padding: 160px 0px;
}

.section_7_text_container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
}

.section_7_left_align .section_title,
.section_7_left_align .section_7_subtitle,
.section_7_left_align .section_text {
  text-align: left !important;
  align-items: flex-start !important;
}

.section_7_title {
  color: #ffffc0;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  letter-spacing: 0.48px;
  text-align: left !important;
  align-items: flex-start !important;
}

.section_7_subtitle {
  color: #fff;
  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 100% */
  letter-spacing: -1.08px;
}

.section_7_text {
  color: #f6f7fa;
  width: 714px;
}

.section_7_btn_container {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: center;
  box-sizing: border-box;
}

/* 버튼 박스 부분 */
.section_7_btn_box {
  width: 424px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  align-items: flex-start;
  text-align: left;
}

.section_7_btn_box > h1 {
  color: #f6f7fa;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: -0.72px;
}

.section_7_btn_box > p {
  color: #f6f7fa;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 100% */
  letter-spacing: -0.6px;
}

.price_text {
  margin-top: 4px;
  display: flex;
  gap: 8px;
  color: #f6f7fa;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px; /* 100% */
  letter-spacing: -0.48px;
  align-items: baseline;
}

.price_text_bold {
  font-size: 36px;
  font-weight: 600;
  line-height: 36px; /* 100% */
  letter-spacing: -1.08px;
}

/* 버튼 스타일 */
.section_7_btn {
  margin-top: 20px;
  width: 100%;
  padding: 20px 0px;
  border-radius: 16px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  /* 버튼 기본적인 요소 제거 */
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* 버튼 속 글자 스타일 */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.6px;
}

.btn_blue {
  background-color: #0058ff;
  color: #fff;
}
.btn_blue:hover {
  background-color: #004fe6;
  color: #fff;
}

.btn_white {
  background-color: rgba(255, 255, 255);
  color: #313743;
}
/* 호버시 투명도 80% */
.btn_white:hover {
  background-color: rgba(255, 255, 255, 0.8); /* 흰색 + 80% 불투명 */
  color: #313743;
}

.btn_grey {
  cursor: default;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.6px;
  background: #75777d;
  pointer-events: none;
}

/* 섹션 6 애니메이션용 초기 상태 */
/* #section_7_text_container,
#section_7_btn_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s, transform 0.2s;
} */
#section_7_text_container,
#section_7_btn_container,
#section_7_standard_box,
#section_7_business_box {
  opacity: 0;
  transform: translateY(80px);
}
