@charset "UTF-8";
:root {
  --project-point-color-green: #00bfa5;
  --project-point-color-orange: #ff6b00;
  --project-white: #fff;
  --project-black-point: #111827;
  --project-black-400: #a3a3a3;
  --project-black-700: #404040;
  --project-black-900: #171717;
  --project-gray: 0 0 0;
  --project-gray-400: #a3a3a3;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #5a5a5a;
  --gray-700: #404040;
  --gray-900: #171717;
}

/* common */
.inner {
  width: 100%;
  max-width: 1080px;
  height: 100%;
  padding: 0 20px;
  margin: auto;
}
.inner-flex-full-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.row-reverse {
  flex-direction: row-reverse;
}
.title_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 496px;
}
.row-reverse .title_box {
  align-items: flex-end;
  text-align: right;
}
.content-img-box,
.content-info-box {
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}
.content-card {
  width: 100%;
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid var(--gray-300);
  background: white;
}
.content-card:not(:last-child) {
  margin-bottom: 16px;
}
.content-icon {
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center;
  background-color: #fff2e5;
  border-radius: 14px;
}
.ic-document {
  background-image: url("../../static/img/ic-document.svg");
}
.ic-book {
  background-image: url("../../static/img/ic-book.svg");
}
.ic-people {
  background-image: url("../../static/img/ic-people.svg");
}
.content-text p {
  word-break: keep-all;
}
.content-text .main-text {
  color: var(--project-black-900);
  font-weight: 700;
  line-height: 24px;
  padding-bottom: 4px;
}
.content-text .sub-text {
  font-size: 14px;
  color: var(--project-black-700);
  line-height: 20px;
  font-weight: 400;
}

.section {
  overflow: hidden;
}
.section_title {
  padding-bottom: 16px;
  color: var(--project-black-900);
  font-weight: 700;
  line-height: 44px;
  font-size: 36px;
}
.section_desc {
  color: var(--project-black-700);
  font-weight: 400;
  line-height: 20px;
  font-size: 14px;
  word-break: keep-all;
}
.show-more-button {
  display: flex;
  padding: 12px 20px;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid var(--project-black-700);
  margin-top: 20px;
  cursor: pointer;
}
.show-more-button.white {
  border: 1px solid #6a7282;
  color: white;
}
.ic-card-arrow-right-w {
  width: 16px;
  height: 16px;
  background: url("../../static/img/ic-card-arrow-right.svg") no-repeat center
    center;
  background-size: 100%;
}
.ic-card-arrow-right-b {
  width: 16px;
  height: 16px;
  background: url("../../static/img/ic-card-arrow-right-b.svg") no-repeat center
    center;
  background-size: 100%;
}

/* floating nav box */
.floating-nav-box {
  position: fixed;
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
  z-index: 2;
  min-width: 112px;
}
.hero-nav-box {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 108px;
  margin-left: auto;
  border-radius: 42px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translate(300px, -50%);
  opacity: 0.2;
  transition: all 0.3s;
}
.hero-nav-box.is-show {
  transform: translate(0px, -50%);
  opacity: 1;
}
.hero-nav-box ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-nav-box ul li {
  position: relative;
  width: 6px;
  height: 6px;
  background-color: #c8c8c8;
  border-radius: 100%;
  transition: all 0.3s;
}
.hero-nav-box ul li a {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: calc(100% + 30px);
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--project-white);
}
.hero-nav-box ul li:hover::after,
.hero-nav-box ul li.active::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #171717;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px 0 rgba(23, 23, 23, 0.5);
}
.section-nav-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  transform: translateX(300px);
  opacity: 0.2;
  transition: all 0.3s;
}
.section-nav-box.is-show {
  transform: translateX(0px);
  opacity: 1;
}
.floating-title {
  text-align: right;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 19.5px;
  letter-spacing: -0.3px;
  padding-bottom: 6px;
}
.section-nav-box ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.nav-wrap ul li a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: rgb(var(--project-gray) / 0.25);
  transition: all 0.3s;
}
.nav-wrap ul li a::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 4px;
  width: 1px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.2);
}

