/* sub.css - 서브 페이지 스타일 */
@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/variable/woff2/SUIT-Variable.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

#keyFeatures_visual {
  padding: 100px 0 0 0;
  margin-bottom: 80px;
  overflow: hidden;
  background: rgba(247, 246, 255, 1);
}

#keyFeatures_visual .kfv_circle_deco {
  position: absolute;
  left: 50%;
  bottom: -350px;
  transform: translateX(-50%);
  width: 860px;
  aspect-ratio: 860 / 695;
  background: rgba(212, 207, 255, 1);
  border-radius: 50%;
  filter: blur(300px);
}

#keyFeatures_visual .kfv_container {
  position: relative;
  max-width: 900px;
  z-index: 2;
  container-type: inline-size;
  container-name: kfv;
}

#keyFeatures_visual .kfv_img_area {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

#keyFeatures_visual .kfv_main_img {
  width: 100%;
}

#keyFeatures_visual .kfv_main_img figure {
  width: 100%;
}

#keyFeatures_visual .kfv_main_img figure img {
  width: 100%;
  display: block;
}

#keyFeatures_visual .kfv_deco_img {
  position: absolute;
  width: 230px;
  bottom: 60px;
  left: -130px;
}

#keyFeatures_visual .kfv_deco_img figure {
  width: 100%;
}

#keyFeatures_visual .kfv_deco_img figure img {
  width: 100%;
  display: block;
}

/* why_Drfin */
#why_Drfin {
  padding: 100px 0 120px;
}

#why_Drfin .sec_tit h2 {
  font-weight: 800;
}

#why_Drfin .why_list_area > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 64px 24px;
}

#why_Drfin .why_list_area > ul > li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
}

#why_Drfin .why_list_area > ul > li:nth-child(4n + 1),
#why_Drfin .why_list_area > ul > li:nth-child(4n) {
  background: rgba(249, 245, 255, 1);
}

#why_Drfin .why_list_area > ul > li:nth-child(4n + 2),
#why_Drfin .why_list_area > ul > li:nth-child(4n + 3) {
  background: rgba(248, 249, 252, 1);
}

#why_Drfin .why_txt_box {
  position: relative;
  z-index: 2;
}

#why_Drfin .why_txt_box .why_tit {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

#why_Drfin .why_txt_box .why_desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(71, 84, 103, 1);
  line-height: 1.6;
  letter-spacing: -0.02em;
}

#why_Drfin .why_txt_box .why_desc strong,
#why_Drfin .why_txt_box .why_desc b {
  font-weight: 700;
  color: rgba(71, 84, 103, 1);
}

#why_Drfin .why_img_box {
  position: absolute;
  z-index: 1;
}

#why_Drfin .why_img_box figure {
  width: 100%;
}

#why_Drfin .why_img_box figure img {
  width: 100%;
  display: block;
}

#why_Drfin .why_list_area > ul > li.why_cover01 {
  background-image: url(../img/sub/why_img01_cover.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#why_Drfin .why_list_area > ul > li:nth-child(2) .why_img_box {
  right: 0;
  bottom: 21%;
  width: calc(100% - 45px);
}

#why_Drfin .why_list_area > ul > li:nth-child(3) .why_img_box {
  right: 4%;
  bottom: -6%;
  width: 76%;
}

#why_Drfin .why_list_area > ul > li.why_cover04 {
  background-image: url(../img/sub/why_img04_cover.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* system_Features */

#system_Features {
  padding: 100px 0 100px 0;
}

#system_Features .sec_tit h2 {
  font-weight: 800;
}

/* subPage common tab */
.subPage_tabBtn {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 140px auto;
  padding: 12px;
  background: #f4f4f8;
  border-radius: 10px;
  transition: box-shadow 0.25s ease;
  z-index: 100;
}

.subPage_tabBtn.is_fixed {
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.08),
    0 12px 40px rgba(15, 23, 42, 0.1);
}

.subPage_tabBtn > ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(max-content, 1fr));
  align-items: center;
  gap: 12px;
}

.subPage_tabBtn > ul > li {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.subPage_tabBtn > ul > li > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 10px;
  background: transparent;
  color: #16161d;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.subPage_tabBtn > ul > li.active > button {
  background: var(--main-brand-color);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(100, 84, 237, 0.18);
}

.subPage_tabBtn > ul > li:not(.active) > button:hover {
  background: rgba(255, 255, 255, 0.78);
  color: #111;
}

