/* 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 100px;
    background: #ffffff;
}

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

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

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

/* 자연스럽게 섹션 */
.natural-section {
    padding: 100px 20px;
    background: #fff;
}

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

.natural-title {
    font-size: 38px;
    font-weight: 300;
    color: #000;
    line-height: 1.6;
}

.natural-title span{
    font-size: 38px;
    font-weight: bold;
    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;
}

/* Difference 섹션 */
.difference-section {
    padding: 100px 20px;
    background: #ffffff;
}

.section-main-title {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 60px;
}


.section-subtitle {
    text-align: center;
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 100px;
}

.section-subtitle span{
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #A6756A;
    margin-bottom: 60px;
}


.point-badge {
    display: inline-block;
    background: #A6756A;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 auto 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.point-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    line-height: 1.5;
    margin-bottom: 80px;
}

.point-title span{
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #A6756A;
    line-height: 1.5;
    margin-bottom: 80px;
}


.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.comparison-image {
    position: relative;
    width: 100%;

    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.badge-before {
    background: rgba(255, 255, 255, 0.8);
    color: rgb(255, 255, 255);
}

.badge-no {
    background: rgba(234, 234, 234, 0.8);
    color: white;
}

.badge-after {
    background: #A6756A;
    color: white;
}

.badge-yes {
    background: #A6756A;
    color: white;
}

.comparison-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.comparison-text .highlight {
    color: #A6756A;
    font-weight: 600;
}

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

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

/* 중간 텍스트 섹션 */
.middle-text-section {
    text-align: center;
    padding: 80px 20px;
    
    max-width: 900px;
    margin: 0 auto;
}

.middle-title {
    font-size: 28px;
    font-weight: 300;
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.middle-title strong {
    font-weight: 700;
    color: #000;
}

.middle-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #A6756A;
    margin-top: 20px;
}

/* 그리드 변형 스타일 */
.comparison-grid.two-images {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
}

.comparison-grid.single-image {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-item.center {
    margin: 0 auto;
}


/* Point 02 스타일 적용 */
.point-section .comparison-grid.two-images .comparison-item {
    padding: 40px 30px;
    border-radius: 20px;
    /* 애니메이션 효과를 위해 기존 .comparison-item에 적용된 transition을 유지합니다. */
}

.point-section .comparison-grid.two-images .comparison-item:first-child {
    background-color: #FAF9F7; /* 'NO!' 섹션 배경색 */
}

.point-section .comparison-grid.two-images .comparison-item:last-child {
    background-color: #FAF9F7; /* 'YES!' 섹션 배경색 */
}

.point-section .comparison-item .comparison-image {
    margin-bottom: 40px; /* 이미지와 제목 사이 간격 조정 */
}

.point-section .comparison-item .comparison-title {
    font-size: 22px; /* 제목 폰트 크기 조정 */
    margin-bottom: 15px;
}

.point-section .comparison-item .comparison-desc {
    font-size: 16px; /* 설명 폰트 크기 조정 */
    color: #555;
    line-height: 1.7;
}

/* Point 03 신규 스타일 */
.jn-analysis-section {
    text-align: center;
    background: #D4A298;
    max-width: 1200px;
    margin: 0 auto;
}

.jn-analysis-section img{
    width: 100%
}

.jn-analysis-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.jn-analysis-feature {
    background: #ffffff;
    color: #333;
    border: 1px solid #dddddd;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.analysis-conclusion {
    text-align: center;
    padding: 80px 20px 0;
}

.analysis-conclusion p {
    font-size: 24px;
    color: #333;
    line-height: 1.7;
    font-weight: 300;
}

.analysis-conclusion p span {
    font-weight: 700;
    color: #000;
}


/* Point 섹션 */
.point-section {
    padding: 100px 20px;
    background: #ffffff;
}

.point-section.gray-bg {
    background: #f8f9fa;
}

.comparison-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

/* JN Logo 섹션 */
.jn-logo-section {
    text-align: center;
    padding: 80px 0;
    background: #A6756A;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.jn-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.jn-feature {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

/* Result 섹션 */
.result-section {
    margin: 0 auto;
    max-width: 1400px;
    padding: 100px 20px;
    background: #ffffff;
    margin-bottom: 100px;
}


.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.result-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.result-name {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

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


/* 반응형 - 태블릿 */
@media (max-width: 1200px) {
    
    .feature-grid {
        gap: 30px;
    }
    
    .feature-image {
        height: 280px;
    }
    
    .intro-title {
        font-size: 36px;
    }
    
    .section-main-title {
        font-size: 32px;
    }
    
    .kpop-content {
        gap: 60px;
    }
    
    .comparison-grid {
        gap: 40px;
    }
    
    .result-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;
    }
    
    .natural-section {
        padding: 60px 20px;
    }
    
    .natural-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;
    }

    .difference-section {
        padding: 60px 20px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .point-title {
        font-size: 22px;
    }
    
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison-image {
        height: 300px;
    }
    
    .middle-text-section {
        padding: 50px 20px;
    }
    
    .middle-title {
        font-size: 20px;
        line-height: 1.5;
    }
    
    .middle-subtitle {
        font-size: 24px;
    }
    
    .comparison-grid.two-images {
        grid-template-columns: 1fr;
    }
    
    .point-section .comparison-grid.two-images .comparison-item {
        padding: 10px 10px;
    }

    .jn-analysis-section {
        padding: 20px 10px;
    }


    .jn-analysis-features {
        gap: 10px 15px;
    }

    .jn-analysis-feature {
        font-size: 14px;
        padding: 8px 18px;
    }

    .analysis-conclusion {
        padding: 60px 15px 0;
    }
    
    .analysis-conclusion p {
        font-size: 18px;
    }
    
    .point-section {
        padding: 50px 20px;
    }
    
    
    
    .jn-features {
        gap: 20px;
    }
    
    .jn-feature {
        font-size: 14px;
    }
    
    .result-section {
        padding: 60px 20px;
    }
    
    .result-title {
        font-size: 24px;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
    }
    
    .result-image {
        height: 300px;
    }
    
}

/* 작은 모바일 */
@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;
    }
    
    .middle-text-section {
        padding: 40px 15px;
    }
    
    .middle-title {
        font-size: 18px;
    }
    
    .middle-subtitle {
        font-size: 20px;
    }

}