@charset "utf-8";
/* *******************************************************
 * filename : main.css
 * description : 메인 레이아웃 및 컨텐츠 CSS
 * date : 2018-03-27
******************************************************** */

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for child elements if needed */
.scroll-animate-delay-100 {
  transition-delay: 0.1s;
}

.scroll-animate-delay-200 {
  transition-delay: 0.2s;
}

.scroll-animate-delay-300 {
  transition-delay: 0.3s;
}

/* ******************  메인 비주얼 ********************** */
#mainVisual {
  overflow: hidden;
  width: 100%;
  position: relative;
  height: 670px;
}

/* 비주얼높이값 이미지에맞게 수정 */
.-track,
#mainVisual .main-visual-list-con,
#mainVisual .main-visual-con,
#mainVisual .slick-list,
#mainVisual .slick-track,
.main-visual-item {
  height: 100%;
}

.main-visual-con {
  z-index: 1;
}

/* 메인 비주얼 :: 이미지 */
.main-visual-item {
  position: relative;
}

.main-visual-item .main-visual-pc-img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
}

.main-visual-item .main-visual-m-img {
  display: none;
}

/* 메인 비주얼 :: 텍스트 */
.main-visual-item .main-visual-txt-con {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  margin-top: -280px;
  /* Moved up further to be closer to phone */
  text-align: center;
}

/* margin-top은 조정 (텍스트영역 높이의 반) */
.main-visual-item .main-visual-txt-con .main-visual-txt1,
.main-visual-item .main-visual-txt-con .main-visual-txt2,
.main-visual-item .main-visual-txt-con .main-visual-btn-group,
.main-visual-item .main-visual-txt-con .typing-text-wrapper {
  opacity: 0;
  filter: Alpha(opacity=0);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 1s, transform 1s;
  -moz-transition: opacity 1s, transform 1s;
  -o-transition: opacity 1s, transform 1s;
  -ms-transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s;
}

.main-visual-item .main-visual-txt-con .main-visual-txt1 {
  display: block;
  font-size: 120px;
  /* 80 * 1.5 */
  line-height: 114px;
  /* 76 * 1.5 */
  font-weight: 400;
  letter-spacing: -0.65px;
  color: #fff;
  margin-bottom: 25px;
  transition-delay: 0s;
}

.main-visual-item .main-visual-txt-con .typing-text-wrapper {
  transition-delay: 0s;
}

.main-visual-item .main-visual-txt-con .main-visual-txt2 {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  filter: Alpha(opacity=0);
  margin-bottom: 30px;
  font-weight: 300;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}


