@charset "utf-8";

.main_container {
  letter-spacing: -0.1em;
}

/* ******************* 메인 히어로 섹션 ******************* */

.section__hero {
  width: 100%;
  position: relative;
  margin: 100px auto;
}

.section__hero .section__hero__text {
  width: 380px;
}

.section__hero .section__hero__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 400px);
}

.section__hero .section__hero__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section__hero__title {
  padding-top: 87px;
  margin-bottom: 60px;
}

.section__hero__title .section__hero__title__sub {
  font-size: 22px;
  line-height: 40px;
  color: #555;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.section__hero__title h1 {
  font-size: 70px;
  line-height: 96px;
  color: #111;
  font-weight: 600;
}

.section__hero__title h1 .main-color {
  color: #F44336;
  font-size: 70px;
  line-height: 96px;
  font-weight: 600;
}

.section__hero_link_wrap {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.section__hero_link_wrap:hover {
  box-shadow: 0px 0px 10px rgba(244, 67, 54, 0.3);
}

.section__hero_link_wrap p {
  font-size: 16px;
  line-height: 24px;
  color: #6d6d6d;
}

.section__hero_link_wrap .direct_link {
  font-size: 16px;
  color: #F44336;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ******************* 공통 컨텐츠 타이틀 ******************* */

.content__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  position: relative;
  word-break: keep-all;
}

.content__title span {
  color: #F44336;
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
}

.content__title h2 {
  color: #111;
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
}

/* ******************* Usage 섹션 ******************* */

.section__usease {
  margin: 100px auto;
}

.section__usease_tab_wrapper {
  margin-top: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
}

.section__usease_tab_wrapper .section__usease_tab_list {
  width: 170px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section__usease_tab_list .section__usease_tab_item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 26px;
  padding: 12px 24px;
  border-radius: 99px;
  color: #7c7c7c;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.section__usease_tab_list .section__usease_tab_item:hover {
  color: #F44336;
}

.section__usease_tab_list .section__usease_tab_item.active {
  color: #fff;
  background: #F44336;
}

/* 탭 컨텐츠 리팩토링 스타일 */
.section__usease_tab_content_wrapper {
  position: relative;
  width: 100%;
  height: 700px;
}

.section__usease_tab_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: none; /* 기본적으로 애니메이션 없음 */
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section__usease_tab_content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* 나타날 때만 애니메이션 */
}

.tab_content_text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tab_content_text .tab_content_text__title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  color: #000;
}

.tab_content_text .tab_content_text__desc {
  font-size: 20px;
  line-height: 40px;
  color: #8e8e8e;
  font-weight: 400;
}

.tab_content_video_wrap {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* 탭 비디오 스타일 */
.tab_video {
  width: 100%;
  height: auto;
  display: block; /* 항상 표시 */
  border-radius: 20px;
}

/* ******************* Value 섹션 ******************* */

.section__value {
  margin: 40px auto;
  width: 95%;
  padding: 160px 0;
  background: url('../images/gradient_bg.png') no-repeat;
  background-size: cover;
  background-position: bottom;
  border-radius: 40px;
}

.section__value_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section__value .content__title {
  margin-bottom: 80px;
}

.section__value .content__title .content__title__sub {
  color: #fff;
}

.section__value .content__title h2 {
  color: #fff;
}

.section__value .content__title p {
  font-size: 20px;
  line-height: 40px;
  color: #e2e2e2;
}

.section__value_list {
  width: 100%;
}

.section__value_list_inner {
  display: flex;
  width: 100%;
  gap: 80px;
}

.section__value_list_inner .section__value_list_item {
  width: 25%;
  display: flex;
  gap: 36px;
  align-items: center;
  position: relative;
}

.section__value_list_inner .section__value_list_item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #F44336;
}

.section__value_list_item .svg_icon_wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.section__value_list_item .value_item_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section__value_list_item .value_item_label {
  font-size: 16px;
  line-height: 24px;
  color: #e2e2e2;
  font-weight: 400;
}

.section__value_list_item .value_item_number {
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
  font-weight: 600;
}

/* ******************* Main Function 섹션 ******************* */

.section__main_function {
  margin: 100px auto;
}

.section__main_function .content__title {
  margin-bottom: 80px;
}

.section__main_function .content__title p {
  font-size: 20px;
  line-height: 40px;
  color: #aaa;
}

/* 기능 카드 그리드 */
.main_function_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

/* 기능 카드 스타일 */
.function_card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* 카드 이미지 영역 */
.function_card_image {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: auto;
  aspect-ratio: 1 / 1;
}

.function_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 8;
}

/* 카드 콘텐츠 영역 */
.function_card_content {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  background: transparent;
  width: 100%;
  height: 100%;
}

