@charset "UTF-8";

/* ==================== Header ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(60px, 6vw, 70px);
  padding: 0 clamp(16px, 4vw, 40px);
  background-color: transparent;

  display: flex;
  justify-content: space-between;
  align-items: center;
  
  z-index: 100;
  transition: background-color .3s ease, backdrop-filter .3s ease;
}
header .logo a {
  display: inline-block;
  width: 144px;
}
header .logo {
  display: flex;
  align-items: center;
  height: auto;
}
.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  color: var(--bk);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.25s ease;
}
.nav-link:hover {
  color: var(--primary);
}

.header.scroll-active {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0px 4px 54.1008px rgba(0, 0, 0, 0.05);
}

/* 햄버거 아이콘은 데스크탑에서 숨김 */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: .3125rem;
}

.hamburger span {
  display: block;
  width: 1.5625rem;
  height: .1875rem;
  background-color: #4900FF;
  /* 브랜드 컬러 활용 */
  border-radius: .1875rem;
  transition: all 0.3s ease;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  /* 약간 어둡게 깔기 */
  backdrop-filter: blur(.625rem);
  /* 배경 블러 처리 (핵심) */
  -webkit-backdrop-filter: blur(.625rem);
  /* 사파리 지원 */
  z-index: 999;
  /* 메뉴보다는 뒤, 컨텐츠보다는 앞 */

  /* 애니메이션 */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

/* 활성화 시 보이게 설정 */
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Go To Top Button - 2025 Trend 스타일 */
#goTop {
  position: fixed;
  right: 24px;
  bottom: 32px;
  width: 52px;
  height: 52px;

  border-radius: 14px;
  background-color: var(--light-green);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);

  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  border: 1px solid var(--point);
}

#goTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#goTop svg {
  width: 20px;
  height: 20px;
  stroke: var(--point);
  stroke-width: 2.4;
}

/* ==================== Hero Section ==================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--light-purple) 0%, rgba(255, 255, 255, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 clamp(48px, 8vw, 178px);
}
section.hero .logo {
  width: 247px;
}
.hero-main-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-title {
  font-weight: 400;
  color: var(--bk);
}
.hero-title strong {
  font-weight: 700;
}
.hero-subtitle {
  font-size: var(--h5-size);
  font-weight: 500;
  color: var(--bk);
}

.hero-image-box {
  position: absolute;
  right: 0;
  width: 700px;
  height: 700px;
  background: url(../images/hero_image.png) center/contain no-repeat;
  bottom: 0;
  left: 58%;
  z-index: 2;
}
.hero-images {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-images img:nth-child(1) {  width: 39px;}
.hero-images img:nth-child(2) {  width: 87px;}
.hero-images img:nth-child(3) {  width: 114px;}

.hero-images .hero01 {
  position: absolute;
  right: 0;
  top: -95px;
  right: 120px;
  z-index: 3;
  animation: floatUpDown01 1.8s ease-in-out infinite;
}
@keyframes floatUpDown01 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-images .hero02 {
  position: absolute;
  right: 0;
  top: 45%;
  right: -8%;
  z-index: 3;
  animation: floatUpDown02 3s ease-in-out infinite;
}
@keyframes floatUpDown02 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
    /* 올라가는 높이 */
  }

  100% {
    transform: translateY(0);
  }
}

.hero-images .hero03 {
  position: absolute;
  right: 0;
  bottom: 5%;
  left: -24%;
  z-index: 3;
  animation: floatUpDown03 4s ease-in-out infinite;
}
@keyframes floatUpDown03 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
    /* 올라가는 높이 */
  }

  100% {
    transform: translateY(0);
  }
}


/* ==================== About Section ==================== */
section.about {
  display: flex;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  background: url(../images/about_back_imges.png) center bottom no-repeat;
  background-size: cover;
}
.about-left {
  width: 54.5%;
  position: relative;
}
.about-left .about-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center

}
section.about .about-grid {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 42px;
  gap: clamp(3px, 4vw, 32px);
}
section.about .logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(10px, 12vw, 94px);
  aspect-ratio: 1 / 1;
}
section.about .value-circle {
  text-align: center;
  width: clamp(200px, 24vw, 384px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9));
  border: 2px solid var(--border-gray);

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--h5-size);
  font-weight: 600;
  color: var(--bk);
  transition: .3s ease;
}
section.about .value-circle:hover {
  box-shadow: 0 11px 20px rgba(83, 5, 207, 0.5);
  transform: scale(1.02);
}
section.about .value-circle .value-text {
  transition: .3s ease;
}
section.about .value-circle:hover .value-text {
  transform: scale(1.2);
}
section.about .value-circle strong {
  color: var(--primary);
  font-weight: 700;
}

