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

.intro-subtitle {
    font-size: 24px;
    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-content.reverse {
    flex-direction: row-reverse;
}

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


/* 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;
    font-family: serif;
}

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

/* 클린 트임 복원술 Special Point 섹션 */
.clean-special-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

.clean-sub-title {
    font-size: 42px;
    color: #A6756A;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 10px;
}

.clean-point-block {
    text-align: center;
    margin-bottom: 80px;
}

.clean-point-badge {
    display: inline-block;
    border: 1px solid #A6756A;
    background: #A6756A;
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.clean-point-title {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 80px;
}

.suture-circles {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.circle-item {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}

.green-circle {
    background-color: #A6756A;
}

.gray-circle {
    background-color: #888888;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-item {
    position: relative;
    overflow: hidden;
}

.detail-item img {
    width: 100%;
    display: block;
}

.detail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.885), transparent);
    text-align: left;
}

.detail-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.detail-desc {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
}

.clean-section-footer {
    text-align: center;
    margin-top: 100px;
}

.clean-section-footer p {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

/* 왜 조주원 원장인가 섹션 */
.director-intro-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.director-image {
    flex: 0 0 45%;
}

.director-image img {
    width: 100%;
    border-radius: 0 70px 70px 0;
    display: block;
}

.director-text {
    flex: 1;
}

.director-question {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.4;
}

.director-answer {
    margin: 20px 0 80px;
    font-size: 22px;
    line-height: 1.5;
    color: #555;
}

.director-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.director-point-item {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #A6756A;
}

.director-point-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #A6756A;
}

.director-point-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 수술 프로세스 섹션 */
.process-section {
    padding: 100px 20px;
    background: #ffffff;
    margin-bottom: 50px;
}

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

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

.process-sub-title {
    font-size: 36px;
    color: #A6756A;
    font-weight: bold;
    margin-top: 10px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.process-image {
    width: 100%;
    margin-bottom: 25px;
}

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

.process-item-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.process-item-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;
    }
    .director-content {
        gap: 40px;
    }
    .director-question {
        font-size: 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;
    }
     
    .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-content.reverse {
        flex-direction: column;
    }
    .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;
    }


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

    .clean-main-title {
        font-size: 28px;
    }
    .clean-sub-title {
        font-size: 20px;
    }
    .clean-point-title {
        font-size: 22px;
    }
    .circle-item {
        width: 140px;
        height: 140px;
        font-size: 16px;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .clean-section-footer p {
        font-size: 24px;
    }

    .director-intro-section,
    .process-section {
        padding: 60px 20px;
    }
    .director-content {
        flex-direction: column;
    }
    .director-image img {
        border-radius: 20px;
    }
    .director-question {
        font-size: 26px;
    }
    .process-header {
        margin-bottom: 60px;
    }
    .process-main-title {
        font-size: 28px;
    }
    .process-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;
    }

    .suture-circles {
        gap: 15px;
    }
    .circle-item {
        width: calc(50% - 8px);
        height: auto;
        aspect-ratio: 1 / 1;
        font-size: 15px;
    }
}