.nav-wrap ul li a.last::before {
  display: none;
}
.nav-wrap ul li .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: rgb(var(--project-gray) / 0.2);
  border-radius: 100%;
}

.nav-wrap ul li:hover .dot,
.nav-wrap ul li .active .dot {
  background-color: #111827;
}
.nav-wrap.abc ul li:hover a,
.nav-wrap.abc ul li a.active {
  color: var(--project-point-color-orange);
  font-weight: 700;
  line-height: 19.5px;
  letter-spacing: -0.3px;
}
.nav-wrap.crew ul li:hover a,
.nav-wrap.crew ul li a.active {
  color: var(--project-point-color-green);
  font-weight: 700;
  line-height: 19.5px;
  letter-spacing: -0.3px;
}
/* floating nav white ver */
.section-nav-box.white .floating-title {
  color: rgba(255, 255, 255, 0.8);
}
.section-nav-box.white .nav-wrap ul li a {
  color: rgba(255, 255, 255, 0.35);
}
.section-nav-box.white .nav-wrap ul li .dot {
  background-color: rgba(255, 255, 255, 0.22);
}
.section-nav-box.white .nav-wrap ul li a::before {
  background-color: rgba(255, 255, 255, 0.1);
}
.section-nav-box.white .nav-wrap ul li:hover a,
.section-nav-box.white .nav-wrap ul li a.active {
  color: var(--project-point-color-green);
}
.section-nav-box.white .nav-wrap ul li:hover .dot,
.section-nav-box.white .nav-wrap ul li .active .dot {
  background-color: white;
}

.scroll-icon-box {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 18px;
  font-weight: 700;
  color: var(--project-white);
  letter-spacing: 3px;
  opacity: 0.5;
}
.ic-arrow-down {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../../static/img/ic-arrow-down.svg") no-repeat center center;
  background-size: 100%;
  animation: slideDown infinite 1.8s;
}
@keyframes slideDown {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.top-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--project-black-400);
  letter-spacing: 3px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.top-button:hover {
  opacity: 1;
}
.ic-arrow-top {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../../static/img/ic-arrow-down-b.svg") no-repeat center
    center;
  background-size: 100%;
  transform: rotate(180deg);
}
.quick-inquiry-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  height: auto;
  border-radius: 999px;
  background: var(--project-point-color-orange);
  box-shadow: 0 4px 24px 0 rgba(255, 107, 0, 0.5);
  transition: all 0.3s;
}
.quick-inquiry-btn .cta-icon {
  background-color: initial;
  width: 16px;
  height: 16px;
  background-size: 100%;
}
.quick-inquiry-btn p {
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
}
.quick-inquiry-btn:hover {
  transform: scale(1.05);
  background-color: #ff5500;
}
.mobile-quick-inquiry-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  height: auto;
  border-radius: 999px;
  background: var(--project-point-color-orange);
  box-shadow: 0 4px 24px 0 rgba(255, 107, 0, 0.5);
  transition: all 0.3s;
}
.mobile-quick-inquiry-btn .cta-icon {
  background-color: initial;
  width: 16px;
  height: 16px;
  background-size: 100%;
}
.mobile-quick-inquiry-btn p {
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
}
.mobile-quick-inquiry-btn:hover {
  transform: scale(1.05);
  background-color: #ff5500;
}
.point-green {
  color: var(--project-point-color-green);
}

/* section0 -------------------------------------------------------------------------------------------------- */
/* 히어로 섹션 컨테이너 */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  overflow: hidden;
}

/* 1. 스플라인 3D 배경 */
.spline-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  scale: 1.2;
}
.spline-bg img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  height: 100%;
  max-width: none;
}

/* 2. Dim BG */
.dim-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
  pointer-events: none; /* 마우스 이벤트가 스플라인으로 통과하도록 */
}

/* UI 오버레이 래퍼 */
.ui-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

