/* 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;
}


/* ========================================
   눈성형 전용 스타일
   ======================================== */

/* 눈 인트로 섹션 */
.eye-intro-section {
    padding: 150px 20px 80px;
    background: #ffffff;
}

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

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

.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;
}

/* 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;
}

/* Why JN 섹션 */
.why-section {
    padding: 100px 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-content p{
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}


/* 체크사항 섹션 */
.recommend-section {
    padding: 100px 20px;
    background: #ffffff;
}

.recommend-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.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;
    color: #000;
    line-height: 1.3;
    margin-bottom: 60px;
}

.recommend-list {
    list-style: none;
    padding: 0;
}

.recommend-list li {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    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;
}


/* 눈 재수술 유형 섹션 */
.retouch-types-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.types-super-title {
    font-size: 22px;
    font-weight: 400;
    color: #666;
    margin-bottom: 15px;
}

.types-main-title {
    font-size: 42px;
    font-weight: bold;
    color: #000;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}

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

.type-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.type-image img {
    width: 100%;
    display: block;
}

.type-caption {
    font-size: 16px;
    color: #333;
}

/* Special Point 섹션 */
.special-point-section {
    padding: 100px 20px;
    background: #f8f9fa; /* 밝은 회색 배경으로 구분 */
}

.special-intro {
    text-align: center;
    margin-bottom: 100px;
}

.special-intro .intro-main-title {
    font-size: 28px;
    font-weight: 600;
    color: #A6756A;
    margin-bottom: 25px;
}

.special-intro .intro-subtext {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

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

.points-header .points-main-title {
    font-size: 42px;
    font-weight: bold;
    color: #000;
}

.points-header .points-sub-title {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 10px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.point-image {
    width: 100%;
    margin-bottom: 30px;
}

.point-image img {
    width: 100%;
    display: block;
}

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

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

.point-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}


/* 반응형 - 태블릿 */
@media (max-width: 1200px) {
    .feature-grid {
        gap: 30px;
    }
    
    .feature-image {
        height: 280px;
    }
    
    .intro-title {
        font-size: 36px;
    }

    .types-grid {
        gap: 30px 15px;
    }

    .points-grid {
        gap: 30px;
    }
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
    .eye-intro-section {
        padding: 120px 20px 60px;
    }
    
    .intro-title {
        font-size: 26px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-image {
        height: 250px;
    }
    
    .why-section {
        padding: 60px 20px;
    }
    
    .why-title {
        font-size: 24px;
    }
       
    .recommend-section {
        padding: 60px 20px;
    }
    
    .recommend-label {
        font-size: 12px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }
    
    .recommend-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .recommend-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .recommend-list li {
        font-size: 15px;
        line-height: 2.2;
    }
    
    .recommend-image {
        max-width: 100%;
    }
    
    .recommend-image img {
        border-radius: 0 40px;
    }
    
    .retouch-types-section {
        padding: 60px 20px;
    }

    .types-header {
        margin-bottom: 50px;
    }

    .types-super-title {
        font-size: 18px;
    }

    .types-main-title {
        font-size: 28px;
    }
    
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .special-point-section {
        padding: 60px 20px;
    }

    .special-intro {
        margin-bottom: 50px;
    }

    .special-intro .intro-main-title {
        font-size: 22px;
    }
    
    .special-intro .intro-subtext {
        font-size: 15px;
    }

    .points-header {
        margin-bottom: 60px;
    }

    .points-header .points-main-title {
        font-size: 28px;
    }
    
    .points-header .points-sub-title {
        font-size: 20px;
    }

    .points-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* 작은 모바일 */
@media (max-width: 480px) {
    .recommend-section {
        padding: 50px 15px;
    }
    
    .recommend-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .recommend-list li {
        font-size: 14px;
        line-height: 2;
    }
}