
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, li { list-style: none; }
a { text-decoration: none; color: inherit; }

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
     line-height: 1.5;
      overflow-x: hidden;
  
  
  /*
    background-color: gray; 
    color: #fff;
 */
}

/* [2] 공통 레이아웃 */
.inner {
    max-width: 1920px; /* 피그마 기준 폭으로 조정 */
    margin: 0 auto;
    padding: 0 20px;
    font-family: Pretendard;
}
/*헤더*/
/* 기본 */
.hamburger {
  display: none;
  border: none;
  background: none; /* 🔥 핵심 */
  padding: 0;
  cursor: pointer;
}


.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  /* 헤더(10000)보다 낮게 설정 */
  z-index: 9990; 
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  /* 로고와 겹치지 않게 위쪽 여백 확보 */
  padding-top: 60px; 
}


.header .inner {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 40px;
}

.gnb {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}



/* 모바일 */
@media (max-width: 768px) {

  /* PC 메뉴 숨김 */
  .gnb {
    display: none;
  }


  /* 헤더 */
  .header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
      z-index: 20000 !important;
  }

  /* 기준 컨테이너 */
  .header .inner {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* 햄버거 */
  .hamburger {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10006;
    display: block;
    background: none;
    border: none;
  }

  .hamburger img,
  .hamburger svg {
    width: 24px;
    height: 20px;
  }

  /* 로고 */
  .logo {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index:  20001 !important;
    margin: 0;
  }

  .logo a {
    display: block;
  }

  .logo img {
    height: 24px;
    display: block;
  }

  /* 모바일 메뉴 */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 10000;

    transform: translateX(100%);
    transition: transform 0.3s ease;
  

    padding-top: 80px;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  /* 불필요 요소 제거 */
  .mobile-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;
}

/* 로고 */
.mobile-logo {
  margin: 0;
}

.mobile-logo a {
  display: block;
}

.mobile-logo img {
  height: 24px; /*  PC와 동일 */
  display: block;
}


/* 닫기 버튼 ( absolute 제거) */
.menu-close {
  position: static; 
  font-size: 26px;
  background: none;
  border: none;
}
  /* 메뉴 */
  .mobile-gnb {
    padding: 20px;
      margin-top: 40px; 
    font-size: 18px;
    font-weight: 400;
  }

  .mobile-gnb > li {
    margin-bottom: 10px;
  }

  .mobile-gnb a,
  .menu-toggle {
    font-size: 20px;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
  }

  /* 토글 */
  .menu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle i {
    transition: 0.3s;
  }

  .acc-item {
    border-bottom: none !important;
  }

  .acc-item.active .menu-toggle i {
    transform: rotate(180deg);
  }

  /* 서브메뉴 애니메이션 */
  .submenu {
    margin-top: 10px;
    padding-left: 15px;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    transform: translateY(-10px);

    transition:
      max-height 0.6s ease,
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  .acc-item.active .submenu {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
  }

  .submenu li {
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.25s ease;
    margin-bottom: 10px;
  }

  .acc-item.active .submenu li {
    opacity: 1;
    transform: translateY(0);
  }

  .submenu li a {
    font-size: 16px;
    font-weight: 400;
  }

}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/*section color*/
.section {
    width: 100%;
    padding: 120px 0;
}

.section.dark {
    background: #000;
}

.section.light {
    background: #fff;
    height:500px;
}
.section.white{
	background: #FFFFFF;
	width: 100%;
    height: 100vh;
}

.section.purple {
    background: #c7c9f5;
}
/* [3] Header */

.header {
    width: 100%;
    height: 60px; /* 피그마 수치 반영 */
    position: fixed;
    top: 0; left: 0;
  background: transparent;
  
    color: #000;
   
    display: flex;
    align-items: center;
    /* 하단 보더는 아주 연하게 */
 
}
.header.active {
    background: #fff; /* 필요 시 하얀 배경 */
  }
.header .inner {
    max-width: 1920px; 
    width: 100%;
    margin: 0 auto;

    padding: 0 70px; /* 피그마 padding 반영 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 로고 이미지 크기 최적화 */
.header .logo img {
    height: 24px; /* 로고 높이에 맞춰 조절 */
    display: block;
}

.gnb > ul {
    display: flex;
    gap: 40px; /* 메뉴 간격 */
}

.dep1 { position: relative; }
.dep1 > a {
    
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    height: 60px;
    line-height: 60px; /* 높이와 맞춰서 세로 중앙 정렬 */
    display: block;
    transition: 0.3s;
    position: relative;
}

/* 마우스 오버 시 보라색 하단 바 애니메이션*/


.dep1 > a::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 0; /* 왼쪽 시작점 고정 */
    width: 0; /* 처음엔 가로폭 0 */
    height: 3px;
    background: #6347ff;
    transition: width 0.3s ease-in-out; /* 폭이 변할 때 0.3초 동안 애니메이션 */
}


.dep1:hover > a {
    color: #6347ff;
}

.dep1:hover > a::after {
    width: 100%; /* 마우스 올리면 가로폭 100%로 확장 */
}

.dep1:hover > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: #6347ff;
}

/* 서브메뉴 */
.dep2 {
    position: absolute;
    top: 60px; 
    left: 50%;
    transform: translate(-50%, -20px); /* 위에서 시작 */

    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);

    min-width: 160px;
    padding: 8px 0;


    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 
        opacity 0.3s ease,
        transform 0.3s ease;
}



.dep1:hover .dep2 {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, 0); /* 내려옴 */
}


.gnb > ul > li:first-child .dep2 {
    right: auto;
    left: 0;
    transform: none;
}

/* 마지막 Careers 메뉴 디테일★ */
.gnb > ul > li:last-child .dep2 {
    left: auto;
    right: 0;
    transform: none;
}