/* 3. 메인 보딩패스 카드 (요청사항 3번: 속성창 기준) */
.boarding-pass-card {
  pointer-events: auto; /* 카드 영역은 클릭 가능하도록 복구 */
  width: 100%;
  max-width: 1040px;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1); /* #FFFFFF 10% */
  /* Drop shadow: X:0, Y:25, Blur:50, Spread:-12, Color:#000000 25% */
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  /* Glassmorphism 효과 */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  color: var(--project-white);
  text-align: left;
}

/* 상단 텍스트 영역 */
.text-group {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.text-group .eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--project-white);
  letter-spacing: 1.4px;
  margin-bottom: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.text-group .eyebrow span {
  width: 24px;
  height: 24px;
}
.text-group .eyebrow span img {
  width: 100%;
  height: 100%;
}
.text-group h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 12px;
}

.text-group p {
  line-height: 24px;
  font-weight: 400;
  color: var(--project-white);
}

/* 중앙 카드 영역 */
.cards-group {
  padding: 40px 0; /* 상하 여백 40px */
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 26px;
}

.inner-card {
  flex: 1;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.inner-card:hover {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 24px;
  color: var(--project-white);
  font-weight: 700;
  line-height: 24px;
}
.abc-card .card-eyebrow {
  background-color: var(--project-point-color-orange);
}
.crudy-card .card-eyebrow {
  background-color: var(--project-point-color-green);
}

.card-arrow {
  width: 20px;
  height: 20px;
  background-image: url(../../static/img/ic-card-arrow-right.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.card-title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  margin: 14px 0 12px 0;
}
.abc-card .card-title img {
  width: 85px;
  height: 35px;
}
.crudy-card .card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.crudy-card .card-title > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.crudy-card .card-title .logo1 img {
  width: 34px;
  height: 34px;
}
.crudy-card .card-title .logo2 img {
  width: 32px;
  height: 32px;
}

/* 포인트 컬러 호버 효과 */
/* .abc-card:hover .card-title {
  color: var(--project-point-color-orange);
}
.crudy-card:hover .card-title {
  color: var(--project-point-color-green);
} */

.card-desc {
  font-size: 14px;
  color: var(--project-white);
  line-height: 20px;
  font-weight: 400;
}

/* 하단 푸터 영역 */
.footer-group {
  padding: 12px 0;
}
.footer-text-box {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
}
.cta-btn-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
}
.cta-btn {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 12px;
  gap: 10px;
  border-radius: 14px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.cta-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  background-size: 15px 15px;
  background-position: center;
  background-repeat: no-repeat;
}
.ic-search-w {
  background-image: url("../../static/img/ic-search-w.svg");
}
.ic-talk-w {
  background-image: url("../../static/img/ic-talk-w.svg");
}
.ic-kakaotalk-w {
  background-image: url("../../static/img/ic-kakaotalk-w.svg");
}
.ic-phone-w {
  background-image: url("../../static/img/ic-phone-w.svg");
}
.cta-btn p {
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
  text-align: left;
}
.cta-btn .phone-text {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

/* --------------------------------------------------------------------------------------------------------------------- */

/* section common style */
.section-floation-nav {
  position: fixed;
  top: 0;
  right: 0;
}
/* section2 */
#section2 .section_title span {
  display: inline-block;
  position: relative;
}
#section2 .section_title span:first-child::before {
  content: "CODE 1";
  white-space: nowrap;
  padding-top: 6px;
  position: absolute;
  top: 0;
  left: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #686868;
}
.total-count-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.total-count-box .count-item-box {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  background: #fffaf6;
}
.total-count-box .count-item-box p {
  text-align: center;
}
.count-item-title {
  color: var(--project-black-900);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}
.count-item-desc {
  color: #4b5563;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding-top: 4px;
}

/* section3 */
#section3 {
  background-color: #faf8f5;
}

