/* ============================================
   기본 설정
   ============================================ */
/* Lenis smooth scroll: 스크롤 가능하도록 body 높이·스크롤 동작 보정 */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family:'GmarketSans', sans-serif;
  background-color: #000000;
}

.main {
  margin-top: 100px;
  min-height: calc(100vh - 100px);
}

@media screen and (max-width: 1024px){
	.main{
		margin-top: 80px;
		min-height: calc(100vh - 80px);
	}
}

@media screen and (max-width: 768px){
	.main{
		margin-top: 70px;
		min-height: calc(100vh - 70px);
	}
}

@media screen and (max-width: 500px){
	.main{
		margin-top: 60px;
		min-height: calc(100vh - 60px);
	}
}

.textUsing,
.textUsing *{
  transition: none !important;
}

.textUsing{
  visibility: visible;
  position: relative;
}

.textUsing.tlt-hide{
  visibility: hidden;
}

.textUsing .highlight{
  display: inline !important;
}

/* 공통 대제목 */
.comm-title {
	width: 100%;
	font-family: 'GmarketSans', sans-serif;
	font-weight: 700;
	font-size: 60px;
	line-height: 1.4;
  color: #fff;
}
.comm-title .highlight {
  color: #E5FF48;
}

@media screen and (max-width: 1024px) {
  .comm-title { font-size: 48px; }
}
@media screen and (max-width: 768px) {
  .comm-title { font-size: 36px; white-space: normal; word-break: keep-all; }
}
@media screen and (max-width: 500px) {
  .comm-title { font-size: 26px; }
}

/* 기본 flipInX의 끝 튕김(오버슈트) 제거 버전 */
@keyframes flipInXSoft {
  from {
    transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  60% {
    transform: perspective(1000px) rotate3d(1, 0, 0, -6deg);
    opacity: 1;
  }
  80% {
    transform: perspective(1000px) rotate3d(1, 0, 0, 2deg);
  }
  to {
    transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
  }
}
.flipInXSoft {
  backface-visibility: visible !important;
  animation-name: flipInXSoft !important;
}


.txtBx{
	display: inline-block;
	background-image: linear-gradient(
		120deg,
		#fff 0%,
		#fff 48%,
		transparent 48%,
		transparent 100%
	);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 0% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
}
.txtBx .highlight{
  position: relative;
  display: inline-block;
  -webkit-text-fill-color: rgba(255, 255, 255, 1);
}
.txtBx .highlight .highlight-yellow{
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  white-space: nowrap;
  background-image: linear-gradient(
    120deg,
    #E5FF48 0%,
    #E5FF48 48%,
    transparent 48%,
    transparent 100%
  );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}








/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  background-color: #000000;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 70px;
  position: relative;
  z-index: 1000;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.logo-icon {
  width: 243px;
  height: 54px;
  flex-shrink: 0;
}

.logo-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-divider {
  width: 1px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.logo-text {
  font-family:'GmarketSans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
}

/* Menu */
.header__menu {
  display: flex;
  align-items: center;
  gap: 100px;
}

.header__menu-item {
  font-family:'GmarketSans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header__menu-item:hover {
  color: #E5FF48;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Button */
.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border: 1px solid #FFFFFF;
  border-radius: 100px;
  background-color: transparent;
  font-family:'GmarketSans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.header__btn:hover {
	background-color: #E5FF48;
	border-color: #E5FF48;
	color: #000000;
}

/* Mobile Menu Button */
.header__mobile-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
	z-index: 1001;
}

.header__mobile-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #FFFFFF;
	transition: all 0.3s ease;
}

.header__mobile-btn.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.header__mobile-btn.active span:nth-child(2) {
	opacity: 0;
}

.header__mobile-btn.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.header__mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: #000000;
	z-index: 999;
	display: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__mobile-menu.active {
	opacity: 1;
	visibility: visible;
}

.header.active .header__inner {
	z-index: 1002;
}

.header__mobile-menu-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
  flex: 1;
}

.header__mobile-menu.active .header__mobile-menu-inner {
	padding-top: 100px;
}

