/* popup */
.pc {
  display: block;
}

.mobile {
  display: none;
}

.layer-popup {
  /* position: absolute; */
  z-index: 9999;
  background-color: #fff;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: auto !important;
}

.layer-popup:nth-child(1) {
  left: 0;
}

.layer-popup img {
  width: 100%;
  height: auto !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.layer-popup .show-chk-wrap {
  display: flex;
  padding: 6px 10px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}

.show-chk-div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.layer-popup .show-chk-wrap a {
  font-size: 16px;
  color: #505050;
  cursor: pointer;
}

.layer-popup .show-chk-wrap a:hover {
  color: #222;
  font-weight: 600;
  transition: 0.3s;
}

.close-popup {
  box-sizing: border-box;
  padding: 4px 12px;
  border: 1px solid #999;
  border-radius: 4px;
}

.close-popup:hover {
  border: 1px solid #505050;
  background-color: #505050;
  color: #fff !important;
  transition: 0.3s;
}

.popup-space {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  top: 5%;
  left: 5%;
  gap: 10px;
  align-items: start;
  z-index: 100;
  width: 95%;
}

/* main */
#main {
  width: 100%;
  height: 100vh;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#ari {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 190px 20px;

  position: relative;
  background: #111 url("../img/ari-bg.jpg") center top / cover no-repeat fixed;
}
#ari img {
  max-width: 510px;
  max-height: 181px;
  width: 45%;
  aspect-ratio: 510/181;
}

#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
  background: url("../img/contact-bg.png") center top / cover no-repeat;
}
#contact .contact-container {
  max-width: 1300px;
  width: 90%;
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

#contact .img-wrap {
  width: 30%;
}
#contact .contact-wrap {
  width: 70%;
}
#contact .img-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  max-width: 430px;
}
#contact .img-wrap img {
  width: 100%;
}
#contact .img-wrap p {
  color: var(--Almost-Black, #191919);
  text-align: center;
}

#contact .contact-wrap {
  display: flex;
  /* width: 800px; */
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--MainGreen, #006343);
  background: url("../img/contact-box-bg.png") lightgray 50% / cover no-repeat;
}
#contact .contact-form {
  width: 100%;
  background: #fff;
  outline: 1px #006343 solid;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}
#contact .contact-form * {
  box-sizing: border-box;
}

/* 필드 그리드 */
#contact .contact-field-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#contact .contact-field-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
#contact .contact-field-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#contact .contact-field-full {
  width: 100%;
}
#contact .contact-label {
  display: block;
  color: #111111;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
#contact .contact-label-opt {
  color: #999999;
}

/* 입력 필드 */
#contact .contact-form input[type="text"],
#contact .contact-form input[type="tel"],
#contact .contact-form input[type="email"],
#contact .contact-form textarea {
  width: 100%;
  height: 44px;
  padding: 10px;
  background: #fff;
  outline: 1px rgba(17, 17, 17, 0.5) solid;
  border: none;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0;
  color: #111111;
}

#contact .contact-form textarea {
  min-height: 44px;
  height: 44px;
  overflow: hidden;
  resize: none;
}

#contact .contact-form input[type="text"]::placeholder,
#contact .contact-form input[type="tel"]::placeholder,
#contact .contact-form input[type="email"]::placeholder,
#contact .contact-form textarea::placeholder {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: rgba(17, 17, 17, 0.5);
  letter-spacing: 0;
}

/* 창업희망지역 드롭다운 화살표 */
#contact .contact-input-arrow-wrap {
  position: relative;
}
#contact .contact-input-arrow-wrap input {
  padding-right: 36px;
}
#contact .contact-select-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}
#contact .contact-select-arrow::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-left: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(-45deg);
}

/* 창업형태 / 점포유무 토글 */
#contact .contact-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
#contact .contact-toggle {
  flex: 1;
  height: 44px;
  padding: 12px 20px;
  background: #fff;
  outline: 1px rgba(0, 0, 0, 0.5) solid;
  border: none;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.2s;
}
#contact .contact-toggle.active {
  outline: 1px #d71718 solid;
  color: #d71718;
  font-weight: 600;
}

/* 하단 동의 + 제출 */
#contact .contact-form-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
#contact .agree-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
#contact .contact-form .checkbox-label {
  display: flex;
  align-items: center;
}
#contact .contact-form .round-checkbox {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: #fff;
  border: 1px solid #ff4713;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  outline: none;
}
#contact .contact-form .round-checkbox:checked {
  background-image: url("../img/check.png");
  background-size: 17px !important;
  background-position: center center !important;
  background-color: #ff4713;
  background-repeat: no-repeat;
  border: none;
}
#contact .contact-form .agree {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  cursor: pointer;
  letter-spacing: 0;
}
#contact .contact-form .agree .agree-open {
  color: #ff4713;
  font-weight: 600;
}

.c-btn {
  width: 150px;
  height: 42px;
  padding: 0 40px;
  background: radial-gradient(ellipse 100% 39% at 50% 0%, #ff7171 0%, #db0000 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: "Gmarket Sans", "GmarketSans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
}

.c-btn:hover {
  background: radial-gradient(ellipse 100% 39% at 50% 0%, #ff8383 0%, #b70000 100%);
}

/* ===== trust ===== */

#trust {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/trust-bg.png") center / cover no-repeat;
}
#trust .fixed-under-bg {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
#trust .fixed-under-bg.mo {
  display: none;
}
#trust .fixed-img-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
#trust .fixed-img-wrap img {
  position: absolute;
  max-width: 460px;
  width: 30%;
}
#trust .fixed-img-wrap .right {
  top: 0;
  right: 0;
}
#trust .fixed-img-wrap .left {
  left: 0;
}

#trust .system-wrap {
  position: relative;
  width: 100%;
  /* max-width: 1080px; */
  max-width: 726px;
  min-height: 820px;
  margin: 0 auto;
}

