.document_popup_menu {
  display: none;
}
.btnArea {
  display: none;
}
.program-bg {
  width: 100%;
  position: relative;
  padding: 200px 0;
  background-color: #E6ECF9;
  box-sizing: border-box;
}
.program-bg * {
  box-sizing: border-box;
}
.page-con {
  max-width: 1550px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 3;
}
.sc06-tit {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
.sc06-tit > h3 {
  font-size: 50px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.sc06-tit > h3 > span {
  color: #084FFF;
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sc06-tit > p {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
  font-weight: 400;
}
.sc06-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.sc06-box {
  width: calc((100% - 40px) / 5);
  border-radius: 16px;
  border: 2px solid #E5E7EB;
  background-color: #FFF;
  padding: 30px 20px;
  transition: 0.3s;
}
.sc06-box:hover {
  border-color: #084FFF;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
  transform: translateY(-6px);
}
.sc06-box > h5 {
  font-size: 19px;
  color: #1a1a1a;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.sc06-icon {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 1rem;
}
.sc06-icon img {
  width: 100%;
  max-width: 110px;
}
.sc06-card {
  width: 100%;
  border-radius: 12px;
  background-color: #f5f5f7;
  display: flex;
  min-height: 115px;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 20px;
}
.cost {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cost > p {
  width: 10%;
  font-size: 13px;
  color: #666;
  font-weight: 500;
  text-align: center;
}
.cost > h5 {
  text-align: center;
  width: 75%;
  font-size: 17px;
  color: #757575;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 2px solid #d1d5db;
}
.cost > input.number-input {
  text-align: center;
  width: 75%;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 700;
  padding: 4px 12px;
  border: 2px solid #D1D5DB;
  border-radius: 8px;
  background: #FFF;
  outline: none;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cost > input.number-input:hover {
  border-color: #084FFF;
  box-shadow: 0 2px 8px rgba(88, 101, 242, 0.15);
}
.cost > input.number-input:focus {
  border-color: #084FFF;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
}
.cost > input.number-input::-webkit-inner-spin-button, .cost > input.number-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cost > input.number-input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.etc {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #084FFF;
  font-weight: 500;
  position: absolute;
  left: 0;
  bottom: 10px;
}
.select {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #D1D5DB;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 12px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.select:hover {
  border-color: #084FFF;
  box-shadow: 0 2px 8px rgba(88, 101, 242, 0.15);
}
.select:focus-within {
  border-color: #084FFF;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
}
.select > p {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}
.select > select.family-select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 700;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 30px;
  flex: 1;
  text-align: center;
}
.select > span {
  font-size: 14px;
  color: #666;
  position: absolute;
  right: 14px;
  pointer-events: none;
}
.sc06-btn {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
}
.sc06-btn > .submit-btn {
  display: inline-block;
  padding: 20px;
  min-width: 200px;
  border-radius: 50px;
  background: linear-gradient(107deg, #5865F2 0%, #4752C4 100%);
  box-shadow: 0 4px 16px 0 rgba(88, 101, 242, 0.3);
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: "Pretendard", sans-serif;
}
.sc06-btn > .submit-btn > span {
  display: inline-block;
  animation: blink 1.6s infinite;
}
@media (min-width: 1200px) {
  .sc06-wrap-mo {
    display: none;
  }
}
@media (max-width: 1600px) {
  .program-bg {
    padding: 150px 0;
  }
  .page-con {
    max-width: 1440px;
  }
  .sc06-tit > h3 {
    font-size: 45px;
  }
  .sc06-btn > .submit-btn {
    padding: 16px;
    min-width: 180px;
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .program-bg {
    padding: 100px 0;
  }
  .page-con {
    max-width: 1280px;
  }
  .sc06-tit > h3 {
    font-size: 40px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 1199px) {
  .sc06-wrap {
    display: none;
  }
  .sc06-btn {
    display: none;
  }
  .sc06-tit > h3 {
    font-size: 36px;
  }
  .sc06-wrap-mo {
    display: block;
    width: 100%;
  }
  .progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 10px;
    margin-bottom: 32px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6b93f7 0%, #084FFF 100%);
    transition: width 0.4s ease;
    border-radius: 10px;
  }
  .tab-navigation {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
  }
  .tab-navigation::-webkit-scrollbar {
    display: none;
  }
  .tab-button {
    width: calc((100% - 32px) / 5);
    padding: 14px 12px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
    font-family: "Pretendard", sans-serif;
  }
  .tab-button.active {
    background: linear-gradient(135deg, #6b93f7 0%, #084FFF 100%);
    border-color: #6b93f7;
    color: white;
  }
  .tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in;
  }
  .tab-content.active {
    display: block;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .sc06-box {
    width: 100%;
  }
  .navigation-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
  }
  .nav-button {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Pretendard", sans-serif;
  }
  .nav-button.prev {
    background: #f5f5f7;
    color: #666;
  }
  .nav-button.prev:hover {
    background: #e5e7eb;
  }
  .nav-button.next {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
  }
  .nav-button.next:hover {
    background: linear-gradient(135deg, #4752C4 0%, #3a44a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
  }
  .nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
  }
  .submit-button {
    width: 100%;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
    font-family: "Pretendard", sans-serif;
    margin-top: 12px;
  }
  .submit-button:hover {
    background: linear-gradient(135deg, #4752C4 0%, #3a44a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(88, 101, 242, 0.45);
  }
  .submit-button:active {
    transform: translateY(0);
  }
  .cost > p {
    font-size: 16px;
  }
  .cost > h5 {
    font-size: 20px;
  }
  .cost > input.number-input {
    font-size: 20px;
    padding: 10px 14px;
  }
  .select > p {
    font-size: 16px;
  }
  .select > select.family-select {
    font-size: 20px;
  }
}
@media (max-width: 586px) {
  .tab-navigation {
    gap: 4px;
  }
  .tab-button {
    width: calc((100% - 4px) / 5);
    padding: 12px 4px;
    font-size: 13px;
  }
  .navigation-buttons {
    gap: 10px;
  }
  .nav-button {
    padding: 14px;
    font-size: 15px;
  }
  .submit-button {
    padding: 16px;
    font-size: 16px;
  }
}
/*# sourceMappingURL=bea34eb3d7580860a85eefd6d0de8240ef93d512.index.scss.map */
