/* lifting.css의 기본 스타일 복사 + 눈성형 전용 스타일 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    background: #ffffff;
    min-height: 100vh;
}

.container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 20px; }

.section-header { 
    text-align: center; 
    margin-bottom: 80px; }

.section-header h2 { 
    font-size: 36px; 
    font-weight: bold; }

.section-header span { 
    color: #A6756A; }

/* 인트로 섹션 */
.aegyo-sal-section {
    padding: 0px 20px 10px 20px;
    text-align: center;
}
.aegyo-sal-image img {
    max-width: 100%;
    margin-bottom: 40px;
}


/* 1. 메인 배너 */

.nose-intro-section {
    padding: 150px 20px 40px;
    background: #ffffff;
}

.nose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-header {
    text-align: center;
    margin-bottom: 45px;
}

.intro-label {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 8px;
    color: #A6756A;
    margin-bottom: 20px;
}

.intro-title {
    font-size: 42px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Why JN 섹션 */
.why-section {
    padding: 50px 20px;
    background: #fff;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-content {
    text-align: center;
}

.why-title {
    font-size: 44px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    margin-bottom: 40px;
}

.why-title span{
    color: #A6756A;
    font-weight: 600;
}

.why-subtitle {
    font-size: 22px;         
    font-weight: 600;        
    color: #333;            
    line-height: 1.7;       
    margin-bottom: 40px;     
}

.why-content p {
    font-size: 16px;
    font-weight: 400;
    color: #555;             
    line-height: 1.8;     
}


/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 30px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 2. 인트로 */
.intro-section { padding: 120px 20px 80px; text-align: center; }
.intro-content h2 { font-size: 36px; margin-bottom: 30px; font-weight: bold; }
.intro-content p { font-size: 18px; color: #555; line-height: 1.8; }

/* 3. 수술 정보 */
.info-section { padding: 80px 20px; background: #f8f9fa; }
.info-grid { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; }
.info-item { border-left: 1px solid #ddd; flex: 1; min-width: 150px; }
.info-item:first-child { border-left: none; }
.info-item h3 { font-size: 18px; color: #A6756A; margin-bottom: 10px; font-weight: 600; }
.info-item p { font-size: 20px; font-weight: bold; }

/* 4. 추천 대상 */
.recommend-section { padding: 100px 20px; }
.recommend-content { display: flex; align-items: center; gap: 80px; }
.recommend-text { flex: 1; }
.recommend-label { font-size: 16px; font-weight: 600; letter-spacing: 10px; color: #A6756A; margin-bottom: 30px; }
.recommend-title { font-size: 42px; font-weight: bold; line-height: 1.3; margin-bottom: 60px; }
.recommend-list { list-style: none; }
.recommend-list li { font-size: 18px; color: #333; line-height: 2.2; padding-left: 20px; position: relative; }
.recommend-list li::before { content: '•'; position: absolute; left: 0; color: #000; font-weight: bold; }
.recommend-image { flex: 1; max-width: 600px; }
.recommend-image img { width: 100%; border-radius: 0 70px; }

/* 5. 스페셜 포인트 */
.points-section { padding: 100px 20px; background: #f8f9fa; }
.points-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.point-item { background: #fff; padding: 40px; text-align: center; border: 1px solid #eee; }
.point-item h4 { font-size: 20px; font-weight: 600; margin-bottom: 15px; color: #A6756A; }
.point-item p { font-size: 16px; color: #666; line-height: 1.7; }

/* 6. 수술 방법 */
.method-section { padding: 100px 20px; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.method-image img { width: 100%; margin-bottom: 25px; }
.method-item h3 { font-size: 22px; font-weight: 600; margin-bottom: 15px; }
.method-item p { font-size: 16px; color: #666; line-height: 1.7; }


/* 자가조직 활용 */
.autologous-tissue-section {
    padding: 100px 20px;
}
.section-header .super-title {
    font-size: 28px;
    color: #666;
    margin-bottom: 10px;
}
.tissue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}
.tissue-item {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}
.tissue-icon {
    margin-bottom: 25px;
    height: 200px; /* 아이콘 높이 고정 */
    display: flex;
    align-items: center;
    justify-content: center;
}
.tissue-icon img {
    max-height: 100%;
}
.tissue-item h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
.tissue-item h3 .num {
    color: #A6756A;
    margin-right: 8px;
    font-weight: 600;
}
.tissue-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* 기술력 섹션 */
.technique-section {
    padding: 100px 20px;
}
.technique-section .super-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}
.technique-block {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}
.technique-block:last-child {
    margin-bottom: 0;
}
.technique-title {
    display: flex;
    flex-direction: column; /* 세로 정렬로 변경 */
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.technique-title .num {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #A6756A;
    font-weight: 700;
    border: 2px solid #A6756A;
    border-radius: 30px;
    width: 120px;
    height: 40px;
    flex-shrink: 0;
    margin-bottom: 30px;
}

.technique-title h3 {
    font-size: 28px;
    font-weight: 600;
    text-align: center; /* 중앙 정렬로 변경 */
    line-height: 1.4;
}
.technique-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}
.benefits-circles {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.benefits-circles .circle {
    background-color: #A6756A;
    color: white;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    padding: 10px;
}


/* 반응형 */
@media (max-width: 1200px) {
    .sub-menu { padding: 0; }
    .sub-menu-item a { font-size: 15px; }
    .hero-title { font-size: 48px; }
    .feature-grid {
        gap: 30px;
    }
    
    .feature-image {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .recommend-content { flex-direction: column; }
    .ba-grid { grid-template-columns: repeat(2, 1fr); }
    .method-grid { grid-template-columns: 1fr; }
    .tissue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .hero-description { font-size: 18px; }
    .intro-content h2, .recommend-title, .section-header h2, .care-title { font-size: 28px; }
    .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .info-item { border-left: none; }

    .intro-title { font-size: 30px; margin-bottom: 30px; font-weight: bold; }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-image {
        height: 250px;
    }


    .recommend-section, .points-section, .method-section, .ba-section { padding: 60px 20px; }
    .points-grid { grid-template-columns: 1fr; gap: 20px; }
    .autologous-tissue-section {
        padding: 60px 20px;
    }
    .tissue-grid {
        grid-template-columns: 1fr;
    }
    .technique-section { padding: 60px 20px; }
    .technique-block { padding: 30px; }
    .technique-title h3 { font-size: 22px; }
    .benefits-circles .circle { width: 120px; height: 120px; font-size: 14px; }

}