/* ===== name-wrap 카드 공통 (먼저 선언) ===== */
#trust .system-wrap .name-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 336px;
  height: 160px;
  padding: 50px 77px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.12));
  background: url("../img/trust-name-wrap.png") center / contain no-repeat;
  white-space: nowrap;
}
#trust .system-wrap .name {
  color: var(--mainColor, #381804);
  text-align: center;
  font-family: Paperlogy;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.48px;
}
#trust .system-wrap .stamp {
  position: absolute;
  right: 0;
  top: -10px;
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.7px;
  display: inline-flex;
  transform: rotate(10.084deg);
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--Point-Mandarin, #ff4713);
}

/* ===== 직접 자식 절대 배치 (공통 이후에 선언하여 position override) ===== */
#trust .system-wrap > .name-wrap {
  position: absolute;
}
#trust .system-wrap > svg {
  position: absolute;
}

#trust .system-wrap > .name-row-wrap {
  display: flex;
  justify-content: center;
  /* align-items: center; */
}
#trust .name-row-wrap {
  position: relative;
}

/* 강남본점 */
#trust .system-wrap > .name-row-wrap:nth-child(1) > svg,
#trust .system-wrap > .name-row-wrap:nth-child(2) > svg {
  /* position: relative; */
  margin-top: 75px;
}

/* 종각점 */
#trust .system-wrap > .name-row-wrap:nth-child(2) {
  justify-content: end;
}

/* #trust .system-wrap > .name-row-wrap:nth-child(2) > svg {
  margin-top: 75px;
} */

#trust .system-wrap > .name-row-wrap:nth-child(3) {
  justify-content: start;
  flex-direction: column;
}
#trust .system-wrap > .name-row-wrap:nth-child(3) > svg {
  margin-left: 165px;
}

#trust .system-wrap > .name-row-wrap:nth-child(4) {
  align-items: center;
  gap: 40px;
  position: relative;
}

#trust .system-wrap > .name-row-wrap:nth-child(4) > .stamp {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 105px;
}

#trust .name-row-wrap > .stamp {
  position: static;
  transform: rotate(-10deg);
}

#trust .sub-text-wrap .st-sub-text {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
#trust .sub-text-wrap .st-text {
  margin-top: 8px;
  color: #fff;
  text-align: center;
  font-family: "Gapyeong Hanseokbong";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%; /* 59.2px */
  letter-spacing: -1px;
}
#trust .trust-inner {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
#trust .tit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
#trust .st-tit {
  color: #191919;
}
#trust .st-sub-tit {
  color: #444444;
  font-size: 24px;
  text-align: center;
}
#trust .trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#trust .trust-stat-text {
  color: #444444;
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.48;
  text-align: center;
}
#trust .trust-stat-highlight {
  display: inline-block;
  background: #ff4713;
  color: #fff;
  padding: 0 5px;
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.48;
  text-align: center;
}

/* ===== cost ===== */

#cost {
  width: 100%;
  padding: 120px 0;
  background: #dbd6cc url("../img/cost-bg.png") center / cover no-repeat;
}

#cost .cost-inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

#cost .tit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

#cost .st-tit {
  color: #191919;
}

.st-sub-text {
  color: #444;
  text-align: center;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 148%;
  letter-spacing: -0.6px;
}

#cost .cost-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* 탭 */
#cost .cost-tab-wrap {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
}
#cost .cost-tab-badge-wrap {
  position: relative;
}
#cost .cost-badge {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#cost .cost-badge-text {
  display: inline-block;
  padding: 3px 15px;
  background: #ff4713;
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
#cost .cost-badge-tip {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #ff4713;
}
#cost .cost-tab {
  width: 130px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: #9d8f8c;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}

#cost .cost-tab:hover {
  background: #8b7e7b;
}
#cost .cost-tab.active {
  background: radial-gradient(ellipse 100% 38.31% at 50% 0%, #ff4713 0%, #d12e00 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 테이블 */
#cost .cost-table-wrap {
  width: 1000px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0.9;
}
#cost .cost-table-scroll {
  border-radius: 12px;
  overflow: hidden;
}
#cost .cost-table {
  width: 100%;
  border-collapse: collapse;
}
#cost .cost-table thead tr {
  border-bottom: 2px solid #381804;
}
#cost .cost-table thead th {
  height: 56px;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: #381804;
  vertical-align: middle;
}
#cost .cost-table thead th.col-category {
  width: 260px;
  background: #eee8dc;
  text-align: center;
}
#cost .cost-table thead th.col-detail {
  text-align: center;
}
#cost .cost-table thead th.col-price {
  width: 240px;
  text-align: center;
}
#cost .cost-table thead th .price-unit {
  font-weight: 400;
}
#cost .cost-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}
#cost .cost-table tbody tr:last-child {
  border-bottom: none;
}
#cost .cost-table tbody td {
  padding: 12px 16px;
  font-size: 20px;
  vertical-align: middle;
  word-break: keep-all;
}
#cost .cost-table tbody td.col-category {
  background: #ece5d8;
  color: #4a2f27;
  font-weight: 700;
  text-align: center;
  width: 260px;
  word-break: keep-all;
}
#cost .cost-table tbody td.col-detail {
  color: #505050;
  font-weight: 400;
}
#cost .cost-table tbody td.col-price {
  color: #111;
  font-weight: 700;
  text-align: center;
  width: 240px;
}
#cost .cost-table .price-note {
  font-weight: 400;
}

/* 합계 */
#cost .cost-total-row {
  display: flex;
  align-items: center;
  background: #f32735;
  border-radius: 12px;
  overflow: visible;
}
#cost .total-label {
  width: 260px;
  flex-shrink: 0;
  padding: 16px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
#cost .total-price {
  flex: 1;
  padding: 16px 40px 16px 16px;
  color: #fff;
  font-size: 32px;
  font-family: "GmarketSans", "Gmarket Sans", sans-serif;
  font-weight: 500;
  text-align: right;
  display: inline-block;
  transform-origin: right center;
  animation: price-zoom 1s ease-in-out infinite alternate;
}
@keyframes price-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
#cost .cost-note {
  text-align: right;
  color: #505050;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  word-break: keep-all;
}

