
/* ========================================
   Section 1
======================================== */

.section1 {
    background-color: #BA884B;
    padding: 70px 0;
    width: 100%;
}

.section1_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.section1_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #ffffff;
}

.section1_top {
    font-family: 'Paperozi', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.section1_title {
    font-family: 'Paperozi', sans-serif;
    font-size: 68px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.section1_divider {
    width: 53px;
    height: 2px;
    background-color: #ffffff;
    margin: 0 0 30px 0;
}

.section1_bottom {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.section1_bottom p {
    font-family: 'Paperozi', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

/* 반응형 디자인 */

/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .section1 {
        padding: 60px 0;
    }
    
    .section1_container {
        padding: 0 20px;
    }
    
    .section1_top {
        font-size: 16px;
    }
    
    .section1_title {
        font-size: 48px;
    }
    
    .section1_bottom p {
        font-size: 15px;
    }
}

/* 모바일 (480px ~ 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .section1 {
        padding: 50px 0;
    }
    
    .section1_container {
        padding: 0 20px;
    }
    
    .section1_top {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .section1_title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .section1_divider {
        width: 80px;
        height: 1.5px;
        margin-bottom: 20px;
    }
    
    .section1_bottom {
        gap: 2px;
    }
    
    .section1_bottom p {
        font-size: 13px;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 479px) {
    .section1 {
        padding: 52px 0;
    }
    
    .section1_container {
        padding: 0 15px;
    }
    
    .section1_top {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .section1_title {
        font-size: 51px;
        margin-bottom: 12px;
    }
    
    .section1_divider {
        width: 40px;
        height: 1px;
        margin-bottom: 18px;
    }
    
    .section1_bottom {
        gap: 2px;
    }
    
    .section1_bottom p {
        font-size: 16px;
    }
}

/* ========================================
   Section 2: Main Slider
======================================== */

.section2 {
    width: 100%;
    position: relative;
}

.section2_swiper {
    width: 100%;
    height: 863px;
}

.section2_swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    z-index: 2;
}

.slide_content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.slide_text_wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 3;
}

.slide_title_wrap {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 0 0 20px 0;
}

.slide_title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 40px 0;
    line-height: 1;
}

.slide_subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

/* 슬라이드 1 전용 (대표자문역) */
.slide_title_wrap .slide_title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
}

.slide_title_wrap .slide_subtitle {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.slide_quote {
    margin: 0 0 20px 0;
}

.slide_quote img {
    width: 66px;
    height: auto;
}

.slide_text {
    margin: 0 0 50px 0;
}

.slide_text p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

/* .slide_text p:nth-child(4) {
    margin-bottom: 24px;
} */

.slide_text p:empty {
    margin: 0 0 24px 0;
    height: 0;
    display: block;
}

.slide_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 40px;
    min-width: 140px;
    background: #BA884B;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Paperozi', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.slide_btn::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 12'%3E%3Cpath d='M2 2 L6 6 L2 10' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.slide_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 95, 0.4);
}

/* ========================================
   Slide Animations
======================================== */

