/* search_area 검색창 공통 */
.search_area {
  flex-shrink: 0;
  width: 100%;
}
.search_area > form {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}
.search_input_wrap {
  background-color: #f5f6f8;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  border-radius: 1rem;
  padding: 1.8rem 2rem;
  box-sizing: border-box;
  height: 6rem;
}
.search_input_wrap input {
  flex: 1;
  min-width: 0;
  background-color: transparent;
  font-size: 1.4rem;
  padding-right: 1rem;
}
.search_input_wrap input::placeholder {
  color: #777;
  font-weight: 300;
}
.search_input_wrap img {
  width: 1.6rem;
  aspect-ratio: 1/1;
}
.filter_wrap {
  display: flex;
  align-items: center;
}
.filter_wrap .select_wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.filter_wrap .select_wrap::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../assets/img/arrow-3.png) no-repeat center / contain;
  pointer-events: none;
}
.filter_wrap select {
  appearance: none;
  -webkit-appearance: none;
  background: #f5f6f8;
  font-size: 1.4rem;
  border-radius: 1rem;
  padding: 1.8rem 3.5rem 1.8rem 1rem;
  border: 0;
  width: auto;
  min-width: 11rem;
  height: 6rem;
  outline: none;
  color: #777;
}
.filter_wrap select option {
  font-size: 1.6rem;
  background-color: #fff;
}


.btm-link-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
}
.btm-link-wrap .title {
  width: 100%;
  margin-right: auto;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.btm-link-wrap .title .icon {
  width: min(2.2rem, 20%);
}
.btm-link-wrap .title h3 {
  font-size: 2rem;
  font-weight: 600;
}

/* --- 1. 링크 리스트 컨테이너 (기존 .side-menu 역할) --- */
.btm-link-wrap .btm-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.btm-link-wrap .btm-links li {
  background: #f4f4f4;
  width: calc((100% - 2rem) / 2);
  border-radius: 1rem;
  position: relative;
  box-sizing: border-box;
  /* 패딩 포함 크기 계산 */
}
.btm-link-wrap .btm-links li a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  padding: 2.8rem 2rem;
}
.btm-link-wrap .btm-links li a::after {
  content: "";
  position: absolute;
  inset: 0;
}
/* --- 5. 텍스트 스타일 (기존 p, strong 역할) --- */
/* .top 컨테이너 (필요 시 정렬 속성 추가 가능) */
.btm-links li a .top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  /* a::after 위로 텍스트가 올라오도록 보장 */
}
/* 기존 p 태그 역할 */
.btm-links li a .top span {
  display: block;
  /* span은 인라인 요소이므로 block으로 변경 */
  font-size: 1.6rem;
  color: #333;
}
/* 기존 strong 태그 역할 (공통) */
.btm-links li a .top strong {
  display: block;
  font-weight: bold;
  color: #333;
  font-size: 2.2em;
}
/* (참고) 배경 이미지로 아이콘을 처리했으므로 .bottom 영역은 비워두셔도 됩니다 */
.btm-links li a .bottom {
}
.btm-links li a .bottom .icon {
  width: min(3.2rem, 22%);
  margin-left: auto;
}
.btm-links li a .bottom .icon img {
  margin-left: auto;
}


/* title */
.title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6rem;
  color: #212529;
  font-family: Pretendard;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #212529;
}
.title h2 {
}
.title .side a {
  display: flex;
}
.title .side a img {
  width: 2rem;
}
.title .side span {
  font-size: 1.6rem;
  color: #fba31e;
  padding-left: 0.5rem;
}

/* center list */
.list {
  margin-top: 3rem;
}
.list ul li {
  padding: 2.2rem 0;
}
.list ul li + li {
  border-top: 1px solid #cdcdcd;
}
.list ul li p {
  font-size: 1.4rem;
  color: #aaa;
  text-align: center;
  padding: 3rem 0;
}
.list ul li a {
  display: block;
}
.list ul li a .txt {
  display: flex;
  justify-content: space-between;
  color: #333;
}
.list ul li a .txt strong {
  font-size: 1.6rem;
}
.list ul li a .txt span {
  display: block;
  color: #fff;
  border-radius: 100rem;
  width: 5.5rem;
  height: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  background: #fba31e;
  font-weight: bold;
  font-size: 1.2rem;
}
.list ul li a p {
  font-size: 1.4rem;
  color: #777;
  margin-top: 0.5rem;
  line-height: 1.6rem;
  text-align: left;
  padding: 0;
}


/* faq */
.faq-list li {
  background: #f5f6f8;
  height: 5rem;
  border-radius: 1rem;
  padding: 1.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
.faq-list li a {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
}
.faq-list li a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.faq-answer {
  height: 28rem;
}
.faq-container {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 6rem);
}
.faq-answer h6 {
  background: #f5f6f8;
  height: 5rem;
  border-radius: 1rem;
  padding: 1.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2rem;
  text-align: center;
}
.faq-answer p {
  font-size: 1.4rem;
  color: #777;
  margin-top: 1rem;
  line-height: 2rem;
}