#cost-marquee {
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--Black, #030303);
  border-bottom: 1px solid var(--Black, #030303);
  background: #fff;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
}
#cost-marquee .marquee-track {
  animation: marquee-left 14s linear infinite;
}

.marquee-track .marquee-tag {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

#ari-marquee {
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #030303;
  border-bottom: 1px solid #030303;
  background: #231815;
  padding: 12px 0;
}

#ari-marquee .marquee-track {
  animation: marquee-right 14s linear infinite;
}
@keyframes marquee-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===========================
   #process - 창업 절차
=========================== */
#process {
  position: relative;
  padding: 100px 0;
  background: #ede5d0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#process .process-deco {
  position: absolute;
  pointer-events: none;
}
#process .process-deco--left {
  max-width: 344px;
  left: 0;
  top: 86px;
  width: 25%;
}
#process .process-deco--left svg, #process .process-deco--right svg {
  width: 100%;
  height: auto;
}
#process .process-deco--right {
  width: 40%;
  max-width: 636px;
  right: -20px;
  bottom: 35px;
}
#process .process-wrap {
  position: relative;
  width: 90%;
  max-width: 1300px;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
#process .st-tit {
  color: var(--Almost-Black, #191919);
  text-align: center;
}

/* 단계 목록 */
#process .step-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
#process .step-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* 단계 카드 */
#process .step-item {
  position: relative;
  max-width: 280px;
  width: 22%;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#process .step-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #f32735;
  font-size: 20px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  line-height: 24px;
  padding: 0 8px;
  z-index: 1;
}
#process .step-card {
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid #f32735;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* 아이콘 공통 */
#process .step-icon {
  max-width: 64px;
  max-height: 64px;
  width: 30%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 단계별 정보 */
#process .step-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
#process .step-tit {
  font-size: 24px;
  font-family: "Gapyeong Hanseokbong", serif;
  font-weight: 700;
  color: #f32735;
  text-align: center;
  line-height: 1.2;
}
#process .step-desc {
  font-size: 16px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  color: #444;
  text-align: center;
  line-height: 1.3;
}

/* 단계 간 화살표 */
#process .step-arrow {
  display: block;
  width: 36px;
  height: 17px;
  background: #f32735;
  clip-path: polygon(0 30%, 70% 30%, 70% 0%, 100% 50%, 70% 100%, 70% 70%, 0 70%);
  flex-shrink: 0;
}

/* GRAND OPEN 카드 */
#process .step-item--grand-open {
  background: #ff4713;
}
#process .step-item--grand-open .step-num {
  background: #ff4713;
  color: #fff;
  font-family: "Paperlogy", sans-serif;
  font-weight: 600;
  top: 5px;
}
#process .step-item--grand-open .step-card {
  border-color: #fff;
  justify-content: center;
  padding-top: 10px;
}
#process .grand-open-txt {
  font-size: 40px;
  font-family: "Paperlogy", sans-serif;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

#profit {
  position: relative;
  padding: 40px;
  background: #f32735 url("../img/profit-bg.png") center center / cover no-repeat;
  /* background: url("../img/contact-box-bg.png") lightgray 50% / cover no-repeat; */
}
#profit .profit-inner {
  padding: 100px 20px;
  background: rgba(17, 17, 17, 0.95) url("../img/profit-inner-bg.png") center center / cover no-repeat;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
#profit .tit-wrap {
  text-align: center;
}
#profit .st-tit {
  color: #fff;
}
#profit .st-tit span {
  /* color: #ffb800; */
  background: var(--Gold, linear-gradient(137deg, #ffb800 18.01%, #d58000 31.78%, #ffdc80 47.51%, #d58000 83.25%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 두 열 레이아웃 */
#profit .profit-cols {
  max-width: 1300px;
  width: 90%;
  display: flex;
  gap: 100px;
  align-items: stretch;
  justify-content: center;
}
#profit .profit-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 0 0 calc(50% - 50px);
  min-width: 0;
}
#profit .profit-table-box {
  flex: 1;
}
#profit .profit-table-wrap {
  flex: 1;
}

/* 열 레이블 카드 */
#profit .col-label {
  position: relative;
  width: 70%;
  max-width: 350px;
  height: 74px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-family: "Gapyeong Hanseokbong", serif;
  font-weight: 700;
  color: #111;
}
#profit .col-label::before,
#profit .col-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 44px;
  background: #f32735;
}
#profit .col-label::before {
  left: 0;
  border-radius: 0 4px 4px 0;
}
#profit .col-label::after {
  right: 0;
  border-radius: 4px 0 0 4px;
}

/* 테이블 박스 */
#profit .profit-table-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
#profit .profit-table-wrap {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#profit .profit-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  flex: 1;
  height: 100%;
}
#profit .profit-table tbody {
  height: 100%;
}
#profit .profit-table tbody tr {
  height: 1%;
}

/* thead */
#profit .profit-table thead {
  background: #fff;
  border-bottom: 2px solid #505050;
}
#profit .profit-table thead th {
  height: 56px;
  padding: 0 16px;
  font-size: 24px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  color: #111;
  text-align: center;
}
#profit .profit-table thead th:first-child {
  background: #eee;
  width: 50%;
}

/* tbody */
#profit .profit-table tbody tr {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#profit .profit-table tbody th {
  background: #eee;
  padding: 12px;
  width: 50%;
  font-size: 24px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  color: #111;
  text-align: center;
  min-height: 68px;
}
#profit .profit-table tbody td {
  padding: 12px 16px;
  font-size: 24px;
  font-family: "Gmarket Sans", sans-serif;
  font-weight: 500;
  color: #111;
  text-align: center;
  height: 68px;
}

/* 하단 합계 바 */
#profit .profit-foot {
  display: flex;
  background: #ff4713;
  border-radius: 12px;
  overflow: hidden;
}
#profit .profit-foot span {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#profit .profit-foot span:first-child {
  width: 50%;
  font-size: 24px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
}
#profit .profit-foot span:not(:first-child) {
  flex: 1;
  font-size: 28px;
  font-family: "Gmarket Sans", sans-serif;
  font-weight: 500;
}