.dep2 li a {
    padding: 12px 20px;
    color: #000; /* 글자색은 검정/진회색 */
    font-size: 14px;
    font-weight: 400;
    display: block;
    white-space: nowrap; /* 글자 줄바꿈 방지 */
    transition: 0.2s;
}

.dep2 li a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #6347ff;
}
/* 첫번째 */
.gnb > ul > li:first-child .dep2 {
    left: 0;
    transform: translate(0, -20px);
}
.gnb > ul > li:first-child:hover .dep2 {
    transform: translate(0, 0);
}

/* 마지막 */
.gnb > ul > li:last-child .dep2 {
    left: auto;
    right: 0;
    transform: translate(0, -20px);
}
.gnb > ul > li:last-child:hover .dep2 {
    transform: translate(0, 0);
}
/* [4] Main Content */
/* [4] Main Content - Hero Section */
.main-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.main-hero .inner {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
     align-items: center;
    justify-content: space-between;
    padding: 0 50px; 
}
/* 좌측 텍스트 */
/*
.hero-text {
	 transform: translateY(-70px); 
	 max-width: 520px;
    animation: fadeInUp 1s ease-out;
}
*/

/* 메인 텍스트 (Component 197 시안 반영) */
.hero-text .title {
    font-weight: 600;
    font-size: 43px;
    line-height: 54px;   
    letter-spacing: 0;

     color: rgba(255,255,255,0.9); 
    margin-bottom: 20px;
}

.hero-text .desc {
     font-weight: 400;
    font-size: 20px;
     line-height: 30px;
    color: rgba(255,255,255,0.75);
  word-break: keep-all; 
  max-width: 500px; 
    margin-top: 10px;
}
.main-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.35) 0%,   
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0) 70%
    );
    z-index: 2;
}
.main-hero .inner {
    z-index: 3;
}
/* 슬라이드 배경 아이템 */
.bg-item {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* 기본 숨김 */
    /* 피그마 수치 반영: 300ms ease-in-out */
    transition: opacity 300ms ease-in-out; 
    z-index: 1;
}

.bg-item.active {
    opacity: 1; /* 활성화 시 보임 */
    z-index: 2;
}

/* 하단 거대 로고 스타일 */
.hero-bottom-logo {
    position: absolute;
    bottom: 80px;
    right: 50px;
    font-size: 280px; /* 시안에 맞춰 보정 */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    z-index: 5;
    user-select: none;
}
/* 우측 슬라이드 인디케이터 */
.hero-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.hero-nav li {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.hero-nav li.active {
    background: #6347ff; /* 포인트 보라색 */
    transform: scale(1.5);
}

/* 배경 이미지 영역 */
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.bg-item {
    position: absolute;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    
}

/* 하단 배경 로고 텍스트 (시안 디테일) */
.hero-bottom-logo img {
    width: 600px;

}
.hero-bottom-logo {
    bottom: 20px;
    right: 60px;
}
/*main-hero animation section~~~~~~*/

.hero-text .title,
.hero-text .desc,
.hero-bottom-logo {
    opacity: 0;
}

/* =========================
   1. title (left → right)
========================= */
.hero-text .title {
    transform: translateX(-60px);
    animation: slideRight 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* =========================
   2. desc (left → right, delay)
========================= */
.hero-text .desc {
    transform: translateX(-60px);
    animation: slideRight 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1s;
}

/* =========================
   3. logo (down → up)
========================= */
.hero-bottom-logo {
    transform: translateY(60px);
    animation: slideUp 1.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 2.2s;
}

/* =========================
   keyframes
========================= */
@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*~~~~*/




/* 텍스트 등장 애니메이션 */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1200px) {
    .hero-text .title {
        font-size: 48px;
    }

    .hero-text .desc {
        font-size: 18px;
    }

    .main-hero .inner {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .hero-text .title {
        font-size: 36px;
    }

    .hero-text .desc {
        font-size: 16px;
    }

    .main-hero .inner {
        padding: 0 24px;
    }
}

/*연보라 섹션*/
.section-intro {
     width: 100%;
    height: 100vh;
  
 background: url('/img/introSectionImg.jpg') center / cover no-repeat;
}


/* intro section */
.intro {
    text-align: center;
    background: #f5f5f5; /* 살짝 회색 (시안 느낌) */
}

/* 텍스트 컨테이너 */
.intro-text {
    max-width: 900px;
    margin: 0 auto;
     font-family: Pretendarad;
}

/* 타이틀 */
.intro-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
	letter-spacing:0%;
    margin-bottom: 24px;

}

/* 설명 */
.intro-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}
/* 전체 영역 */
.intromenu {
    height: 100vh;
    padding: 0;
}

/* 패널 전체 */
.menu-wrap {
    display: flex;
    height: 100%;
     overflow: hidden;
}

/* 개별 패널 */
.menu-panel {
	
	 opacity: 0;
    transform: translateY(60px);
    position: relative;
    flex: 1;
    overflow: hidden;
    transition: 0.5s ease;
    border-left: 1px solid rgba(255,255,255,0.1);
	    min-width: 0;
}
.menu-panel.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}
/* 이미지 */
.menu-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* 기본 어둡게 */
.panel-overlay {
    position: absolute;
     inset: 0;
    background: rgba(0,0,0,0.6);
    transition: all 0.3s ease-in-out;
}

/* hover 시 확장 */
.menu-panel:hover {
    flex: 1.8; /* 🔥 핵심 */
}

