/**
 * Lifting Thread Page Styles
 * 리프팅 실/미니리프팅 페이지 스타일시트
 */

    .cont-wrap {
      margin-bottom: 0;
      padding-bottom: 110px;
      background: #f5f5f5;
    }

    /* 새로운 상단 비주얼 스타일 */
    .forehead-hero-section {
        position: relative;
        overflow: hidden;
        min-height: 700px;
        background: linear-gradient(135deg, #b5bcc0 0%, #9ca5ab 100%);
    }

    .forehead-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .forehead-hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .forehead-hero-background img.mobile-bg {
        display: none;
    }

    .forehead-hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .forehead-hero-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 120px 50px;
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 80px;
        min-height: 700px;
    }

    .forehead-hero-text {
        z-index: 2;
    }

    .forehead-hero-subtitle {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 3px;
        margin-bottom: 20px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .forehead-hero-title {
        font-size: 56px;
        font-weight: 700;
        color: #222;
        margin-bottom: 30px;
        line-height: 1.3;
        letter-spacing: -1px;
    }

    .forehead-hero-desc {
        font-size: 18px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 35px;
    }

    .forehead-hero-highlight {
        font-size: 26px;
        color: #a0a3ff;
        line-height: 1.6;
        font-weight: 500;
        margin-bottom: 30px;
        word-break: keep-all;
    }

    .forehead-hero-note {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
    }

    .forehead-hero-image {
        position: relative;
        z-index: 1;
        opacity: 0;
        pointer-events: none;
    }

    .forehead-hero-watermark {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 48px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.15);
        letter-spacing: 15px;
        white-space: nowrap;
        z-index: 0;
        text-transform: uppercase;
    }

    @media (max-width: 992px) {
        .forehead-hero-container {
            grid-template-columns: 1fr;
            gap: 50px;
            padding: 0 30px;
        }

        .forehead-hero-section {
            padding: 80px 0;
            min-height: auto;
        }

        .forehead-hero-title {
            font-size: 42px;
        }

        .forehead-hero-highlight {
            font-size: 22px;
        }

        .forehead-hero-image img {
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .forehead-hero-section {
            min-height: 700px;
        }

        .forehead-hero-background img.pc-bg {
            display: none;
        }

        .forehead-hero-background img.mobile-bg {
            display: block;
        }

        .forehead-hero-background::before {
        }

        .forehead-hero-container {
            padding: 50px 25px;
            gap: 0;
            grid-template-columns: 1fr;
            min-height: 700px;
        }

        .forehead-hero-image {
            display: none;
        }

        .forehead-hero-text {
            position: relative;
            z-index: 2;
            padding: 0;
        }

        .forehead-hero-subtitle {
            font-size: 11px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.9);
        }

        .forehead-hero-title {
            font-size: 48px;
            color: #222;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .forehead-hero-desc {
            font-size: 15px;
            color: #555;
            margin-bottom: 30px;
        }

        .forehead-hero-highlight {
            font-size: 22px;
            color: #ff9aa2;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .forehead-hero-note {
            font-size: 15px;
            color: #555;
            line-height: 1.7;
        }

        .forehead-hero-watermark {
            font-size: 36px;
            letter-spacing: 10px;
            bottom: 20px;
            color: rgba(255, 255, 255, 0.25);
        }
    }

    /* Prologue 섹션 스타일 */
    .prologue-section {
        background: #fff;
        padding: 120px 0;
    }

    .prologue-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 50px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: center;
    }

    .prologue-badge {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .badge-number {
        width: 30px;
        height: 2px;
        background: #e0e0e0;
        display: block;
    }

    .badge-text {
        font-size: 48px;
        font-weight: 300;
        color: #f0f0f0;
        letter-spacing: 2px;
    }

    .prologue-subtitle {
        font-size: 12px;
        color: #999;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .prologue-title {
        font-size: 38px;
        font-weight: 700;
        color: #222;
        line-height: 1.5;
        margin-bottom: 40px;
        letter-spacing: -1px;
    }

    .prologue-desc {
        color: #555;
        line-height: 1.8;
    }

    .desc-highlight {
        font-size: 16px;
        color: #d4a574;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .desc-point {
        margin-bottom: 25px;
    }

    .desc-point strong {
        display: block;
        font-size: 15px;
        color: #222;
        margin-bottom: 8px;
        font-weight: 600;
    }

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

    .prologue-image {
        position: relative;
    }

    .prologue-image img {
        width: 100%;
        height: auto;
        border-radius: 0;
        filter: grayscale(100%);
    }

    .doctor-badge {
        position: absolute;
        bottom: 30px;
        right: 30px;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(10px);
        padding: 15px 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
        background: #a0a3ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .badge-info {
        color: #fff;
    }

    .badge-label {
        font-size: 11px;
        color: #ccc;
        margin-bottom: 3px;
    }

    .badge-name {
        font-size: 15px;
        font-weight: 600;
    }

    @media (max-width: 992px) {
        .prologue-container {
            grid-template-columns: 1fr;
            gap: 60px;
            padding: 0 30px;
        }

        .prologue-section {
            padding: 80px 0;
        }
    }

    @media (max-width: 768px) {
        .prologue-section {
            padding: 60px 0;
        }

        .prologue-container {
            padding: 0 20px;
            gap: 40px;
        }

        .badge-text {
            font-size: 36px;
        }

        .prologue-title {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .desc-highlight {
            font-size: 15px;
        }

        .doctor-badge {
            bottom: 20px;
            right: 20px;
            padding: 12px 15px;
        }

        .badge-icon {
            width: 35px;
            height: 35px;
        }

        .badge-name {
            font-size: 14px;
        }
    }

/* Solution Header Styles */
.solution-header {
    text-align: center;
    margin-bottom: 80px;
}

.solution-badge {
    display: inline-block;
    color: #a0a3ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.solution-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: -1px;
}

.solution-desc {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Solution Grid Styles */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.solution-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.solution-text {
    padding: 0 10px;
}

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: #a0a3ff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .solution-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .solution-badge {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .solution-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .solution-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .solution-item img {
        margin-bottom: 20px;
    }

    .step-number {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .step-desc {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Tablet Responsive */
@media (max-width: 992px) and (min-width: 769px) {
    .solution-title {
        font-size: 34px;
    }

    .solution-desc {
        font-size: 16px;
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px;
    }
}

/* Lifting Comparison Table Styles */
.lifting-comparison-area {
    overflow: hidden;
    background: #fff;
    padding: 100px 0;
}

.thread-lifting-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.mini-lifting-section {
    background: #fff;
    padding: 100px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 60px;
}

.lifting-comparison-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 15px;
    overflow: hidden;
}

.lifting-comparison-table thead {
    background: linear-gradient(135deg, #a0a3ff 0%, #8589ff 100%);
}

.lifting-comparison-table th {
    padding: 25px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.lifting-comparison-table th:last-child {
    border-right: none;
}

.lifting-comparison-table th.category-header {
    background: #7579ff;
    font-size: 16px;
}

.lifting-comparison-table th .small-text {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.lifting-comparison-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
}

.lifting-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.lifting-comparison-table td {
    padding: 20px;
    text-align: center;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    vertical-align: middle;
}

.lifting-comparison-table td img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.lifting-comparison-table td.category {
    background: #f8f9fa;
    font-weight: 700;
    color: #222;
    border-right: 2px solid #e0e0e0;
}

.lifting-comparison-table .small-note {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.lifting-comparison-table tr.highlight-row td {
    background: #fffbf0;
    font-weight: 600;
}

.effect-bar {
    font-size: 20px;
    color: #ffd700;
}

/* 모바일 카드 레이아웃 - 기본은 숨김 */
.comparison-cards-mobile {
    display: none;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        display: none;
    }

    .comparison-cards-mobile {
        display: block;
        margin-top: 40px;
    }

    .lifting-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        margin-bottom: 20px;
        overflow: hidden;
    }

    .lifting-card .card-header {
        padding: 20px;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        background: linear-gradient(135deg, #a0a3ff 0%, #8589ff 100%);
    }

    .lifting-card .card-header.type1 {
        background: linear-gradient(135deg, #a0a3ff 0%, #7579ff 100%);
    }

    .lifting-card .card-header.type2 {
        background: linear-gradient(135deg, #8589ff 0%, #6569ff 100%);
    }

    .lifting-card .card-header.type3 {
        background: linear-gradient(135deg, #9599ff 0%, #7579ff 100%);
    }

    .lifting-card .card-body {
        padding: 20px;
    }

    .lifting-card .card-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .lifting-card .card-item:last-child {
        border-bottom: none;
    }

    .lifting-card .card-item.highlight {
        background: #fffbf0;
        padding: 15px 10px;
        margin: 0 -10px;
        border-radius: 8px;
    }

    .lifting-card .card-item .label {
        font-weight: 700;
        color: #222;
        font-size: 14px;
    }

    .lifting-card .card-item .value {
        color: #555;
        font-size: 14px;
        text-align: right;
    }

    .lifting-card .card-item .value img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .lifting-card .card-item.highlight .value {
        font-size: 18px;
        color: #ffd700;
    }

    .lifting-card .small-note {
        display: block;
        font-size: 11px;
        color: #999;
        margin-top: 3px;
    }
}

/* 태블릿 반응형 */
@media (max-width: 992px) and (min-width: 769px) {
    .lifting-comparison-table th,
    .lifting-comparison-table td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .lifting-comparison-table th {
        font-size: 16px;
    }

    .lifting-comparison-area,
    .thread-lifting-section,
    .mini-lifting-section {
        padding: 70px 0;
    }
}

/* 추가 모바일 반응형 */
@media (max-width: 768px) {
    .lifting-comparison-area,
    .thread-lifting-section,
    .mini-lifting-section {
        padding: 60px 0;
    }
}
