@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
}

/* 메인 비주얼(확정안됨) */
.main_visual {
  background-color: black;
  aspect-ratio: 1920/1080;
}


/* work_safety_section */
.work_safety_section {
  background: #fff;
  padding: 144px 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 72px;
  overflow: hidden;
}

.work_safety_section .work_safety_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.work_safety_section .title {
  color: #1D1D19;
  text-align: center;
  font-family: "Bebas Neue";
  font-size: clamp(36px, 6vw, 76px);
  /* ✅ 유동적 폰트 크기 */
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.work_safety_section .image_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
  gap: 0;
}

.work_safety_section .image_wrap .img_box {
  flex: 1 1 25%;
  aspect-ratio: 425/567;
  padding: 10px;
  background: linear-gradient(0deg, #F4F3F2 0%, #F4F3F2 100%);
  border: 1px solid #1D1D19;
}

.work_safety_section .image_wrap .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 반응형 */
@media (max-width:1024px) {
  .work_safety_section .image_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .work_safety_section .image_wrap .img_box {
    flex: 1 1 calc(50% - 22px);
  }

  /* ✅ 2열 구조 */
}


@media(max-width:768px) {
  .work_safety_section {
    padding: 60px 0;
  }
}



/* Safety First=============================================== */
.safety_experience_section {
  padding: 144px 0;
  background: #ECEAE7;
  border-bottom: 1px solid #1D1D19;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 72px;
  overflow: hidden;
}

.safety_experience_section .safety_experience_box {
  width: 100%;
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.safety_experience_section .title {
  text-align: center;
  font-family: "Bebas Neue";
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 400;
  color: #1D1D19;
  text-transform: uppercase;
}

/* image + text layout */
.safety_experience_section .content_wrap {
  display: flex;
  height: 540px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.safety_experience_section .image_box {
  flex: 1 1 50%;
  height: 100%;
  background: linear-gradient(0deg, rgba(29, 29, 25, 0.4) 0%, rgba(29, 29, 25, 0.4) 100%);
}

.safety_experience_section .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safety_experience_section .text_box {
  margin: 0;
  flex: 1 1 50%;
  height: 540px;
  padding: 0 72px;
  background: #F4F3F2;
  border: 1px solid #1D1D19;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.safety_experience_section .text_box .quote:nth-child(1) {
  font-family: Pretendard;
  font-size: 48px;
  font-weight: 600;
  color: #1D1D19;
  text-align: left;
  width: 100%;
}

.safety_experience_section .text_box .quote:nth-child(2) {
  font-family: Pretendard;
  font-size: 48px;
  font-weight: 600;
  color: #1D1D19;
  text-align: right;
  width: 100%;
}

.safety_experience_section .text_box .desc_group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding-top: 36px;
  width: 100%;
}

.safety_experience_section .text_box .desc_strong {
  font-size: 20px;
  font-weight: 600;
  color: #1D1D19;
  line-height: 30px;
}

.safety_experience_section .text_box .desc_normal {
  font-size: 16px;
  font-weight: 400;
  color: #747373;
  line-height: 24px;
}

/* what_we_do */
.safety_experience_section .what_we_do_box {
  width: 100%;
  padding: 0 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.safety_experience_section .sub_title {
  text-align: center;
  font-family: "Bebas Neue";
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 400;
  color: #1D1D19;
  text-transform: uppercase;
}

.safety_experience_section .list_wrap {
  display: flex;
  width: 100%;
}

.safety_experience_section .list_item {
  flex: 1 1 0;
  background: #F4F3F2;
  border-top: 1px solid #1D1D19;
  border-bottom: 1px solid #1D1D19;
  border-right: 1px solid #1D1D19;
  display: flex;
  flex-direction: column;
}

.safety_experience_section .list_item:first-child {
  outline: 1px solid #1D1D19;
  outline-offset: -1px;
}

.safety_experience_section .num_box {
  background: #1D1D19;
  padding: 9px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.safety_experience_section .num_box span {
  font-family: "Bebas Neue";
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  color: #E4FF18;
}

.safety_experience_section .txt_box {
  padding: 36px 72px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1px solid;
}

.safety_experience_section .txt_title {
  font-size: 20px;
  font-weight: 600;
  color: #1D1D19;
}

.safety_experience_section .txt_desc {
  font-size: 16px;
  font-weight: 400;
  color: #747373;
  line-height: 24px;
}

/* 반응형 */
@media (max-width:1024px) {
  .safety_experience_section .content_wrap {
    flex-direction: column;
    height: auto;
  }

  .safety_experience_section .text_box {
    width: 100%;
    padding: 60px 4vw;
    box-sizing: border-box;
  }

  .safety_experience_section .list_wrap {
    flex-wrap: wrap;
  }

  .safety_experience_section .list_item {
    flex: 1 1 calc(50% - 20px);
    margin: 10px;
  }

  .safety_experience_section .safety_experience_box {
    max-width: 93.75%;
  }
}

@media (max-width:768px) {
  .safety_experience_section {
    padding: 100px 0;
  }

  .safety_experience_section .list_item {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  .safety_experience_section .text_box .desc_group {
    padding: 40px 2vw 0 2vw;
  }

  .safety_experience_section .text_box .quote:nth-child(1),
  .safety_experience_section .text_box .quote:nth-child(2) {
    font-size: 36px;
  }

  br {
    display: none;
  }

  * {
    word-break: keep-all;
  }
}


/* insight_section ==================================================*/
.insight_section {
  background: #fff;
  width: 100%;
  align-self: stretch;
  padding: 144px 0px;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 72px;
}

.insight_section .insight_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.insight_section .title {
  width: 868px;
  height: 85px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #1D1D19;
  font-size: 76px;
  font-family: "Bebas Neue";
  font-weight: 400;
  text-transform: uppercase;
  word-wrap: break-word;
}

/* row */
.insight_section .row {
  align-self: stretch;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.insight_section .card {
  flex: 1 1 0;
  aspect-ratio: 566/377;
  padding: 9px;
  background: #ECEAE7;
  outline: 1px solid #1D1D19;
  outline-offset: -1px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  box-sizing: border-box;
}

.insight_section .card:not(:first-child) {
  border-top: 1px solid #1D1D19;
  border-right: 1px solid #1D1D19;
  border-bottom: 1px solid #1D1D19;
}

.insight_section .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight_section .card_title {
  color: #1D1D19;
  font-size: 20px;
  font-family: Pretendard;
  font-weight: 600;
  word-wrap: break-word;
}

@media (max-width:1400px) {
  .insight_section .row {
    padding: 0 2vw;
  }
}

/* 반응형 */
@media (max-width:1024px) {
  .insight_section {
    padding: 100px 0px;
  }

  .insight_section .row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .insight_section .card {
    flex: 1 1 calc(50% - 18px);
    margin: 9px;
  }

  .insight_section .title {
    font-size: clamp(36px, 5vw, 60px);
    width: auto;
    height: auto;
  }
}

/* create_safe_section ================================*/
.create_safe_section {
  position: relative;
  width: 100%;
  padding: 144px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  overflow: hidden;
}

.create_safe_section::before {
  content: "";
  position: fixed;
  /* ✅ 고정 위치 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1D1D19 url("/img/banner_img.jpg") center center/cover no-repeat;
  background-blend-mode: soft-light, normal;
  z-index: -1;
  /* 콘텐츠 뒤에 위치 */
}


.create_safe_section .create_safe_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 72px;
  width: 100%;
}

.create_safe_section .title {
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 76px;
  font-weight: 400;
  color: #FFF;
  text-transform: uppercase;
  word-wrap: break-word;
}

/* CTA 버튼 */
.create_safe_section .cta_box {
  width: 100%;
  max-width: 280px;
  height: 48px;
  position: relative;
  background: rgba(228, 255, 24, 0.20);
  outline: 1px solid #E4FF18;
  outline-offset: -1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
  padding: 0 36px;
  border: none;
}

.create_safe_section .cta_text {
  color: #E4FF18;
  font-size: 20px;
  font-family: Pretendard;
  font-weight: 600;
  text-align: center;
}

.create_safe_section .arrow_box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.create_safe_section .cta_box::after {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  top: -4px;
  left: -4px;
  border-top: 4px solid #E4FF18;
  border-left: 4px solid #E4FF18;
}

.create_safe_section .cta_box::before {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  bottom: -4px;
  right: -4px;
  border-bottom: 4px solid #E4FF18;
  border-right: 4px solid #E4FF18;
}


/* 반응형 */
@media (max-width:1400px) {
  .create_safe_section {
    padding: 120px 0px;
  }

  .create_safe_section .title {
    font-size: clamp(40px, 5vw, 68px);
  }
}

@media (max-width:1024px) {
  .create_safe_section {
    padding: 100px 0px;
  }

  .create_safe_section .cta_box {
    gap: 48px;
  }

  .create_safe_section .title {
    font-size: clamp(36px, 6vw, 60px);
  }
}

@media (max-width:768px) {
  .create_safe_section {
    padding: 80px 0px;
    gap: 48px;
  }

  .create_safe_section .cta_box {
    gap: 36px;
    height: 44px;
  }

  .create_safe_section .title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .create_safe_section .arrow_box .arrow {
    width: 20px;
    height: 20px;
  }

  .create_safe_section .cta_text {
    font-size: 18px;
  }
}





/* CTA 버튼 */
.works_gallery_section .cta_box {
  width: 100%;
  max-width: 280px;
  height: 48px;
  position: relative;
  background: #E4FF18;
  outline: 1px solid #E4FF18;
  outline-offset: -1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
  padding: 0 36px;
  border: none;
}

.works_gallery_section .cta_text {
  color: #000;
  font-size: 20px;
  font-family: Pretendard;
  font-weight: 600;
  text-align: center;
}

.works_gallery_section .arrow_box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.works_gallery_section .cta_box::after {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  top: -4px;
  left: -4px;
}

.works_gallery_section .cta_box::before {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  bottom: -4px;
  right: -4px;
}


.youare_visual_wrap {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  /* background-color: #fff; */
  padding-top: 72px;
}

.youare_visual_wrap a img {
  width: 100%;
  max-width: 1920px;
  object-fit: cover;
}


/* .safety_cta_section {
  width: 100%;
  padding: 144px 0px;
  background: #E4FD19;
  overflow: hidden;
}

.safety_cta_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.safety_cta_title_wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.safety_cta_title {
  color: #1A1A1A;
  font-size: 62px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  text-transform: capitalize;
  line-height: 74px;
  margin: 0;
}

.safety_cta_description {
  width: 100%;
  text-align: right;
  color: #1A1A1A;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 27px;
  margin: 0;
}

@media (max-width: 1700px) {
  .safety_cta_container {
    width: 93.75%;
  }

  .safety_cta_section {
    padding: 120px 0px;
  }

  .safety_cta_title {
    font-size: 52px;
    line-height: 62px;
  }
}

@media (max-width: 1200px) {
  .safety_cta_section {
    padding: 100px 0px;
  }

  .safety_cta_title {
    font-size: 48px;
    line-height: 58px;
  }

  .safety_cta_description {
    font-size: 17px;
    line-height: 26px;
  }
}

@media (max-width: 968px) {
  .safety_cta_section {
    padding: 80px 0px;
  }

  .safety_cta_container {
    gap: 24px;
  }

  .safety_cta_title {
    font-size: 42px;
    line-height: 52px;
  }

  .safety_cta_description {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .safety_cta_section {
    padding: 60px 0px;
  }

  .safety_cta_title {
    font-size: 36px;
    line-height: 44px;
  }

  .safety_cta_description {
    font-size: 15px;
    line-height: 23px;
  }
}

@media (max-width: 480px) {
  .safety_cta_section {
    padding: 50px 0px;
  }

  .safety_cta_container {
    gap: 20px;
  }

  .safety_cta_title {
    font-size: 28px;
    line-height: 36px;
  }

  .safety_cta_description {
    font-size: 14px;
    line-height: 21px;
  }
} */


/* Works Portfolio Gallery Section */
.works_gallery_section {
  padding: 0;
  background: #F3F3F2;
  border-bottom: 1px solid #1D1D19;
  overflow: hidden;
}

.works_gallery_inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 144px 0px;
}

/* Header */
.works_gallery_header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 72px;
}

.works_gallery_title {
  color: #1A1A1A;
  font-size: 62px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  text-transform: capitalize;
  line-height: 74px;
  margin: 0;
}

.works_gallery_subtitle {
  color: #6F6F6F;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 27px;
  margin: 0;
}

/* Gallery Grid */
.works_gallery_grid {
  display: flex;
  gap: 36px;
  margin-bottom: 72px;
}

.works_gallery_column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Gallery Items */
.works_gallery_item {
  position: relative;
  background: white;
  overflow: hidden;
}

.works_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.works_gallery_item:hover img {
  transform: scale(1.05);
}

/* Item Heights */
.works_gallery_item_tall {
  height: 715px;
}

.works_gallery_item_medium {
  height: 536px;
}

.works_gallery_item_short {
  height: 402px;
}

/* More Button */
.works_gallery_more_btn {
  width: 300px;
  height: 48px;
  background: #E4FF18;
  border: 1px solid #1D1D19;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  cursor: pointer;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.works_gallery_more_btn:hover {
  background: #d4ef08;
  transform: translateY(-2px);
}

.works_gallery_more_text {
  color: #1D1D19;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}

/* More Button Icons */
.works_gallery_more_icon {
  width: 25px;
  height: 25px;
  border: 2px solid #1D1D19;
  display: inline-block;
}

.works_gallery_more_icon_left {
  border-left: none;
}

.works_gallery_more_icon_right {
  border-right: none;
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 1700px) {
  .works_gallery_inner {
    padding: 120px 0px;
    width: 93.75%;
  }

  .works_gallery_title {
    font-size: 52px;
    line-height: 62px;
  }

  .works_gallery_item_tall {
    height: auto;
  }

  .works_gallery_item_medium {
    height: auto;
  }

  .works_gallery_item_short {
    height: auto;
  }
}

@media (max-width: 968px) {
  .works_gallery_inner {
    padding: 100px 0px;
  }

  .works_gallery_header {
    gap: 12px;
    margin-bottom: 48px;
  }

  .works_gallery_title {
    font-size: 42px;
    line-height: 50px;
  }

  .works_gallery_subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .works_gallery_grid {
    gap: 24px;
    margin-bottom: 48px;
  }

  .works_gallery_column {
    gap: 24px;
  }

}

@media (max-width: 768px) {
  .works_gallery_inner {
    padding: 80px 0px;
  }

  .works_gallery_title {
    font-size: 36px;
    line-height: 43px;
  }

  .works_gallery_grid {
    flex-direction: column;
    gap: 20px;
  }

  .works_gallery_column {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .works_gallery_inner {
    padding: 60px 0px;
  }

  .works_gallery_header {
    margin-bottom: 36px;
  }

  .works_gallery_title {
    font-size: 32px;
    line-height: 38px;
  }

  .works_gallery_subtitle {
    font-size: 14px;
    line-height: 21px;
  }

  .works_gallery_grid {
    gap: 16px;
    margin-bottom: 36px;
  }

  .works_gallery_column {
    gap: 16px;
  }

  .works_gallery_more_text {
    font-size: 18px;
  }

  .works_gallery_more_icon {
    width: 20px;
    height: 20px;
  }
}



/* 20251202 추가 */
.main_intro_box {
  background: #0A0A0A;
  width: 100%;
  height: 100vh;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.main_intro_box .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: inherit;
}

.main_intro_box .inner h3 {
  color: #FFF;
  font-family: Lato;
  font-size: 62px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  /* 74.4px */
  text-transform: capitalize;

  animation: scaleUp 2s ease-out forwards;
}

@keyframes scaleUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.safety_cta_section {
  background: #E4FD19;
  /* padding: 144px 0; */
  height: 100vh;
  max-height: 1080px;
}

.safety_cta_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: inherit;
}

.safety_cta_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 170px;
  width: 100%;
}

.safety_cta_title_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.safety_cta_title_left,
.safety_cta_title_right {
  color: #1A1A1A;
  font-size: 72px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  text-transform: capitalize;
  line-height: 86.4px;
  margin: 0;
}

.safety_cta_logo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.safety_cta_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin 5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.safety_cta_description {
  width: 100%;
  text-align: right;
  color: #1A1A1A;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 27px;
  margin: 0;
}

/* 반응형 */

@media (max-width: 1400px) {

  .safety_cta_title_left,
  .safety_cta_title_right {
    font-size: 48px;
  }
}


@media (max-width: 1024px) {
  .safety_cta_section {
    padding: 80px 0;
    height: 400px;
  }

  .safety_cta_title_left,
  .safety_cta_title_right {
    font-size: 36px;
    line-height: 57.6px;
  }

  .safety_cta_logo {
    width: 80px;
    height: 80px;
  }

  .safety_cta_description {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 800px) {
  .safety_cta_section {
    padding: 60px 0;
    height: 300px;
  }

  .safety_cta_content {
    gap: 60px;
  }

  .safety_cta_title_wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .safety_cta_title_left,
  .safety_cta_title_right {
    font-size: 36px;
    line-height: 43.2px;
    text-align: center;
  }

  .safety_cta_logo {
    width: 60px;
    height: 60px;
  }

  .safety_cta_description {
    font-size: 14px;
    line-height: 21px;
    text-align: center;
  }

  /* .safety_cta_inner {
    min-height: unset;
  } */
}

@media (max-width: 480px) {

  .safety_cta_title_left,
  .safety_cta_title_right {
    font-size: 28px;
    line-height: 33.6px;
  }

  .safety_cta_description {
    font-size: 12px;
    line-height: 18px;
  }
}

.work_img_list_box ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;

}

.work_img_list_box li {
  /* width: calc(33.333% - 20px); */
  width: calc(50% - 20px);
  aspect-ratio: 1 / 0.56284;
}

.work_img_list_box li img {
  width: 100%;
  height: 100%;
}


.process_box {
  position: relative;
}

.process_box_title_box {
  width: 100%;
  transform: translateY(144px);
}

.process_box_title_box h3 {
  color: #FFF;
  font-family: Pretendard;
  font-size: clamp(30px, 3.2vw, 62px);
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  /* 74.4px */
  text-transform: capitalize;
}

@media (max-width: 1400px) {
  .process_box_title_box {
    transform: translateY(72px);
  }
}

@media (max-width: 1000px) {
  .process_box_title_box {
    transform: translateY(36px);
  }

  .work_img_list_box li {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .work_img_list_box li {
    width: 100%;
  }
}



/* 20251205 추가 */
.process_box_title_box h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.process_select {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ff6b35;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: #ff6b35;
  padding: 0 25px 5px 0;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff6b35' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  transition: all 0.3s ease;
}

.process_select option {
  background: #0A0A0A;
}

.process_select:focus {
  border-bottom-color: inherit;
}

/* Agency - 주황색 */
.process_select.color-01 {
  color: #ff6b35;
  border-bottom-color: #ff6b35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff6b35' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
}

/* Brand - 노란색 */
.process_select.color-02 {
  color: #ffd93d;
  border-bottom-color: #ffd93d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffd93d' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
}

/* Enterprise - 파란색 */
.process_select.color-03 {
  color: #6bcfff;
  border-bottom-color: #6bcfff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236bcfff' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
}

/* 옵션 색상 */
.process_select option[value="01"] {
  color: #ff6b35;
}

.process_select option[value="02"] {
  color: #ffd93d;
}

.process_select option[value="03"] {
  color: #6bcfff;
}



/* 20251229 추가 */
/* CSS - 추가 스타일 */
.process_box_title_box {
  position: relative;
}

.process_box_title_box h3 .process_text {
  transition: color 0.3s;
}

.process_box_title_box h3 .process_text.color-01 {
  color: #ff6b35;
}

.process_box_title_box h3 .process_text.color-02 {
  color: #ffd93d;
}

.process_box_title_box h3 .process_text.color-03 {
  color: #6bcfff;
}

.process_arrow {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #1A1A1A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process_arrow:hover {
  opacity: 0.7;
}

.process_arrow img {
  width: 10px;
  height: 10px;
}

/* ============================================
   Workflow Intro Section - 20250102 추가
   ============================================ */
.workflow_intro_section {
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  height: 100vh;
}

.workflow_container {
  display: flex;
  width: 100%;
}

/* Left Sidebar */
.workflow_sidebar {
  width: 41.666667%;
  min-width: 400px;
  max-width: 600px;
  flex-shrink: 0;
  background: #0a0a0a;
  border-right: 1px solid #27272a;
  padding: 144px clamp(40px, 6.25vw, 120px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-sizing: border-box;
}

.workflow_sidebar_inner {
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
}

.workflow_controls_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
}

.workflow_grid_bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, #333 1px, transparent 0);
  background-size: 32px 32px;
}

/* Scanline Animation */
.workflow_scanline_wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.workflow_scanline {
  width: 100%;
  height: 2px;
  background: rgba(163, 230, 53, 0.3);
  box-shadow: 0 0 20px rgba(132, 204, 22, 0.3);
  filter: blur(1px);
  animation: scanline 4s linear infinite;
}

@keyframes scanline {
  0% { transform: translateY(0); }
  100% { transform: translateY(100vh); }
}

/* Random Coords */
.workflow_coords {
  position: absolute;
  top: 40px;
  right: 16px;
  font-family: monospace;
  font-size: 9px;
  color: #27272a;
  text-align: right;
  pointer-events: none;
  user-select: none;
  display: none;
}

/* Glowing Orb */
.workflow_glow_orb {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(163, 230, 53, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  display: none;
}

.workflow_vertical_line {
  position: absolute;
  left: 20px;
  top: 200px;
  width: 1px;
  height: 80px;
  background: rgba(163, 230, 53, 0.5);
  display: none;
}

.workflow_title_section {
  position: relative;
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.workflow_bg_text {
  position: absolute;
  left: -24px;
  top: -40px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(39, 39, 42, 0.4);
  line-height: 1;
  pointer-events: none;
  overflow: hidden;
  height: 128px;
  width: 100%;
  user-select: none;
  display: none;
}

.workflow_main_title {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  mix-blend-mode: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-transform: uppercase;
}

.workflow_subtitle_wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.workflow_subtitle_line {
  width: 72px;
  height: 1px;
  background: #e4ff18;
}

.workflow_subtitle_dot {
  width: 6px;
  height: 6px;
  background: #e4ff18;
}

.workflow_subtitle_text {
  font-family: 'GulimChe', monospace;
  font-size: 12px;
  font-weight: 400;
  color: #e4ff18;
  letter-spacing: 3.6px;
  text-transform: none;
  margin: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.workflow_status_wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.workflow_status_badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #3f3f46;
  border: none;
  backdrop-filter: blur(2px);
  padding: 4px 9px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.workflow_status_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
}

.workflow_status_text {
  font-family: monospace;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.workflow_divider_line {
  flex: 1;
  height: 1px;
  background: #3f3f46;
}

.workflow_nav_tabs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.workflow_role_btn {
  width: 100%;
  height: 64px;
  border: 1px solid #3f3f46;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.workflow_role_inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.workflow_role_btn.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: #e4ff18;
  box-shadow: none;
}

/* Noise texture for active state */
.workflow_role_btn.active::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.1;
  pointer-events: none;
}

/* Corner accents */
.workflow_role_corner {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.workflow_role_corner_tr {
  top: 0;
  right: 0;
  border-top: 2px solid #e4ff18;
  border-right: 2px solid #e4ff18;
}

.workflow_role_corner_bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid #e4ff18;
  border-left: 2px solid #e4ff18;
}

.workflow_role_btn.active .workflow_role_corner {
  opacity: 0;
}

/* Icon styling */
.workflow_role_icon {
  transition: all 0.3s;
  opacity: 1;
  transform: rotate(0deg);
  color: #3f3f46;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.workflow_role_btn.active .workflow_role_icon {
  opacity: 1;
  transform: rotate(0deg);
  color: #e4ff18;
}

.workflow_role_btn:not(.active):hover .workflow_role_icon {
  opacity: 1;
  color: #71717a;
}

/* Text styling */
.workflow_role_text {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.3s;
  line-height: 1;
}

.workflow_role_btn.active .workflow_role_text {
  color: #fff;
  font-size: 24px;
  transform: translateX(0);
}

.workflow_role_btn:not(.active) .workflow_role_text {
  color: #3f3f46;
  font-size: 24px;
}

.workflow_role_btn:not(.active):hover {
  border-color: #3f3f46;
  background: transparent;
}

.workflow_role_btn:not(.active):hover .workflow_role_text {
  color: #71717a;
}

.workflow_ai_btn {
  width: 100%;
  height: 42px;
  border: 1px solid #a3e635;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.workflow_ai_btn:hover {
  background: rgba(163, 230, 53, 0.1);
}

.workflow_ai_btn_content {
  display: flex;
  align-items: center;
  gap: 10.5px;
}

.workflow_ai_icon {
  flex-shrink: 0;
}

.workflow_ai_text {
  font-size: 10.5px;
  font-weight: 700;
  color: #a3e635;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.workflow_ai_arrow {
  flex-shrink: 0;
}

/* Right Content Area */
.workflow_content_area {
  flex: 1;
  background: #fff;
  overflow-y: auto;
  position: relative;
  min-width: 0;
}

.workflow_content_inner {
  width: 100%;
  padding: 86px clamp(40px, 6.25vw, 128px) 40px;
  box-sizing: border-box;
  padding-top:144px;
}

.workflow_content_header {
  margin-bottom: 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workflow_breadcrumb {
  display: none;
  align-items: center;
  gap: 10.5px;
  margin-bottom: 28px;
  font-size: 9.5px;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.workflow_breadcrumb_dot {
  width: 7px;
  height: 7px;
  background: #84cc16;
  border-radius: 50%;
  flex-shrink: 0;
}

.workflow_breadcrumb_text {
  color: #a1a1aa;
  font-weight: 400;
}

.workflow_breadcrumb_sep {
  color: #d4d4d8;
}

.workflow_breadcrumb_role {
  color: #000;
  font-weight: 700;
}

.workflow_content_title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.workflow_title_line {
  width: 72px;
  height: 4px;
  background: #0a0a0a;
  margin-bottom: 0;
}

/* Process List */
.workflow_process_list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.workflow_process_item {
  border: none;
  border-bottom: none;
  padding: 13px 36px;
  cursor: pointer;
  border-radius: 0;
  background: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.workflow_process_item:last-child {
  border-bottom: none;
}

.workflow_process_item:hover {
  background: #f5f5f5;
}

.workflow_process_item.expanded {
  background: #f9f9f9;
}

.workflow_process_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: 100%;
  box-sizing: border-box;
}

.workflow_process_left {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  min-width: 0;
}

.workflow_process_dot {
  width: 10px;
  height: 10px;
  border-radius: 5.25px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.workflow_process_dot.active {
  width: 10px;
  height: 10px;
  background: #c2c2c2;
  transform: scale(1);
}

.workflow_process_item.expanded .workflow_process_dot.active {
  background: #e4ff18;
  box-shadow: 0 0 6px rgba(228, 255, 24, 0.4);
}

.workflow_process_dot.completed {
  background: #c2c2c2;
}

.workflow_process_dot.pending {
  background: #c2c2c2;
}

.workflow_process_dot.warning {
  background: #fe7c50;
  box-shadow: 0 0 6px rgba(254, 124, 80, 0.4);
}

.workflow_process_title {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  line-height: 38px;
  transition: all 0.3s;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.workflow_process_title.active {
  color: #0a0a0a;
}

.workflow_process_title.completed {
  color: #c2c2c2;
}

.workflow_process_title.pending {
  color: #c2c2c2;
}

.workflow_process_item.expanded .workflow_process_title.pending {
  color: #0a0a0a;
}

.workflow_process_item.expanded .workflow_process_dot.pending {
  background: #e4ff18;
}

.workflow_process_right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.workflow_process_item.expanded .workflow_process_right {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
}

.workflow_process_chevron {
  width: 19px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.3s;
  background-image: url('/img/workflow_chevron_gray.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}

.workflow_process_item.expanded .workflow_process_chevron {
  transform: rotate(0deg);
  background-image: url('/img/workflow_chevron.svg');
}

.workflow_process_expand {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out, opacity 0.2s ease-out, margin-top 0.3s ease-out;
  opacity: 0;
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}

.workflow_process_item.expanded .workflow_process_expand {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 18px;
}

.workflow_process_expand_inner {
  overflow: hidden;
  padding-left: 46px;
  border-left: 1px solid #e4ff18;
  margin-left: 4px;
  box-sizing: border-box;
  width: calc(100% - 50px);
}

.workflow_process_desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #747373;
  line-height: 1.5;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: keep-all;
}

/* 반응형 */
@media (max-width: 1400px) {
  .workflow_sidebar {
    width: 45%;
    min-width: 350px;
    max-width: 600px;
    padding: 100px clamp(30px, 5vw, 80px);
  }
  
  .workflow_sidebar_inner {
    width: 100%;
    max-width: 100%;
  }
  
  .workflow_content_inner {
    padding: 100px clamp(30px, 5vw, 80px) 40px;
  }
  
  .workflow_title_section {
    max-width: 100%;
  }
  
  .workflow_content_header {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .workflow_container {
    flex-direction: column;
  }

  .workflow_sidebar {
    width: 100%;
    max-width: 100%;
    padding: 150px 40px;
  }
  
  .workflow_sidebar_inner {
    width: 100%;
    max-width: 100%;
  }

  .workflow_content_inner {
    padding: 60px 40px 40px;
  }

  .workflow_main_title {
    font-size: 60px;
    line-height: 60px;
  }
  
  .workflow_title_section {
    width: 100%;
    max-width: 100%;
  }

  .workflow_content_title {
    font-size: 52px;
  }
  
  .workflow_content_header {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .workflow_sidebar {
    max-width: 100%;
    padding: 150px 20px;
  }

  .workflow_content_inner {
    padding: 40px 20px 40px;
  }

  .workflow_role_btn {
    height: 56px;
    padding: 0 16px;
  }

  .workflow_role_btn.active .workflow_role_text,
  .workflow_role_btn:not(.active) .workflow_role_text {
    font-size: 20px;
  }

  .workflow_main_title {
    font-size: 48px;
    line-height: 48px;
  }

  .workflow_content_title {
    font-size: 40px;
  }
  
  .workflow_content_header {
    width: 100%;
    max-width: 100%;
  }

  .workflow_process_item {
    padding: 24px;
  }

  .workflow_process_item.expanded,
  .workflow_process_item:hover {
    padding: 24px;
  }

  .workflow_process_title {
    font-size: 24px;
  }

  .workflow_process_desc {
    font-size: 16px;
  }
  
  .workflow_process_expand_inner {
    padding-left: 24px;
  }

  .workflow_process_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .workflow_process_right {
    width: 100%;
    justify-content: flex-end;
  }
  
  .workflow_process_left {
    gap: 20px;
  }
}