/* hover 시 보라 오버레이 */
.menu-panel:hover .panel-overlay {
   /* background:
        linear-gradient(0deg, rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        linear-gradient(180deg, rgba(93,19,234,0.8) 8.35%, rgba(93,19,234,0) 100%);
     */   
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
linear-gradient(180deg, #5D13EA 8.35%, rgba(93, 19, 234, 0) 100%);
        
}

/* 텍스트 */
.panel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%); /* 살짝 위에서 시작 */

    text-align: center;

    opacity: 0;
    transition: all 0.3s ease-in-out;
}
/* hover 시 등장 */
.menu-panel:hover .panel-text {
    opacity: 1;
    transform: translate(-50%, -50%); /* 🔥 반드시 동일 구조 */
    transition-delay: 0.1s;
}
/* 제목 */
.panel-text h3 {
   font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
     white-space: nowrap;
}

/* 화살표 */
.panel-text .arrow {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.panel-text .arrow img {
    width: 26px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.menu-panel:hover .arrow img {
    transform: translateX(6px);
}
.menu-panel {
    transition: all 0.3s ease-in-out;
}
.menu-panel:not(.show) {
    pointer-events: none;
}
/* 전체 섹션 */
.tech {
    background: #ffff;
    text-align: center;
    padding: 160px 0;
}

/* 이미지 영역 */
.tech-visual {
    display: flex;
    justify-content: center;
    
    margin-bottom: 80px;
}

/* 이미지 */
.tech-visual img {
   
    height: auto;
    object-fit: contain;

}





/* 텍스트 */
.tech-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #5D13EA; /* 🔥 포인트 컬러 */
    margin-bottom: 20px;
}

/* 설명 */
.tech-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}




/* =========================
   tech 애니메이션
========================= */

/* 1. 이미지 초기 상태 */
.tech-visual {
    opacity: 0;
    transform: translateY(80px);
}

/* 2. 이미지 활성화 */
.tech-visual.active {
    opacity: 1;
    transform: translateY(0);

    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}


/* 3. 텍스트 초기 상태 */
.tech-text {
    opacity: 0;
    transform: translateY(80px);
}

/* 4. 텍스트 활성화 */
.tech-text.active {
    opacity: 1;
    transform: translateY(0);

    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/*~~~~~*/

/* 섹션 */
.product-showcase {
    position: relative;
    height: 100vh;
    color: #fff;
    overflow: hidden;

    

    background-size: cover;
}

.product-showcase::before {
    content: "";
    position: absolute;
    inset: 0;

   background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);


    z-index: 1;
}
.product-showcase .inner {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    align-items: center;
}



/*animation*/


.product-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;

    /* 위/아래 가림막 */
    background:
        linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)) top,
        linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 1)) bottom;

    background-size: 100% 50%, 100% 50%;
    background-repeat: no-repeat;

    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 펼쳐짐 */
.product-showcase.active::after {
    background-size: 100% 0%, 100% 0%;
}



/* =========================
   텍스트 등장
========================= */

.product-text {
    max-width: 800px;
    padding-left: 80px;

    opacity: 0;
    transform: translateX(-60px);
}

/* 활성화 */
.product-showcase.active .product-text {
    opacity: 1;
    transform: translateX(0);

    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 1.1s; /*  배경 애니메이션 끝나고 등장 */
}


/* 텍스트 */
.product-text {
    max-width: 800px;
    padding-left: 80px;
    
}

.product-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-text .point {
    color: #5D13EA;
    margin-right: 10px;
}

.product-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}
.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}
.btn-outline:hover {
    background: #5D13EA;
    color: #fff;
}
/*join===========*/
.join-showcase {
    position: relative;
    height: 100vh;
    color: #fff;
    overflow: hidden;
    background-size: cover;
}
.join-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
   background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}
.join-showcase .inner {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    align-items: center;
    
    
}
.join-text {
    max-width: 800px;
    padding-left: 140px;
    
    opacity: 0;
    transform: translateX(-80px); 
}
/* 활성화 */
.join-showcase.active .join-text {
    opacity: 1;
    transform: translateX(0);

    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.join-text h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
}
.join-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

/*section partner*/
/* 전체 */
.partner {
    padding: 0;
    background: #fff;
}

/* 상단 이미지 */
.partner-visual {
    height: 700px;
    background: url('/img/building.jpg') no-repeat center;
    background-size: cover;
}

/* 하단 영역 */
.partner-content {
   height: 900px;
    background: #f5f5f5;

    display: flex;
    justify-content: center;   /* 가운데 */
    align-items: center;       /* 가운데 */
}

.partner-content .inner {
       width: 100%;
    max-width: 1200px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}
.partner-top {
    margin-bottom: 80px;
}

.partner-middle {
    margin-bottom: 80px;
}
/* 타이틀 */
.partner-top h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.partner-top .sub {
    font-size: 20px;
    font-weight: 400;
    color: #888;
    padding-top:  50px;
}

/* 서브 */
.partner-middle {
    display: flex;
    justify-content: center;
}

.partner-list {
      display: flex;
    justify-content: center;
    align-items: flex-start;

    gap: 80px; /* 🔥 120 → 80 줄여 */
}

.partner-item {
    max-width: 260px;
}

.partner-item img {
    height: 40px;
    margin-bottom: 10px;
}

.partner-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.partner-bottom h3 {
	padding-top: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

/*partner animation*/

/* 
   visual 가림막 (bottom → top)*/

.partner-visual {
    position: relative;
    overflow: hidden;
}

/* 가림막 */
.partner-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 1);
    z-index: 2;

    transform: translateY(0); /* 아래서 */
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 활성화 */
.partner.active .partner-visual::after {
    transform: translateY(-100%); /* 위로  */
}

/* =========================
   top + middle 등장
========================= */

.partner-top,
.partner-middle {
    opacity: 0;
    transform: translateY(80px);
}