.subPage_tabBtn > ul > li.cmsn {
  position: relative;
}

.subPage_tabBtn > ul > li.cmsn .cmsn_badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  background: rgba(253, 242, 250, 1);
  color: rgba(193, 21, 116, 1);
  font-family: "Pretendard", sans-serif;
  font-size: 11px;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.5;
  pointer-events: none;
}

.subPage_tabArea {
  margin-top: 120px;
  width: 100%;
}

.subPage_tabMenu {
  width: 100%;
  display: none;
  flex-direction: column;
}

.subPage_tabMenu.active {
  display: flex;
  animation: subPageFadeIn 0.4s ease both;
}

.subPage_tabMenu .subPage_innerTab + .subPage_innerTab {
  margin-top: 200px;
}

@keyframes subPageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 공통 inner tab (상단 요약 + 좌측 서사 리스트 + 우측 시각 앵커) */
.subPage_innerTab {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0;
  background: transparent;
}

.subPage_innerTab_intro {
  width: 100%;
}

.subPage_innerTab_intro.type02 {
  text-align: center;
}

.subPage_innerTab.type02 .subPage_innerTab_body {
  display: flex;
  flex-direction: column-reverse;
  gap: 60px;
}

.subPage_innerTab.type02 .subPage_innerTab_list {
  padding-right: 0;
  width: 100%;
}

.subPage_innerTab.type02 .subPage_innerTab_list > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  height: auto;
}

.subPage_innerTab.type02 .subPage_innerTab_view {
  width: 100%;
  height: auto;
}

.subPage_innerTab.type02 .subPage_innerTab_view > .view > img {
  height: auto;
  object-fit: contain;
}

.subPage_innerTab_intro > h3 {
  font-size: 40px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #101828;
  word-break: keep-all;
}

.subPage_innerTab_intro > p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: rgba(71, 84, 103, 1);
  word-break: keep-all;
}

.subPage_innerTab_body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.subPage_innerTab_list {
  min-width: 0;
  padding-right: 110px;
}

.subPage_innerTab_list > ul {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  height: 100%;
}

.subPage_innerTab_list > ul > li {
  position: relative;
  display: flex;
}

.subPage_featureCard {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.subPage_innerTab_list > ul > li.active .subPage_featureCard {
  border-color: rgba(100, 84, 237, 1);
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.subPage_featureCard > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #101828;
  transition: color 0.25s ease;
}

.subPage_innerTab_list > ul > li.active .subPage_featureCard > strong {
  color: var(--main-brand-color);
}

.subPage_featureCard > span {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: rgba(71, 84, 103, 1);
  word-break: keep-all;
  font-weight: 400;
  padding-right: 170px;
}

.subPage_innerTab.type02 .subPage_featureCard > span {
  padding-right: 0;
}

.subPage_innerTab_view {
  min-width: 0;
  height: 100%;
}

.subPage_innerTab_view > .view {
  display: none;
  width: 100%;
  height: 100%;
}

.subPage_innerTab_view > .view.active {
  display: block;
  animation: subPageFadeIn 0.4s ease both;
}

.subPage_innerTab_view > .view > img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* oneclick_upload */

#oneclick_upload {
  padding: 100px 0 200px 0;
}

/* realtime_status */

#realTime_status {
  padding: 120px 0;
  background: rgba(249, 250, 251, 1);
}

/* subPage colorList (공통 컬러 카드 리스트) */
.subPage_colorList {
  margin-top: 60px;
}