.main-visual-item .main-visual-txt-con .main-visual-btn-group a:hover {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.main-visual-item .main-visual-txt-con .main-visual-btn {
  float: left;
  width: 50%;
}

.main-visual-item .main-visual-txt-con .main-visual-btn-group a {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 0;
  line-height: 90px;
  /* 60 * 1.5 */
}

.main-visual-item .main-visual-txt-con .main-visual-btn-group .main-visual-btn:first-child a {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.main-visual-item .main-visual-txt-con .main-visual-btn-group a p {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 26px;
  /* 17 * 1.5 approx */
  letter-spacing: -0.75px;
  color: #fff;
}

.main-visual-item .main-visual-txt-con .main-visual-btn-group a img {
  position: absolute;
  right: 11%;
  top: 50%;
  margin-top: -14px;
}

/* 메인 비주얼 :: active효과 */

.main-visual-item.active-item .main-visual-txt1,
.main-visual-item.active-item .main-visual-txt2,
.main-visual-item.active-item .main-visual-btn-group,
.main-visual-item.active-item .typing-text-wrapper {
  opacity: 1;
  filter: Alpha(opacity=100);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Main Visual - Phone Wrapper */
/* Use margin-top for animation to avoid conflict with transform centering in index.html */
.phone-wrapper {
  pointer-events: none;
  /* Allow clicks to pass through wrapper */
  opacity: 0;
  animation: fadeInUpMargin 1s ease-out 0s forwards;
}

@keyframes fadeInUpMargin {
  from {
    opacity: 0;
    margin-top: 50px;
  }

  to {
    opacity: 1;
    margin-top: 0;
  }
}

/* 메인 비주얼 :: 스크롤아이콘 */
.main-scroll-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -105px;
  /* Shifted left slightly from -53px */
  text-align: center;
  z-index: 9;
  /* opacity: 0; removed to let keyframes handle it */
  animation: blink 2s infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

/* width값에 맞게 margin-left수정 */
.main-scroll-icon span {
  display: block;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 300;
  font-size: 26px;
  margin-top: 10px;
}

/* 하단 고정 이미지 */
.bottom-images {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: #ffffff;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.bottom-images img {
  display: block;
  /* 인라인 블록에서 발생하는 여백 제거 */
  width: 50%;
  /* 이미지 최대 너비 설정 */
  height: auto;
  /* 비율 유지 */
}

/* 모바일용 이미지 사이즈 설정 */
@media (max-width: 768px) {
  .bottom-images img {
    width: 100%;
    /* 모바일에서는 전체 너비로 설정 */
    height: auto;
    /* 비율 유지 */
  }
}

.bottom-images .image1 {
  content: url("../images/main/fix_m2.webp");
}

.bottom-images .image2 {
  content: url("../images/main/fix_m.webp");
}

/* PC 화면에서는 숨김 */
@media only screen and (min-width: 768px) {
  .bottom-images {
    display: none;
  }
}

/* @media all and (max-width: 800px) {
  #mainVisual {
    height: auto;
  }

  .main-visual-item .main-visual-pc-img {
    display: none;
  }

  .main-visual-item .main-visual-m-img {
    display: block;
  }

   ... (Reduced for brevity - Disabled for PC Layout Force) ...
} */

/* ******************  메인 컨텐츠 ********************** */
/* -------- 메인 컨텐츠 :: 공통 -------- */
.main-tit {
  text-align: center;
  margin-bottom: 45px;
}

.main-tit h2 {
  font-size: 52px;
  line-height: 62px;
  letter-spacing: -0.65px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
}

.main-tit p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.65px;
  color: #fff;
  opacity: 0.7;
  filter: Alpha(opacity=70);
}

@media all and (max-width: 800px) {
  .main-tit {
    margin-bottom: 20px;
  }

  .main-tit h2 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 15px;
  }

  .main-tit p {
    font-size: 13px;
    line-height: 18px;
    word-break: keep-all;
  }
}

@media all and (max-width: 480px) {}

@media all and (max-width: 800px) {
  .main-visual-item .main-visual-txt-con .main-visual-btn-group {
    height: 52px !important;
  }

  .main-visual-item .main-visual-txt-con .main-visual-btn-group a {
    line-height: 50px !important;
  }

  .main-visual-item .main-visual-txt-con .main-visual-btn-group a p {
    font-size: 16px !important;
  }

  .main-visual-item .main-visual-txt-con .main-visual-btn-group a img {
    width: 20px !important;
    height: 20px !important;
    margin-top: -10px !important;
  }
}

/* -------- 메인 컨텐츠 :: 큰손컴퍼니 핵심영향 -------- */
#mainCapability {
  padding-top: 90px;
  padding-bottom: 120px;
  background-color: #050505;
}

#mainCapability .main-tit h2 {
  color: #fff;
}

#mainCapability .main-tit p {
  color: rgba(255, 255, 255, 0.6);
}

#mainCapability .main-capability-list li {
  position: relative;
  float: left;
  width: 20%;
  
  height: 240px;
  padding: 50px 0;
  border-radius: 10px;
  text-align: center;
  margin-left: 2%;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#mainCapability .main-capability-list li:first-child {
  margin-left: 0;
}