/* 활성화 */
.partner.active .partner-top,
.partner.active .partner-middle {
    opacity: 1;
    transform: translateY(0);

    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 1s; /* 🔥 visual 끝나고 */
}

/* =========================
   bottom 마지막 등장
========================= */

.partner-bottom {
    opacity: 0;
    transform: translateY(80px);
}

/* 활성화 */
.partner.active .partner-bottom {
    opacity: 1;
    transform: translateY(0);

    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 1.6s; /*  마지막 */
}

/*FAQ*/
/* =========================
   FAQ SECTION
========================= */

.faq {
    background: #fff;
    padding: 140px 300px;
}

.faq-wrap {
    display: flex;
    gap: 130px;

    align-items: flex-start; 
    
    
    opacity: 0;
    transform: translateY(80px);
}

.faq.active .faq-wrap {
    opacity: 1;
    transform: translateY(0);

    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
/* 좌측 */
.faq-left {
    flex: 0 0 160px;
}

.faq-left img {
    width: 60%;
}

/* 우측 */
.faq-right {
    flex: 1;
}


/* 질문 */
.faq-right {
    flex: 1;
}
.faq-item {
 width: 120%;
    border-bottom: 1px solid #ddd;
}

.faq-item:first-child{
	
	border-top: 1px solid #ddd;
}


.faq-question {
    width: 100%;
    padding: 26px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 18px;
    font-weight: 500;
    color: #111;

    background: none;
    border: none;
    cursor: pointer;
}

.faq-question:hover{
	 color: #6347ff;
}
.faq-question:hover .icon {
    color: #6347ff;
}
/* + 아이콘 */
.faq-question .icon {
    font-size: 20px;
    color: #999;
    transition: 0.3s;
}

/* 답변 */
.faq-answer {
    max-height: 0;
    overflow: hidden;

    font-size: 15px;
    color: #666;
    line-height: 1.7;

     opacity: 0;
    padding: 0;

    transition: 
        max-height 0.4s ease,
        opacity 0.25s ease,
        padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
        opacity: 1;
    padding-bottom: 20px;
    
    
}

.faq-item.active .icon {
    transform: rotate(45deg);
}
.faq-answer {
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    transform: translateY(0);
}
/* ===== Contact Section ===== */
.contact {
    padding: 120px 110px;
    background: #fff;
}

/* 레이아웃 */
.contact-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 120px;
}

/* 왼쪽 */
.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
        color:rgba(0, 0, 0, 1);
}

/* 정보 */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info .item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color:rgba(0, 0, 0, 1);
}

.contact-info .item p {
    font-size: 16px;
    color: #555;
}

/* 오른쪽 */
.contact-right {
    flex: 1.5;
}

/* 지도 */
.map-box {
    width: 100%;
    height: 420px;
    background: #eee;
    overflow: hidden;
    border-radius: 6px;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.9);
}

 /*technology/tenux */
 
 /*공통 스위칭*/
 .pc-only {  display: contents; }
.mo-only { display: none; }
 
 
.tenux-hero{
    height: 600px;
    
    background: url('/img/tenux-hero.jpg') no-repeat center;
    background-size: cover;
	

}

.tenux-intro {
	
    background: #f5f5f5;
    text-align: center;
    padding: 120px 0;
	color: rgba(0, 0, 0, 1);

}

.tenux-intro h2 {
    font-size: 28px;
    margin-bottom: 15px;
}


.tenux-intro p{
	font-size: 15px;
	
	 font-family: Pretendard;
font-weight: 400;
font-style: Regular;
font-size: 12px;

line-height: 30px;
letter-spacing: 0%;
text-align: center;
	  
	
}

.intro-row {
	margin-top:100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.intro-item h3 {
    color: #5D13EA;
    font-size: 28px;
    margin-bottom: 12px;
}

.intro-item img{
   width: 60%;
	 margin-bottom: 40px;
}



.intro-item p{
	font-family: Pretendard;
font-weight: 700;
font-style: Bold;
font-size: 24px;

line-height: 40px;
letter-spacing: 0%;
text-align: center;
	
	
}


.divider {
    width: 1px;
    height: 160px;
    background: rgba(122, 122, 122, 1);
}


.tenux-core-hero {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
    padding-left: 7%;
}

/* 1 배경 이미지 */
.tenux-core-hero .bg {
    position: absolute;
    inset: 0;
 	
    background: url('/img/tenux-core-bg.jpg') no-repeat;
    background-size: cover;
    background-position: -130% center;
    
    z-index: 1;
}

/* 2️⃣ 그라데이션 (🔥 핵심) */
.tenux-core-hero .overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        270deg,
        rgba(0,0,0,0) 20.74%,
        #000000 78%
    );

    z-index: 2;
}

/*  콘텐츠 */
.tenux-core-hero .content {
    position: relative;
    z-index: 3;

    height: 100%;
    display: flex;
    align-items: center;
}

/* 텍스트 박스 */
.text-box {
    max-width: 520px;
    color: #fff;
    
    
    
}

/* TENUX 이미지 */


/* 타이틀 한 줄 정렬 */
.title-row {
    display: flex;
    align-items: center; 
    gap: 16px;
    margin-bottom:40px;
}

/* svg */
.tenux-title {
    width: 140px; 
    height: auto;
}

/* 텍스트 */
.title-text {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

/* 설명 */
.text-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}

/* 전체 섹션 및 레이아웃 설정 */
.tenux-section {
    width: 100%;
    overflow-x: hidden; /* 이미지가 삐져나갈 경우를 대비한 방어 코드 */
    padding: 100px 0;
    background: #fff;
}

/* 상단 메인 타이틀 */
.core-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 80px;
    color: #000;
}