/* section5 */
#section5 {
  background-color: #f4f4f5;
}
.keyword-box {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 20px;
}
.keyword-item {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.5);

  color: var(--project-black-700);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.keyword-icon {
  width: 16px;
  height: 16px;
  background-size: 100%;
  background-position: center;
}
.ic-robot {
  background-image: url("../../static/img/ic-section5-robot.svg");
}
.ic-target {
  background-image: url("../../static/img/ic-section5-target.svg");
}
.ic-graph {
  background-image: url("../../static/img/ic-section5-graph.svg");
}
.ic-talk {
  background-image: url("../../static/img/ic-section5-talk.svg");
}

/* section6 */
#section6 {
  background-color: #fafafa;
}
.important-point-list {
  padding-top: 20px;
}
.important-point-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--project-black-700);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.important-point-item:not(:last-child) {
  padding-bottom: 12px;
}
.point-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 100%;
  background-position: center;
}
.ic-check {
  background-image: url("../../static/img/ic-check.svg");
}

/* section7 */
#section7 {
  background-color: #111827;
}
#section7 .section_title {
  color: white;
}
#section7 .section_desc {
  color: #e5e5e5;
}

.auto-slide-box {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  animation: autoScrolling 300s linear infinite;
  width: calc(240px * 21);
  margin-top: 40px;
}
.auto-slide-box .slide-img {
  width: 240px;
  /* height: 94px; */
  margin-right: 12px;
  aspect-ratio: square;
}
.auto-slide-box .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes autoScrolling {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.pbr {
  display: block;
}
.fbr {
  display: none;
}

/* ===== CONSULTATION MODAL STYLES ===== */
/* Modal Animation Keyframes - PC */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* Modal Animation Keyframes - Mobile */
@keyframes modalSlideUpAnimation {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalSlideDownAnimation {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

#consultationModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

#consultationModal.show {
  display: flex;
}

#consultationModal.opening {
  display: flex;
}

#consultationModal.closing {
  display: flex;
}

.modal-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.56);
  cursor: pointer;
  backdrop-filter: blur(3px);
  z-index: 2;
}
.modal-overlay.show {
  display: block;
}

.consultation-modal-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0px 24px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

/* PC Animation States */
@media screen and (min-width: 769px) {
  .consultation-modal-container.opening {
    animation: modalFadeIn 0.3s ease-out;
  }

  .consultation-modal-container.closing {
    animation: modalFadeOut 0.3s ease-out;
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  height: 65px;
}

.modal-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray-900);
  margin: 0;
}

.modal-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: #f4f4f5;
  cursor: pointer;
  transition: background-color 0.2s;
}

.modal-close-btn:hover {
  background-color: #e5e5e5;
}

.modal-close-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-900);
}

.modal-content {
  padding: 24px;
  max-height: 70vh;
  overflow-y: auto;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--gray-700);
}

.form-control {
  padding: 12px 16px;
  border: none;
  border-radius: 14px;
  background-color: #f4f4f5;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--gray-700);
  transition: background-color 0.2s;
  appearance: none;
}

/* select.form-control {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a3a3a3' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
} */

.form-control:hover {
  background-color: #e5e5e5;
}

.form-control:focus {
  outline: none;
  background-color: #e5e5e5;
}

.form-control::placeholder {
  color: var(--gray-400);
}

/* ===== CUSTOM SELECT STYLES ===== */
.custom-select-container {
  position: relative;
  width: 100%;
}

.custom-select-btn {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 14px;
  background-color: #f4f4f5;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.2s;
}

.custom-select-btn:hover {
  background-color: #e5e5e5;
}

.custom-select-btn:focus {
  outline: none;
  background-color: #e5e5e5;
}

.custom-select-btn.active {
  /* border-radius: 14px 14px 0 0; */
  background-color: #e5e5e5;
}

.custom-select-placeholder {
  flex: 1;
  text-align: left;
  color: var(--gray-400);
}

.custom-select-btn.has-value .custom-select-placeholder {
  color: var(--gray-700);
}