/* 상세 테이블 (3컬럼) 오버라이드 */
#profit .profit-table--detail thead th:first-child,
#profit .profit-table--detail tbody th {
  width: 34%;
}
#profit .profit-table--detail tbody td:nth-child(2) {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
}
#profit .profit-foot--detail span:first-child {
  width: 200px;
}

/* ===== #efficiency ===== */
#efficiency {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: url("../img/efficiency-bg.jpg") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

#efficiency .deco-shape {
  position: absolute;
  display: block;
  /* background: #6B6B6B; */
}
#efficiency .deco-shape--lt {
  max-width: 290px;
  width: 20%;
  height: 124px;
  left: -15px;
  top: 73px;
}
#efficiency .deco-shape--rt {
  width: 18%;
  max-width: 234px;
  height: 103px;
  right: -40px;
  top: 165px;
}
#efficiency .deco-shape--lm {
  width: 15%;
  max-width: 234px;
  height: 103px;
  left: -70px;
  top: 365px;
}

#efficiency .efficiency-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: 1300px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

#efficiency .tit-wrap {
  width: 100%;
  max-width: 1260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
#efficiency .tit-wrap .st-tit {
  color: var(--Almost-Black, #191919);
}
#efficiency .st-tit span {
  color: #ff4713;
}
#efficiency .st-sub-text strong,
#efficiency .st-sub-tit strong {
  color: #ff4713;
  font-weight: 600;
}

/* merit card list */
#efficiency .merit-list {
  width: 90%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#efficiency .merit-item {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 50px;
  height: 460px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 59px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
  background: #000;
  overflow: hidden;
}
#efficiency .merit-item.first::before,
#efficiency .merit-item.second::before,
#efficiency .merit-item.merit-item--wide::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
#efficiency .merit-item.second::before {
  opacity: 0.2;
}
#efficiency .merit-item.first::before {
  background-image: url(../img/merit-bg1.jpeg);
}
#efficiency .merit-item.second::before {
  background-image: url(../img/merit-bg2.jpg);
}
#efficiency .merit-item.merit-item--wide::before {
  background-image: url(../img/merit-bg3.jpeg);
}
#efficiency .merit-item.merit-item--wide::before {
  opacity: 0.2;
  background-position: left;
}
#efficiency .merit-item video {
  aspect-ratio: 1 / 1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  outline: 15px rgba(255, 255, 255, 0.2) solid;
  object-fit: cover;
  flex-shrink: 0;
  z-index: 3;
}
#efficiency .merit-item--wide {
  display: flex;
  justify-content: space-between;
  padding: 0 !important;
  align-items: stretch;
  height: 460px;
}
#efficiency .merit-item--wide video {
  /* width: 100%; */
  max-width: 800px;
  width: 60%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  outline: none;
  object-fit: cover;
}
#efficiency .merit-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  z-index: 3;
}
#efficiency .merit-item:nth-child(3) .merit-body {
  padding: 50px 50px 50px 0;
}
#efficiency .merit-num {
  display: block;
  text-align: right;
  color: #f6dfa4;
  font-size: 40px;
  font-family: "Gmarket Sans", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
#efficiency .merit-txt {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#efficiency .merit-tit {
  text-align: right;
  color: #fff;
  font-size: 40px;
  font-family: "Gapyeong Hanseokbong", serif;
  font-weight: 400;
  line-height: 1.35;
}
#efficiency .merit-desc {
  text-align: right;
  color: #fff;
  font-size: 24px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  line-height: 1.35;
}

/* tagline */
#efficiency .efficiency-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 32px;
  font-family: "Gapyeong Hanseokbong", serif;
  font-weight: 700;
  color: #191919;
}
#efficiency .tagline-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  border-radius: 100px;
  border: 2px solid #f32735;
}
#efficiency .tagline-badge span {
  padding: 12px 24px;
  background: #f32735;
  border-radius: 60px;
  color: #fff;
  font-family: "Gapyeong Hanseokbong", serif;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
/* ===========================
   반응형 미디어 쿼리
=========================== */

@media (max-width: 1280px) {
  /* profit */
  #profit {
    padding: 20px;
  }
  #profit .profit-cols {
    gap: 40px;
  }
  #profit .profit-col {
    gap: 12px;
    flex: 0 0 calc(50% - 20px);
  }
  #profit .col-label {
    font-size: 30px;
  }
  #profit .profit-foot span:first-child,
  #profit .profit-table thead th,
  #profit .profit-table tbody th {
    font-size: 20px;
  }
  #profit .profit-table-box {
    gap: 8px;
  }
  #profit .profit-table tbody td {
    padding: 10px;
    font-size: 19px;
  }
  #profit .profit-foot span:not(:first-child) {
    font-size: 23px;
  }

  #profit .profit-cols {
    gap: 50px;
  }
  /* efficiency */
  #efficiency {
    padding: 100px 20px;
  }
  #efficiency .merit-item--wide {
    gap: 30px;
  }
  #efficiency .merit-item--wide video {
    width: 55%;
  }
  /* trust */
  #trust {
    padding: 100px 20px;
  }
  #trust .st-tit {
    font-size: 52px;
  }
  .st-sub-tit,
  .st-sub-text,
  #trust .trust-stat-text,
  #trust .trust-stat-highlight {
    font-size: 20px;
  }
  #cost {
    padding: 100px 0;
  }
  /* contact */
  #contact {
    padding: 100px 20px;
  }
  #contact .contact-form {
    padding: 30px;
  }
}

@media (max-width: 1200px) {
  #efficiency .merit-desc {
    font-size: 22px;
  }
  /* process */
  .step-item {
    width: 220px;
  }
  #process .step-icon {
    width: 25%;
  }
  #process .step-tit {
    /* font-size: 20px; */
  }
  #process .step-desc {
    /* font-size: 13px; */
  }
  #process .grand-open-txt {
    /* font-size: 30px; */
  }
  #process .step-num {
    /* font-size: 17px;
    line-height: 20px; */
  }
}