/* 각 행의 기본 설정 */
.tenux-row {
    display: flex;
 
    width: 100%;
    margin-bottom: 60px; /* 행 사이 간격 */
}

/* 첫 번째 행: 이미지 좌측 밀착 */
.tenux-row.align-left {
    justify-content: flex-start;
}

/* 두 번째 행: 이미지 우측 밀착 (reverse 레이아웃) */
.tenux-row.align-right {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

/* 이미지 영역: 화면의 정확히 절반을 차지 */
.tenux-img {
    flex: 0 0 50%; /* 너비를 50%로 고정 */
}

.tenux-img img {
    width: 95%;
    height: auto;
    display: block; /* 하단 미세 공백 제거 */
}
/* [추가] 두 번째 행: 이미지를 우측 끝으로 밀기 */
.align-right .tenux-img {
    justify-content: flex-end; /* 컨테이너 안에서 이미지를 오른쪽으로 */
}

.align-right .tenux-img img {
    margin-left: auto; /* 명시적으로 왼쪽 여백을 다 밀어버림 */
}

/* [추가] 첫 번째 행: 이미지를 좌측 끝으로 밀기 (확실히 하기 위해) */
.align-left .tenux-img {
    justify-content: flex-start;
}

.align-left .tenux-img img {
    margin-right: auto;
}
/* 텍스트 영역: 중앙을 기준으로 여백 확보 */
.tenux-text {
    flex: 1;
    /* 텍스트가 너무 넓게 퍼지지 않도록 최대 너비 제한 */
    max-width: 600px; 
        font-family: Pretendard;
font-style: Regular;
letter-spacing: 0%;
    
}

/* 첫 번째 행의 텍스트 여백 (이미지 우측에 텍스트가 올 때) */
.align-left .tenux-text {
    padding-left: 60px; /* 이미지와 텍스트 사이 간격 */
    padding-right: 3%;  /* 우측 화면 여백 */
}

/* 두 번째 행의 텍스트 여백 (이미지 좌측에 텍스트가 올 때) */
.align-right .tenux-text {
    padding-right: 60px; /* 이미지와 텍스트 사이 간격 */
    padding-left: 3%;   /* 좌측 화면 여백 */

    
}

/* 타이틀 및 본문 스타일링 */
.tenux-text h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.tenux-text h3 span {
    color: #6C3BFF; /* 보라색 포인트 컬러 */
}

.tenux-text p {
    font-size: 16px;
    
    color: #444;
  
    text-align: justify;  /* 양쪽 정렬로 깔끔하게 */
}

/* 모바일 반응형 처리 */
@media (max-width: 1024px) {
    .tenux-row, .tenux-row.align-right {
        flex-direction: column; /* 세로 배치 */
        margin-bottom: 80px;
    }
    
    .tenux-img {
        flex: 0 0 100%; /* 이미지가 가득 차게 */
        width: 100%;
    }
    
    .tenux-text {
        padding: 40px 20px !important; /* 모바일 전용 패딩 */
        max-width: 100%;
        text-align: left;
    }
}
.tenux-why {
    padding-bottom: 120px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

/* 카드 본체 */
.why-card {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    
    /* 보라색 테두리와 둥근 모서리 */
    border: 2px solid #6C3BFF;
    border-radius: 20px;
    
    /* 시안의 은은한 그림자 효과 */
    box-shadow: 0 10px 30px rgba(108, 59, 255, 0.1);
    background-color: rgba(246, 246, 246, 1);
}

/* 타이틀 스타일 */
.why-title {
    font-size: 42px;
    font-weight: 800;
    color: rgba(93, 19, 234, 1);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* SVG 로고 크기 조절용 */
.why-title span svg {
    height: 40px; /* 타이틀 텍스트 크기에 맞춰 조정 */
    width: auto;
    vertical-align: middle;
}

/* 설명 문구 */
.why-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    word-break: keep-all;
}

/* 특정 텍스트 보라색 강조 */
.highlight-text {
    color: rgba(93, 19, 234, 1);
   
}

/* 모바일 반응형 */
@media (max-width: 768px) {
      .pc-only { display: none !important; }
  .mo-only { display: block !important; }
  
  .tenux-intro-mo {
  text-align: center;
}


.tenux-core-hero{
	height:auto;
	padding-left: 0;
}
	
.torus-core-hero{
	height:auto !important;
	padding-left: 0 !important; 
}
	
.intro-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.intro-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.intro-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.intro-item img {
  width: 90px;
  margin-bottom: 10px;
}

.intro-item p {
  font-size: 13px;
}

.divider {
  width: 1px;
  height: 60px;
  background: #ccc;
}
.tenux-core-mo img {
  width: 100%;
  display: block;
}

.tenux-core-mo h3 {
  font-size: 18px;
  margin: 20px 0 10px;
}

.tenux-core-mo .title-row{
	
	margin-top:10%;
}

.tenux-core-mo .title-row img {
  margin-top:1%;
  width: 120px;
}

.tenux-core-mo .title-text{
	color:rgba(0, 0, 0, 1);
	width:100%;
	font-size:18px;
}


.tenux-core-mo p {
  font-size: 14px;
  color: #666;
  
  margin-bottom:80px;
}
.core-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}

.core-item {
  margin-bottom: 40px;
}

.core-item img {
  width: 100%;
  margin-bottom: 10px;
}

.core-item h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.core-item p {
  font-size: 13px;
  color: #666;
}
.tenux-why{
	padding:60px 20px;
	
	
}
.why-card {

  border: 1px solid rgba(93, 19, 234, 1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.why-card h2 {
  font-size: 25px;
  margin-bottom: 20px;
  letter-spacing: 0%;
  
}
.why-title {
    
    
   
    gap: 1px;
}
.why-card p {
  font-size: 13px;
  color: #666;
}
.why-card img{
	margin-top:12px;
	width:80%;
}
/*배경위에 컴포넌트를 배치*/
 .tenux-bg-section {
    position: relative;
    padding:  50px 0;
    overflow: hidden;
       height: 100vw;
    
  }

  /* 🔥 배경 이미지 */
  .tenux-bg-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/img/mob_tenux_bg.jpg') no-repeat;
    
    /* [핵심 수정!] 
       1. 'cover' 대신 첫 번째 값(가로 폭)을 100% 또는 95% 정도로 줍니다. 
       2. 두 번째 값(세로 높이)은 auto로 둬서 비율을 유지합니다. */
    background-size: 100% auto; 
    
    /* 텍스트가 시작되는 상단과, 장비가 좌우로 중앙에 오도록 맞춥니다. */
    background-position: top center; 
    
    z-index: 0;
    
    /* 이미지 비율이 줄어들면서 텍스트가 장비 위를 덮을 수 있으니 여백을 조절합니다 */
    padding-top: 100px; 
  }

  .tenux-bg-section .inner {
    position: relative;
    z-index: 2;
  }

  /* 타이틀 */
  .tenux-bg-section .core-title {

    text-align: center;
    font-size: 20px;
    margin-bottom: 200px;
    font-weight:600;
  }

  /* 공통 텍스트 */
  .tenux-bg-section .core-text {
    position: absolute;
    left: 20px;
    right: 20px;
    color: #222;
  }

  .tenux-bg-section .core-text h3 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .tenux-logo {
    width: 70px;
  }

  .tenux-bg-section .core-text p {
  	margin-top:40px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
  }

  /*  위치 조정  */
  .tenux-bg-section .controllers {
      top: 300px;
  }

  .tenux-bg-section .drive {
    top: 800px;
  }
   .tenux-section {
    padding: 0 !important;
    background: none !important;
  }
  .tenux-bg-section {
  position: relative;
  height: 1300px; 
}
  
  /* 1. 모바일 영역 내부에 있는 모든 br 태그를 숨겨서 줄바꿈 강제를 해제합니다 */
  .why-mo .why-desc br {
    display: none;
  }

  /* 2. 본문 텍스트가 줄바꿈될 때 단어가 중간에 찢어지지 않고 단어 단위로 넘어가게 합니다 */
  .why-mo .why-desc {
    word-break: keep-all;     /* 한글 단어가 쪼개지지 않게 정렬 */
    white-space: normal;      /* 기본 흐름대로 텍스트가 흐르게 설정 */
    line-height: 1.6;         /* 모바일 가독성을 위해 줄간격 살짝 확보 */
    font-size: 14px;          /* 모바일에 맞는 적절한 폰트 크기 (필요시 조절) */
    
    /* 텍스트가 좌우 벽에 너무 붙지 않도록 안쪽 여백 주기 */
    padding: 0 10px; 
    text-align: center;       /* 카드 레이아웃 특성상 중앙 정렬이 대개 자연스럽습니다 */
  }
  
/*torus-platform~~~~~~~~~~mob*/  
 

  .torus-platform-mo {
    display: block;
    padding: 60px 0;
  }

  /* 제목 */
  .mo-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .mo-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  /* 아코디언 */
  .mo-accordion {
    border-top: 1px solid #ddd;
  }

  .acc-item {
    border-bottom: 1px solid #ddd;
  }

  .acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
  }

  .acc-header i {
    transition: 0.3s;
    color: #666;
  }

 .acc-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;

}

.acc-item.active .acc-body {
  max-height: 500px;
  opacity: 1;
  margin-top: 10px;
    margin-bottom:30px;
}

.acc-item.active .acc-header i {
  transform: rotate(180deg);
}

/*bodytext desc*/
/* acc-body 내부 여백 */
.acc-body {
  padding-bottom: 10px;
}

/* 그룹 간 간격 */
.acc-group {
  margin-bottom: 20px;
}

/* 🔥 보라색 소제목 */
.acc-group h4 {
  font-size: 15px;
  font-weight: 700;
  color: #6c3cff;   /* 보라 포인트 */
  margin-bottom: 6px;
}

/* 설명 텍스트 */
.acc-group p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  word-break: keep-all;
}