/* 슬라이드 텍스트 애니메이션 초기 상태 */
.slide_title_wrap {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.slide_title_wrap.slide-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* 슬라이드 2, 3용 타이틀 애니메이션 (.slide_title_wrap이 없는 경우) */
.slide_text_wrap > .slide_title {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.slide_text_wrap > .slide_title.slide-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* 슬라이드 1의 경우 .slide_title_wrap 내부의 .slide_title은 부모 애니메이션에 포함되므로 제외 */
.slide_title_wrap .slide_title {
    opacity: 1;
    transform: none;
    transition: none;
}

.slide_quote {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    will-change: transform, opacity;
}

.slide_quote.slide-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.slide_text {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    will-change: transform, opacity;
}

.slide_text.slide-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.slide_btn {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
    will-change: transform, opacity;
}

.slide_btn.slide-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Swiper 페이지네이션 커스텀 */
.section2_swiper .swiper-pagination {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.section2_swiper .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.section2_swiper .swiper-pagination-bullet-active {
    background: #BA884B;
    width: 80px;
}

/* Section 2 반응형 */

/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .section2_swiper {
        height: 500px;
    }
    
    .slide_text_wrap {
        padding: 0 20px;
    }
    
    .slide_title_wrap .slide_title {
        font-size: 16px;
    }
    
    .slide_title_wrap .slide_subtitle {
        font-size: 35px;
    }
    
    .slide_title {
        font-size: 40px;
    }
    
    .slide_subtitle {
        font-size: 30px;
    }
    
    .slide_quote img {
        height: 50px;
    }
    
    .slide_text p {
        font-size: 18px;
    }
    
    .slide_btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}

/* 모바일 (480px ~ 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .section2_swiper {
        height: 500px;
    }
    
    .slide_content::before {
        width: 100%;
    }
    
    .slide_text_wrap {
        padding: 0 20px;
    }
    
    .slide_title_wrap .slide_title {
        font-size: 14px;
    }
    
    .slide_title_wrap .slide_subtitle {
        font-size: 32px;
    }
    
    .slide_title {
        font-size: 32px;
    }
    
    .slide_subtitle {
        font-size: 24px;
    }
    
    .slide_quote img {
        height: 40px;
    }
    
    .slide_text p {
        font-size: 16px;
    }
    
    .slide_btn {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .section2_swiper .swiper-pagination {
        bottom: 20px;
    }
    
    .section2_swiper .swiper-pagination-bullet {
        width: 40px;
        height: 3px;
    }
    
    .section2_swiper .swiper-pagination-bullet-active {
        width: 50px;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 479px) {
    .section2_swiper {
        height: 500px;
    }
    
    .slide_content::before {
        width: 100%;
    }
    
    .slide_text_wrap {
        padding: 0 15px;
    }
    
    .slide_title_wrap .slide_title {
        font-size: 13px;
    }
    
    .slide_title_wrap .slide_subtitle {
        font-size: 30px;
    }
    
    .slide_title {
        font-size: 30px;
    }
    
    .slide_subtitle {
        font-size: 20px;
    }
    
    .slide_quote img {
        width: 45px;
        height: auto;
    }
    
    .slide_text p {
        font-size: 16px;
    }
    
    .slide_btn {
        font-size: 13px;
        padding: 8px 18px;
    }
    
    .section2_swiper .swiper-pagination {
        bottom: 15px;
    }
    
    .section2_swiper .swiper-pagination-bullet {
        width: 30px;
        height: 3px;
    }
    
    .section2_swiper .swiper-pagination-bullet-active {
        width: 40px;
    }
}

/* ========================================
   Section 3: 자문 효과
======================================== */

.section3 {
    background-image: url('../images/main/section01_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    width: 100%;
}

.section3_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.section3_content {
    display: flex;
    flex-direction: column;
}

.section3_header {
    text-align: center;
    margin-bottom: 60px;
}

.section3_title {
    font-family: 'Paperozi', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.section3_subtitle {
    font-family: 'Paperozi', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #BA884B;
    margin: 0;
    line-height: 1.2;
}

.section3_subtitle .mobile_br {
    display: none;
}

.section3_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    grid-template-rows: repeat(2, auto);
}

.section3_item {
    text-align: center;
}

.section3_item img {
    width: 100%;
    height: auto;
    display: block;
}

/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .section3 {
        padding: 60px 0;
    }
    
    .section3_container {
        padding: 0 30px;
    }
    
    .section3_title {
        font-size: 36px;
    }
    
    .section3_subtitle {
        font-size: 36px;
    }
    
    .section3_grid {
        gap: 15px;
    }
}

/* 모바일 (480px ~ 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .section3 {
        padding: 50px 0;
    }
    
    .section3_container {
        padding: 0 20px;
    }
    
    .section3_header {
        margin-bottom: 40px;
    }
    
    .section3_title {
        font-size: 30px;
        font-weight: 700;
    }
    
    .section3_subtitle {
        font-size: 30px;
    }
    
    .section3_subtitle .mobile_br {
        display: block;
    }
    
    .section3_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 15px;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 479px) {
    .section3 {
        padding: 40px 0;
    }
    
    .section3_container {
        padding: 0 15px;
    }
    
    .section3_header {
        margin-bottom: 30px;
    }
    
    .section3_title {
        font-size: 30px;
        font-weight: 700;
    }
    
    .section3_subtitle {
        font-size: 30px;
    }
    
    .section3_subtitle .mobile_br {
        display: block;
    }
    
    .section3_grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 10px;
    }
}

/* ========================================
   Section 4: 자문 프로세스
======================================== */

.section4 {
    background-image: url('../images/main/Section02_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    width: 100%;
}

.section4_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.section4_content {
    display: flex;
    flex-direction: column;
}

.section4_header {
    text-align: center;
    margin-bottom: 60px;
}

.section4_title {
    font-family: 'Paperozi', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.section4_title span {
    color: #BA884B;
}

.section4_title .mobile_br {
    display: none;
}

.section4_subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.section4_blocks {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.section4_block {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section4_block_header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section4_check_icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.section4_block_title {
    font-family: 'Paperozi', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.2;
}

.section4_block_subtitle {
    font-family: 'Paperozi', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.section4_block_card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section4_images_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.section4_image_wrap {
    flex: 0 0 410px;
    max-width: 410px;
    display: flex;
    flex-direction: column;
}

.section4_block_image {
    width: 100%;
    margin-bottom: 15px;
}

.section4_block_image img {
    width: 100%;
    height: auto;
    display: block;
}

.section4_image_label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section4_image_text {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.section4_arrow_inline {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

.section4_arrow_inline img {
    width: auto;
    height: auto;
    display: block;
}

.section4_arrow_inline_desktop {
    display: flex;
}

.section4_arrow_inline_mobile {
    display: none;
}


.section4_arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section4_arrow img {
    width: 100%;
    height: auto;
    display: block;
}

.section4_arrow_desktop {
    display: flex;
}

.section4_arrow_mobile {
    display: none;
}

.section4_footer {
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
}

.section4_footer_text {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.section4_footer_text .mobile_br {
    display: none;
}

.section4_footer_note {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.section4_footer_note .mobile_br {
    display: none;
}

/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .section4 {
        padding: 60px 0;
    }
    
    .section4_container {
        padding: 0 30px;
    }
    
    .section4_title {
        font-size: 36px;
    }
    
    .section4_subtitle {
        font-size: 20px;
    }
    
    .section4_blocks {
        gap: 30px;
    }
    
    .section4_block_title {
        font-size: 22px;
    }
    
    .section4_block_subtitle {
        font-size: 16px;
    }
}

/* 모바일 (480px ~ 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .section4 {
        padding: 50px 0;
    }
    
    .section4_container {
        padding: 0 20px;
    }
    
    .section4_header {
        margin-bottom: 40px;
    }
    
    .section4_title {
        font-size: 28px;
    }
    
    .section4_title .mobile_br {
        display: block;
    }
    
    .section4_subtitle {
        font-size: 18px;
    }
    
    .section4_blocks {
        flex-direction: column;
        gap: 30px;
    }
    
    .section4_block {
        width: 100%;
    }
    
    .section4_arrow_desktop {
        display: none;
    }
    
    .section4_arrow_mobile {
        display: flex;
        width: 100%;
        padding: 20px 0;
    }
    
    .section4_arrow_mobile img {
        max-width: 60px;
        margin: 0 auto;
    }
    
    .section4_block_title {
        font-size: 20px;
    }
    
    .section4_block_subtitle {
        font-size: 16px;
    }
    
    .section4_block_card {
        padding: 50px 15px;
        gap: 45px;
    }
    
    .section4_arrow_inline {
        padding: 0 30px;
    }
    
    .section4_images_row {
        flex-direction: column;
        gap: 15px;
    }
    
    .section4_image_wrap {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    .section4_arrow_inline {
        padding: 15px 0;
    }
    
    .section4_arrow_inline_desktop {
        display: none;
    }
    
    .section4_arrow_inline_mobile {
        display: flex;
    }
    
    .section4_image_text {
        font-size: 24px;
    }
    
    .section4_footer_text {
        font-size: 20px;
    }
    
    .section4_footer_text .mobile_br {
        display: block;
    }
    
    .section4_footer_note {
        font-size: 20px;
    }
    
    .section4_footer_note .mobile_br {
        display: block;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 479px) {
    .section4 {
        padding: 40px 0;
    }
    
    .section4_container {
        padding: 0 15px;
    }
    
    .section4_header {
        margin-bottom: 30px;
    }
    
    .section4_title {
        font-size: 30px;
        font-weight: 700;
    }
    
    .section4_title .mobile_br {
        display: block;
    }
    
    .section4_subtitle {
        font-size: 16px;
    }
    
    .section4_blocks {
        flex-direction: column;
        gap: 20px;
    }
    
    .section4_block {
        width: 100%;
    }
    
    .section4_arrow_desktop {
        display: none;
    }
    
    .section4_arrow_mobile {
        display: flex;
        width: 100%;
        padding: 15px 0;
    }
    
    .section4_arrow_mobile img {
        max-width: 50px;
        margin: 0 auto;
    }
    
    .section4_block_title {
        font-size: 18px;
    }
    
    .section4_block_subtitle {
        font-size: 14px;
    }
    
    .section4_block_card {
        padding: 40px 10px;
        gap: 50px;
    }
    
    .section4_arrow_inline {
        padding: 0 20px;
    }
    
    .section4_images_row {
        flex-direction: column;
        gap: 10px;
    }
    
    .section4_image_wrap {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    .section4_arrow_inline {
        padding: 12px 0;
    }
    
    .section4_arrow_inline_desktop {
        display: none;
    }
    
    .section4_arrow_inline_mobile {
        display: flex;
    }
    
    .section4_image_text {
        font-size: 22px;
    }
    
    .section4_footer {
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .section4_footer_text {
        font-size: 16px;
    }
    
    .section4_footer_text .mobile_br {
        display: block;
    }
    
    .section4_footer_note {
        font-size: 16px;
    }
    
    .section4_footer_note .mobile_br {
        display: block;
    }
}

/* ========================================
   Section 5: 프로세스
======================================== */

.section5 {
    background-image: url('../images/main/Section03_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    width: 100%;
}

.section5_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.section5_content {
    display: flex;
    flex-direction: column;
}

.section5_header {
    text-align: center;
    margin-bottom: 60px;
}

.section5_title {
    font-family: 'Paperozi', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.5;
}

.section5_title span {
    color: #BA884B;
}

.section5_title .mobile_br {
    display: none;
}

.section5_images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.section5_image_item {
    flex: 0 0 auto;
}

.section5_image_item img {
    width: 100%;
    height: auto;
    display: block;
}

.section5_process_title {
    text-align: center;
    margin-bottom: 60px;
}

.section5_process_text {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.2;
}

.section5_process_grid {
    display: grid;
    grid-template-columns: repeat(3, 390px);
    gap: 10px;
    width: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: start;
    -webkit-align-items: start;
}

.section5_process_card {
    width: 390px;
    aspect-ratio: 1;
    box-sizing: border-box;
}

.section5_process_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .section5 {
        padding: 60px 0;
    }
    
    .section5_container {
        padding: 0 30px;
    }
    
    .section5_title {
        font-size: 36px;
    }
    
    .section5_process_text {
        font-size: 42px;
    }
    
    .section5_process_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section5_process_card {
        width: 100%;
        aspect-ratio: 1;
        box-sizing: border-box;
    }
    
    .section5_process_card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* 모바일 (480px ~ 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .section5 {
        padding: 50px 0;
    }
    
    .section5_container {
        padding: 0 20px;
    }
    
    .section5_header {
        margin-bottom: 40px;
    }
    
    .section5_title {
        font-size: 28px;
    }
    
    .section5_title .mobile_br {
        display: block;
    }
    
    .section5_images {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .section5_image_item {
        flex: 1;
    }
    
    .section5_image_item img {
        width: 100%;
        height: auto;
    }
    
    .section5_process_title {
        margin-bottom: 40px;
    }
    
    .section5_process_text {
        font-size: 36px;
    }
    
    .section5_process_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section5_process_card {
        width: 100%;
        aspect-ratio: 1;
        box-sizing: border-box;
    }
    
    .section5_process_card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 479px) {
    .section5 {
        padding: 40px 0;
    }
    
    .section5_container {
        padding: 0 15px;
    }
    
    .section5_header {
        margin-bottom: 30px;
    }
    
    .section5_title {
        font-size: 24px;
    }
    
    .section5_title .mobile_br {
        display: block;
    }
    
    .section5_images {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .section5_image_item {
        flex: 1;
    }
    
    .section5_image_item img {
        width: 100%;
        height: auto;
    }
    
    .section5_process_title {
        margin-bottom: 30px;
    }
    
    .section5_process_text {
        font-size: 21px;
        font-weight: 700;
    }
    
    .section5_process_grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .section5_process_card {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1;
        box-sizing: border-box;
    }
    
    .section5_process_card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ========================================
   Scroll Animations
======================================== */

/* 기본 애니메이션 클래스 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Section 1 - 순차적 페이드인 */
.section1 .section1_top {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.section1 .section1_top.animate {
    opacity: 1;
    transform: translateY(0);
}

.section1 .section1_title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.section1 .section1_title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section1 .section1_divider {
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.section1 .section1_divider.animate {
    opacity: 1;
    transform: scaleX(1);
}

.section1 .section1_bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.section1 .section1_bottom.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Section 3 - 타이틀과 이미지 그리드 */
.section3 .section3_header {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section3 .section3_header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section3 .section3_item {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section3 .section3_item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section3 .section3_item:nth-child(1) {
    transition-delay: 0.05s;
}

.section3 .section3_item:nth-child(2) {
    transition-delay: 0.1s;
}

.section3 .section3_item:nth-child(3) {
    transition-delay: 0.15s;
}

.section3 .section3_item:nth-child(4) {
    transition-delay: 0.2s;
}

.section3 .section3_item:nth-child(5) {
    transition-delay: 0.25s;
}

.section3 .section3_item:nth-child(6) {
    transition-delay: 0.3s;
}

/* Section 4 - 타이틀과 카드 */
.section4 .section4_header {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section4 .section4_header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section4 .section4_block_card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section4 .section4_block_card.animate {
    opacity: 1;
    transform: translateY(0);
}

.section4 .section4_image_wrap {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section4 .section4_image_wrap.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section4 .section4_footer {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section4 .section4_footer.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Section 5 - 타이틀, 이미지, 프로세스 */
.section5 .section5_header {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section5 .section5_header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section5 .section5_image_item {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section5 .section5_image_item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section5 .section5_image_item:nth-child(1) {
    transition-delay: 0.05s;
}

.section5 .section5_image_item:nth-child(2) {
    transition-delay: 0.1s;
}

.section5 .section5_process_title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section5 .section5_process_title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section5 .section5_process_card {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section5 .section5_process_card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section5 .section5_process_card:nth-child(1) {
    transition-delay: 0.05s;
}

.section5 .section5_process_card:nth-child(2) {
    transition-delay: 0.1s;
}

.section5 .section5_process_card:nth-child(3) {
    transition-delay: 0.15s;
}

.section5 .section5_process_card:nth-child(4) {
    transition-delay: 0.2s;
}

.section5 .section5_process_card:nth-child(5) {
    transition-delay: 0.25s;
}

.section5 .section5_process_card:nth-child(6) {
    transition-delay: 0.3s;
}

/* 모바일에서 애니메이션 최적화 */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .section1 .section1_top,
    .section1 .section1_title,
    .section1 .section1_divider,
    .section1 .section1_bottom,
    .section3 .section3_header,
    .section3 .section3_item,
    .section4 .section4_header,
    .section4 .section4_block_card,
    .section4 .section4_image_wrap,
    .section4 .section4_footer,
    .section5 .section5_header,
    .section5 .section5_image_item,
    .section5 .section5_process_title,
    .section5 .section5_process_card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