.function_card_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.function_card:hover .function_card_bg {
  opacity: 0.8;
}

/* 카드 제목 */
.function_card_title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

/* 카드 설명 */
.function_card_desc {
  font-size: 15;
  line-height: 24px;
  color: #d4d4d4;
  margin: 0;
}

/* ******************* Price 섹션 ******************* */

.section__price {
  margin: 100px auto;
}

.section__price .content__title {
  margin-bottom: 80px;
}

.section__price .content__title p {
  font-size: 20px;
  line-height: 40px;
  color: #aaa;
}

/* ******************* About 섹션 ******************* */

.section__about {
  margin: 100px auto 200px;
}

.section__about_content {
  margin-top: 80px;
}

/* About 기능 그리드 */
.about_features_grid {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

/* About 기능 아이템 */
.about_feature_item {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* About 아이콘 영역 */
.about_feature_icon {
  margin-bottom: 30px;
  width: 100%;
}

.about_feature_icon .icon_circle {
  width: 80%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}

/* About 콘텐츠 영역 */
.about_feature_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* About 제목 */
.about_feature_title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

/* About 설명 */
.about_feature_desc {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  margin: 0;
}

/* ******************* Review 섹션 ******************* */

.section__review {
  padding: 100px 0;
  background-color: #f8f8f8;
}

.section__review .content__title {
  margin-bottom: 80px;
}

/* Review Swiper 컨테이너 */
.review_swiper_container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.review_swiper {
  width: 100%;
  padding: 20px 0 60px;
}

/* 리뷰 카드 스타일 */
.review_card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 30px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 480px;
}

/* 리뷰 카드 헤더 */
.review_card_header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review_card_avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #666;
  font-size: 18px;
  margin-left: auto;
  overflow: hidden; /* 이미지가 원형 영역을 벗어나지 않도록 */
}

.review_card_avatar .avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 이미지 비율 유지하면서 영역에 맞춤 */
  border-radius: 50%;
}

.review_card_info h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

.review_card_info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* 별점 */
.review_card_rating_wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.review_card_date {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #919191;
}

.review_card_date::after {
  content: '';
  position: absolute;
  left: -12px;
  width: 1px;
  height: 60%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #c8c8c8;
}

.review_card_rating {
  display: flex;
  gap: 4px;
  align-items: center;
}

.review_card_rating .star-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.review_card_text_wrap img {
  margin-bottom: 16px;
}

/* 리뷰 내용 */
.review_card_content {
  font-size: 16px;
  line-height: 28px;
  color: #737373;
  margin: 0;
}

/* 네비게이션 버튼 컨테이너 */
.review_navigation_buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

/* Swiper 네비게이션 버튼 커스텀 */
.section__review .review_swiper_next,
.section__review .review_swiper_prev {
  width: 50px !important;
  height: 50px !important;
  background: #ffffff;
  border-radius: 50% !important;
  color: #F44336 !important;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid #ececec !important;
  position: static !important; /* Swiper 기본 absolute 위치 해제 */
  margin: 0 !important; /* Swiper 기본 마진 제거 */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0 !important;
}

.review_swiper_next:hover,
.review_swiper_prev:hover {
  background: #f7f8f9 !important;
  color: #ffffff !important;
}

.review_swiper_next::after,
.review_swiper_prev::after {
  display: none;
}

/* ******************* FAQ 섹션 ******************* */

.section__faq {
  margin: 100px auto;
}

.section__faq .content__title p {
  font-size: 20px;
  line-height: 40px;
  color: #aaa;
}

/* FAQ 아코디언 스타일 */
.faq_accordion {
  width: 100%;
  margin: 60px auto 0;
}

.faq_item {
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
}

.faq_question {
  padding: 40px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: background-color 0.3s ease;
}

.faq_question h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #333;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 20px;
}

.faq_toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq_item.active .faq_toggle {
  transform: rotate(180deg);
}

.faq_item.active .faq_toggle svg path {
  stroke: #F44336;
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #f9f9f9;
  padding: 0 40px;
}

.faq_item.active .faq_answer {
  max-height: 1000px; /* 더 큰 값으로 설정 */
  padding: 40px 40px;
  border-top: 1px solid #e5e5e5;
}

