/* 기본 스타일 */
* { margin: 0; padding: 0; box-sizing: border-box; } 
body { 
    cursor: default; 
    font-family: 'Pretendard', sans-serif; 
    overflow: hidden; 
    height: 100%; 
    margin: 0;
    padding: 0;
} 
html { 
    height: 100%; 
    overflow: hidden; 
    margin: 0;
    padding: 0;
} 
/* 네비게이션 바 */
.navigation { position: fixed;display: flex; top: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 20px 20px; transition: all 0.3s ease; opacity: 0; transform: translateY(-100%); visibility: hidden; } 
.navigation.show { opacity: 1; transform: translateY(0); visibility: visible; } 
.nav-container { max-width: 86%;margin: 0 auto;width: 100%;display: flex; justify-content: space-between; align-items: center;} 
.nav-container .pc-nav{display: flex;justify-content: space-between;align-items: center;width: 100%;}
.nav-logo img { height: 40px; } 
.nav-menu { display: flex; list-style: none; gap: 15px; } 
.nav-item a { text-decoration: none; color: #333; font-weight: 500; font-size: 15px; transition: color 0.3s ease; padding: 10px 20px; border-radius: 25px; } 
.nav-item.active a {
    background: #FFB71B; color: white; 
    &:hover{
        color: white;
    }
} 
.nav-item a:hover { color: #FFB71B; } 
/* 메인 컨테이너 */
.main-container   { position: relative; }

/* FullPage.js 섹션 공통 스타일 */
.section          { width: 100%; height: 100vh; display: flex; justify-content: center; align-items: center; position: relative; }

/* FullPage.js 컨테이너 */
#fullpage         { height: 100vh; }

/* ==================================
Section 1: Intro
================================== */
.intro-section    { background-image: url(../img/intro/intro_bg.jpg); background-size: cover; background-position: center; background-repeat: no-repeat; }

.intro-content { max-width: 100%; margin: 0 auto; padding: 0 50px; } 
.intro-header { 
    width: 86%;position: absolute; top: 30px; left: 0; right: 0; display: flex; justify-content: space-between; align-items: center; margin:0 auto; z-index: 10;
} 

.intro-header{
    .logo{
        position: relative;
        img{
            &.white{
                position: absolute;
                left: 0;
                top: 0;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }
        }
    }
}
.logo img { height: 50px;} 

/* 드롭다운 버튼 스타일 */
.btn_area {
    position: relative;
}

.top_btn {
    width: 140px;
    height: 33px;
    background-color: #FFB71B;
    padding: 4px 14px;
    font-size: 15px;
    line-height: 25px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #ffffff;
}

.top_btn:hover {
    background-color: #000000;
}

.top_btn.active {
    background-color: #000000;
}

/* .top_btn::after {
    content: '▼';
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s ease;
} */

.top_btn.active::after {
    transform: rotate(180deg);
}

/* 드롭다운 메뉴 스타일 */
.dropdown-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    top: 130%;
    right: 0;
    width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    border: 1px solid #FFB71B;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #FFB71B;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 183, 27, 0.3);
}

.dropdown-item img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 4px;
}