/* 공통 모달 및 숨김 패널 */
/* 결과 패널 스타일 */
.result-panel {
  display: none;
  margin: 3rem 0;
}

.result-panel .calc-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
}

.result-panel .calc-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: #fffae7;
  border-radius: 1rem;
  margin: 0;
  gap: 1rem;
}

.result-panel .calc-list li .input-wrapper {
  flex: 1;
  min-width: 0;
  text-align: right;
}

.result-panel .calc-list li .input-wrapper span {
  line-height: 1.4;
}

.result-panel .txt {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 0.8rem;
  flex-shrink: 0;
}

.result-panel .blank .txt h4 {
  margin: 0;
  font-size: 1.5rem;
}

.btn-show-std {
  display: inline-block;
  color: #fff;
  border-radius: 100rem;
  text-align: center;
  background: #fba31e;
  font-weight: 200;
  letter-spacing: 0.02px;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.4rem 1.2rem;
}

/* 안내 문구 스타일 */
.calc-notice {
  margin-top: 1.2rem;
}

.calc-notice p {
  font-size: 1.2rem;
  color: #ff0000;
  letter-spacing: 0.02px;
  line-height: 1.4;
}
.calc-notice p + p {
  margin-top: 0.6rem;
}

/* 모달 스타일 */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 1.2rem;
  padding: 4rem 2.4rem;
}

.modal-content .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.modal-content .top h3 {
  font-size: 2.6rem;
  font-weight: 700;
}

.btn-close {
  width: min(100%, 2rem);
  cursor: pointer;
}

.modal-content .bottom ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}


/*****************
    Goopy Home
*****************/
.arr {
    width: 0.7rem;
    display: inline-block;
}

.arr img { 
  width: 100%;
}

.goopy-main {display: flex;flex-direction: column;gap: 3.2rem;}

.goopy-hero-section {border-radius: 1rem;background:  #19408e;padding: 2.4rem;position: relative;overflow: hidden;}

.goopy-hero-card {display: block;width: 100%;height: 100%;}

.goopy-hero-text {display: flex;flex-direction: column;gap: 1.2rem;z-index: 1;position: relative;}

.goopy-hero-label {color: #fff;font-size: 1.1rem;font-weight: 400;line-height: 1;}

.goopy-hero-title {color: #fff;font-size: 2rem;font-weight: 600;line-height: 1.4;}

.goopy-hero-desc {color: #fff;font-size: 1.1rem;line-height: 1.6;opacity: 0.8;font-weight: 100;letter-spacing: 0.005rem;}

.goopy-hero-link {font-size: 1.1rem;font-weight: 400;color: #fff;text-align: right;display: flex;align-items: center;justify-content: flex-end;gap: 1.4rem;}

.goopy-hero-link .arrow {
}

.goopy-hero-image {position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: cover;}

.goopy-hero-image img {/* position: absolute; *//* top: 0; *//* left: 0; *//* width: 100%; *//* height: 100%; *//* object-fit: cover; */width: 100%;height: 100%;object-fit: cover;}

.goopy-service-section {
}

.section-title {
}

.goopy-service-list {display: flex;gap: 0.9rem;}

.goopy-service-item {flex: 1;position: relative;aspect-ratio: 164 / 145;}

.goopy-service-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: no-repeat right bottom;
    padding: 2.4rem;
    box-shadow: 1px 3px 4px 1px #0000001C;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #4A81D4;
}

.goopy-service-item:first-child .goopy-service-card {  
  background-image: url("../assets/img/goopy-service-alarm.png")
}

.goopy-service-item:last-child .goopy-service-card {  
  background-image: url("../assets/img/goopy-service-chatbot.png")
}

.goopy-service-text {}

.goopy-service-head {margin-bottom: 1rem;display: flex;align-items: center;justify-content: space-between;}

.goopy-service-head h4 {color: #fff;font-family: Pretendard;font-weight: 700;font-size: 1.6rem;line-height: 100%;letter-spacing: 0%;}

.goopy-service-head .arrow {}

.goopy-service-text p {font-family: Inter;font-weight: 400;font-size: 1.2rem;line-height: 1.4;letter-spacing: 0%;color: #fff;}

.goopy-service-image {}

.goopy-service-image img {}

.goopy-guide-section {
}

.goopy-guide-list {display: flex;flex-direction: column;gap: 1.4rem;}

.goopy-guide-list li {
}

.goopy-guide-link {display: flex;align-items: center;justify-content: space-between;height: 5.4rem;background: #fff;padding: 0 1.7rem;border-radius: 1rem;}

.goopy-guide-left {display: flex;align-items: center;gap: 2rem;}

.goopy-guide-icon {width: 2.5rem;height: 2.5rem;}

.goopy-guide-icon img {
}

.goopy-guide-left strong {font-family: Pretendard;font-weight: 500;font-size: 1.6rem;line-height: 100%;letter-spacing: 0%;color: #212529;}

.goopy-guide-arrow {
}