.subPage_colorList > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.subPage_colorList > ul > li {
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.subPage_colorList > ul > li:nth-child(1) {
  background: rgba(255, 241, 243, 1);
}

.subPage_colorList > ul > li:nth-child(2) {
  background: rgba(238, 244, 255, 1);
}

.subPage_colorList > ul > li:nth-child(3) {
  background: rgba(255, 250, 235, 1);
}

.subPage_colorList.type02 > ul > li {
  padding-bottom: 0;
}

.subPage_colorList.type02 > ul > li:nth-child(1) {
  background: rgba(238, 244, 255, 1);
}

.subPage_colorList.type02 > ul > li:nth-child(2) {
  background: rgba(230, 227, 255, 1);
}

.subPage_colorList.type02 > ul > li:nth-child(3) {
  background: rgba(253, 242, 250, 1);
}

.subPage_colorList.type02 .subPage_colorList_img {
  height: 371px;
}

.subPage_colorList.type02 .subPage_colorList_img figure,
.subPage_colorList.type02 .subPage_colorList_img figure img {
  height: 100%;
  object-fit: contain;
}

.subPage_colorList_txt i[class^="subPage_colorList_ico"] {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(101, 56, 255, 0.05);
  border: 1px solid rgba(101, 56, 255, 0.05);
}

.subPage_colorList_txt i[class^="subPage_colorList_ico"] img {
  width: 20px;
  height: 20px;
}

.subPage_colorList_txt i.subPage_colorList_ico03 img {
  width: 16px;
}

.subPage_colorList_txt .subPage_colorList_tit {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  margin-bottom: 14px;
}

.subPage_colorList_txt .subPage_colorList_desc {
  font-size: 16px;
  color: rgba(99, 99, 99, 1);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.subPage_colorList_img {
  margin-top: 28px;
}

.subPage_colorList_img figure {
  width: 100%;
}

.subPage_colorList_img figure img {
  width: 100%;
  display: block;
}

.sec_subTit {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  margin-bottom: 10px;
  align-items: center;
}

.sec_subTit.type02 {
  text-align: left;
  margin-bottom: 0;
  align-items: flex-start;
}

.sec_subTit h2 {
  font-size: 40px;
  line-height: 1.3;
  color: #000;
  font-weight: 800;
}

.sec_subTit p {
  font-size: 18px;
  color: rgba(71, 84, 103, 1);
  font-weight: 500;
  line-height: 1.6;
}

/* time_saving */

#time_saving {
  padding: 200px 0;
}

/* selected_data */

#selected_Data {
  padding: 120px 0;
  background: rgba(249, 250, 251, 1);
}

/* ai_Agent */

#ai_Agent {
  padding: 200px 0;
}

.aiag_list {
  margin-top: 60px;
}

.aiag_list > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aiag_list > ul > li {
  padding: 40px;
  background: #fff;
  border: 1px solid rgba(221, 221, 221, 1);
  border-radius: 20px;
}

.aiag_list .aiag_ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(101, 56, 255, 0.05);
  border: 1px solid rgba(101, 56, 255, 0.05);
  margin-bottom: 20px;
}

.aiag_list .aiag_ico img {
  width: 20px;
  height: 20px;
}

.aiag_list .aiag_tit {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
}

.aiag_list .aiag_desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(71, 84, 103, 1);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ===== freeTrial page ===== */
#freeTrial_wrap {
  padding: 100px 0 160px 0;
  background: #fff;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
}

/* Hero Section */
.ft_hero {
  margin-bottom: 60px;
}

.ft_hero_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

.ft_hero_tit {
  flex: 1;
}

.ft_hero_tit .cate {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--main-brand-color);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.ft_hero_tit h2 {
  font-size: 52px;
  line-height: 1.25;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.03em;
}

.ft_hero_desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.ft_hero_desc p {
  font-size: 16px;
  line-height: 1.6;
  color: #475467;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.ft_hero_desc p.point {
  color: #101828;
}

.ft_hero_desc p strong {
  font-weight: 700;
}

/* Form Area */
.ft_form_area {
  max-width: 100%;
  margin-top: 20px;
}

#freeTrial_form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#freeTrial_form .input_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

#freeTrial_form .input_item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#freeTrial_form .input_item label {
  font-size: 15px;
  font-weight: 600;
  color: #252525;
  letter-spacing: -0.02em;
  line-height: 1;
}

#freeTrial_form .input_item input,
#freeTrial_form .input_item select {
  width: 100%;
  height: 64px;
  padding: 0 24px;
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-SUIT);
  color: #101828;
  transition: all 0.25s ease;
}

#freeTrial_form .input_item input::placeholder {
  color: #aaaaaa;
}

#freeTrial_form .input_item input:focus,
#freeTrial_form .input_item select:focus {
  border-color: var(--main-brand-color);
  box-shadow: 0 0 0 4px rgba(100, 84, 237, 0.1);
  outline: none;
}