.header__mobile-menu-header {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0 20px;
	margin-bottom: 40px;
}

.header__mobile-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 100px;
	flex: 1;
	padding: 40px 20px;
}

.header__mobile-nav-item {
	font-family: 'GmarketSans', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.4;
	color: #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(30px);
	transition: color 0.3s ease;
}

.header__mobile-nav-item:hover {
	color: #E5FF48;
}

.header__mobile-btn-consult {
	width: calc(100% - 40px);
	margin: 0 20px 20px 20px;
	padding: 18px 20px;
	border: 2px solid #FFFFFF;
	border-radius: 100px;
	background-color: transparent;
	font-family: 'GmarketSans', sans-serif;
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	color: #FFFFFF;
	cursor: pointer;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	text-decoration: none;
	display: block;
	text-align: center;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: opacity, transform;
}

.header__mobile-btn-consult:hover {
	background-color: #E5FF48;
	border-color: #E5FF48;
	color: #000000;
}


@media screen and (max-width: 1700px){
	.header__menu{gap: 70px;}
}

@media screen and (max-width: 1600px){
	.header{ height: 80px; }
	.header__inner{ width: 93%; margin: 0 auto; padding: 0; }
	.logo-divider{ height: 22px; }
	.header__menu{ display: none; }
	.header__menu-item{ font-size: 18px; }
	.header__btn-box{ display: flex; align-items: center; column-gap: 30px; }
	.header__btn{ display: flex; }
	.header__mobile-btn{ display: flex; }
	.header__mobile-menu{ display: block; }
	.header__mobile-menu.active .header__mobile-menu-inner { padding-top: 80px; }
	.header__mobile-menu-header{ height: 80px; padding: 0 40px; }
	.header__mobile-menu-header .logo-icon{ width: 200px; height: 44px; }
	.header__mobile-nav{ padding: 40px 40px; }
	.header__mobile-nav-item{ font-size: 24px; }
	.header__mobile-btn-consult{ display: none; width: calc(100% - 80px); margin: 0 40px 40px 40px; font-size: 18px; }
}

@media screen and (max-width: 1024px){
	.logo-icon{ width: 200px; height: 44px; }
	.logo-icon img{ width: 100%; }
	.logo-text{ font-size: 18px; }
	.header__btn{ display: none; }
	.header__mobile-nav{ flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 30px; }
	.header__mobile-btn-consult{ display: block; }
}

@media screen and (max-width: 768px){
	.header{ height: 70px; }
	.header__logo{ gap: 15px; }
	.logo-icon{ width: 180px; height: 40px; }
	.logo-divider{ height: 20px; }
	.logo-text{ font-size: 16px; }
	.header__mobile-menu.active .header__mobile-menu-inner{ padding-top: 70px; }
	.header__mobile-menu-header{ height: 70px; padding: 0 30px; }
	.header__mobile-menu-header .logo-icon{ width: 180px; height: 40px; }
	.header__mobile-nav{ padding: 40px 30px; }
	.header__mobile-nav-item{ font-size: 22px; }
	.header__mobile-btn-consult{ width: calc(100% - 60px); margin: 0 30px 30px 30px; font-size: 16px; }
}

@media screen and (max-width: 500px){
	.header{ height: 60px; }
	.header__logo{ gap: 10px; }
	.logo-icon{ width: 140px; height: 31px; }
	.logo-text{ font-size: 14px; }
	.header__menu{ display: none; }
	.header__btn{ display: none; }
	.header__mobile-btn{ display: flex; width: 22px; height: 16px; }
	.header__mobile-btn.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
	.header__mobile-btn.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
	.header__mobile-menu{ display: block; }
	.header__mobile-menu.active .header__mobile-menu-inner{ padding-top: 60px; }
	.header__mobile-menu-header{ height: 60px; padding: 0 20px; margin-bottom: 30px; }
	.header__mobile-menu-header .logo-icon{ width: 140px; height: 31px; }
	.header__mobile-nav{ gap: 25px; padding: 30px 20px; }
	.header__mobile-nav-item{ font-size: 20px; }
	.header__mobile-btn-consult{ width: calc(100% - 40px); margin: 0 20px 20px 20px; padding: 16px 18px; font-size: 14px; }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  position: relative;
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  padding: 100px 70px;
}