#mainCapability .main-capability-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/main/main_hover_bg.webp") no-repeat center;

  background-size: 100% 100%;
  z-index: 4;
  opacity: 0;
  filter: hue-rotate(20deg);
  /* Shift color to Sky Blue */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#mainCapability .main-capability-list .list1 {
  background: url("../images/main/main_company_1.webp") no-repeat center;
  background-size: 100% 100%;
}

#mainCapability .main-capability-list .list2 {
  background: url("../images/main/main_company_2.webp") no-repeat center;
  background-size: 100% 100%;
}

#mainCapability .main-capability-list .list3 {
  background: url("../images/main/main_company_3.webp") no-repeat center;
  background-size: 100% 100%;
}

#mainCapability .main-capability-txt {
  position: relative;
  z-index: 5;
}

#mainCapability .main-capability-txt h3 {
  font-size: 26px;
  line-height: 0px;
  letter-spacing: -0.65px;
  color: #fff;
  font-weight: 300;
}

#mainCapability .main-capability-txt img {
  margin: 25px 0;
}

#mainCapability .main-capability-txt p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.65px;
  color: #fff;
  font-weight: 300;
  word-break: keep-all;
}

#mainCapability .main-capability-list li.active {
  box-shadow: 12px 12px 51px rgba(0, 0, 0, 0.28);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

#mainCapability .main-capability-list li.active .main-capability-cover {
  opacity: 1;
  filter: Alpha(opacity=100);
}

@media all and (max-width: 1330px) {
  #mainCapability {
    padding-top: 63px;
    padding-bottom: 84px;
  }
}

/* @media all and (max-width: 800px) {
    #mainCapability .main-capability-list li {
    float: none;
    width: 100%;
  }
   ... (Disabled for PC Layout Force) ...
} */

#mainCapability .main-capability-txt img {
  margin: -5px 0;
}

@media all and (max-width: 480px) {}

/* -------- 메인 컨텐츠 :: 메인 리스트 -------- */
.main-recommend-bx {
  margin: 150px 0;
  /* Increased spacing */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.main-recommend-info .num {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  line-height: 1;
  color: #04d28f;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-recommend-info .num::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #04d28f;
  margin-right: 15px;
}

.main-recommend-info .num::after {
  display: none;
}

.main-recommend-info h3 {
  font-size: 48px;
  /* Larger heading */
  line-height: 1.2;
  letter-spacing: -1px;
  color: #fff;
  font-weight: 700;
  word-break: keep-all;
  margin-top: 0;
  margin-bottom: 30px;
}

.main-recommend-btn p {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.2px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  word-break: keep-all;
  margin-bottom: 50px;
}

.main-recommend-img {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.main-recommend-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
  display: block;
}

.main-recommend-img:hover img {
  transform: scale(1.03);
}

.main-recommend-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  height: 64px;
  border-radius: 32px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #000;
  background: #fff;
  /* Solid white button */
  transition: all 0.3s ease;
  border: none;
}

.main-recommend-btn a:hover {
  background: #3606e4;
  /* Accent color on hover */
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(4, 210, 143, 0.3);
}

/* Specific colors for sections if needed, or keep uniform premium look */
.blog .main-recommend-btn a:hover {
  color: #000;
  background: #fff;
}

.insta .main-recommend-btn a:hover {
  color: #000;
  background: #fff;
}

/* Layout Adjustments */
.main-recommend-left .main-recommend-info,
.main-recommend-left .main-recommend-btn {
  width: 100%;
  float: none;
}

.main-recommend-left {
  flex-direction: row;
}

.main-recommend-left .main-recommend-content {
  width: 45%;
  order: 1;
}

.main-recommend-left .main-recommend-img {
  width: 50%;
  order: 2;
}

.main-recommend-right {
  flex-direction: row-reverse;
}

.main-recommend-right .main-recommend-content {
  width: 45%;
  text-align: left;
  /* Align left for better readability */
}

.main-recommend-right .main-recommend-img {
  width: 50%;
}

.main-recommend-right .main-recommend-info .num {
  justify-content: flex-start;
  /* Reset to left align */
}