.custom-select-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.custom-select-btn.active svg {
  transform: rotate(180deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-top: none;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  max-height: 240px;
  overflow-y: auto;
}

.custom-select-menu::-webkit-scrollbar {
  width: 6px;
}

.custom-select-menu::-webkit-scrollbar-track {
  background: transparent;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  background-color: #d4d4d4;
  border-radius: 3px;
}

.custom-select-menu::-webkit-scrollbar-thumb:hover {
  background-color: #a3a3a3;
}

.custom-select-option {
  padding: 12px 16px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid #f4f4f5;
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background-color: #f4f4f5;
}

.custom-select-option.selected {
  background-color: #f4f4f5;
  color: var(--project-black-900);
  font-weight: 700;
}

/* ===== END CUSTOM SELECT ===== */

.form-agreement {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}

.agreement-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  appearance: none;
  border: 1px solid var(--gray-300);
  border-radius: 5px;
  background-color: #ffffff;
  transition: all 0.2s;
}

.agreement-checkbox:hover {
  border-color: var(--gray-400);
}

.agreement-checkbox:checked {
  background-color: var(--project-point-color-orange);
  border-color: var(--project-point-color-orange);
  background-image: url("../../static/img/ic-checked-w.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.agreement-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.agreement-main {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: var(--gray-700);
  cursor: pointer;
}

.agreement-sub {
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px; /* 150% */
  color: var(--gray-400);
  margin: 0;
}

.submit-btn {
  padding: 16px 40px;
  /* margin-top: 8px; */
  border: none;
  border-radius: 16px;
  background-color: var(--gray-200);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--gray-400);
  cursor: not-allowed;
  transition: all 0.2s;
}

.submit-btn:not(:disabled) {
  background-color: var(--project-point-color-orange);
  color: #ffffff;
  cursor: pointer;
}

.submit-btn:not(:disabled):hover {
  background-color: #ff5500;
}

/* ===== END CONSULTATION MODAL ===== */

/* mobile header style */
#mobileHeader {
  position: fixed;
  top: -60px;
  left: 0;
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background-color: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1;
  transition: top 0.3s;
}
#mobileHeader.is-show {
  top: 0px;
}
.header-title {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--project-black-900);
}
.header-title .dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: transparent;
}
.menu-button {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 0 9px;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f5;
  border-radius: 14px;
}
.ic-menu {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("../../static/img/ic-menu.svg");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
}
.ic-close {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("../../static/img/ic-close.svg");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
}
.snb-box {
  position: fixed;
  right: -310px;
  top: 0;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background-color: white;
  z-index: 1000;
  transition: right 0.3s ease-in-out;
}
.snb-box.show {
  right: 0;
}
.snb-box .snb-top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 16px;
  border-bottom: 1px solid #f0f0f0;
}
.snb-box .snb-top-section .logo-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.snb-box .snb-top-section .logo-box p {
  font-weight: 700;
  line-height: 24px; /* 150% */
  color: var(--project-black-900);
}
.scroll-box {
  height: 100%;
  max-height: calc(100% - 324px);
  padding: 12px;
  overflow-y: auto;
}
.floating-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.home-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 4px 0;
}
.home-button .ic-home {
  width: 32px;
  height: 32px;
  background-image: url("../../static/img/ic-home.svg");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 14px;
  background-color: #f0f0f0;
}
.floating-wrap {
  width: 100%;
}
.floating-wrap .floating-title {
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-align: left;
}
/* .abc .floating-title {
  color: var(--project-point-color-orange);
}
.crew .floating-title {
  color: var(--project-point-color-green);
} */