/* Inline label-inside-input style (freeTrial & inquiry shared) */
#freeTrial_form .input_item.inline,
.inquiry-form .form-group.inline {
  flex-direction: row;
  align-items: center;
  gap: 0;
  height: 64px;
  padding: 0;
  border: 1px solid #eaecf0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

#freeTrial_form .input_item.inline:focus-within,
.inquiry-form .form-group.inline:focus-within {
  border-color: var(--main-brand-color);
  box-shadow: 0 0 0 4px rgba(100, 84, 237, 0.1);
}

#freeTrial_form .input_item.inline label,
.inquiry-form .form-group.inline label {
  flex-shrink: 0;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  color: #101828;
  letter-spacing: -0.02em;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}

#freeTrial_form .input_item.inline input,
.inquiry-form .form-group.inline input {
  flex: 1;
  border: none;
  border-radius: 0;
  height: 100%;
  padding: 0 20px;
  background: transparent;
  box-shadow: none !important;
}

#freeTrial_form .input_item.inline input:focus,
.inquiry-form .form-group.inline input:focus {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

#freeTrial_form .divider {
  height: 1px;
  background: #eaecf0;
  margin: 10px 0;
}

/* Select Wrapper */
.select_wrapper {
  position: relative;
}

.select_wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: #fff;
}

.select_icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.select_wrapper select:focus + .select_icon {
  transform: translateY(-50%) rotate(-90deg);
}

/* Custom Select Dropdown */
.custom_select_wrapper {
  position: relative;
  width: 100%;
}

.custom_select_trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0 20px 0 24px;
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-SUIT);
  color: #aaaaaa;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.custom_select_trigger.is-selected {
  color: #101828;
}

.custom_select_trigger.is-open,
.custom_select_trigger:focus {
  border-color: var(--main-brand-color);
  box-shadow: 0 0 0 4px rgba(100, 84, 237, 0.1);
  outline: none;
}

.custom_select_trigger .select_icon {
  position: static;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.custom_select_trigger.is-open .select_icon {
  transform: rotate(-90deg);
}

.custom_select_dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.12);
  padding: 8px;
  z-index: 100;
  display: none;
  list-style: none;
}

.custom_select_dropdown.is-open {
  display: block;
  animation: customSelectFadeIn 0.15s ease both;
}

@keyframes customSelectFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom_select_option {
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-SUIT);
  font-weight: 400;
  color: #475467;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: -0.02em;
  transition: background 0.15s ease;
}

.custom_select_option:hover {
  background: #f9fafb;
}

.custom_select_option.is-selected {
  font-weight: 700;
  color: #101828;
}

/* Inline wrapper: the wrapper provides the border, trigger is borderless */
.custom_select_wrapper.inline {
  height: 64px;
  border: 1px solid #eaecf0;
  border-radius: 12px;
  background: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.custom_select_wrapper.inline:focus-within {
  border-color: var(--main-brand-color);
  box-shadow: 0 0 0 4px rgba(100, 84, 237, 0.1);
}

.custom_select_wrapper.inline .custom_select_trigger {
  height: 100%;
  border: none;
  border-radius: 12px;
  background: transparent;
  box-shadow: none !important;
}

.custom_select_wrapper.inline .custom_select_trigger:focus {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

/* cs_label: bold prefix inside trigger */
.cs_label {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: #101828;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin-right: 8px;
}

/* Value text in has-label trigger (selected value or empty) */
.custom_select_trigger.has-label .custom_select_value {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: #aaaaaa;
}

.custom_select_trigger.has-label.is-selected .custom_select_value {
  color: #101828;
}

/* Agree Box */
.agree_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  background: #f9fafb;
  border-radius: 12px;
}

.agree_item {
  display: flex;
  align-items: center;
}

.checkbox_label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox_label input {
  display: none;
}

.checkbox_icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  border: 1px solid #727272;
  border-radius: 3px;
  background: #fff;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox_label input:checked + .checkbox_icon {
  background: var(--main-brand-color);
  border-color: var(--main-brand-color);
}

.checkbox_icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
}

.checkbox_label input:checked + .checkbox_icon::after {
  opacity: 1;
}

.agree_txt {
  font-size: 15px;
  font-weight: 600;
  color: #252525;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.agree_txt em.point {
  color: var(--main-brand-color);
  font-style: normal;
}

/* Button Area */
.btn_area {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.submit_btn {
  width: 320px;
  height: 64px;
  background: var(--main-brand-color);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit_btn:hover {
  background: #5042d2;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(100, 84, 237, 0.3);
}

/* ===== inquiry page ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-SUIT), sans-serif;
  background-color: #ffffff;
  color: #252525;
  position: relative;
  overflow-x: hidden;
  /* padding-top: 0 !important; */
}

#wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Main Content */
.main-content {
  position: relative;
  flex: 1;
  padding-top: 60px;
  overflow: hidden;
}

/* Background Decorations */
.bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  overflow: hidden;
}