.main-recommend-right .main-recommend-info .num::before {
  display: inline-block;
  /* Show line */
}

.main-recommend-right .main-recommend-info .num::after {
  display: none;
}

/* Wrapper for text content to handle flex layout properly */
.main-recommend-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media all and (max-width: 1330px) {
  .main-recommend-bx {
    margin: 100px 0;
    gap: 40px;
  }

  .main-recommend-info h3 {
    font-size: 40px;
  }
}

/* @media all and (max-width: 1024px) {
  .main-recommend-bx {
    flex-direction: column;
  }
} */

@media all and (max-width: 800px) {
  .main-recommend-bx {
    margin: 80px 0;
  }

  .main-recommend-info h3 {
    font-size: 32px;
  }

  .main-recommend-btn p {
    font-size: 16px;
  }

  .main-recommend-btn a {
    width: 100%;
    height: 56px;
    font-size: 16px;
  }
}

@media all and (max-width: 480px) {}

/* -------- 메인 컨텐츠 :: 진행절차 -------- */
#mainProcess {
  padding-top: 100px;
  padding-bottom: 130px;
  background: url("../images/main/main_content_bg.webp") no-repeat center;
  background-size: cover;
}
#mainProcess .main-process-list ul {
  display: table;
  width: 100%;
}
#mainProcess .main-process-list ul li {
  display: table-cell;
  vertical-align: middle;
  padding: 60px 0;
}
#mainProcess .main-process-list ul li.process-step {
  width: 16.8%;
  text-align: center;
}
#mainProcess .main-process-list ul li.arrow {
  width: 4%;
  text-align: center;
}
#mainProcess .main-process-list ul li.arrow img {
  max-width: 100%;
}

#mainProcess .process-step-wrap {
  position: relative;
}
#mainProcess .main-process-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#mainProcess .process-step1 {
  background: url("../images/main/main_process_1.webp") no-repeat center;
  background-size: contain;
}
#mainProcess .process-step2 {
  background: url("../images/main/main_process_2.webp") no-repeat center;
  background-size: contain;
}
#mainProcess .process-step3 {
  background: url("../images/main/main_process_3.webp") no-repeat center;
  background-size: contain;
}
#mainProcess .process-step4 {
  background: url("../images/main/main_process_4.webp") no-repeat center;
  background-size: contain;
}
#mainProcess .process-step5 {
  background: url("../images/main/main_process_5.webp") no-repeat center;
  background-size: contain;
}

#mainProcess .main-process-info .num {
  font-size: 22px;
  line-height: 28px;
  color: #fff;
  font-weight: 300;
}
#mainProcess .main-process-info h3 {
  font-size: 26px;
  line-height: 28px;
  letter-spacing: -0.65px;
  color: #04d28f;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 20px;
}
#mainProcess .main-process-info p {
  display: table;
  width: 100%;
  height: 84px;
  word-break: keep-all;
}
#mainProcess .main-process-info p span {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.65px;
  color: #fff;
  font-weight: 300;
}

@media all and (max-width: 1330px) {
  #mainProcess {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  #mainProcess .main-process-list ul {
    display: block;
    text-align: center;
  }
  #mainProcess .main-process-list ul li {
    display: inline-block;
  }
  #mainProcess .main-process-list ul li.process-step {
    width: 30%;
  }
}

@media all and (max-width: 800px) {
  #mainProcess {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  #mainProcess .main-process-list ul li {
    padding: 25px 0;
  }

  #mainProcess .main-process-info .num {
    font-size: 12px;
    line-height: 20px;
  }
  #mainProcess .main-process-info h3 {
    font-size: 15px;
    line-height: 21px;
    margin-top: 8px;
    margin-bottom: -15px;
    word-break: keep-all;
  }
  #mainProcess .main-process-info p {
    height: 80px;
  }
  #mainProcess .main-process-info p span {
    font-size: 12px;
    line-height: 16px;
  }
}