/* Floating Buttons */
.footer__floating-buttons {
  position: fixed;
  bottom: 70px;
  right: 70px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
  transition: all 0.3s ease;
}

.footer__floating-buttons.footer__floating-buttons--in-footer {
  position: absolute;
  bottom: auto;
  right: 70px;
  top: -70px;
}

.footer__btn-company {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 200px;
  padding: 20px 25px;
  border: 1px solid #FFFFFF;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer__btn-company:hover {
  border-color: #E5FF48;
}

.footer__btn-company span{
  font-family:'GmarketSans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
}

.footer__btn-company:hover span{
  color: #E5FF48;
}

.footer__btn-company .img_box{
  background: url(/front/_img/quick_arrow01.png) no-repeat center center / 100%;
  width: 18px;
  height: 20px;
  flex-shrink: 0;
}

.footer__btn-company:hover .img_box{
  background: url(/front/_img/quick_arrow01_ye.png) no-repeat center center;
}

.footer__btn-consult {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 200px;
  padding: 20px 25px;
  border: none;
  border-radius: 100px;
  background-color: #E5FF48;
  font-family:'GmarketSans', sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer__btn-consult .img_box{
	display: flex;
	align-items: center;
	width: 18px;
	height: 20px;
	flex-shrink: 0;
}
.footer__btn-consult .img_box img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Footer Inner */
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Top Section */
.footer__top {
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-transform: uppercase;
}

.footer__headline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__headline-text {
  font-family:'GmarketSans', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.4;
  color: #FFFFFF;
}

.footer__headline-title {
  font-family:'GmarketSans', sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.4;
  color: #FFFFFF;
}

.footer__menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.footer__menu-item {
  font-family:'GmarketSans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__menu-item:hover {
  color: #E5FF48;
}

/* Middle Section */
.footer__middle {
  perspective: 1000px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 60px;
  width: 100%;
}

.footer__middle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #444444;
  pointer-events: none;
}

.footer__logo {
  width: 243px;
  height: 54px;
  flex-shrink: 0;
}

.footer__logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__company-info {
  display: flex;
  gap: 40px;
  width: 100%;
}

.footer__info-column {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  line-height: 1.4;
}

.footer__info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.footer__info-label {
  font-family:'GmarketSans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.footer__info-value {
  font-family:'GmarketSans', sans-serif;
  font-weight: 500;
  color: #BBBBBB;
  -webkit-text-fill-color: #BBBBBB;
}

.footer__info-value a,
a[x-apple-data-detectors] {
	color: inherit !important;
	-webkit-text-fill-color: inherit !important;
	text-decoration: none !important;
}

.footer__info-value p {
  margin: 0;
}

.footer__info-value p:not(:last-child) {
  margin-bottom: 0;
}

