@charset "utf-8";

/* 공통 설정 */
#sol_wrap {
    width: 100%;
    font-family: 'Pretendard', sans-serif;
    color: #333;
    line-height: 1.6;
}
#sol_wrap .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
#sol_wrap h3.sec_tit {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #111;
}
#sol_wrap h3.sec_tit.center { text-align: center; }
#sol_wrap h3.sec_tit .highlight { color: var(--primary, #0055ff); }


/* --- [Section 1] 메인 비주얼 --- */
.sec_visual {
    position: relative;
    height: 800px; /* 웅장한 높이 */
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.visual_bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.visual_bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* 글씨 잘 보이게 어둡게 처리 */
}
.visual_txt {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align:center;
    padding: 0 20px;
    margin-top: 80px;
}
.main_copy {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.sub_copy {
    font-size: 20px;
    font-weight: 400;
    color: #eee;
}


/* --- [Section 2] 문제 정의 --- */
.sec_problem { padding: 100px 0; background-color: #f9f9f9; }

.problem_content {
    display: flex;
    align-items: center;
    gap: 60px;
}
.prob_img { flex: 1; }
.prob_img img { width: 100%; border-radius: 8px; box-shadow: 0 20px 20px rgba(0,0,0,0.3); }

.prob_txt { flex: 1; }
.prob_desc .main_p { font-size: 18px; margin-bottom: 20px; color: #444; }
.prob_desc .main_p strong { color: #d00; } /* 멀미 강조 (빨강) */
.prob_desc .sub_p { font-size: 16px; color: #666; margin-bottom: 40px; }

.cause_list { list-style: none; padding: 0; }
.cause_list li {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #ccc;
}
.cause_list li strong { display: block; font-size: 18px; margin-bottom: 5px; color: #000; }
.cause_list li span { font-size: 15px; color: #555; }


/* --- [Section 3] 기술 메커니즘 --- */
.sec_tech { padding: 100px 0; }

.step_process {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.step_item {
    width: 30%;
    text-align: center;
}
.step_img img { width: 100%; border-radius: 8px; margin-bottom: 20px; }
.step_txt .step_num {
    display: block;
    font-size: 14px; font-weight: 800; color: var(--primary, #0055ff);
    margin-bottom: 10px;
}
.step_txt h4 { font-size: 22px; margin-bottom: 15px; }
.step_txt p { font-size: 15px; color: #666; word-break: keep-all; }

.step_arrow {
    padding-top: 100px; /* 화살표 위치 조정 */
    font-size: 30px;
    color: #ccc;
    font-weight: 100;
}


/* --- [Section 4] 차별성 --- */
.sec_diff { padding: 100px 0; background-color: #f0f4f8; } /* 연한 블루 그레이 배경 */

.diff_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.diff_card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.diff_card:hover { transform: translateY(-10px); }

.diff_card .icon_box { font-size: 40px; margin-bottom: 20px; }
.diff_card h4 { font-size: 20px; margin-bottom: 15px; color: #002244; }
.diff_card p { font-size: 14px; color: #555; word-break: keep-all; }


/* --- [Section 5] 적용 분야 (Application Fields) --- */
.sec_apply { padding: 100px 0; }

.apply_list {
    display: flex;
    flex-direction: column;
    gap: 40px; /* 박스 사이 간격 */
}

/* 공통 박스 디자인 (기존 첫 번째 박스 디자인을 모든 박스에 적용) */
.apply_box {
    display: flex;
    background: #001133; /* 딥 블루 배경 */
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px; /* 최소 높이 확보 */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* 그림자 추가 */
}

/* 짝수 번째 박스(2번, 4번)는 이미지 위치를 오른쪽으로! (지그재그 배치) */
/* 만약 전부 다 이미지가 왼쪽에 있는 게 좋으면 이 부분을 지우세요. */
.apply_box:nth-child(even) {
    flex-direction: row-reverse;
}

.apply_box .apply_img {
    flex: 1.2; /* 이미지 영역 비율 */
    position: relative;
    overflow: hidden;
}

.apply_box .apply_img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 이미지 꽉 차게 */
    transition: transform 0.5s; /* 마우스 올렸을 때 효과 */
}

/* 마우스 올리면 이미지가 살짝 확대됨 */
.apply_box:hover .apply_img img {
    transform: scale(1.05);
}

.apply_box .apply_txt {
    flex: 0.8; /* 텍스트 영역 비율 */
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apply_box h4 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.apply_box .target {
    font-size: 15px;
    color: #66ccff; /* 밝은 하늘색 포인트 */
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.apply_box .desc {
    font-size: 17px;
    line-height: 1.7;
    color: #ddd; /* 살짝 연한 흰색 */
    word-break: keep-all;
}

/* --- 반응형 (모바일) --- */
@media (max-width: 768px) {
    .apply_box, 
    .apply_box:nth-child(even) {
        flex-direction: column; /* 모바일에서는 무조건 세로로 쌓기 */
        height: auto;
    }
    
    .apply_box .apply_img {
        height: 250px; /* 이미지 높이 고정 */
    }
    
    .apply_box .apply_txt {
        padding: 30px 20px;
    }
    
    .apply_box h4 { font-size: 24px; }
    .apply_box .desc { font-size: 15px; }
}