@media all and (max-width: 480px) {}

/* -------- 메인 컨텐츠 :: Integration (Glowing Border Style) -------- */
#mainIntegration {
  padding-top: 100px;
  padding-bottom: 150px;
  background: #050505;
  display: flex;
  justify-content: center;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.integration-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  /* Card width */
  height: 500px;
  background: #000;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  overflow: visible !important;
  /* Force glow visibility */
}

/* Override for Review Section */
#reviewsSection .integration-card {
  max-width: 100%;
  /* Full width for reviews */
  height: auto;
  /* Auto height for content */
  padding: 40px;
  /* Match automation box padding exactly */
}

/* Glowing Border Effect */
.integration-card::after,
.integration-card::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  /* Dark Gold Gradient */
  background-image: conic-gradient(from var(--angle), #222222 70%, #787878, #B8B8B8, #787878);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 0.75px;
  /* Thinner border */
  border-radius: 30px;
  animation: spin 8s linear infinite;
  /* Slower animation */
}

.integration-card::before {
  filter: blur(1.5rem);
  opacity: 0.5;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}


/* Inner Content Mask to hide center of gradient */
/* Inner Content Mask to hide center of gradient */
.card-content {
  background: #050505;
  /* Match section bg or slightly lighter */
  position: absolute;
  inset: 0.75px;
  /* Match border width */
  border-radius: 28.5px;
  /* Adjust for inset */
  z-index: 2;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  /* Create new stacking context */
}

/* Bottom Glow */
.card-content::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Fill full height to avoid cut-off line */
  /* Updated to match dark gold theme */
  background: linear-gradient(to top, rgba(184, 184, 184, 0.15) 0%, transparent 60%);
  border-radius: 0 0 27px 27px;
  pointer-events: none;
  z-index: 0;
  /* Place behind content but above background */
}

@media all and (max-width: 480px) {
  #mainIntegration .integration-card {
    height: auto;
    min-height: 450px;
  }
}

/* -------- 이용후기 (Reviews) Glowing Border Container -------- */
/* Apply to the main container (Title + List) */
#reviewsSection {
  position: relative;
  background: transparent;
  /* Ensure no background blocks it */
  z-index: 1;
  margin: 20px 0;
  overflow: visible !important;
  /* Force visibility */
}

/* The Glowing Border (Behind) */
#reviewsSection::before {
  content: '';
  position: absolute;
  inset: -0.75px;
  /* Border width outside */
  background-image: conic-gradient(from var(--angle), #222222 70%, #787878, #B8B8B8, #787878);
  border-radius: 31.5px;
  /* Adjust for inset */
  z-index: -1;
  animation: spin 8s linear infinite;
}

/* The Inner Background (Masking the center) */
#reviewsSection::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #050505;
  border-radius: 30px;
  z-index: -1;
}

/* Adjust inner list to fit */
.live-wrap1 {
  position: relative;
  z-index: 2;
  /* Remove previous container styles if any remain */
  background: transparent;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.live-wrap1::after {
  display: none !important;
}

/* Ensure title is visible */
#emptySection .big-tit {
  position: relative;
  z-index: 2;
  color: #fff;
  /* Ensure title is white */
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
}

/* Laurel Wreath Styles */

/* 월계관과 텍스트 사이 간격 수정 (gap) */
.main-visual-item .main-visual-txt-con .main-visual-txt2 {
  display: inline-flex;
  /* flex에서 inline-flex로 변경하여 나란히 배치 */
  align-items: center;
  justify-content: center;
  gap: 0px;
  /* 텍스트와 월계관 사이 간격을 0으로 설정 */
  line-height: 1.2;
  /* Better line height for multi-line text */

  /* Moved from index.html internal styles */
  font-size: 40px;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin: 0 50px 60px;
  /* Increased horizontal margin slightly as requested */
  font-weight: 400;
  /* Animation removed as requested */
}