/* 마지막 요소 여백 제거 */
.acc-group:last-child {
  margin-bottom: 0;
}

/*visual*/
 .torus-visual-mo {
    position: relative;
    width: 100%;
    height: 210vw; /* 비율 맞춰서 조절 */
    overflow: hidden;
  }

  /* 🔥 배경 */
  .torus-visual-mo .visual-bg {
    position: absolute;
    inset: 0;

    background: url('/img/torus-bg-mo.png') no-repeat top center / cover;

    z-index: 0;
  }

  /* 🔥 SVG 레이어 */
  .torus-visual-mo .visual-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 103%;
  }

  .diagram-svg {
    width: 100%;
    max-width: 300px;
  }
}
/*~~~~~~~~torus*/
.torus-core-hero {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
    padding-left: 7%;
}

/* 1 배경 이미지 */
.torus-core-hero .bg {
    position: absolute;
    inset: 0;
 	
    background: url('/img/torus-core-bg.jpg') no-repeat;
    background-size: cover;
    background-position: -130% center;
    
    z-index: 1;
}

/* 2️⃣ 그라데이션 (🔥 핵심) */
.torus-core-hero .overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        270deg,
        rgba(0,0,0,0) 20.74%,
        #000000 78%
    );

    z-index: 2;
}

/*  콘텐츠 */
.torus-core-hero .content {
    position: relative;
    z-index: 3;

    height: 100%;
    display: flex;
    align-items: center;
}