.bg-circle-1 {
  width: 720px;
  height: 720px;
  top: 398px;
  right: 200px;
  background: radial-gradient(
    circle,
    rgba(101, 56, 255, 0.03) 0%,
    transparent 70%
  );
  filter: blur(64px);
}

.bg-circle-2 {
  width: 882px;
  height: 882px;
  top: 1459px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(101, 56, 255, 0.04) 0%,
    transparent 70%
  );
  filter: blur(64px);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 20px 80px;
}

.hero-badge {
  font-family: "SUIT Variable", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #6454ed;
  letter-spacing: -0.36px;
  text-transform: lowercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: "SUIT Variable", sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #000000;
  line-height: 90px;
  letter-spacing: -1.44px;
  text-transform: capitalize;
  margin-bottom: 32px;
}

.text-primary {
  color: #6454ed;
}

.hero-description {
  font-family: "SUIT Variable", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #475467;
  line-height: 1.6;
  letter-spacing: -0.4px;
  text-transform: lowercase;
}

/* Form Container */
.form-container {
  max-width: 891px;
  margin: 0 auto 200px;
  background: white;
  border-radius: 16px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.04);
  padding: 80px 80px 60px;
  position: relative;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: "SUIT Variable", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #252525;
  letter-spacing: -0.3px;
  line-height: 2;
  font-feature-settings: "case", "cpsp", "pwid";
}

.form-group input,
.form-group select {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: #f6f7f9;
  border: none;
  border-radius: 8px;
  font-family: "Pretendard Variable", sans-serif;
  font-size: 16px;
  color: #000000;
  letter-spacing: -0.3px;
  line-height: 2;
  font-feature-settings: "case", "cpsp", "pwid";
}

.form-group input::placeholder {
  color: #aaaaaa;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  background: #eef0f3;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 64px;
  padding: 0 24px;
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.select-wrapper select:focus {
  background: #fff;
  border-color: var(--main-brand-color);
  box-shadow: 0 0 0 4px rgba(100, 84, 237, 0.1);
  outline: none;
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.select-wrapper select:focus + .select-icon {
  transform: translateY(-50%) rotate(-90deg);
}

.divider {
  height: 1px;
  background: #eaeaea;
  margin: 18px 0;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 6px;
  background: white;
  border: 1px solid #727272;
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
  background: #6454ed;
  border-color: #6454ed;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.checkbox-label {
  font-family: "SUIT Variable", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #252525;
  letter-spacing: -0.3px;
  line-height: 2;
}

/* Submit Button */
.btn-submit {
  width: 304px;
  height: 60px;
  margin: 32px auto 0;
  background: #6454ed;
  border: none;
  border-radius: 10px;
  font-family: "SUIT Variable", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit:hover {
  background: #5343dc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(100, 84, 237, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  background: #d0d5dd;
  cursor: not-allowed;
}

/* ===== inquiry 커스텀 드롭다운 ===== */
.inq-custom-select {
  position: relative;
  width: 100%;
}

.inq-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: #fff;
  border: 1.5px solid #eaecf0;
  border-radius: 12px;
  font-family: "Pretendard Variable", "SUIT Variable", sans-serif;
  font-size: 16px;
  color: #101828;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.inq-select-trigger:focus {
  outline: none;
  border-color: #6454ed;
  box-shadow: 0 0 0 3px rgba(100, 84, 237, 0.15);
}

.inq-custom-select.is-open .inq-select-trigger {
  border-color: #6454ed;
  box-shadow: 0 0 0 3px rgba(100, 84, 237, 0.15);
}

.inq-select-value {
  color: #aaaaaa;
  font-size: 16px;
  font-weight: 400;
}

.inq-select-value.selected {
  color: #101828;
}

.inq-select-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.inq-custom-select.is-open .inq-select-arrow {
  transform: rotate(180deg);
}

.inq-select-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.12);
  padding: 8px 0;
  z-index: 200;
  list-style: none;
  display: none;
}

.inq-custom-select.is-open .inq-select-dropdown {
  display: block;
  animation: inqDropdownFadeIn 0.15s ease both;
}

@keyframes inqDropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inq-select-option {
  padding: 16px 20px;
  font-family: "Pretendard Variable", "SUIT Variable", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #475467;
  cursor: pointer;
  letter-spacing: -0.02em;
  transition: background 0.12s ease;
}

.inq-select-option:hover {
  background: #f9fafb;
  color: #101828;
}

.inq-select-option.is-selected {
  font-weight: 700;
  color: #101828;
}