/* 월계관 위치 및 크기 수정하는 곳 */
.wreath-icon {
  width: 80px;
  /* Increased size */
  height: 160px;
  /* Increased size */
  color: #fff;
  /* White color to match reference */
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
  margin: 0 -35px;
  /* 월계관을 텍스트 쪽으로 더 당김 */
  /* Subtle glow */
}

/* 모바일 - 업계최고 지급률, 365일 신속입금 */
@media all and (max-width: 800px) {
  .main-visual-item .main-visual-txt-con .main-visual-txt2 {
    font-size: 20px !important;
    line-height: 20px !important;
    margin: 0 20px 20px !important;
  }

  .wreath-icon {
    width: 40px !important;
    height: 80px !important;
    margin: 0 -15px !important;
  }
}

/* Mirror the right icon to create the wreath shape */
.wreath-icon.right {
  transform: scaleX(-1);
}

/* Review Box in Empty Section - Full Width */
#emptySection .integration-card {
  width: 70%;
  max-width: none;
  /* Leave a little space on sides */
  height: 500px;
  /* Increased height to prevent bottom text from being obscured */
}



/* Horizontal Slide Review Box */

.live-wrap1 {
  overflow: hidden;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  opacity: 1 !important;
  /* Ensure no parent opacity */
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.live-slide {
  display: flex;
  gap: 10px;
  /* Tighter gap */
  width: max-content;
  height: 100%;
  animation: marquee 120s linear infinite;
  /* 2x Slower */
  opacity: 1 !important;
  /* Ensure no parent opacity */
}

/* Pause on hover */
.live-slide:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.slide-item {
  flex: 0 0 auto;
  width: 350px;
  /* Slightly wider */
  height: auto;
  /* Auto height to shrink box */
  scroll-snap-align: start;
  opacity: 1 !important;
  /* Ensure no parent opacity */
}




#emptySection {
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%), linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

/* Diagonal Light Beam Effect */
/* Diagonal Light Beam Effect */
/* Diagonal Light Beam Effect */
#emptySection::before {
  content: '';
  position: absolute;
  top: 450px;
  /* Slight adjustment to position the line nicely */
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  /* Adjusted angle for better diagonal look */
  width: 80%;
  /* Reduced length to 2/3 as requested */
  height: 300px;
  /* Taller for the light throw */
  /* Sharp start at bottom (blue) fading to transparent at top */
  /* Background: Left-Right Linear Gradient using Deep Gold & Bright Gold */
  background: linear-gradient(90deg,
      rgba(120, 120, 120, 0.8) 0%,
      /* Deep Gold */
      rgba(184, 184, 184, 0.8) 100%
      /* Bright Gold */
    );

  /* Mask: Defines the shape (Ellipse) and fade */
  -webkit-mask-image: radial-gradient(ellipse at 50% 100%, black 0%, black 30%, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 100%, black 0%, black 30%, transparent 70%);

  filter: blur(8px);
  /* Reduced blur to keep the bottom line relatively sharp but smooth */
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* Ensure content stays above the light */
#emptySection .success-stories-header,
#emptySection .card-content-wrapper,
#emptySection .live-wrap1 {
  position: relative;
  z-index: 2;
}

#emptySection .integration-card {
  position: relative;
  z-index: 2;
  margin-top: 500px;
  /* Separate from title */
}

#emptySection .box {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  /* Match phone-popup */
  backdrop-filter: blur(60px);
  /* Match phone-popup */
  -webkit-backdrop-filter: blur(60px);
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Match phone-popup */
  box-shadow: none;
  /* Match phone-popup */
}

/* Force ALL text inside the box to be white and opaque */
#emptySection .box,
#emptySection .box * {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #ffffff !important;
  /* Webkit override */
}

#emptySection .box .review {
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 0;
  display: flex !important;
  align-items: center;
  /* Vertical center */
  /* flex: 1; Removed to prevent expansion */
  white-space: normal;
}