.floating-wrap li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 12px 10px 28px;
  background-color: transparent;
  border-radius: 14px;
  color: var(--gray-500);
  font-weight: 500;
  transition: all 0.3s;
}
.floating-wrap li a .bar {
  opacity: 0;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 4px;
  border-radius: 999px;
}
.floating-wrap.abc li a .bar {
  background-color: var(--project-point-color-orange);
}
.floating-wrap.crew li a .bar {
  background-color: var(--project-point-color-green);
}
.floating-wrap li a.active {
  background-color: #f4f4f5;
  color: var(--project-black-900);
  font-weight: 700;
}
.floating-wrap li a.active .bar {
  opacity: 1;
}
.quick-menu-box {
  position: relative;
  height: 100%;
  max-height: 264px;
  background-color: #fff;
  z-index: 1;
}
.quick-menu-box .floating-title {
  text-align: left;
  color: var(--gray-700);
  padding-bottom: 0;
}
.quick-menu-box {
  padding: 16px;
  border-top: 1px solid #f0f0f0;
}
.quick-button-box {
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quick-btn {
  width: calc(50% - 5px);
  height: 98px;
  padding: 0 8px;
  border-radius: 16px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.quick-icon {
  width: 40px;
  height: 40px;
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
}
.quick-icon.ic-search-w {
  background-image: url("../../static/img/ic-search-w.svg");
  background-color: var(--project-point-color-orange);
}
.quick-icon.ic-talk-w {
  background-image: url("../../static/img/ic-talk-w.svg");
  background-color: #00b4a3;
}
.quick-icon.ic-kakaotalk-w {
  background-image: url("../../static/img/ic-kakaotalk-brown.svg");
  background-color: #fee500;
}
.quick-icon.ic-phone-w {
  background-image: url("../../static/img/ic-phone-w.svg");
  background-color: #1e293b;
}
.quick-btn p {
  color: #171717;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px; /* 141.667% */
  text-align: center;
}
/* Media Query */
/* pc */

@media screen and (min-width: 1280px) {
}

@media screen and (max-width: 1279px) {
  .pbr {
    display: none;
  }
  .fbr {
    display: block;
  }
}
@media screen and (max-width: 1279px) and (orientation: landscape) {
  .auto-slide-box {
    margin-top: 3.13vw;
  }
}

@media screen and (max-width: 1024px) {
  .inner {
    padding: 0 40px;
  }

  /* pc floating nav */
  .floating-nav-box {
    display: none;
  }
  .mobile-quick-inquiry-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
  }

  /* hero section */
  .boarding-pass-card {
    padding: 34px;
  }
  .text-group {
    padding-bottom: 20px;
  }
  .text-group h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .cards-group {
    padding: 20px 0;
    gap: 16px;
  }
  .inner-card {
    padding: 20px;
  }
  .card-title {
    font-size: 20px;
  }

  /* section 공통 */
  .section_title {
    padding-bottom: 12px;
    font-size: 28px;
    line-height: 36px;
  }

  /* section2 */
  .total-count-box {
    margin-top: 12px;
  }
  .total-count-box .count-item-box {
    padding: 16px 12px;
  }
  .count-item-title {
    font-size: 24px;
    line-height: 32px;
  }

  /* section 5 */
  .keyword-box {
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 12px;
  }
  .keyword-item {
    width: 50%;
    max-width: 168px;
  }
}

/* fold */
@media screen and (max-width: 768px) {
  /* Mobile Animation States */
  .consultation-modal-container.opening {
    animation: modalSlideUpAnimation 0.3s ease-out;
  }

  .consultation-modal-container.closing {
    animation: modalSlideDownAnimation 0.3s ease-out;
  }
  .inner {
    max-width: 376px;
    padding: 0 10px;
  }
  .inner-flex-full-center {
    flex-direction: column;
    justify-content: center;
  }
  .section_title {
    font-size: 28px;
  }
  .section_desc {
    font-size: 14px;
  }

  .fbr {
    display: none;
  }

  /* hero section */
  .boarding-pass-card {
    border-radius: 16px;
    padding: 28px 16px;
  }
  .text-group .eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .text-group .eyebrow span {
    width: 20px;
    height: 20px;
  }
  .text-group p {
    font-size: 14px;
    line-height: 20px;
  }
  .inner-card {
    border-radius: 14px;
  }
  .cards-group {
    flex-direction: column;
    gap: 12px;
  }
  .card-eyebrow {
    font-size: 12px;
    line-height: 16px;
  }
  .card-title {
    margin: 8px 0;
  }
  .abc-card .card-title img {
    width: 63px;
    height: 26px;
  }
  .crudy-card .card-title .logo1 img {
    width: 26px;
    height: 26px;
  }
  .crudy-card .card-title .logo2 img {
    width: 26px;
    height: 28px;
  }
  .card-desc {
    font-size: 12px;
  }
  .footer-text-box {
    font-size: 10px;
    line-height: 14px;
    font-weight: 500;
  }
  .cta-btn-box {
    width: 100%;
    flex-wrap: wrap;
  }
  .cta-btn {
    flex: initial;
    width: calc(50% - 4px);
  }
  .show-more-button {
    font-size: 14px;
  }
  .scroll-icon-box {
    font-size: 16px;
    bottom: 6px;
  }
  .ic-arrow-down {
    width: 20px;
    height: 20px;
  }

  /* section 공통 */
  .title_box {
    max-width: none;
    text-align: center;
    align-items: center;
  }
  .content-img-box,
  .content-info-box {
    width: 100%;
    max-width: 344px;
    margin-top: 20px;
  }
  .row-reverse .title_box {
    align-items: center;
    text-align: center;
  }

  /* section2 */
  .total-count-box {
    margin-top: 16px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .total-count-box .count-item-box {
    width: 100%;
    max-width: 164px;
    padding: 10px 12px;
  }
  #section2 .only_mobile .show-more-button {
    margin-top: 0;
  }

  /* section3 */
  .content-card {
    padding: 12px 16px;
  }
  .content-card:not(:last-child) {
    margin-bottom: 12px;
  }
  .content-text {
    width: calc(100% - 52px);
  }

  /* section4 */
  .auto-slide-box {
    margin-top: 0;
    width: calc(160px * 21);
  }

  /* section6 */
  .important-point-item:not(:last-child) {
    padding-bottom: 8px;
  }

  .important-point-list {
    padding-top: 16px;
  }

  #consultationModal {
    top: initial;
    bottom: 0;
    left: 0;
    transform: initial;
    width: 100%;
  }
  .consultation-modal-container {
    position: relative;
    padding-top: 20px;
    max-width: 100%;
    border-radius: 24px 24px 0 0;
  }
  .consultation-modal-container::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #d4d4d4;
    border-radius: 999px;
  }
  .modal-content {
    padding: 20px 24px;
  }
}