section.about .about-right {
  width: 44.5%;
  padding: 78px;
}
section.about .section-tag {
  background-color: var(--wh)!important;
  color: var(--primary);
}
section.about .section-desc {
  color: var(--wh);
}

/* ==================== Partners Section ==================== */
section.partners {
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  overflow: hidden;
}
.partners-left {
  width: 54%;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  padding-left: clamp(48px, 8vw, 178px);
}
section.partners .section-tag {
  background-color: var(--primary);
  color: var(--wh);
}

.partners-right {
  width: 46%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 0 36px;
}
.partners-right .logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 24px 40px;
  align-self: stretch;
  flex-wrap: wrap;
      
  width: auto;
  object-fit: contain;
}
.logo-box img {
  opacity: 0.6;
  transition: 0.3s ease;
  width: auto;
  max-height: 45px;
}
.logo-box img:hover {
  opacity: 1;
  transform: scale(1.07);
}


/* ==================== UiPath Section ==================== */
section.uipath {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--wh);
  border-bottom: 2px solid var(--light-gray);
}
section.uipath::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background-color: #F8F5FF;
  background-size: cover; 
  z-index: 1;
}
.uipath-header {
  position: absolute;
  z-index: 2;

  top: clamp(48px, 8vw, 178px);
  left: clamp(48px, 8vw, 178px);
}
.uipath-title {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  color: var(--bk);
  line-height: 1.6;
  letter-spacing: -1.2608px;
}
.uipath-subtitle {
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
  color: var(--gray);
  line-height: 1.6;
  letter-spacing: -0.72px;
}
section.uipath .cta-button {
  display: none;
}

.uipath-box.slide {
  position: absolute;
  inset: 0;
  width: calc(100% - clamp(48px, 8vw, 178px));
  left: clamp(48px, 8vw, 178px);
  /* bottom: 10%; */
  bottom: clamp(24px, 6vw, 80px);

  display: flex;
  align-items: self-end;
  justify-content: space-between;
  
  padding: 0 80px 0 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
  will-change: opacity;
}
.uipath-services.content {
  position: relative;
  z-index: 2;
  max-width: 54%;
  margin-bottom: clamp(48px, 8vw, 178px);
}
.uipath-services.content .item-title {
  margin: 0 0 12px;
  transform: translateY(20px);
  opacity: 0;
  transition: .6s ease;
  font-weight: 700;
}

.slide.active .content .item-title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: .1s;
}
section.uipath .item-title::before {
  content: attr(id);
  display: flex;
  flex-direction: column;
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
  color: var(--gray);
  margin-bottom: 12px;
}


/* ==================== UiPath Process Section ==================== */
section.uipath-process {
  padding: clamp(100px, 18vh, 140px) clamp(48px, 8vw, 178px);
  height: auto;
}
section.uipath-process .uipath-process-content {
  margin-bottom: 60px;
}
section.uipath-process .process-box {
  border: 1px solid #DADADA;
  border-radius: 12px;
}
section.uipath-process .process-box img {
  width: 100%;
  padding: clamp(12px, 2vw, 20px) clamp(16px, 4vw, 40px);
}

/* ==================== ntas-uipath ==================== */
section.ntas-uipath {
  width: 100%;
  height: auto;
  background: #F9F9F9;
  padding: clamp(100px, 18vh, 140px) clamp(48px, 8vw, 178px);
}
section.ntas-uipath .ntas-feature {
  margin-bottom: 120px;
}

