/* 마크x 랜딩 섹션 2 스타일 코드 */
/* sss 랜딩페이지 seciton2 스타일 코드 */

.section_2 {
  background-color: #f6f7fa;
  padding: 160px 0px;
  gap: 80px;
}

.section_2_text {
  color: #313743;
  text-align: center;
  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 100% */
  letter-spacing: -1.08px;
}

.section_2_subtext {
  text-align: center;
  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 100% */
  letter-spacing: -1.08px;
  background: linear-gradient(90deg, #434d62 0%, #899dc8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section_2_img_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1520px;
  margin: 0 auto;
}

/* 서비스 카드 리스트 레이아웃 */
.service_card_list {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
  position: relative; /* 기준점 */
}

.service_card_list_disabled {
  /* opacity: 0.5; */
  /* filter: grayscale(1); */
  position: relative;
  z-index: 1;
}
.bg_box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0; /* 또는 원하는 값 */
  width: 100%;
  max-width: 1920px;
  height: 268px;
  z-index: 1;
  flex-shrink: 0;
  background: linear-gradient(
    180deg,
    rgba(246, 247, 250, 0.5) 0%,
    #f6f7fa 100%
  );
  top: 0;
}

/* 서비스 카드 공통 */
.service_card {
  width: 362px;
  /* min-height: 268px; */
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
}

.service_card_disabled {
  background: #f6f7fa;
}

/* 아이콘 */
.service_card_icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_card_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 뱃지 */
.service_card_badge {
  position: absolute;
  top: 24px;
  right: 28px;
  padding: 8px 16px;
  border-radius: 16px;
  /* 글자 스타일 */
  text-align: center;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 100% */
  letter-spacing: -0.48px;
}

.service_card_badge_active {
  background: rgba(255, 86, 148, 0.2);
  color: #e64e85;
}
.service_card_badge_soon {
  color: #e67324;
  background: rgba(255, 128, 40, 0.2);
}

.service_card_badge_disabled {
  background: rgba(221, 255, 71, 0.2);
  color: #b0cb38;
}

/* 타이틀, 설명 */
.service_card_title {
  color: #313743;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  letter-spacing: -0.72px;
  padding-top: 8px;
}
.service_card_desc {
  color: #656e81;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 100% */
  letter-spacing: -0.54px;
}

/* 버튼 */
.service_card_btn {
  margin-top: 6px;
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 36px;
  background-color: #ffffff;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  /* 글자 스타일 */
  background: linear-gradient(270deg, #c7e640 0%, #e67324 50%, #e64e85 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 100% */
  letter-spacing: -0.48px;
}

/* 그라데이션 테두리 효과를 위한 가상 요소 */
.service_card_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 36px;
  padding: 1px;
  background: linear-gradient(90deg, #ff5694 0%, #ff8028 50%, #ddff47 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.service_card_btn:hover {
  color: #fff;
  background: linear-gradient(90deg, #ff5694 0%, #ff8028 50%, #ddff47 100%);
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  -webkit-background-clip: unset;
}
.service_card_btn_soon {
  margin-top: 6px;
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 36px;
  text-align: center;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 100% */
  letter-spacing: -0.48px;
  background: rgba(224, 230, 242, 0.5);
  color: #899dc8;
  cursor: default;
}

.section2_contact_btn {
  width: 360px;
  padding: 20px 68px;
  border-radius: 12px;
  background: #656e81;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  /* 글자 css */
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.6px;

  margin-top: 56px;
}

/* 애니메이션 관련 */

#section_2_text_container,
.section_2_text_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s;
}
#section2_contact_btn {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s, transform 0.2s;
}
#service_card_top_container,
#service_card_bottom_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s, transform 0.2s;
}