@media screen and (max-width: 480px) {
  .inner-flex-full-center {
    padding-top: 52px;
  }
  .boarding-pass-card {
    padding: 10px 16px;
  }
  .text-group {
    padding-bottom: 10px;
  }
  .text-group h1 {
    font-size: 24px;
    line-height: normal;
    margin-bottom: 4px;
  }
  .text-group p {
    font-size: 12px;
  }
  .cards-group {
    padding: 10px 0;
    gap: 10px;
  }
  .inner-card {
    padding: 14px;
  }
  .card-title {
    margin: 8px 0;
    line-height: normal;
  }
  .card-desc {
    line-height: normal;
  }
  .cta-btn-box {
    padding-top: 10px;
  }
  .cta-btn {
    height: 46px;
    border-radius: 12px;
  }
  .footer-group {
    padding: 10px 0 0 0;
  }

  .section_title {
    font-size: 22px;
    line-height: 1.25;
    padding-bottom: 8px;
  }
  .section_desc {
    line-height: 1.25;
  }
  .content-info-box {
    margin-top: 10px;
  }
  .total-count-box {
    margin-top: 10px;
    gap: 8px;
  }
  .count-item-title {
    font-size: 20px;
    line-height: 24px;
  }
  .content-img-box,
  .content-info-box {
    margin-top: 10px;
  }
  .show-more-button {
    margin-top: 12px;
  }
  .important-point-list {
    padding-top: 12px;
  }
  .important-point-item {
    line-height: normal;
  }
  .important-point-item:not(:last-child) {
    padding-bottom: 4px;
  }
  #section2 .section_title span:first-child::before {
    padding-top: 2px;
  }
}

@media screen and (max-width: 376px) {
  .total-count-box .count-item-box {
    max-width: 44vw;
  }
  .count-item-desc {
    font-size: 3.191vw;
  }
}