.torus-platform-section {
    padding: 30px 0;
    background-color: #fff;
    font-family: 'Pretendard', sans-serif;
}

/* 상단 헤더: 2단 분리 */
.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
    gap: 200px;
    
    padding-left:120px;
}

.header-left h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    white-space: nowrap;
}

.header-right p {
	width:95%;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    word-break: keep-all;
}

/* 중앙 비주얼 영역 */
.platform-visual {
    text-align: center;
    margin-bottom: 80px;
}

.visual-title {
    margin-bottom: 40px;
}

.combined-logo {
    height: 35px;
    margin-bottom: 10px;
}

.visual-title h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.main-graphic img {
    width: 100%;
    max-width: 1100px; /* 시안상의 원형 이미지 크기 조정 */
    height: auto;
}

/* 하단 상세 3단 그리드 */
.platform-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    
    padding-left:140px;
    padding-right:140px;
	padding-bottom:60px;
}

.grid-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.grid-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: rgba(93, 19, 234, 1); /* 포인트 보라색 */
    margin-bottom: 15px;
}

.grid-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    word-break: keep-all;
}

/* 반응형 처리 */
@media (max-width: 1024px) {
    .platform-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .platform-grid {
        flex-direction: column;
    }
    
    .grid-column {
        gap: 30px;
    }
}

/* 섹션 설정: 여백과 높이 제약을 해제 */
.torus-visual-section {
    width: 100%;
    background-color: #000; /* 이미지 배경색과 일치 */
    padding: 0;             /* 기존 padding 100px 0 제거 */
    margin: 0;
    overflow: hidden;
    line-height: 0;         /* 이미지 하단 미세 공백 제거 */
}

/* 컨테이너 설정: 너비 제한 해제 */
.visual-container {
    width: 100%;
    max-width: none;        /* 기존 1400px 제한 해제 */
    margin: 0;
}

/* 이미지 설정: 가로 100% 꽉 채우기 */
.full-visual-img {
    width: 100%;
    height: auto;
    display: block;         /* inline 요소를 block으로 변경 */
    margin: 0;
    padding: 0;
}









/* 모바일에서는 이미지가 너무 작아 보일 수 있으므로 가로 스크롤이나 크기 조절 필요 */
@media (max-width: 768px) {
    .torus-visual-section {
        padding: 60px 20px;
    }
}

/*mobile ~~~~~~~~~~~~~~~~~~~~~~~~*/
@media (max-width: 768px){

  .main-hero{
    height: 875px;
    position: relative;
  }
  
  
  .hero-text .title {
    font-weight: 600;
    font-size: 43px;
    line-height: 54px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}
  
  .hero-bg .bg-item{
    background-position: center;
    background-size: cover;
  }

  .hero-text{
    position: absolute;
    bottom: 120px;
    left: 20px;
    z-index: 2;
  }

  .hero-text .title{
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-text .desc{
    font-size: 14px;
    margin-top: 10px;
  }

  .hero-nav{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
.hero-nav ul{
  display: flex;
  flex-direction:row;
 
}
  .hero-bottom-logo{
	display:none;
  }
  
  
  @media (max-width: 768px){

  .menu-wrap{
    display: flex;
    flex-direction: column;
  }

  .menu-panel{
    width: 100%;
    height: 140px;
    position: relative;
  }

  .menu-panel img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .panel-overlay{
    position: absolute;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0,0,0,0.3);
    
  }

   .panel-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 🔥 통일 */

    opacity: 1; /* 모바일은 항상 보이게 */
  }

  .menu-panel:hover .panel-text {
    transform: translate(-50%, -50%); /* hover 영향 제거 */
  }

.panel-text .arrow{
	display:none;
}
  .panel-text h3{
    font-size: 18px;
  }
}
  
  @media (max-width: 768px){

  .tech .inner{
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .tech-visual img{
    width: 100%;
  }

  .tech-text{
    text-align: center;
  }

  .tech-text h2{
    font-size: 20px;
  }

  .tech-text p{
    font-size: 14px;
  }
}

@media (max-width: 768px){

.product-showcase {
    height: 260px;
    background-position: center;
    background-size: cover;
  }

  /* 짚고 넘어가야 할 핵심 수정 구역 */
  .product-text {
  
    padding-left: 20px; 
    
    left: auto;
    
    /* 3. 활성화 되었을 때 PC의 transform: translateX(0)을 그대로 이어받도록 유지하거나 초기화합니다 */
    transform: none; 
  }

  /* 활성화 되었을 때 모바일에서 굳이 X축으로 밀 필요가 없다면 강제 초기화 */
  .product-showcase.active .product-text {
    transform: none; 
  }

  .product-text h2 {
    font-size: 20px;
  }

  .product-text p {
    display: none; /* 시안 기준 숨김 */
  }

  .btn-outline {
    font-size: 12px;
    padding: 8px 16px; /* 모바일이니까 버튼 패딩도 살짝 줄여주면 더 예쁩니다 */
  }
  
  .product-text h2 img {
    height: 24px; 
    width: auto;
  }
  
}

@media (max-width: 768px){

  .partner-content .inner{
    padding: 30px 20px;
  }
.partner-top h2 {
	margin-top: 120px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}


.partner-top .sub {
    font-size: 20px;
    font-weight: 400;
    color: #888;
    padding-top: 100px;
    margin-left: 20px;
}

  .partner-list{
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;
  }

  .partner-item{
    text-align: center;
 
  }

  .partner-item img{
    height: 40px;
  }
  
.partner-bottom h3 {
    padding-top: 10px;
    font-size: 22px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
    
    padding-bottom: 30px;
}
  .partner-item p{
    font-size: 12px;
  }
}

@media (max-width: 768px){

  .join-showcase{
    height: 240px;
  }

  .join-text{
    position: absolute;
    
    left: -50px;
  }

  .join-text h2{
    font-size: 20px;
  }

  .join-text p{
    display: none;
  }
}

@media (max-width: 768px){
/* 전체 패딩 리셋 */
  .faq {
    padding: 60px 20px;
  }

  /* 레이아웃 세로로 */
    .faq-wrap {
    opacity: 1;
    transform: none;
  }
  .faq-wrap {
    flex-direction: column;
    gap: 0px;
  }


  .faq-left {
    margin-top:130px;
      flex: 0 0 50px;
    
    
    
  }


  .faq-item {
    width: 100%;   /* 120% → 100%로 강제 */
  }

  /* 텍스트 크기 조정 */
  .faq-question {
    font-size: 12px;
    padding: 20px 0;
  }

  .faq-answer {
    font-size: 14px;
  }

}

@media (max-width: 768px){

	.contact{
	    padding: 60px 20px;
	}
	
	
	
  .contact-wrap{
    flex-direction: column;
  }
.contact-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
    color: rgba(0, 0, 0, 1);
}
  .contact-right{
    order: 1;
  }

  .contact-left{
    order: 2;
    margin-top: 20px;
  
    
  }

  .map-box img{
    width: 100%;
  }
}
  /*~~~~~~~~~~~~~~~~~~~~~~~~~*/
  
}