#emptySection .box .meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  /* Increased gap for larger profile */
  font-size: 25px;
  border-top: none;
  padding-top: 15px;
}

#emptySection .box .name,
#emptySection .box .date {
  font-weight: 500;
  color: #fff !important;
}

#emptySection .box .user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

#emptySection .box .profile-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* Slight 3D effect */
}

/* Container for Date and Name */
#emptySection .box .info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  margin-top: -5px;
  /* Visual adjustment to raise text slightly */
}


/* Head and Body pseudo-elements removed as we are using real images */

@media (min-width: 1024px) {
  .slide-item {
    width: 400px;
    /* Fixed width as requested */
    flex-shrink: 0;
    /* Prevent shrinking */
    margin: 0;
    /* Removed margin to respect parent gap */
  }

  .live-wrap1 {
    max-width: none;
    /* Remove width constraint */
    width: 100%;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  }
}

/* -------- FAQ Section (Fusion AI Style) -------- */
#faqSection {
  background-color: #050505;
  padding: 100px 0;
  color: #fff;
  position: relative;
  z-index: 5;
}

#faqSection .faq-tit {
  text-align: center;
  margin-bottom: 60px;
}

#faqSection .faq-tit h2 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #fff;
}

#faqSection .faq-tit p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.faq-question {
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.faq-toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-toggle-icon::before {
  width: 100%;
  height: 2px;
}

.faq-toggle-icon::after {
  width: 2px;
  height: 100%;
}

/* Active State for Icon */
.faq-item.active .faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  padding-bottom: 30px;
  /* dynamic height via JS */
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 800px) {
  #faqSection {
    padding: 60px 20px;
  }

  #faqSection .faq-tit h2 {
    font-size: 36px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-answer {
    padding: 0;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }
}

/* Review Box Blur & Layout Effect */
.slide-item .box {
  background: rgba(30, 30, 30, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Layout changes for fixed bottom */
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  min-height: 250px;
  /* Ensure a minimum height */
}

/* FAQ Section Border Fix */
#faqSection .integration-card {
  background: transparent !important;
  /* Reveal pseudo-element border */
  padding: 1.5px !important;
  /* Actual border thickness */
  height: auto !important;
  flex: none !important;
  overflow: visible !important;
}

#faqSection .card-content {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  background: #000 !important;
  /* Inner background */
  border-radius: 28.5px !important;
  padding: 60px !important;
  z-index: 2;
}

/* Increase FAQ Question Font Size */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question span {
  font-size: 24px;
  /* Increased from default */
  font-weight: 500;
  color: #fff;
}

.faq-question .icon {
  font-size: 28px;
  font-weight: 300;
}

/* -------- 문의 버튼 섹션 (FAQ 위) -------- */
.contact-btn-section {
  padding: 50px 20px;
  text-align: center;
}

.contact-btn-group {
  max-width: 660px;
  margin: 0 auto;
  height: 93px;
  background: linear-gradient(45deg, rgba(5, 5, 5, 0.3) 0%, rgba(184, 184, 184, 0.3) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
}

.contact-btn {
  width: 50%;
}

.contact-btn a {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 90px;
  text-decoration: none;
}

.contact-btn:first-child a {
  background: #FFE300;
}

.contact-btn:first-child a p {
  color: #000 !important;
}

.contact-btn:first-child a img {
  filter: brightness(0);
}

.contact-btn:last-child a {
  border-left: 0;
}

.contact-btn a p {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 26px;
  letter-spacing: -0.75px;
  color: #fff;
}

.contact-btn a img {
  position: absolute;
  right: 11%;
  top: 50%;
  margin-top: -14px;
}

/* 모바일 반응형 */
@media all and (max-width: 800px) {
  .contact-btn-section {
    padding: 30px 15px;
  }

  .contact-btn-group {
    height: 56px;
  }

  .contact-btn a {
    line-height: 54px;
  }

  .contact-btn a p {
    font-size: 16px;
  }

  .contact-btn a img {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    right: 8%;
  }
}