section.ntas-uipath .ntas-uipath-process {
  display: flex;
  justify-content: space-between;
  /* gap: 180px; */
  gap: clamp(10px, 5vw, 180px);
}
section.ntas-uipath .process-item {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}
section.ntas-uipath .process-item::before {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translateY(-50%);
  content: '';

  width: clamp(295px, 20vw, 295px);
  height: clamp(280px, 19vw, 280px);

  background: url(../images/uipath_arrow.png) center no-repeat;
  z-index: 1;
}
section.ntas-uipath .process-item:nth-child(3):before {
  display: none;
}
section.ntas-uipath .item-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 3;
}
section.ntas-uipath .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.ntas-uipath .item-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 3;
}
section.ntas-uipath .item-title {
  font-weight: 700;
}
section.ntas-uipath .item-title::before {
  content: attr(id);
  display: flex;
  flex-direction: column;
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
  color: var(--gray);
  margin-bottom: 12px;
}
section.ntas-uipath .item-desc {
  font-size: var(--body01-size);
  font-weight: var(--body01-weight);
  color: var(--gray);
  line-height: 1.6;
  letter-spacing: -0.48px;
}
section.ntas-uipath .item-desc ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* ==================== Business Section ==================== */
section.business {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.business-header {
  position: absolute;
  z-index: 3;
  top: clamp(48px, 8vw, 178px);
  left: clamp(48px, 8vw, 178px);
}
.business-title {
  font-size: var(--h3-size);
  font-weight: 400;
  color: var(--bk);
  line-height: 1.6;
  letter-spacing: -1.2608px;
}
.business-subtitle {
    font-size: var(--h5-size);
  font-weight: 400;
  color: var(--gray);
  line-height: 1.6;
  letter-spacing: -0.72px;
}

section.business .business-slider {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
section.business .business-slider .dots {
  bottom: 15%;
}

section.business .business-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
}
section.business .business-content.slide.active {
  opacity: 1;
}
section.business .business-content:nth-child(2) {
  background-color: var(--light-green);
}
section.business .business-content:nth-child(3) {
  background-color: var(--light-blue);
}
section.business .business-content:nth-child(4) {
  background-color: var(--light-purple);
}

section.business .business-img {
  position: absolute;
  right: -40px;
  width: 870px;
  height: 870px;
  aspect-ratio: 1/1;
}
section.business .business-content:nth-child(2) .business-img {bottom: 0;}
section.business .business-content:nth-child(3) .business-img {bottom: -50px;}
section.business .business-content:nth-child(4) .business-img {bottom: 50px;}

section.business .business-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.business .business-box {
  position: absolute;
  left: clamp(48px, 8vw, 178px);
  bottom: 15%;
  /* width: calc(100% - 178px); */
  width: calc(100% - clamp(48px, 8vw, 178px));
  display: flex;
  justify-content: space-between;
  padding: 0 80px 0 20px;
}

section.business .item-title {
  transform: translateY(20px);
  opacity: 0;
  transition: .6s ease;
  margin-bottom: 12px;
  font-weight: 700;
}
section.business .item-title::before {
  content: attr(id);
  display: flex;
  flex-direction: column;
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
  color: var(--gray);
  margin-bottom: 12px;
}
section.business .item-desc {
  font-size: var(--h6-size);
}



/* ======== service-cards ======== */
.service-cards {
  display: flex;
  gap: .75rem;
  margin-top: 1.875rem;
  width: 65%;
}
.service-card {
  flex: 1;
  backdrop-filter: blur(9px);
  border-radius: 6px;
  padding: 1.875rem 1.875rem;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 268px;
}
section.business .business-content:nth-child(2) .service-card{
  background: rgba(69, 233, 172, 0.2);
  border: 1px solid var(--point);
}
section.business .business-content:nth-child(3) .service-cards {
  gap: 6px;
}
section.business .business-content:nth-child(3) .service-card{
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--wh);
  height: clamp(200px, 30vw, 300px);
}
section.business .business-content:nth-child(3) .card-title {
  color: var(--primary);
  position: relative;
  z-index: 2;
}
section.business .business-content:nth-child(3) .card-title::after {
  position:absolute;
  top: 10%;
  right: -2.1875rem;
  transform: translate(-50%);
  z-index: 3;

  content: '>';
  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;
  color: var(--wh);

  border-radius: 9999px;
  background: var(--ntas_bk, #222);
}
section.business .business-content:nth-child(3) .service-card:last-child .card-title::after {
  display: none;
}
section.business .business-content:nth-child(4) .service-card{
  background: rgba(73, 0, 255, 0.20);
  border: 1px solid var(--primary);
}

.card-title {
  /* font-size: 20px; */
  font-size: clamp(16px, 1vw, 20px);
  font-weight: var(--h6-weight);
  color: var(--bk);
  letter-spacing: -0.5408px;

  display: flex;
  flex-direction: column;
}

.card-desc {
  font-size: var(--body01-size);
  font-weight: var(--body01-weight);
  color: var(--bk);
  line-height: 1.6;
  letter-spacing: -0.8px;
}

/* ==================== Services Section ==================== */
section.services {
  width: 100%;
  height: 100vh;
  background-color: var(--wh);
  display: flex;
}
.services-left {
  width: 54%;
  height: 100%;
  display: flex;
  align-items: center;
}
.services-left .services-content {
  padding-left: clamp(48px, 8vw, 178px);
  width: 95%;
}
.services-left .services-content h5 {
  color: var(--gray);
  margin-bottom: 24px;
}
.services-left .services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}
.services-left .tag {
  background: var(--light-gray);
  border-radius: 6px;
  padding: 6px 12px;
  text-align: center;
  font-size: var(--body02-size);
  font-weight: 500;
  color: var(--bk);
}