/* [5] Footer */



/*
.footer {
    background: #000;
    color: #fff;
    padding-top: 50px;
padding-right: 100px;
padding-bottom: 50px;
padding-left: 100px;
    border-top: 1px solid #222;
}

.footer .inner {
    display: flex;
    justify-content: space-between;
}

.f-nav { display: flex; gap: 80px; }
.f-col strong {
    display: block;
    font-size: 12px;
    margin-bottom: 25px;
    color: #fff;
}

.f-col ul li { margin-bottom: 5px; }
.f-col ul li a {
    color: #777;
    font-size: 11px;
    transition: 0.2s;
}

.f-col ul li a:hover { color: #fff; }

.f-right { text-align: right; }
.f-logo { font-size: 28px; font-weight: 800; margin-bottom: 20px; }
.copyright { color:rgba(255, 255, 255, 0.8); font-size: 13px; margin-top:115px}

*/

.footer {
    background: #000;
    color: #fff;
    display: block;	
    padding: 70px 130px; 

    border-top: 1px solid #222;
}

.footer .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    
}
.f-nav {
	margin-top : 25px;
    display: flex;
    gap: 20px;
}
.f-col strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
	font-style: SemiBold;
	letter-spacing:0%;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 1);
}
.f-col {
    min-width: 120px;
     min-height: 120px; 
}

.f-nav .f-col:nth-child(4) {
    text-align: center;
}
.f-col ul li {
    margin-bottom: 3px;
}

.f-col ul li a {
    color: rgba(255, 255, 255, 1); 
    font-size: 13px;
    transition: 0.2s;
    font-weight: 400;
    font-style: Regular;
    letter-spacing: 0%;
    
}

.f-col ul li a:hover {
    color: #fff;
}

.f-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;

   height: auto;	
}

.f-right img {
	margin-top: 25px;
    width: 150px; 
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 10px;

    margin-top: 60px; 
}

.footer {
    min-height: 230px;
}

.f-col {
    min-width: 120px;
}

.f-right img {
    margin-bottom: 40px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}



.footer-mo {
  display: none;
}

/*mobile footer*/
@media (max-width: 768px) {

	
	
	
  .f-info,
  .f-right {
    display: none;
  }

  .footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
  }

  .footer-mo {
    display: block;
  }

  .f-mo-top img {
    height: 28px;
    margin-bottom: 10px;
  }

  .copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    letter-spacing: 0%;
   	font-family: Pretendard;
   	font-weight: 400;
   	 margin-top:10px;
   
  }

  /* 메뉴 */
  .f-mo-menu {
  
  }

  .f-acc-item {
    border-bottom: 1px solid rgba(255, 255, 255, 1);
  }

  .f-acc-header {
      font-family: Pretendard;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
  }

  .f-acc-header .plus {
    font-size: 30px;
    transition: 0.3s;
  	font-weight:100;
  }

  /* 서브 */
  .f-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease;
  }

  .f-acc-item.active .f-submenu {
    max-height: 300px;
    opacity: 1;
  }

  .f-submenu li {
    margin-bottom: 10px;
  }

  .f-submenu a {
  
  	margin-left: 20px;
  	
  	
  	
    letter-spacing: 0%;
    line-height: 16.5px;
    font-weight: 400;
    font-size: 11px;
    color: rgba(255, 255, 255, 1);
  }

  /* + → X 회전 */
  .f-acc-item.active .plus {
    transform: rotate(45deg);
  }

  /* single */
  .f-acc-item .single {
    display: block !important;
    font-family: Pretendard;
  
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
  }

  /* 하단 */
  .f-mo-bottom {
  	font-weight: 400;
  	
    margin-top: 30px;
    font-size: 11px;
    color: rgba(136, 136, 136, 1);
    line-height: 2.4;
  }
}






/*header gradation sectioncontroll*/

.page-grad .header {
    position: fixed;
    z-index: 1000;
}

.page-grad .header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.5) 0%,
        rgba(255,255,255,0.25) 30%,
        rgba(255,255,255,0.08) 60%,
        rgba(255,255,255,0) 100%
    );

    z-index: 0;
    pointer-events: none;
}

/*  header 내부 콘텐츠를 위로 올림 */
.page-grad .header .inner {
    position: relative;
    z-index: 1;
}