.dropdown-item span {
    font-size: 14px;
    font-weight: 500;
}
.intro-main{display: flex; align-items: flex-start; width: 86%;height:100%;position: absolute; margin:10rem auto;top: 50%;left: 50%;transform: translate(-50%, -50%);justify-content:space-between;}
.download-buttons{display: flex;gap: 2rem;flex-direction: column; margin-top: 2rem;}
.download-buttons a { width: 188px;height:55px;display: flex; align-items: center;justify-content: center;gap: 15px; padding: 5px 15px; background-color: #ffffff;border-radius: 5rem;} 
.download-btn img { transition: transform 0.3s ease; } 
.download-btn:hover img { transform: scale(1.1); } 
.intro-main h1 { font-size: 64px; font-weight: 700;} 
.intro-main p { font-size: 2.8rem; font-weight: 300; margin-bottom: 20px;} 
.intro-main h1 span.col_point{color:#FFB71B}
.intro_left__area{margin-top: 10%;position: absolute;color: #ffffff;}
/* intro dynamic - 동전 위아래 부드러운 움직임 애니메이션 */
.intro_right__area{position: absolute;right: 0;}
.intro_right__area > img{position: relative;}
.intro_right__area .dynamic{width: 100%;height: 100%;position: absolute;top: 0;left: 0;}
.intro_right__area .dynamic__inner{width: 100%;height: 100%;position: relative;}
.intro_right__area .dynamic img{position: absolute;width: 60px;height: 60px;animation: coinFloat 3s ease-in-out infinite;opacity: 1;}
.intro_right__area .dynamic img:nth-child(1){top: 10%;left: 50%;animation-delay: 0s;}
.intro_right__area .dynamic img:nth-child(2){top: 16%;left: 46%;animation-delay: 0.5s;}
.intro_right__area .dynamic img:nth-child(3){top: 23%;left: 50%;animation-delay: 1s;}
.intro_right__area .dynamic img:nth-child(4){top: 35%;left: 38%;animation-delay: 1.5s;}
.intro_right__area .dynamic img:nth-child(5){top: 60%;left: 10%;animation-delay: 2s;}
.intro_right__area .dynamic img:nth-child(6){top: 30%;right: 20%;animation-delay: 2.5s;}
@keyframes coinFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
/* ==================================
Section 2-4: 건강의신 소개 
================================== */
.intro-detail-section{height: auto;padding: 20rem 0;}
.intro-feature-section { background: white; height: 100vh;position: relative;} 
.intro-feature-section .section-content{display: flex;padding: 0;}
.intro-feature-section .section-content div{width: 50%;height: 100vh;background-position: center;background-size: cover;background-repeat: no-repeat;}
.intro-feature-section .section-content .img01 {background-image: url(../img/about/section04_img01.png);}
.intro-feature-section .section-content .img02 {background-image: url(../img/about/section04_img02.png);}


.intro-feature-section .blurBg{position: absolute;top: 0;left: 0;width: 100%;height: 100vh;background-color: rgba(0, 0, 0, 0.5);backdrop-filter: blur(5px);}

.intro-feature-section .blurBg .title_area{width: 100%;display: flex;flex-direction: column;align-items: center;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
.intro-feature-section .blurBg .title_area h2{font-size:64px; color: #ffffff;text-align: center;font-weight: 600;line-height: 86px;}
.service-intro-section .section-content{height: auto;display: flex;flex-direction: column;gap: 20rem;}
.service-intro-section h3{font-size:40px; color: #141414;text-align: center;font-weight: 600;}
.service-intro-section .section-content_inner{display: flex;flex-direction: column; align-items: center;}
.service-intro-section .title{font-size:40px; color: #141414;text-align: center;font-weight: 600;}
.service-intro-section .sub_title{font-size:18px; color: #141414;text-align: center;font-weight: 400;line-height: 28px;margin-top: 20px;}


/* 일상 속 헬스케어 플랫폼 소개 */
.about_slide__inner .slide_item {height: fit-content;display: flex; align-items: center; gap: 4rem; padding: 30px; background-color: #f1f1f1; border-radius: 25px; flex-shrink: 0; }
.about_slide__inner .slide_item:nth-child(odd){margin-top: 120px;}

.about_slide__inner .slide_item img{width:30%}
.about_slide__inner .slide_item div{width:70%}

.about_slide__inner .slide_item span{color:#ffffff;font-size: 18px;font-weight: 400;padding-bottom: 10px;line-height: 28px;}
.about_slide__inner .slide_item p{color:#ffffff;font-size: 2.2rem; font-weight: 500;line-height: 36px;}

.about_slide__inner .slide_item.col01 {background-color: #FC837B;}
.about_slide__inner .slide_item.col02 {background-color: #1F7EE8;}
.about_slide__inner .slide_item.col03 {background-color: #FFD153;}
.about_slide__inner .slide_item.col04 {background-color: #8B83EA;}


@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.about_slide__area {
  display: flex;
  gap: 4rem;
  overflow: hidden;
  position: relative;
  margin-top: 100px; 
}

.about_slide__inner {
  width: 100%;
  display: flex;
  animation: scroll 20s linear infinite;
  gap: 4rem; align-items: flex-start;
  flex-shrink: 0;
}
/*마우스오버시 애니메이션 정지*/
/*.about_slide__inner:hover { animation-play-state: paused; }*/

.about_slide__inner li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  list-style: none;
}

@media (max-width: 1400px) {
  .cont_left{
    width: 30% !important;
  }
}
@media (max-width: 1280px) {
  .about_slide__inner{width: 100%;}
  .about_slide__inner li{flex:1}
}

@media (max-width: 1024px){
  .tidings{flex: 0 0 50%;}
}

@media (max-width: 768px) {
  .about_slide__inner{width: 200%;}
}
/* 일상 속 헬스케어 플랫폼 소개 : end */



.section-content { width:100%;height:100%;max-width: 100%; margin: 0 auto;} 
/* .section-content p { font-size: 1.2rem; color: #666; }  */
.card__area{ width: 1520px;margin: 0 auto;}
.card__area ul{ width: 100%;display: grid;grid-template-columns: repeat(4, 1fr);gap: 20px;margin-top: 80px;}
.card__area .card_item a{ position: relative; width: 100%; height: 358px; background-color: #f5f5f5; border-radius: 30px; padding: 60px; display: flex; align-items: center; justify-content: center; flex-direction: column; transition: all 0.3s ease; overflow: hidden; }
.card__area .card_item a::after{ content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 30px; background-color: #FFB71B; border-radius: 30px; opacity: 0; z-index: 1; display: flex; align-items: flex-start; color: white; font-size: 18px; font-weight: 500; }
.card__area .card_item a:hover::after{ opacity: 1; transition: opacity 0.3s ease; }
.card__area .card_item a .object_box { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.card__area .card_item a .object_box p{ font-size: 20px; font-weight: 600; text-align: center; }
.card__area .card_item span { width: 4rem; height: 4rem; position: absolute; bottom: 4rem; right: 4rem; background-color: #000000; border-radius: 4rem; display: flex; align-items: center; justify-content: center; z-index: 2; }
.card__area .card_item span img { transition: transform 0.3s ease; }

.card__area .card_item a:hover span img { transform: rotate(45deg); }

/* ==================================
Section 2-4: 건강의신 소개 섹션들
================================== */

.service-steps{ display: flex; justify-content: center; gap: 4rem; margin-bottom: 3rem; }
.step{ text-align: center; }
.step-number{ display: inline-block; width: 80px; height: 80px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; line-height: 80px; font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.step p{ font-size: 1.2rem; margin: 0; }
.highlight-text{ font-size: 2rem; font-weight: 700; text-align: center; color: #FFB71B; }
.onestop-section { background: #f8f9fa; }
.onestop-section h2{ font-size: 3.5rem; font-weight: 700; margin-bottom: 3rem; text-align: center; color: #333; }
.features-list { max-width: 800px; margin: 0 auto 3rem; }
.feature-item{ background: white; padding: 2rem; margin-bottom: 1rem; border-radius: 15px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); font-size: 1.2rem; text-align: center; }
.checkpoint-section { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.checkpoint-section h2 { font-size: 3.5rem; font-weight: 700; margin-bottom: 3rem; text-align: center; color: #333; }
.checkpoints { display: flex; flex-direction: column; gap: 2rem; max-width: 600px; }
.checkpoint-item { background: rgba(255, 255, 255, 0.9); padding: 2rem; border-radius: 15px; text-align: center; }
.checkpoint-item h3 { font-size: 1.5rem; font-weight: 600; color: #333; margin: 0; }
.section-content__inner { width: 86%; margin: 0 auto; display: flex; align-items: center;     justify-content: space-between; align-items: flex-start;}

.app01-section { background-color: #F2F8FF;}
.app-section{ position: relative; padding: 100px 0;}
.app01-section::before { content: url("../img/slid/slide_bg01.png");position: absolute;top: 0;left: 0;}
.app02-section::before { content: url("../img/slid/slide_bg02.png");position: absolute;bottom: 0;right: 0;}
.app03-section::before { content: url("../img/slid/slide_bg03.png");position: absolute;bottom: -80px;left: 0;}
.community-section::before { content: url("../img/slid/slide_bg04.png");position: absolute;bottom: 0;left: -50px;}

.app01-section h2 { font-size: 3.5rem; font-weight: 700; margin-bottom: 3rem; text-align: left; color: #333; }
.service-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; }
.service-feature { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); text-align: center; transition: transform 0.3s ease; }
.service-feature:hover { transform: translateY(-10px); }
.service-feature h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; color: #333; }
.service-feature p { font-size: 1.1rem; color: #666; line-height: 1.6; margin: 0; }

/* ==================================
Section 5-8: 앱 기능 섹션들
================================== */
.challenge-section, .lemon-section, .claim-section, .community-section { height: 100vh; background: white; } 
.lemon-section, .community-section { background: #f8f9fa; } 
/* .content-left, .content-right { flex: 1; } */
.content-left { display: flex; }
.content-left.right { justify-content: flex-end; }
.t_align_left { text-align: left; }
.t_align_right { text-align: right; }

.app01-section .title_area { display: flex; flex-direction: column; text-align: left; }
.app01-section .title_area span { font-size: 20px; font-weight: 500; color: #1F7EE8; margin-bottom: 10px; }
.app01-section .title_area h2 { font-size: 44px; font-weight: 700; color: #141414; margin-bottom: 25px; }
.app01-section .title_area p { font-size: 18px; font-weight: 400; color: #141414; }
.app02-section { background-color: #FBFBFB; }
.app_title_area { display: flex; flex-direction: column; margin-top: 5rem;  }
.app_title_area.right { align-items: flex-end; }
.app_title_area span { font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.app_title_area span.col_green { color: #00BDB6; }
.app_title_area span.col_yellow { color: #FFB71B; }
.app_title_area span.col_bl { color: #1F7EE8; }
.app_title_area span.col_pp { color: #8B83EA; }
.app_title_area h2 { font-size: 44px; font-weight: 700; color: #141414; margin-bottom: 25px; }
.app_title_area p { font-size: 18px; font-weight: 400; color: #141414; }
.app03-section { background-color: #F2F8FF; }
.community-section { background-color: #FBFBFB; }
.slide__area { width: 60%; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; position: relative; }
.slide__area.right { align-items: flex-end; }
.slide__navigation { width: 300px; display: flex; align-items: center; gap: 20px; margin-top: 20px; justify-content: center; }
.slide__prev, .slide__next { background: none; border: none; cursor: pointer; padding: 10px; border-radius: 50%; transition: all 0.3s ease; background-color: #C5C5C5; }
.slide__prev:hover, .slide__next:hover { background: #FFB71B; transform: scale(1.1); }
.slide__prev:hover img, .slide__next:hover img { filter: brightness(0) invert(1); }
.slide__prev img, .slide__next img { width: 24px; height: 24px; }

/* app-slider 스타일 */
.app-slider {
    width: 100%;
    position: relative;
}

.app-slider .edu-wrapper {
    display: flex;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.app-slider .edu-wrapper .edu {
    flex-shrink: 0;
    width: 300px;
    height: 603px;
    transition: opacity 0.3s ease;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center .slick-center .edu{border:1px solid red}

.app-slider .edu-wrapper .edu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.app-slider .slider_control {
    width: 33%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.app-slider .slider_control .prev,
.app-slider .slider_control .next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #C5C5C5;
}

.app-slider .slider_control .prev:hover,
.app-slider .slider_control .next:hover {
    background: #FFB71B;
    transform: scale(1.1);
}

.app-slider .slider_control .prev:hover img,
.app-slider .slider_control .next:hover img {
    filter: brightness(0) invert(1);
}

.app-slider .slider_control .prev img,
.app-slider .slider_control .next img {
    width: 24px;
    height: 24px;
}

/* slider_control 버튼 스타일 */
.slider_control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.slider_control .slide__prev,
.slider_control .slide__next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #C5C5C5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider_control .slide__prev:hover,
.slider_control .slide__next:hover {
    background: #FFB71B;
    transform: scale(1.1);
}

.slider_control .slide__prev:hover img,
.slider_control .slide__next:hover img {
    filter: brightness(0) invert(1);
}

.slider_control .slide__prev img,
.slider_control .slide__next img {
    width: 24px;
    height: 24px;
}

.slider_control .slide__counter {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}
.slide__counter { font-size: 20px; font-weight: 500; color: #333; }


/* right-slider */
.right-slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}



.challenge-features, .lemon-features, .claim-features, .community-features { list-style: none; margin-bottom: 40px; } 
.challenge-features li, .lemon-features li, .claim-features li, .community-features li { padding: 10px 0; font-size: 1rem; color: #666; position: relative; padding-left: 25px; } 
.challenge-features li:before, .lemon-features li:before, .claim-features li:before, .community-features li:before { content: "✓"; position: absolute; left: 0; color: #007bff; font-weight: bold; } 
.cta-button { background: #007bff; color: white; border: none; padding: 15px 30px; font-size: 1.1rem; font-weight: 600; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; } 
.cta-button:hover { background: #0056b3; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3); } 
/* 슬라이더 스타일 */
.challenge-slider, .lemon-slider, .claim-slider, .community-slider { width: 100%; /* height: 500px; 제거 */
 border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; z-index: 10; } 
.slide-item { width: 100%; padding-top: 56.25%; /* 16:9 비율, 필요시 75% = 4:3 등으로 변경 */
 position: relative; display: block; } 
.slide-item > img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; /* 이미지 비율 유지하며 잘림 처리 */
 pointer-events: none; } 
.slick-slider { position: relative; z-index: 10; width: 100%; } 
.slick-list, .slick-track, .slick-slide { height: auto !important; } 
@media (min-width: 1200px){
.slide-item { padding-top: 45%; } /* 더 넓게 보이게 */}
.slick-list { overflow: hidden; height: 500px; } 
.slick-track { display: flex; align-items: center; height: 500px; } 
.slick-slide { height: 500px; } 
.slick-slide > div { height: 100%; } 
/* Slick 슬라이더 커스터마이징 */
.slick-slider { position: relative; display: block; box-sizing: border-box; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -khtml-user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; } 
.slick-list { position: relative; display: block; overflow: hidden; margin: 0; padding: 0; } 
.slick-track { position: relative; top: 0; left: 0; display: block; margin-left: auto; margin-right: auto; } 
.slick-slide { display: none; float: left; height: 100%; min-height: 1px; } 
.slick-slide.slick-active { display: block; }
.slick-prev, .slick-next { z-index: 20; width: 50px; height: 50px; background: rgba(0, 0, 0, 0.5); border-radius: 50%; color: white; font-size: 20px; line-height: 50px; text-align: center; border: none; cursor: pointer; transition: all 0.3s ease; position: absolute; top: 50%; transform: translateY(-50%); } 
.slick-prev:hover, .slick-next:hover { background: rgba(0, 0, 0, 0.7); transform: translateY(-50%) scale(1.1); } 
.slick-prev:before, .slick-next:before { display: none; } 
.slick-prev { left: 20px; } 
.slick-next { right: 20px; } 
.slick-dots { bottom: 20px; z-index: 20; position: absolute; display: block; width: 100%; padding: 0; margin: 0; list-style: none; text-align: center; } 
.slick-dots li { position: relative; display: inline-block; width: 20px; height: 20px; margin: 0 5px; padding: 0; cursor: pointer; } 
.slick-dots li button { font-size: 0; line-height: 0; display: block; width: 12px; height: 12px; padding: 5px; cursor: pointer; color: transparent; border: 0; outline: none; background: rgba(255, 255, 255, 0.5); border-radius: 50%; transition: all 0.3s ease; } 
.slick-dots li.slick-active button { background: #007bff; transform: scale(1.2); } 


.slick-slide.slick-center img{position: relative;} 
.slide__overlay{position: absolute;z-index: 999;display: flex;justify-content: flex-start;;width:34%;height:92%;background-image: url(../img/slide/slide_item__area.png);background-size: cover;} 
.slide__overlay img{width: 58%%;height: 100%;object-fit: cover;}




/*edu slider - 중복 제거됨 */

.slider_control{
    display: flex;
}
.state{display: flex;justify-content: flex-end;margin-bottom:10px;}
.state p{
  font-size:1.6rem;
  border:1px solid;
  padding:0.6rem 1rem;
  border-radius: 5px;
}
.state.gr{
  color: #25BC7A;
  border-color: #25BC7A;
}

/* Slick 기본 버튼 숨기기 */
.edu-wrapper .slick-prev,
.edu-wrapper .slick-next {
  display: none !important;
}

/* Slick 기본 dots 숨기기 */
.edu-wrapper .slick-dots {
  display: none !important;
}


/* ==================================
모바일 네비게이션
================================== */
/* 모바일 네비게이션 기본 스타일 */
.mobile-nav {
    display: none;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5rem;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-logo img {
    height: 40px;
}

.mobile-nav-header .right_area{display: flex;justify-content: flex-end;align-items: center;gap: 10px;}

.mobile-cta {
    flex: 1;
    text-align: center;
    position: relative;
}

.mobile-download-btn {
    width: 140px;
    height: 33px;
    background: #FFB71B;
    color: white;
    border: none;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-download-btn:hover {
    background: #000000;
}

.mobile-download-btn.active {
    background: #000000;
}

/* 모바일 헤더 드롭다운 */
.mobile-dropdown-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    top: 130%;
    right: 0;
    width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.mobile-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-dropdown-item {
    width: 100%;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 50px;
    border: 1px solid #FFB71B;
    background-color: #ffffff;
}

.mobile-dropdown-item:hover {
    background-color: #FFB71B;
    color: white;
}

.mobile-dropdown-item span {
    font-size: 15px;
    font-weight: 600;
}

/* 햄버거 메뉴 버튼 */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 모바일 메뉴 오버레이 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo img {
    height: 35px;
}

.mobile-menu-close {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-close span {
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-close span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-close span:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-item a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-item:hover a,
.mobile-menu-item.active a {
    background: #f8f9fa;
    color: #FFB71B;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    margin-top: auto;
    position: relative;
}

.mobile-menu-download {
    width: 100%;
    height: 33px;
    background: #FFB71B;
    color: white;
    border: none;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-download:hover {
    background: #000000;
}

.mobile-menu-download.active {
    background: #000000;
}

/* 모바일 메뉴 내부 드롭다운 */
.mobile-menu-dropdown {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    top: 130%;
    left: 0;
    right: 0;
    background: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    padding: 0 1.5rem;
}

.mobile-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-dropdown-item {
    width: 100%;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 50px;
    border: 1px solid #FFB71B;
}

.mobile-menu-dropdown-item:hover {
    background-color: #FFB71B;
    color: white;
}

.mobile-menu-dropdown-item span {
    font-size: 15px;
    font-weight: 600;
}

/* 모바일 반응형 */
@media (max-width: 1024px) {
    .mobile-nav {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }
}

/* ==================================
Section 9: FAQ 섹션
================================== */
.faq-section{width:100%;height: auto;padding:20rem 0;}
.faq-section > div{height: auto !important;}
.faq_title_area{color:#141414;text-align:center;margin-bottom:100px;}
.faq_title_area h2{font-size:20px;font-weight:400;margin-bottom:15px;}
.faq_title_area h3{font-size:44px;font-weight:700;}

.accordionTitle{padding:20px;position:relative;margin:0;font-size:18px;font-weight:500;letter-spacing:0.8px;color:#52616b;transition:ease-in-out 0.2s all;cursor:pointer;}
.accordionTitle:hover{padding-left:25px;}
.accordionTitle:before,.accordionTitle:after{content:"";position:absolute;height:2px;border-radius:50px;transition:ease-in-out 0.6s all;bottom:0;left:0;display:flex;justify-content:center;align-items:center;}
.accordionTitle:before{width:100%;background-color:#ebebeb;}
.accordionTitle:after{background-image:linear-gradient(90deg,#52616b,#c9d6df);width:0%;}
.accordionTitle:hover::after{width:100%;}
.accordionTitleActive:after{content:"";position:absolute;height:2px;border-radius:50px;transition:ease-in-out 0.6s all;bottom:0;left:0;display:flex;justify-content:center;align-items:center;background-image:linear-gradient(90deg,#52616b,#c9d6df);width:100%;}

.accIcon{
    min-width: 20px;
    width: 20px;
    height: 11px;
    background-image: url(../img/accordion_arow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.accordionTitle.active .accIcon {
    transform: rotate(180deg);
}


.accordion .item .text{opacity:0;height:0;padding:0 20px;position:relative;line-height:24px;color:#141414;font-size:1.6rem;font-weight:200;transition:all 0.6s cubic-bezier(0.42,0.2,0.08,1);overflow:hidden;background-color:#fbfbfb;letter-spacing:0.5px;}
.accordion .item .text.show{opacity:1;height:auto;padding:25px 20px;position:relative;z-index:0;border-radius:0 0 3px 3px;}

/* ==================================
Section 10: 다운로드 섹션
================================== */

.last-section{background:url(../img/s_last_bg.png) no-repeat center center;background-size:cover;height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;color:#fff;text-align:center;font-size:24px;position:relative;}
.last-section .section-content{width:100%;height:auto;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);}
.last-section .title_area{display:flex;flex-direction:column;align-items:center;line-height:86px;}
.last-section .title_area h2{font-size:44px;font-weight:700;color:#fff;}
.last-section .download-buttons{display:flex;flex-direction:row;gap:20px;align-items:center;justify-content:center;margin-top:60px;}


/* ==================================
Section 11: 푸터 섹션
================================== */
.footer-section{background:#FBFBFB;height:auto;}
.footer-content{width:1520px;margin:0 auto;padding:40px 0;font-size:16px;color:#A7A7A7;}
.footer-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:40px;}
.footer-top div{display:flex;align-items:center;gap:2rem;}
.footer-top select{width:145px;padding:10px;color:#A7A7A7;font-size:1.6rem;font-weight:600;border:1px solid #A7A7A7;border-radius:4px;cursor: pointer;appearance: none;background-image: url("../img/icon_select_arrow.svg");background-repeat: no-repeat;background-position: right 10px center;background-size: 12px;padding-right: 30px;}
.footer-top ul{display:flex;gap:10px;}
.footer-top ul li{font-size:16px;}
.footer-top ul li.line{position: relative;}
.footer-top ul li.line::after{content: "";position: absolute;width: 1px;height: 8px;background-color: #A7A7A7;left: 0;top: 5px;}
.footer-top ul li a{color:#A7A7A7;}
.footer-top ul li a:hover{color:#FFB71B;transition: 0.2s;}
.copyright{margin-top:30px;}


/* ==================================
애니메이션 및 유틸리티
================================== */

@keyframes fadeInUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}
.back-to-position{opacity:0;transition:all 1s;}
.back-to-position.to-right{transform:translateX(-100px);}
.back-to-position.to-left{transform:translateX(100px);}
.back-to-position.show{opacity:1;transform:translateX(0);}
.back-to-position.delay-0{transition-delay:0s;}
.back-to-position.delay-1{transition-delay:0.2s;}
.back-to-position.delay-2{transition-delay:0.4s;}
.back-to-position.delay-3{transition-delay:0.6s;}

/* ==================================
아코디언 컴포넌트
================================== */
.accordion { width:1260px;margin:0 auto; display: flex; flex-direction: column; } 
.accordionTitle { height: 70px; gap: 15px; display: flex; justify-content: space-between; align-items: center; padding:2rem 3rem; border-radius: 10px; position: relative; margin: 0; font-size: 18px; font-weight: 500; letter-spacing: 0.8px; color: #52616b; transition: ease-in-out 0.2s all; cursor: pointer; background-color: #ffffff; } 
.accordionTitle:hover { padding-left: 25px; } 
.accordionTitle div { display: flex; align-items: center; gap: 5rem; } 

/* Text Content - Class for JS to hide and show */
.accordion .item .text.show { opacity: 1; height: auto; padding: 2rem 5rem; position: relative; z-index: 0; border-radius: 0px 0px 3px 3px; } 