.services-right {
  width: 46%;
  background: linear-gradient(215deg, #000 2.3%, #222 93.1%);
  position: relative;
  overflow: hidden;
}
.services-right .services-image {
  position: absolute;
  top: 55%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.services-image {
  position: relative;
}

/* 모니터 화면 영역 */
.monitor-screen {
  position: absolute;
  /* top: 46%;
  left: 58.2%;
  width: 46rem;
  height: 25.8125rem; */
  top: 46%;
  left: 58.2%;
  width: 84%;
  height: 46%;
  
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.banner-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}
.banner {
  width: 100%;
  height: 100%;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2rem;
  font-weight: bold;
  background: #f5f5f5;
}

.banner-track .banner:nth-last-child(1) {
  background: url(../images/mask_group03.png) center/cover no-repeat;
}
.banner-track .banner:nth-last-child(2) {
  background: url(../images/mask_group02.png) center/cover no-repeat;
}
.banner-track .banner:nth-last-child(3) {
  background: url(../images/mask_group01.png) center/cover no-repeat;
}

/* ==================== recruit Section ==================== */
Section.recruit {
  width: 100%;
  background: var(--neutral-50);
  padding: clamp(160px, 18vh, 240px) clamp(48px, 10vw, 178px);
}
Section.recruit h5 {
  margin-bottom: 60px;
  color: var(--gray);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 60px;
  width: 100%;
}

.benefit-item {
  background: var(--wh);
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  padding: 20px 1rem;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* height: 10rem; */
  height: clamp(8rem, 20vw, 10rem);
  max-width: 100%;

  position: relative;
  overflow: hidden; 
}
.benefit-box {
  position: absolute;
  bottom: -50%;
  transition: .3s ease;
  width: 90%;
  height: 80%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-title {
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
  color: var(--bk);
  letter-spacing: -0.5408px;
  transition: .3s ease;
  margin-bottom: .2vw;

  display: flex;
  align-items: center;
  gap: .5vw;
}
.benefit-title img {
  width: 24px;
  height: 24px;
  transition: .3s ease;
  display: block;
}
.benefit-desc {
  width: 100%;
  background: linear-gradient(to top,#fff 80%,rgba(255, 255, 255, 0));
  color: var(--gray);
  opacity: 0;

  transition: transform 0.5s ease, opacity 0.35s ease;
}

/* 마우스 기능이 있는(호버가 가능한) 장치에서만 실행 */
@media (hover: hover) and (pointer: fine) {

  .benefit-item:hover .benefit-box {
    bottom: 5%;
  }
  .benefit-item:hover {
    border-color: var(--primary);
  }
  .benefit-item:hover .benefit-title {
    color: var(--primary);
  }
  .benefit-item:hover .benefit-desc {
    opacity: 1;
  }
}

.recruitment-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.recruitment-card {
  background: #222222;
  border-radius: 6px;
  padding: clamp(16px, 2vw, 30px) clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  color: white;
  min-height: 18.125rem;
  width: 100%;
}

.card-label {
  font-size: var(--body02-size);
  font-weight: var(--body02-weight);
  color: var(--gray);
  letter-spacing: -0.4192px;
}

.card-heading {
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
  color: var(--point);
  letter-spacing: -0.72px;
}

.card-content {
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 1.6;
  letter-spacing: -0.48px;
}

.card-footer {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: -0.4192px;
}

/* ==================== Contact Section ==================== */
.contact h5 {
  margin-top: 120px;
  color: var(--gray);
}

.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 30px;
  margin-bottom: 40px;
}

.contact-value {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: -0.48px;
}
.contact-value::before {
  content: attr(data-attr);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding-bottom: 12px;
}

.map-container {
  width: 100%;
  aspect-ratio: 16 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: #eaeaea;
}
.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================== Footer ==================== */
.footer {
  background-color: var(--primary);
  /* background-color: var(--bk); */
  color: white;
  padding: 2vw 10vw;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.4192px;
  text-align: left;
}
.footer > div {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
}
.footer > div img {
  width: 10rem;
}
.footer .info-box {
  font-size: var(--body02-size);
  margin-bottom: 1vw;
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
.footer .info {
  margin-right: 1vw;

}
.footer .info span {
  font-weight: 500;
  margin-right: .4vw;
}