@media (max-width: 1100px) {
  /* cost */
  .cost-table-wrap {
    width: 100%;
  }
  /* efficiency */
  #efficiency .merit-tit {
    font-size: 35px;
  }
  #efficiency .merit-desc {
    font-size: 20px;
  }
  #process .step-item {
    aspect-ratio: 1 / 1.1;
  }
  #process .step-tit {
    font-size: 20px;
  }
  #process .grand-open-txt {
    font-size: 32px;
  }
}

@media (max-width: 1024px) {
  /* profit */
  #profit .profit-cols {
    gap: 40px;
  }
  /* efficiency */
  #efficiency .cloud {
    display: none;
  }
  #efficiency .merit-tit {
    font-size: 30px;
  }
  #efficiency .merit-desc {
    font-size: 17px;
  }
  #efficiency .merit-item:nth-child(1) img,
  #efficiency .merit-item:nth-child(2) img {
    width: 50%;
    height: fit-content;
  }
  #efficiency .efficiency-tagline {
    gap: 6px 12px;
    max-width: 570px;
    width: 100%;
  }
  #efficiency .tagline-badge {
    padding: 6px;
  }
  /* ari */
  #ari {
    padding: 120px 20px;
  }
  /* trust */
  #trust .system-wrap {
    max-width: 595px;
  }
  #trust .system-wrap .name {
    font-size: 40px;
  }
  #trust .system-wrap .name-wrap {
    justify-content: center;
    width: 275px;
    height: 132px;
    padding: 35px 50px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(1) > svg,
  #trust .system-wrap > .name-row-wrap:nth-child(2) > svg {
    margin-top: 64px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(2) > svg {
    margin-right: -45px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(3) > svg {
    margin-left: 141px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(4) {
    justify-content: space-between;
  }
  #trust .system-wrap .stamp {
    font-size: 22px;
    padding: 4px 13px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(4) > .stamp {
    width: 90px;
  }
  #trust .sub-text-wrap .st-text {
    font-size: 35px;
  }
  /* cost */
  #cost .cost-content {
    gap: 30px;
  }
  #cost .total-label,
  #cost .cost-table thead th.col-category {
    width: 28%;
  }
  #cost .cost-table thead th,
  #cost .cost-table tbody td {
    font-size: 18px;
  }
  #cost .total-label {
    font-size: 20px;
  }
  #cost .total-price {
    font-size: 28px;
  }
  #cost .cost-note {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  /* process */
  #process .step-card {
    gap: 12px;
  }
  #process .step-num {
    /* font-size: 14px;
    line-height: 19px; */
  }
  #process .step-item {
    /* padding: 7px; */
  }
  #process .step-icon {
    /* width: 25px;
    height: 25px; */
  }
  #process .step-desc {
    /* font-size: 11px; */
  }
  #process .grand-open-txt {
    /* font-size: 26px; */
  }
  #process .step-tit {
    /* font-size: 16px; */
  }
  #process .step-item {
    width: calc(25% - 7.5px);
  }
  #process .step-row > svg {
    display: none;
  }
  #process .step-list {
    gap: 20px;
  }
  /* contact */
  #contact .contact-container {
    gap: 40px;
    width: 100%;
    flex-direction: column;
  }
  #contact .contact-form {
    padding: 25px;
  }
  #contact .contact-toggle {
    padding: 7px 9px;
  }
  #contact .img-wrap {
    gap: 20px;
  }
  #contact .contact-wrap {
    width: 91%;
  }
}