/* Bottom Section */
.footer__bottom {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.footer__legal-links {
  flex: 1 0 0;
  display: flex;
  gap: 20px;
  font-family:'GmarketSans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}

.footer__legal-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__legal-link:first-child {
  color: #FFFFFF;
}

.footer__legal-link:last-child {
  color: #999999;
}

.footer__legal-link:hover {
  color: #E5FF48;
  transition: all 0.3s ease;
}

.footer__social {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease-out;
}

.footer__social-icon:hover {
  transform: scale(1.1);
}

.footer__social-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px){
	.footer{ padding: 80px 50px; }
	.footer__floating-buttons{ bottom: 50px; right: 50px; }
	.footer__floating-buttons.footer__floating-buttons--in-footer{ right: 50px; top: -60px; }
	.footer__btn-company span{ font-size: 16px; }
	.footer__btn-company, .footer__btn-consult{ width: 180px; padding: 18px 22px; font-size: 16px; }
	.footer__inner{ gap: 50px; }
	.footer__top{ flex-direction: column; align-items: flex-start; gap: 40px; }
	.footer__headline{ gap: 25px; }
	.footer__headline-text{ font-size: 26px; }
	.footer__headline-title{ font-size: 42px; }
	.footer__menu{ gap: 40px; }
	.footer__menu-item{ font-size: 18px; }
	.footer__middle{ gap: 35px; padding-top: 50px; }
	.footer__logo{ width: 200px; height: 44px; }
	.footer__logo img{ width: 100%; }
	.footer__company-info{ flex-wrap: wrap; }
	.footer__info-column{ flex: 0 0 calc(50% - 20px); }
	.footer__info-label, .footer__info-value{ font-size: 14px; }
	.footer__bottom{ gap: 30px; }
	.footer__legal-links{ font-size: 16px; }
	.footer__social-icon{ width: 22px; height: 22px; }
}

@media screen and (max-width: 768px){
	.footer{ padding: 60px 30px; }
	.footer__floating-buttons{ bottom: 30px; right: 30px; position: fixed !important; gap: 8px; }
	.footer__floating-buttons.footer__floating-buttons--in-footer{ position: fixed !important; right: 30px; bottom: 30px; top: auto; }
	.footer__btn-company span{ font-size: 12px; }
	.footer__btn-company, .footer__btn-consult{ width: 130px; padding: 12px 16px; font-size: 12px; gap: 7px; }
	.footer__btn-company .img_box{ width: 13px; height: 15px; }
	.footer__btn-consult .img_box{ width: 13px; height: 15px; }
	.footer__inner{ gap: 40px; }
	.footer__top{ gap: 30px; }
	.footer__headline{ gap: 20px; }
	.footer__headline-text{ font-size: 22px; }
	.footer__headline-title{ font-size: 34px; }
	.footer__menu{ flex-wrap: wrap; gap: 20px; }
	.footer__menu-item{ font-size: 16px; }
	.footer__middle{ gap: 30px; padding-top: 40px; }
	.footer__logo{ width: 180px; height: 40px; }
	.footer__company-info{ flex-direction: column; gap: 10px; }
	.footer__info-column{ gap: 8px; }
	.footer__info-label, .footer__info-value{ font-size: 14px; }
	.footer__bottom{ flex-direction: column; align-items: flex-start; gap: 25px; }
	.footer__legal-links{ flex-direction: column; gap: 15px; font-size: 14px; }
	.footer__social{ gap: 15px; }
	.footer__social-icon{ width: 20px; height: 20px; }
}

@media screen and (max-width: 500px){
	.footer{ padding: 50px 20px; }
	.footer__floating-buttons{ bottom: 20px; right: 20px; gap: 6px; }
	.footer__floating-buttons.footer__floating-buttons--in-footer{ right: 20px; }
	.footer__btn-company, .footer__btn-consult{ width: 106px; padding: 10px 12px; font-size: 11px; gap: 6px; }
	.footer__btn-company .img_box{ width: 11px; height: 13px; }
	.footer__btn-consult .img_box{ width: 11px; height: 13px; }
	.footer__inner{ gap: 35px; }
	.footer__top{ gap: 25px; }
	.footer__headline{ gap: 15px; }
	.footer__headline-text{ font-size: 18px; }
	.footer__headline-title{ font-size: 26px; }
	.footer__menu{ flex-direction: column; align-items: flex-start; gap: 15px; }
	.footer__menu-item{ font-size: 14px; }
	.footer__middle{ gap: 25px; padding-top: 35px; }
	.footer__logo{ width: 160px; height: 35px; }
	.footer__company-info{ gap: 20px; }
	.footer__info-column{ gap: 10px; }
	.footer__info-label{ font-size: 14px; }
	.footer__info-value{ font-size: 14px; }
	.footer__bottom{ gap: 20px; }
	.footer__legal-links{ gap: 12px; font-size: 14px; }
	.footer__social{ gap: 12px; }
	.footer__social-icon{ width: 18px; height: 18px; }
}