.faq_answer p {
  font-size: 18px;
  line-height: 28px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

/* FAQ 더보기 버튼 */
.faq_more_btn_wrap {
  text-align: center;
  margin-top: 80px;
}

.faq_more_btn {
  width: 100%;
  max-width: 320px;
  background: #F44336;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ******************* Direct 섹션 ******************* */

.section__direct {
  margin: 0px auto;
  width: 100%;
  padding: 200px 0;
  background: url('../images/gradient_bg2.png') no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section__direct_content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section__direct_content p {
  font-size: 40px;
  line-height: 56px;
  font-weight: 600;
  color: #fff;
}

.section__direct_content a {
  color: #F44336;
  border: 1px solid #F44336;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 95%;
  max-width: 330px;
  margin: 0 auto;
}

.section__direct_content a:hover {
  background: #F44336;
  color: #ffffff;
}

/* ******************* 애니메이션 스타일 ******************* */

/* 히어로 섹션 애니메이션 스타일 */
.hero-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* 히어로 섹션 순차 애니메이션 */
.hero-animate.hero-delay-0 {
  transition-delay: 0.1s;
}

.hero-animate.hero-delay-1 {
  transition-delay: 0.3s;
}

.hero-animate.hero-delay-2 {
  transition-delay: 0.7s;
}

.hero-animate.hero-delay-3 {
  transition-delay: 1.1s;
}

.hero-animate.hero-delay-4 {
  transition-delay: 1.4s;
}

/* 스크롤 애니메이션 스타일 */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.delay-1 {
  transition-delay: 0.3s;
}

/* Value 섹션 내부 콘텐츠 fadeIn */
.section__value .content__title.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section__value .content__title.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section__value .section__value_list.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}

.section__value .section__value_list.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Main Function 섹션 애니메이션 - 지연 시간 제거 */
.section__main_function .scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section__main_function .scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Price 섹션 애니메이션 - 지연 시간 제거 */
.section__price .scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section__price .scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* About 섹션 순차 애니메이션 */
.section__about .scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section__about .scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* About feature item 순차 애니메이션 */
.section__about .about-delay-0 {
  transition-delay: 0.2s;
}

.section__about .about-delay-1 {
  transition-delay: 0.4s;
}

.section__about .about-delay-2 {
  transition-delay: 0.6s;
}

/* Review 섹션 fadeIn 애니메이션 */
.section__review .scroll-animate {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.section__review .scroll-animate.animate-in {
  opacity: 1;
}

/* FAQ 섹션 애니메이션 - 지연 시간 제거 */
.section__faq .content__title .scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section__faq .content__title .scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section__faq .faq_accordion.scroll-animate {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.section__faq .faq_accordion.scroll-animate.animate-in {
  opacity: 1;
}

/* ******************* 반응형 스타일 ******************* */

@media  (max-width: 1201px) { 
  .container1 {
    width: 95%;
    margin: 0 auto 0px;
  }

  .section__value_list_inner {
    flex-wrap: wrap;
  }
  .section__value_list_inner .section__value_list_item {
    width: calc(50% - 40px);
    justify-content: center;
  }
  .section__value_list_inner {
    gap: 40px;
  }
  .section__value_list_inner .section__value_list_item:not(:last-child)::after {
    display: none;
  }
  
}

/* 태블릿 (1024px 이하) */
@media (max-width: 1024px) {
  
  .contents_wrap {
    padding-bottom: 0 !important;
  }
  .section__hero {
    width: 100%;
    position: relative;
    margin: 80px auto;
  }

  .section__hero .section__hero__text {
    width: 100%;
    text-align: center;
  }

  .section__hero .section__hero__image {
    position: static;
    width: 95%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .section__hero__title {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .section__hero__title .section__hero__title__sub {
    font-size: 18px;
    line-height: 22px;
    color: #555;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
  }
  .section__hero_link_wrap {
    text-align: left;
    width: 95%;
    margin: 0 auto 16px;
  }
  .section__hero__title h1 {
    font-size: 60px;
    line-height: 64px;
    color: #111;
    font-weight: 600;
  }

  /* ******************* Usage 섹션 (1024) ******************* */
  .section__usease {
    margin: 80px auto;
  }
  .section__usease_tab_wrapper {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
  .section__usease_tab_wrapper .section__usease_tab_list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 16px;
  }
  .section__usease_tab_list .section__usease_tab_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
  }
  /* 탭 컨텐츠 리팩토링 스타일 */
  .section__usease_tab_content_wrapper {
    position: relative;
    text-align: center;
  }

  /* ******************* value 섹션 (1024) ******************* */
  .section__value {
    padding: 80px 0;
    border-radius: 30px;
    margin-bottom: 80px;
  }
  .section__value_list_inner .section__value_list_item {
    width: calc(50% - 20px);
    justify-content: center;
  }
  .section__value_list_inner {
    gap: 40px;
  }

  /* ******************* main-function 섹션 (1024) ******************* */
  .section__main_function  {
    margin-bottom: 80px;
  }
  .main_function_grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
  }

  /* About 섹션 */
  .about_features_grid {
    gap: 0px;
  }
  .about_feature_item {
    width: 33%;
    max-width: 320px;
  }

  /* Review 섹션 */
  .section__review {
    margin: 80px auto;
  }
  
  .section__review .content__title {
    margin-bottom: 60px;
  }
  
  .review_card {
    padding: 30px 24px;
  }

  /* ******************* Price 섹션 (1024) ******************* */

  .section__price {
    margin-bottom: 80px;
  }


  /* ******************* FAQ 섹션 (1024) ******************* */
  .section__faq {
    margin-bottom: 80px;
  }


}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {

/* ******************* 공통 컨텐츠 타이틀 ******************* */


.content__title span {
  font-size: 16px;
  line-height: 24px;
}

.content__title h2 {
  color: #111;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
.section__usease_tab_wrapper .section__usease_tab_list {
  gap: 8px;
}
/* hero 섹션( 768) */
.section__hero_link_wrap p {
  font-size: 14px;
  line-height: 20px;
}
.section__hero_link_wrap .direct_link {
  font-size: 14px;
}
/* usage 섹션 (768)*/
.section__usease_tab_list .section__usease_tab_item {
  padding: 8px 0;
  font-size: 14px;
  line-height: 16px;
}
.section__usease_tab_wrapper  {
  gap: 40px;
  margin-top: 40px;
  height: 600px;
}
.section__usease_tab_content_wrapper {
  height: 600px;
}
.tab_content_text .tab_content_text__title {
  font-size: 20px;
  line-height: 28px;
}
.tab_content_text .tab_content_text__desc {
  
  font-size: 14px;
  line-height: 22px;
}
.tab_content_video_wrap {
  border-radius: 8px;
}
/* value 섹션  (768)*/

.section__value {
  padding: 80px 0;
}
.section__value .content__title p {
  font-size: 14px;
  line-height: 22px;
}
.section__value_list_inner {
  gap: 40px;
}
.section__value_list_inner .section__value_list_item {
  width: 100%;
}
.section__value_list_item .svg_icon_wrap {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.section__value_list_item .value_item_content {
  min-width: 100px;
}

.section__value_list_item .svg_icon_wrap svg {
  width: 32px;
  height: 32px;
}
.section__value_list_item .value_item_content {
  gap: 4px;
}

.section__value_list_item .value_item_label {
  font-size: 14px;
  line-height: 22px;
}

.section__value_list_item .value_item_number {
  font-size: 22px;
  line-height: 30px;
}

.section__main_function .content__title p {
  
  font-size: 14px;
  line-height: 22px;
}
.section__price .content__title {
  margin-bottom: 60px;
}
.section__price .content__title p {
  
  font-size: 14px;
  line-height: 22px;
}
.section__review {
  padding: 80px 0;
}

.section__faq .content__title p {
  
  font-size: 14px;
  line-height: 22px;
}
.faq_question {
  padding: 10px;
}
.faq_question h3 {
  font-size: 15px;
  line-height: 24px;
}
.faq_answer {
  padding: 0 10px;
}
.faq_item.active .faq_answer {
  padding: 10px 10px;
}
.faq_answer p {
  font-size: 14px;
  line-height: 22px;
}
.section__direct_content p {
  font-size: 24px;
  line-height: 32px;
}
.section__direct {
  padding: 80px 0;
}

  /* Main Function 섹션 */
  .section__main_function {
    margin: 60px auto;
  }
  
  .section__main_function .content__title {
    margin-bottom: 60px;
  }
  
  .main_function_grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 24px;
  }
  
  .function_card_content {
    padding: 24px 20px;
  }
  
  .function_card_title {
    font-size: 18px;
    line-height: 26px;
  }
  
  .function_card_desc {
    font-size: 14px;
    line-height: 22px;
  }

  /* About 섹션 */
  .section__about {
    margin: 60px auto 120px;
  }
  
  .section__about_content {
    margin-top: 60px;
  }
  
  .about_features_grid {
    gap: 24px;
  }
  
  .about_feature_item {
    width: 100%;
    max-width: 320px;
    padding: 30px 20px;
  }
  
  .about_feature_icon {
    margin-bottom: 24px;
  }
  
  .about_feature_title {
    font-size: 18px;
    line-height: 26px;
  }
  
  .about_feature_desc {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 576px) {
  .section__usease_tab_wrapper  {
    height: 520px;
  }
  .section__usease_tab_content_wrapper {
    height: 520px;
  }
}

@media (max-width: 480px) {
  .section__usease_tab_wrapper  {
    gap: 40px;
    margin-top: 40px;
    height: 420px;
  }
  .section__usease_tab_content_wrapper {
    height: 420px;
  }
}