@media (max-width: 900px) {
  /* profit */
  #profit {
    padding: 20px;
  }
  #profit .profit-inner {
    padding: 60px 21.5px;
    gap: 50px;
  }
  #profit .profit-cols {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  #profit .col-label {
    width: 45%;
  }
  /* efficiency */
  #efficiency {
    padding: 80px 16px;
  }
  #efficiency .efficiency-inner {
    gap: 50px;
  }
  #efficiency .merit-item video, #efficiency .merit-item--wide video {
    width: 100%;
    max-height: none;
    border-radius: 0;
    height: auto;
    outline: none;
  }
  #efficiency .merit-num,
  #efficiency .merit-tit {
    font-size: 28px;
  }
  #efficiency .merit-desc {
    font-size: 18px;
  }
  #efficiency .tagline-badge {
    font-size: 25px;
  }
  #efficiency .merit-item {
    padding: 0;
    border: none;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  #efficiency .merit-item--wide {
    align-items: stretch;
    padding: 0;
    gap: 0;
  }
  #efficiency .merit-body {
    padding: 0 40px 40px;
    width: 100%;
    align-items: start;
    gap: 20px;
    width: 100%;
  }
  #efficiency .merit-item:nth-child(3) .merit-body {
    padding: 40px;
    width: 100%;
  }
  #efficiency .merit-desc,
  #efficiency .merit-tit {
    text-align: left;
  }
  /* trust */
  #trust {
    padding: 80px 0;
  }
  /* process */
  #process {
    padding: 80px 0;
  }
  #process .process-wrap {
    gap: 50px;
  }
  #process .st-tit {
    font-size: 40px;
  }
  .step-arrow {
    width: 17px;
    height: 36px;
    clip-path: polygon(30% 0%, 70% 0%, 70% 70%, 100% 70%, 50% 100%, 0% 70%, 30% 70%);
  }
  .step-item {
    width: 100%;
    max-width: 320px;
  }
  /* cost */
  #cost {
    padding: 80px 0;
  }
  #cost .cost-inner {
    gap: 50px;
  }
  #cost .st-tit {
    font-size: 40px;
  }
  #cost .st-sub-tit {
    font-size: 18px;
  }
  #cost .cost-note {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .cost-tab {
    width: 80px;
    height: 44px;
    font-size: 18px;
  }
  .cost-table thead th,
  .cost-table tbody td {
    font-size: 15px;
    padding: 10px;
  }
  .cost-table thead th.col-category,
  .cost-table tbody td.col-category {
    width: 100px;
  }
  .cost-table thead th.col-price,
  .cost-table tbody td.col-price {
    width: 120px;
  }
  .total-label {
    width: 100px;
    font-size: 18px;
    padding: 12px;
  }
  .total-price {
    font-size: 22px;
    padding-right: 16px;
  }
  .cost-note {
    font-size: 15px;
  }
  #process .process-wrap {
    width: 95%;
  }
  #process .step-item {
    padding: 7.5px;
  }
  #process .step-tit {
    font-size: 18px;
  } 
  #process .step-desc {
    font-size: 14px;
  } 
  /* contact */
  #contact {
    padding: 80px 16px;
    background-attachment: unset;
  }
  .contact-form {
    padding: 40px 30px;
  }
  .contact-field-row {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* profit */
  #profit {
    padding: 16px;
  }
  #profit .profit-inner {
    gap: 40px;
  }
  #profit .profit-table-box,
  #profit .profit-table-wrap,
  #profit .profit-foot {
    width: 100%;
  }
  #profit .profit-cols {
    width: 100%;
    gap: 50px;
  }
  #profit .profit-col {
    width: 100%;
    gap: 8px;
  }
  #profit .col-label {
    font-size: 23px;
    height: 50px;
  }
  #profit .col-label::before,
  #profit .col-label::after {
    width: 6px;
    height: 30px;
  }
  #profit .profit-table-box {
    gap: 6px;
  }
  #profit .profit-table thead th,
  #profit .profit-table tbody th,
  #profit .profit-table tbody td,
  #profit .profit-foot span {
    font-size: 18px;
  }
  #profit .profit-foot span:not(:first-child) {
    font-size: 20px;
  }
  #profit .profit-table thead th:first-child,
  #profit .profit-table tbody th {
    width: 50%;
  }
  #profit .profit-table--detail thead th:first-child,
  #profit .profit-table--detail tbody th {
    width: 34%;
  }
  #profit .profit-foot span:first-child {
    width: 50%;
  }
  #profit .profit-foot--detail span:first-child {
    width: 34%;
  }
  /* efficiency */
  #efficiency {
    padding: 70px 20px;
    gap: 40px;
  }
  #efficiency .efficiency-inner {
    gap: 40px;
  }
  #efficiency .merit-list {
    width: 100%;
  }
  #efficiency .merit-item {
    gap: 30px;
  }
  #efficiency .merit-item .merit-body {
    padding: 0 25px 30px;
  }
  #efficiency .merit-item:nth-child(3) .merit-body {
    padding: 0 25px 30px;
    width: 100%;
    height: 50%;
  }
  #efficiency .merit-tit {
    font-size: 22px;
  }
  #efficiency .merit-desc {
    font-size: 16px;
  }
  #efficiency .efficiency-tagline {
    font-size: 22px;
    text-align: center;
    flex-wrap: wrap;
  }
  #efficiency .tagline-badge {
    font-size: 22px;
  }
  #efficiency .tagline-badge span {
    padding: 8px 16px;
  }
  #efficiency .merit-body {
    gap: 12px;
  }
  #efficiency .merit-txt {
    gap: 16px;
  }
  #efficiency .merit-item {
    border-radius: 6px;
  }
  #efficiency .efficiency-tagline {
    max-width: 520px;
    gap: 6px 8px;
  }
  /* ari */
  #ari {
    padding: 107px 20px;
  }
  #trust .fixed-img-wrap .right {
    top: -15px;
    right: -40px;
  }

  #trust .fixed-img-wrap .left {
    left: -40px;
    top: 400px !important;
  }

  #trust .tit-wrap {
    gap: 24px;
  }
  .marquee-track .marquee-tag {
    gap: 16px;
  }
  .marquee-track .marquee-tag svg:nth-child(even) {
    height: 11px;
    width: auto;
  }
  .marquee-track .marquee-tag svg:nth-child(odd) {
    height: 12px;
    width: 12px;
  }
  /* cost */
  #cost { 
    padding: 70px 0;
  }
  #cost .cost-inner {
    gap: 40px;
  }
  #cost .cost-total-row {
    margin-top: -6px;
  }
  #cost-marquee,
  #ari-marquee {
    padding: 7px 0;
  }
  /* trust */
  #trust {
    padding: 70px 16px;
  }
  #trust .st-tit {
    font-size: 40px;
  }
  #trust .system-wrap .name {
    font-size: 28px;
  }
  #trust .system-wrap .name-wrap {
    width: 200px;
    height: 100px;
    padding: 20px 32px;
  }
  #trust .system-wrap .stamp {
    font-size: 18px;
    padding: 4px 11px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(4) > .stamp {
    width: 78px;
  }
  #trust .system-wrap {
    max-width: 440px;
    min-height: auto;
  }
  .st-sub-text {
    word-break: keep-all;
  }
  #trust .sub-text-wrap .st-text {
    font-size: 25px;
  }
  #trust .fixed-under-bg {
    width: 166%;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(1) > svg,
  #trust .system-wrap > .name-row-wrap:nth-child(2) > svg {
    margin-top: 48px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(2) {
    margin-top: -40px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(2) > svg {
    margin-right: -88px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(3) {
    margin-top: -12px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(3) > svg {
    margin-left: 100px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(4) {
    margin-top: -20px;
  }
  .st-sub-tit,
  .st-sub-text,
  #trust .trust-stat-text,
  #trust .trust-stat-highlight {
    font-size: 16px;
    line-height: 148%; /* 23.68px */
    letter-spacing: -0.4px;
  }
  #trust .trust-stat-highlight {
    padding: 5px;
    width: 100%;
  }
  #trust .sub-text-wrap .st-sub-text {
    font-size: 17px;
  }
  /* cost */
  #cost .cost-content {
    gap: 20px;
  }
  #cost .total-label,
  #cost .cost-table thead th.col-category {
    width: 20%;
  }
  #cost .cost-table thead th.col-price {
    width: 40%;
  }
  #cost .total-label,
  #cost .cost-table thead th,
  #cost .cost-table tbody td {
    font-size: 16px;
  }
  #cost .total-price {
    font-size: 20px;
    padding: 10px 15px 10px 10px;
  }
  #cost .cost-table thead th {
    padding: 0px 8px;
  }
  #cost .cost-table tbody td {
    padding: 10px 8px;
  }
  #cost .cost-tab {
    font-size: 18px;
    letter-spacing: -0.45px;
    line-height: 130%;
    width: 80px;
    height: 42px;
  }
  /* process */
  #process {
    padding: 70px 0;
  }
  #process .process-wrap {
    width: 100%;
    gap: 40px;
  }
  #process .step-row {
    flex-wrap: wrap;
  }
  #process .step-item {
    aspect-ratio: 1 / 1;
    max-width: none;
    width: 48%;
  }

  #process .step-tit {
    font-size: 24px;
  }

  #process .step-desc {
    font-size: 16px;
  }
  #process .grand-open-txt {
    font-size: 40px;
  }
  #process .step-num {
    font-size: 18px;
  }

  #process .step-row > svg {
    /* display: block; */
  }
  #process .step-row > svg:nth-child(4) {
    display: none;
  }
  /* contact */
  #contact {
    padding: 60px 16px;
  }
  #contact .img-wrap  {
    gap: 20px;
  }
  #contact .contact-container {
    flex-direction: column;
  }
  #contact .contact-wrap,
  #contact .img-wrap {
    width: 100%;
  }
  #contact .contact-field-item {
    width: 100%;
  }
  #contact .img-wrap img {
    width: 70%;
  }

  #contact .c-btn {
    height: 50px;
  }
  .contact-form {
    padding: 32px 20px;
  }
  .contact-field-row {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 650px) {
  #efficiency .efficiency-tagline, #efficiency .tagline-badge {
    font-size: 20px;
  }
  #efficiency .efficiency-tagline {
    gap: 6px;
    max-width: 450px;
  }
  #efficiency .tagline-badge {
    padding: 4px;
  }
  /* ari */
  #ari {
    background-attachment: initial;
  }
  #ari img {
    width: 80%;
  }
  /* cost */
  .cost-inner {
    gap: 36px;
  }
  #cost .st-tit {
    font-size: 32px;
  }
  #cost .st-sub-tit {
    font-size: 15px;
  }
  .cost-tab-wrap {
    gap: 10px;
  }
  .cost-tab {
    width: 68px;
    height: 40px;
    font-size: 15px;
  }
  .cost-table thead th,
  .cost-table tbody td {
    font-size: 12px;
    padding: 8px 6px;
  }
  .cost-table thead th.col-category,
  .cost-table tbody td.col-category {
    width: 72px;
  }
  .cost-table thead th.col-price,
  .cost-table tbody td.col-price {
    width: 80px;
  }
  .total-label {
    width: 72px;
    font-size: 15px;
    padding: 10px 8px;
  }
  .total-price {
    font-size: 16px;
    padding: 10px 12px;
  }
  .cost-note {
    font-size: 12px;
  }
  #cost .cost-note {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  #cost .cost-table-scroll, #cost .cost-total-row {
    border-radius: 6px;
  }
  #process .process-deco--left {
    top: 25px;
  }
  #profit .col-label {
    border-radius: 2px;
    border-width: 0.25px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
  }
  #profit .profit-table-wrap, #profit .profit-foot {
    border-radius: 6px;
  }
  #process .step-item {
    padding: 5px;
    border-radius: 0;
  }
  #process .step-card {
    border-radius: 0;
  }
  #process .step-tit {
    font-size: 20px;
  }
  #process .step-desc {
    font-size: 14px;
  }
  #process .grand-open-txt {
    font-size: 32px;
  }
  #process .step-num {
    font-size: 16px;
  }
  #contact .contact-wrap {
    padding: 6px;
  }
  #contact .contact-form {
    padding: 20px;
  }
  #contact .contact-form-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
    align-items: start;
  }
  .agree-wrap {
    flex-wrap: wrap;
  }
  .c-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* profit */
  #profit .profit-table thead th,
  #profit .profit-table tbody th,
  #profit .profit-table tbody td,
  #profit .profit-foot span {
    font-size: 14px;
    padding: 8px;
    line-height: 120%; /* 16.8px */
    letter-spacing: -0.35px;
  }

  #profit .col-label::before,
  #profit .col-label::after {
    width: 2px;
    height: 12px;
  }

  #profit .col-label {
    width: 22%;
    /* min-width: 87.5px; */
    min-width: 90px;
    height: 19px;
    font-size: 9px;
    line-height: 150%; /* 13.5px */
    letter-spacing: -0.225px;

    padding: 1.75px 0 2.75px 0;
    border-radius: 2px;
    border: 0.25px solid #111;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
  }
  #profit .profit-table thead th {
    height: auto;
    padding: 7px;
  }
  #profit .profit-table tbody td,
  #profit .profit-table tbody th {
    height: auto;
    padding: 10px;
  }
  #profit .profit-table thead th,
  #profit .profit-table tbody th,
  #profit .profit-table tbody td,
  #profit .profit-foot span {
    font-size: 12px;
    line-height: 14px; /* 116.667% */
    letter-spacing: -0.3px;
  }

  #profit .profit-foot span:first-child {
    font-size: 12px;
    line-height: 14px; /* 116.667% */
    letter-spacing: -0.3px;
  }

  #profit .profit-foot span:not(:first-child) {
    font-size: 14px;
    line-height: 120%; /* 16.8px */
    letter-spacing: -0.35px;
  }

  #efficiency .deco-shape {
    display: none;
  }
  /* efficiency */
  #efficiency .merit-num {
    font-size: 22px;
  }
  #efficiency .merit-tit {
    font-size: 18px;
  }
  #efficiency .merit-desc {
    font-size: 14px;
  }
  #efficiency .efficiency-tagline {
    font-size: 18px;
    gap: 8px;
  }
  #efficiency .tagline-badge {
    font-size: 18px;
  }
  #efficiency .tagline-badge span {
    padding: 6px 14px;
  }
  /* trust */
  #trust {
    padding: 60px 16px;
  }
  #trust .st-tit {
    font-size: 32px;
    line-height: 135%; /* 43.2px */
    letter-spacing: -0.64px;
    padding-bottom: 12px;
  }
  #trust .fixed-under-bg {
    display: none;
  }

  #trust .fixed-under-bg.mo {
    display: block;
    width: 100%;
  }

  .st-sub-tit,
  .st-sub-text,
  #trust .trust-stat-text,
  #trust .trust-stat-highlight {
    /* font-size: 15px; */
  }
  #trust .system-wrap > .name-row-wrap:nth-child(4) > .stamp {
    width: 58px;
  }

  #trust .system-wrap .name {
    font-size: 22px;
    line-height: 130%; /* 29.653px */
    letter-spacing: 0.228px;
  }
  #trust .system-wrap .name-wrap {
    width: 165px;
    height: 80px;
    padding: 16px 23px;
  }
  #trust .fixed-under-bg {
    width: 215%;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(1) > svg,
  #trust .system-wrap > .name-row-wrap:nth-child(2) > svg {
    margin-top: 38px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(2) {
    margin-top: -65px;
  }
  #trust .system-wrap .stamp {
    font-size: 13.306px;
    line-height: 130%; /* 17.298px */
    letter-spacing: -0.333px;
    padding: 2px 8px;
    top: -6px;
  }
  #trust .sub-text-wrap .st-text {
    margin-top: 16px;
    font-size: 20px;
    line-height: 148%; /* 29.6px */
    letter-spacing: -0.5px;
  }
  #trust .sub-text-wrap .st-sub-text {
    font-size: 16px;
    line-height: 148%; /* 23.68px */
    letter-spacing: -0.4px;
  }

  #trust .system-wrap > .name-row-wrap:nth-child(2) > svg {
    margin-right: -134px;
  }
  #trust .system-wrap {
    max-width: 345px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(3) {
    margin-top: -35px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(3) > svg {
    margin-left: 85px;
  }
  #trust .system-wrap > .name-row-wrap:nth-child(4) {
    margin-top: -40px;
    gap: 10px;
  }

  /* cost */
  #cost .tit-wrap {
    gap: 20px;
  }
  #cost .cost-tab-wrap {
    gap: 10px;
  }
  #cost .cost-tab, #cost .cost-tab-badge-wrap {
    width: calc(25% - 7.5px);
  }
  #cost .cost-tab-badge-wrap .cost-tab {
    width: 100%;
  }
  #cost .total-label {
    font-size: 12px;
    line-height: 14px; /* 116.667% */
    letter-spacing: -0.3px;
    padding: 8px;
  }
  #cost .cost-table tbody td {
    padding: 6px 8px;
  }

  #cost .total-price {
    font-size: 16px;
    line-height: 120%; /* 19.2px */
    letter-spacing: -0.4px;
    padding: 8px 20px 8px 8px;
  }
  #cost .cost-table thead th,
  #cost .cost-table tbody td {
    font-size: 10px;
    line-height: 14px; /* 140% */
    letter-spacing: -0.25px;
  }
  #cost .cost-table thead th {
    height: auto;
    padding: 7px 8px;
  }
  #cost .cost-note {
    font-size: 12px;
    letter-spacing: -0.3px;
  }

  /* process */
  #process .st-tit {
    font-size: 32px;
  }
  #process .step-row {
    /* flex-direction: column;
    align-items: center; */
  }
  #process .step-item {
    /* width: 100%; */
  }
  #process .step-num {
    font-size: 16px;
    line-height: 120%; /* 19.2px */
    letter-spacing: -0.4px;
  }
  #process .step-item {
    padding: 5px;
    gap: 5px;
    border-radius: 0;
    height: auto;
  }

  #process .step-card {
    padding: 24px 0 10px 0;
    gap: 16px;
    border-radius: 0;
    min-height: auto;
  }
  #process .step-icon {
    /* width: %; */
  }

  #process .step-icon {
    max-width: 32px;
    max-height: 32px;
  }
  #process .step-info {
    gap: 4px;
  }

  #process .step-tit {
    font-size: 16px;
    line-height: 120%; /* 19.2px */
    letter-spacing: -0.4px;
  }

  #process .step-desc {
    font-size: 12px;
    line-height: 130%; /* 15.6px */
    letter-spacing: -0.3px;
  }
  #process .step-list {
    gap: 10px;
  }

  .step-card {
    height: auto;
    min-height: 200px;
  }
  #contact .contact-form {
    padding: 20px;
  }
  #contact .contact-container {
    width: 100%;
  }
  #contact .contact-label,
  #contact .contact-form input[type="text"],
  #contact .contact-form input[type="tel"],
  #contact .contact-form input[type="email"],
  #contact .contact-form textarea,
  #contact .contact-form input[type="text"]::placeholder,
  #contact .contact-form input[type="tel"]::placeholder,
  #contact .contact-form input[type="email"]::placeholder,
  #contact .contact-form textarea::placeholder,
  #contact .contact-form .agree {
    font-size: 16px;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
  }
  #contact .contact-toggle {
    font-size: 16px;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
    padding: 10px 14px;
  }

  #contact .img-wrap img {
    width: 60%;
  }

}

@media(max-width: 400px) {
  #efficiency .efficiency-tagline {
    max-width: 175px;
  }
  #cost .cost-note {
    font-size: 10px;
    letter-spacing: -0.25px;
  }
}

@media(max-width: 350px) {
  #process .step-card {
    padding: 18px 0 10px 0;
    gap: 12px;
  }
  #process .step-tit {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  #process .step-desc {
    font-size: 10px;
    letter-spacing: -0.25px;
  }
  #process .grand-open-txt {
    font-size: 28px;
  }
  #process .step-icon {
    width: 28px;
    height: 28px;
  }
  #efficiency .merit-item {
    gap: 20px;
  }
  #efficiency .merit-item .merit-body {
    padding: 0 20px 20px;
  }
}
