/* ===========================================
   ?�역 비디???��???- 모바???�체?�면 방�?
   =========================================== */

video {
    /* 모바???�체?�면 방�? */
    object-fit: cover;
    display: block;
}


/* iOS Safari 비디??컨트�??��? */

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

video::-webkit-media-controls-play-button {
    display: none !important;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

video::-webkit-full-page-media {
    display: none !important;
}

video::-webkit-media-controls-enclosure {
    display: none !important;
}


/* ===========================================
   메인배너 ?��???   =========================================== */

.main-banner {
    width: 100%;
    height: 800px;
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%), black;
    overflow: hidden;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    object-fit: cover;
    background-color: #000000;
    /* 로딩 ?�까지 검?� ?�면 */
    /* 모바???�체?�면 방�? */
    pointer-events: none;
}


/* ?�상 로딩 ?�태 관�?*/

.banner-bg-image:not([poster]) {
    background-color: #000000;
}


/* ?�상??로드?�기 ?�까지 검?� 배경 ?��? - ?�상 ?�에�?*/

.banner-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 1;
    transition: opacity 0.5s ease;
}


/* ?�상??로드?�면 검?� 배경 ?�이?�아??*/

.banner-bg-image.video-loaded::before {
    opacity: 0;
    pointer-events: none;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.30;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.50) 100%);
}

.banner-dark-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.40);
}


/* 메인 ?�스???�역 */

.banner-text-frame {
    max-width: 1200px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    display: inline-flex;
    padding: 0 20px;
}

.text-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    display: flex;
}

.clinic-name {
    align-self: stretch;
    color: white;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
}

.main-headline {
    color: white;
    font-size: 48px;
    font-family: 'MaruBuri', 'Pretendard', sans-serif;
    line-height: 76.80px;
    word-wrap: break-word;
}

.headline-bold {
    font-weight: 500;
}

.headline-light {
    font-weight: 300;
}

.sub-headline {
    align-self: stretch;
    color: white;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 24px;
    word-wrap: break-word;
}


/* ?�계 박스??*/

.stats-frame {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 21px;
    display: flex;
    margin-top: 40px;
}

.stat-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 49px 30px;
    gap: 11px;
    width: 284.25px;
    height: 178px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(60, 60, 60, 0.2);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1), inset 2px 2px 2px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    flex: none;
    order: 0;
    flex-grow: 1;
}

.stat-title {
    opacity: 0.80;
    color: white;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 28.80px;
    word-wrap: break-word;
}

.stat-value-container {
    align-self: stretch;
    justify-content: flex-start;
    align-items: flex-end;
    display: inline-flex;
}

.stat-number {
    text-align: center;
    color: white;
    font-size: 40px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 40px;
    word-wrap: break-word;
}

.stat-unit {
    text-align: center;
    color: white;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
}


/* 반응??*/

@media (max-width: 1200px) {
    .banner-text-frame {
        padding: 0 40px;
    }
    .stats-frame {
        margin-top: 0;
        gap: 8px;
        /* padding: 0 16px; */
        flex-wrap: wrap;
    }
    .stat-box {
        flex: 1;
        min-width: calc(50% - 4px);
        padding: 30px 20px;
        gap: 11px;
    }
}

@media (max-width: 1024px) {
    .main-banner {
        padding: 110px 15px 40px;
        height: max-content;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-headline {
        font-size: 32px;
        line-height: 48px;
    }
    .banner-text-frame {
        padding: 0;
        gap: 20px;
        position: relative;
        top: auto;
        left: auto;
        transform: unset;
    }
    .stat-box {
        width: 100%;
        padding: 30px 20px;
        background: linear-gradient(306deg, rgba(93, 216, 0, 0) 0%, rgba(93, 216, 0, 0.20) 100%), rgba(255, 255, 255, 0.20), linear-gradient(270deg, rgba(4.90, 4.90, 4.90, 0.30) 0%, rgba(38, 38, 38, 0.30) 100%);
        height: auto;
    }
}

@media (max-width: 480px) {
    .main-banner {}
    .banner-text-frame {}
    .text-content {
        gap: 8px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .clinic-name {
        font-size: 16px;
        line-height: 22.4px;
    }
    .main-headline {
        font-size: 32px;
        line-height: 51.2px;
    }
    .sub-headline {
        font-size: 16px;
        line-height: 24px;
        font-weight: 300;
        text-align: center;
        margin-bottom: 40px;
    }
    .stat-title {
        font-size: 14px;
        font-weight: 500;
        opacity: 0.8;
        line-height: 22.4px;
    }
    .stat-value-container {
        gap: 0;
        align-items: flex-end;
    }
    .stat-number {
        font-size: 32px;
        font-weight: 300;
        line-height: 32px;
    }
    .stat-unit {
        font-size: 16px;
        font-weight: 600;
        line-height: 19.2px;
    }
}


/* ===========================================
   치료?��? ?�션 ?��???   =========================================== */

.treatment-cases-section {
    width: 100%;
    background: #fff;
    padding: 180px 0;
    position: relative;
}

.cases-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}


/* ?�더 ?�션 */

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

.clinic-name-small {
    color: #18522F;
    font-size: 20px;
    font-family: 'MaruBuriOTF', 'MaruBuri', 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
    margin-bottom: 12px;
}

.main-question {
    color: #111111;
    font-size: 42px;
    font-family: 'MaruBuriOTF', 'MaruBuri', 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
    margin-bottom: 0;
}

.sub-answer {
    color: #111111;
    font-size: 42px;
    font-family: 'MaruBuriOTF', 'MaruBuri', 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
}


/* ?�자 ?�기 ?�션 */

.testimonials-section {
    display: flex;
    gap: 40px;
    margin-bottom: 64px;
    justify-content: flex-start;
}

.testimonial-box {
    padding-left: 20px;
    border-left: 2px solid #A1A1A1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-quote {
    color: #555555;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 1em;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.patient-age {
    color: #555555;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1em;
}

.separator {
    width: 1px;
    height: 1em;
    background: #D9D9D9;
}

.improvement {
    color: #007504;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1em;
}


/* ?�공�?배�? */

.success-rate-badge {
    position: absolute;
    top: -90px;
    right: -90px;
    background: url('../images/badge-bg.png') center bottom / cover no-repeat;
    border-radius: 50%;
    width: 196px;
    height: 196px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.badge-content {
    text-align: center;
    color: white;
}

.rate-number {
    font-size: 40px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 1em;
    margin-bottom: 10px;
}

.rate-number .plus {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
}

.rate-diseases {
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 800;
    line-height: 1.4em;
    margin-bottom: 0px;
    opacity: 0.8;
}

.rate-label {
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    line-height: 1.4em;
    opacity: 0.8;
}


/* ?��? 블록??*/

.cases-blocks {
    margin-bottom: 110px;
    position: relative;
}

.cases-swiper {
    width: 100%;
    padding: 0 0 60px 0;
}

.case-block {
    width: 100%;
    height: 583px;
    background: white;
    overflow: hidden;
    outline: 1px solid #E5E5EC;
    outline-offset: -1px;
    display: flex;
    flex-direction: column;
}

.case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.case-image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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


/* Swiper ?��???*/

.swiper-button-next,
.swiper-button-prev {
    color: #5E6C5F;
    background: white;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet {
    background: #5E6C5F;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: #5E6C5F;
    opacity: 1;
}


/* ?�약 �?*/

.summary-bar {
    align-self: stretch;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 32px;
    padding-bottom: 32px;
    background: #F8F8F8;
    border-left: 1px solid #E5E5EC;
    border-right: 1px solid #E5E5EC;
    border-bottom: 1px solid #E5E5EC;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    display: flex;
    height:-webkit-fill-available;
}

.summary-text {
    text-align: center;
    color: #111111;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1.6em;
    word-wrap: break-word;
}

.case-info {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    display: inline-flex;
}

.patient-details {
    color: #555555;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 1em;
    word-wrap: break-word;
}

.date-separator {
    width: 1px;
    align-self: stretch;
    background: #E5E5EC;
}

.date {
    text-align: right;
    color: #555555;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 1em;
    word-wrap: break-word;
}


/* ?�보�?버튼 */

.more-cases-button {
    text-align: center;
}

.more-cases-link {
    display: inline-block;
    background: linear-gradient(90deg, #FF6200 0%, #FEBB0C 100%);
    color: white;
    max-width: 477px;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 24px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.6em;
    box-shadow: 0px 4px 30px rgba(23.82, 105.43, 86.39, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.more-cases-link span {
    position: relative;
    z-index: 10;
}

.more-cases-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #E02200 0%, #E6750A 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 12px;
}


/* 치료 ?��? ??보기 버튼 마우???�버 ?�과 */

.more-cases-link:hover::before {
    opacity: 1;
}


/* 반응???�자??*/

@media (max-width: 1200px) {
    .cases-container {
        padding: 0 24px;
    }
    .success-rate-badge {
        right: 0;
        width: 160px;
        height: 160px;
    }
    .rate-number {
        font-size: 32px;
    }
    .rate-diseases,
    .rate-label {
        font-size: 14px;
    }
    .main-question,
    .sub-answer {
        font-size: 36px;
        line-height: 1.6em;
    }
}

@media (max-width: 1024px) {
    .treatment-cases-section {
        padding: 80px 0;
    }
    .cases-header {
        text-align: center;
    }
    .cases-container {
        padding: 0 14px;
    }
    .main-question,
    .sub-answer {
        font-size: 28px;
        line-height: 1.6em;
        word-break: keep-all;
    }
    .clinic-name-small {
        font-size: 18px;
        font-weight: 600;
    }
    .testimonials-section {
        flex-direction: column;
        gap: 24px;
    }
    .testimonial-box {
        padding-left: 16px;
        border-left: 1px solid #A1A1A1;
    }
    .success-rate-badge {
        width: 115px;
        height: 115px;
        right: -5px;
        top: -45px;
    }
    .rate-number {
        font-size: 24px;
        line-height: 1em;
        margin-bottom: 5px;
    }
    .rate-number .plus {
        font-size: 12px;
    }
    .rate-diseases,
    .rate-label {
        font-size: 12px;
        line-height: 1.33em;
    }
    .cases-blocks {
        margin-bottom: 32px;
    }
    .case-block {
        height: auto;
        min-height: 400px;
    }
    .case-image-section {
        padding: 12px;
        min-height: 200px;
    }
    .summary-bar {
        padding: 28px 16px;
        height: auto;
    }
    .summary-text {
        font-size: 20px;
        line-height: 1.5em;
    }
    .patient-details,
    .date {
        font-size: 16px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    .swiper-pagination {
        position: relative;
        margin-top: 20px;
    }
    .more-cases-link {
        width: 100%;
        max-width: 400px;
        padding: 20px 24px;
        font-size: 20px;
        line-height: 1.6em;
    }
}

@media (max-width: 480px) {
    .cases-container {}
    .main-question,
    .sub-answer {
        font-size: 24px;
        line-height: 1.6em;
    }
    .clinic-name-small {
        font-size: 16px;
        line-height: 1.5em;
    }
    .testimonial-quote {
        font-size: 16px;
        line-height: 1.25em;
    }
    .patient-age,
    .improvement {
        font-size: 12px;
    }
    .rate-number {
        font-size: 20px;
        line-height: 1em;
    }
    .rate-diseases,
    .rate-label {
        font-size: 10px;
        line-height: 1.4em;
    }
    .case-block {
        height: auto;
        min-height: 350px;
    }
    .case-image-section {
        padding: 8px;
        min-height: 150px;
    }
    .summary-bar {}
    .summary-text {}
    .patient-details,
    .date {}
    .more-cases-link {
        width: 100%;
        max-width: 300px;
        padding: 16px 20px;
        font-size: 16px;
        line-height: 1.5em;
    }
}


/* ===========================================
   ?�청·?�명 ?�령 ?�션 ?��???   =========================================== */


/* ?�션 ?�체 컨테?�너 */

.tinnitus-age-section {
    position: relative;
    width: 100%;
    height: 625px;
    overflow: hidden;
    background: #E6E6E6;
}


/* 배경 비디??*/

.tinnitus-age-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.tinnitus-age-bg-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    /* 모바???�체?�면 방�? */
    pointer-events: none;
}

.tinnitus-age-bg-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* 중앙 ?�색 그라?�언???�버?�이 */

.tinnitus-age-center-overlay {
    position: absolute;
    width: 950px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: linear-gradient(270deg, rgba(240, 240, 240, 0) 0%, rgba(240, 240, 240, 0.90) 24%, rgba(240, 240, 240, 0.90) 78%, rgba(240, 240, 240, 0) 100%);
    z-index: 3;
}


/* 콘텐�??�역 */

.tinnitus-age-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100%;
    padding: 0 20px;
}


/* 메인 ?�목 */

.tinnitus-age-title {
    color: #111111;
    font-size: 36px;
    font-weight: 400;
    line-height: 57.6px;
    text-align: center;
    margin: 0;
}


/* PC?�서 strong ?�그???�반 굵기�?(강조 ?�음) */

.tinnitus-age-title strong {
    font-weight: 400;
}


/* 부?�목 */

.tinnitus-age-description {
    color: #111111;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 28.8px;
    text-align: center;
    margin: 0;
}


/* ===========================================
   반응???�자??   =========================================== */


/* ?�블�?(1024px ?�하) */

@media (max-width: 1024px) {
    .tinnitus-age-section {
        height: 550px;
    }
    .specialty-swiper .slide-card .tinnitus-age-center-overlay {
        width: 80%;
    }
    .tinnitus-age-title {
        font-size: 32px;
        line-height: 48px;
    }
    .tinnitus-age-description {
        font-size: 16px;
        line-height: 26px;
    }
}


/* 모바??(768px ?�하) */

@media (max-width: 1024px) {
    .specialty-swiper .slide-card {
        max-height: unset !important;
        height: auto !important;
    }
    .tinnitus-age-section {
        height: auto;
        min-height: 500px;
    }
    /* ?�상??좌측 ?�단??배치 */
    .tinnitus-age-bg-video {
        height: 226px;
        width: 187%;
        left: 0;
        top: 0;
        overflow: hidden;
    }
    .tinnitus-age-bg-video video {
        position: absolute;
        top: -84px;
        left: 0;
        width: 700px;
        height: 394px;
        min-width: auto;
        min-height: auto;
        transform: none;
        object-fit: cover;
        object-position: left top;
    }
    /* 중앙 ?�버?�이�??�단 그라?�언?�로 변�?*/
    .tinnitus-age-center-overlay {
        width: 100%;
        transform: none;
        left: 0;
        background: linear-gradient(180deg, rgba(238, 238, 238, 0) 31%, #EEEEEE 42%);
    }
    /* 콘텐츠�? ?�단 ?�쪽 ?�렬 */
    .tinnitus-age-content {
        position: absolute;
        left: 0;
        bottom: 0;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 0 17px 74px 17px;
        gap: 16px;
        height: 100%;
    }
    .tinnitus-age-title {
        font-size: 28px;
        font-weight: 300;
        line-height: 41.6px;
        text-align: left;
    }
    /* ?�목 강조 부�?(모바?�에?�만) */
    .tinnitus-age-title strong {
        font-weight: 600;
    }
    .tinnitus-age-description {
        font-size: 16px;
        font-weight: 300;
        line-height: 25.6px;
        text-align: left;
        color: #555555;
    }
}


/* ?��? 모바??(480px ?�하) */

@media (max-width: 480px) {
    .tinnitus-age-section {
        height: 450px;
    }
    .tinnitus-age-description {
        font-size: 14px;
        line-height: 22.4px;
    }
    .tinnitus-age-content {
        gap: 15px;
    }
}


/* ===========================================
   �?��?�의???�별???�션 ?��???   =========================================== */

.specialty-section {
    position: relative;
    width: 100%;
    padding: 160px 0px;
    background: #ffffff;
    overflow: hidden;
}


/* 배경 그라?�이??*/

.background-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    pointer-events: none;
    overflow: hidden;
}

.gradient-left {
    position: absolute;
    width: 1513px;
    height: 926px;
    left: -465px;
    top: -308px;
    transform: rotate(8deg);
    opacity: 0.8;
    background: linear-gradient(117deg, rgba(11, 92, 35, 0) 0%, rgba(11, 92, 35, 0.2) 100%), linear-gradient(142deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%), linear-gradient(289deg, rgba(19, 107, 45, 0) 0%, rgba(19, 107, 45, 0.6) 100%), radial-gradient(ellipse 33% 30% at 33% 50%, rgba(21, 83, 30, 0.8) 0%, rgba(140, 255, 157, 0) 100%);
    filter: blur(60px);
}

.gradient-right {
    position: absolute;
    width: 1513px;
    height: 926px;
    right: -465px;
    bottom: -308px;
    transform: rotate(162deg);
    opacity: 0.5;
    background: linear-gradient(117deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%), linear-gradient(142deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%), linear-gradient(289deg, rgba(26, 178, 59, 0) 0%, rgba(26, 178, 59, 0.6) 100%), radial-gradient(ellipse 33% 30% at 33% 50%, rgba(152, 20, 47, 0.8) 0%, rgba(97, 5, 5, 0.8) 100%);
    filter: blur(30px);
}


/* 배경 ?��?지 */

.background-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: url('../images/specialty-bg.png') center bottom / cover no-repeat;
    mix-blend-mode: multiply;
    opacity: 0.7;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 44%, white 80%);
}


/* ?�더 ?�역 */

.specialty-header {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
    z-index: 2;
}

.header-content {
    margin-bottom: 40px;
}

.specialty-header .subtitle {
    color: #18522F;
    font-size: 20px;
    line-height: 1.6em;
    margin-bottom: 12px;
}

.specialty-header .title {
    color: #111111;
    font-size: 36px;
    line-height: 1.6em;
    font-weight: 400;
}


/* ???�비게이??*/

.tab-navigation {
    display: inline-flex;
    background: #F7F7FB;
    border-radius: 8px;
    padding: 8px;
    gap: 8px;
}

.tab-button {
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    color: #111111;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button.active {
    background: white;
    font-weight: 400;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.tab-button.active:hover {
    background: white;
}

.tab-number {
    font-size: 20px;
    line-height: 1.6em;
}

.tab-char {
    font-size: 18px;
    line-height: 1.6em;
}


/* ?�라?�더 컨테?�너 */

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}


/* ?�비게이??버튼 */

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    background: white;
    border: 1px solid #D4D4D4;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button:hover {
    background: #E2E2E2;
    border-color: #AAAAAA;
}

.nav-button svg {
    color: #111111;
}

.nav-prev {
    left: -100px;
}

.nav-next {
    right: -100px;
}


/* Swiper 커스?�마?�징 */

.specialty-swiper {
    overflow: visible;
    padding: 0;
}

.specialty-swiper .swiper-wrapper {
    align-items: stretch;
    position: relative;
}


/* 블러 배경 ?�이??- ??�� 고정 */

.specialty-swiper .swiper-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 40px 40px 80px rgba(127, 127, 127, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    pointer-events: none;
}

.specialty-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* ?�라?�드 z-index ?�어 */
    z-index: 1;
}

.specialty-swiper .swiper-slide-active {
    z-index: 2;
}


/* ?�라?�드 카드 */

.specialty-swiper .slide-card {
    display: flex;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    height: 500px;
    max-height: 500px;
    gap: 52px;
    /* GPU 가??최적??*/
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}


/* ?�라?�드 ?��?지 */

.slide-image {
    flex: 0 0 684px;
    /* Figma: width: 684px */
    position: relative;
    background: #7D7D7D;
    overflow: hidden;
    height: 100%;
    border-radius: 30px;
    /* Figma: border-radius: 30px */
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ?�라?�드 콘텐�?*/

.slide-content {
    flex: 0 0 388px;
    /* Figma: width: 388px */
    padding: 0 76px 0 0;
    /* ?�측 ?�백�?(52px gap + 24px ?�유) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    /* Figma: gap: 32px */
}

.slide-label {
    color: #555555;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 20px;
    /* Figma: line-height: 20px */
}

.slide-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Figma: Frame 1707482696 gap: 12px */
}

.slide-title-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* Figma: Frame 1707482695 gap: 16px */
}

.slide-main-title {
    color: #111111;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1em;
    display: flex;
    align-items: baseline;
    gap: 0;
    margin: 0;
}

.title-number {
    font-size: 60px;
    line-height: 60px;
    margin: 0;
    /* Figma: line-height: 60px */
}

.title-char {
    font-size: 54px;
    line-height: 54px;
    /* Figma: line-height: 54px */
}

.title-sub {
    color: #999999;
    font-size: 30px;
    line-height: 30px;
    /* Figma: line-height: 30px */
    margin-left: 4px;
}

.title-sub-text {
    font-size: 30px;
    line-height: 30px;
    color: #111111;
}

.slide-title-365 {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    /* Figma: Frame 1707482694 gap: 2px */
}

.slide-subtitle {
    color: #111111;
    font-size: 34px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    margin: 0;
}

.slide-description {
    color: #555555;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    margin: 0;
}


/* ?�세보기 버튼 */

.detail-button {
    align-self: flex-start;
    padding: 16px 30px;
    /* Figma: padding 16px 30px */
    background: transparent;
    border: 1px solid #B2B2B2;
    border-radius: 12px;
    color: #555555;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 30px rgba(24, 105, 86, 0.08);
}

.detail-button:hover {
    background: #005E32;
    border-color: #005E32;
    color: white;
    box-shadow: 0px 4px 30px rgba(0, 94, 50, 0.15);
}


/* 반응??- ?�블�?*/

@media (max-width: 1200px) {
    .nav-prev {
        left: 20px;
    }
    .nav-next {
        right: 20px;
    }
    .slide-card {
        margin: 0 20px;
        gap: 32px;
    }
    .slide-image {
        flex: 0 0 50%;
    }
    .slide-content {
        flex: 1;
        padding: 0 40px 0 0;
    }
}


/* 반응??- 모바??*/

@media (max-width: 1024px) {
    .specialty-section {
        padding: 80px 16px;
    }
    .background-gradients {
        display: none;
    }
    .specialty-header{
        margin:0 auto 30px
    }
    .specialty-header .subtitle {
        font-size: 16px;
        font-weight: 600;
    }
    .specialty-header .title {
        font-size: 24px;
        line-height: 1.5em;
    }
    .header-content {
        margin-bottom: 24px;
    }
    .tab-navigation {
        width: 100%;
        max-width: 310px;
    }
    .tab-button {
        width: 100%;
        padding: 8px;
        font-size: 14px;
    }
    .tab-char,
    .tab-number {
        font-size: 14px;
    }
    .nav-button {
        display: none !important;
    }
    .nav-button {
        width: 48px;
        height: 48px;
    }
    .nav-button svg {
        width: 10px;
        height: 20px;
    }
    .nav-prev {
        left: 10px;
    }
    .nav-next {
        right: 10px;
    }
    .slide-card {
        flex-direction: column;
        margin: 0 10px;
        height: auto;
        max-height: none;
        gap: 24px;
    }
    .slide-image {
        flex: 0 0 300px;
        width: 100%;
        height: 300px;
    }
    .slide-content {
        flex: 1;
        padding: 0 24px 32px 24px;
        gap: 24px;
    }
    .slide-label {
        font-size: 16px;
    }
    .slide-text {
        gap: 8px;
    }
    .slide-title-group {
        gap: 12px;
    }
    .title-number {
        font-size: 40px;
        line-height: 40px;
    }
    .title-char {
        font-size: 36px;
        line-height: 36px;
    }
    .title-sub {
        font-size: 20px;
        line-height: 20px;
    }
    .title-sub-text {
        font-size: 20px;
        line-height: 20px;
    }
    .slide-subtitle {
        font-size: 28px;
        line-height: 44.8px;
    }
    .slide-description {
        font-size: 16px;
        line-height: 25.6px;
    }
    .detail-button {
        padding: 12px 24px;
        font-size: 16px;
        line-height: 25.6px;
        border-color: #E3E3E3;
    }
    .background-image {
        height: 40%;
    }
}

@media (max-width: 480px) {
    .specialty-header .title {}
    .tab-button {
        font-size: 14px;
    }
    .slide-content {
        padding: 0 20px 24px 20px;
    }
    .title-number {
        font-size: 36px;
        line-height: 36px;
    }
    .title-char {
        font-size: 32px;
        line-height: 32px;
    }
    .slide-subtitle {
        font-size: 24px;
        line-height: 38.4px;
    }
    .slide-description {
        font-size: 14px;
        line-height: 22.4px;
    }
}


/* =========================================
   ?�근방식 ?�션 ?��???   ========================================= */

.approach-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-color: #F0F0F0;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}


/* 배경 ?�이?�들 */

.background-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


/* 배경 귀 ?��?지 공통 ?��???*/

.bg-ear {
    position: absolute;
}


/* ?�쪽 귀 ?�루??*/

.bg-ear.left-ear {
    left: -10%;
    top: 2%;
    width: 55%;
    max-width: 1050px;
}

.bg-ear.left-ear img {
    width: 100%;
    height: auto;
    display: block;
}


/* 메인 ?��?지 (?�사) */

.main-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 61%;
    max-width: 1172px;
    height: 100%;
}

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


/* 그라?�이???�버?�이 */

.gradient-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #e3e3df00 0%, #e3e3df 20%, #E3E3DF 39%, #E3E3DF 52%, #E3E3DF 100%);
}

.gradient-overlay>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}


/* 콘텐�?컨테?�너 */

.approach-section .content-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}


/* ?�스??콘텐�?*/

.approach-section .text-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ?�단 ?�벨 */

.approach-section .section-label {
    color: #005E32;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6em;
    margin: 0;
}


/* 메인 ?�드?�인 */

.approach-section .main-headline {
    color: #111111;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.6em;
    margin: 0;
    margin-bottom: 20px;
}


/* ?�명 ?�스???�역 */

.approach-section .description-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.approach-section .description-text p {
    margin: 0;
    font-size: 20px;
    line-height: 1.6em;
    color: #555555;
}


/* ?�용 ?�스??*/

.approach-section .quote-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
}


/* 강조 ?�스??*/

.approach-section .emphasis-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
}


/* =========================================
   반응???�자??   ========================================= */


/* ?�블�?*/

@media (max-width: 1024px) {
    .approach-section {
        min-height: 600px;
        padding: 80px 0;
    }
    .approach-section .content-container {
        padding: 0 40px;
    }
    .approach-section .text-content {
        max-width: 500px;
    }
    .approach-section .section-label {
        font-size: 18px;
    }
    .approach-section .main-headline {
        font-size: 30px;
    }
    .approach-section .description-text p {
        font-size: 18px;
    }
}


/* 모바??*/

@media (max-width: 1024px) {
    .approach-section {
        min-height: auto;
        padding-bottom: 350px;
    }
    .background-layers {
        position: absolute;
        top: auto;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    .background-layers .main-image {
        top: auto;
        bottom: 0;
        height: 300px;
        opacity: 1;
        width: 100%;
        max-width: 100%;
    }
    .background-layers .main-image img {
        width: 100%;
        object-fit: cover;
        display: block;
        aspect-ratio: 524 / 349;
        object-position: top;
    }
    .gradient-overlay {
        width: 100%;
        height: calc(100% - 300px);
        background: linear-gradient(90deg, #D2CEC6 0%, #d6d5d3 88%, #d6d5d3 100%);
    }
    .approach-section .content-container {
        padding: 0 15px;
    }
    .approach-section .text-content {
        max-width: 100%;
        gap: 5px;
        align-items: flex-start;
        text-align: start;
        width: 100%;
    }
    .approach-section .section-label {
        font-size: 16px;
        font-weight: 600;
    }
    .approach-section .main-headline {
        font-size: 24px;
        line-height: 1.5em;
    }
    .approach-section .description-text {
        gap: 12px;
    }
    .approach-section .description-text p {
        font-size: 16px;
    }
    .bg-ear {
        display: none;
    }
}

@media (max-width: 480px) {
    .approach-section .section-label {
        font-size: 14px;
    }
    .approach-section .description-text p {
        font-size: 14px;
    }
}


/* ===========================================
   5???�인교정 ?�션 - 고유 ?�래?�명 ?�용
   =========================================== */

.five-hear-system-section {
    width: 100%;
    padding: 120px 0px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.five-hear-system-container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}


/* ?�더 */

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

.five-hear-subtitle {
    color: #18522F;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6em;
    margin-bottom: 12px;
}

.five-hear-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.five-hear-title-number {
    color: #111111;
    font-size: 36px;
    font-family: 'Noto Serif KR', serif;
    font-weight: 400;
    line-height: 1.6em;
}

.five-hear-title-text {
    color: #111111;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.6em;
}

.five-hear-description {
    color: #555555;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 1.6em;
}


/* ?�라?�더 ?�퍼 */

.five-hear-slider-wrapper {
    position: relative;
    max-width: 1560px;
    margin: 0 auto 60px;
    padding: 0 100px;
    overflow: visible;
}


/* ?�비게이??버튼 */

.five-hear-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    background: #ffffff;
    border: 1px solid #AAAAAA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.five-hear-nav-button:hover {
    background: #E2E2E2;
    border-color: #AAAAAA;
}

.five-hear-nav-button:hover svg path {
    stroke: #18522F;
}

.five-hear-nav-prev {
    left: 150px;
}

.five-hear-nav-next {
    right: 150px;
}

.five-hear-nav-button svg {
    width: 15px;
    height: 30px;
}

.five-hear-nav-button svg path {
    stroke: #000000;
    transition: stroke 0.3s ease;
}


/* Swiper ?�정 */

.five-hear-main-swiper {
    overflow: visible !important;
    padding: 160px 0 100px;
}

.five-hear-main-swiper .swiper-wrapper {
    align-items: center;
    ;
}

.five-hear-main-swiper .swiper-slide {
    transition: all 0.5s ease;
    opacity: 0.5;
    transform: scale(0.8);
}

.five-hear-main-swiper .swiper-slide-prev,
.five-hear-main-swiper .swiper-slide-next {
    opacity: 0.5;
    transform: scale(0.8);
}

.five-hear-main-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}


/* ?�라?�드 ?�이??*/

.five-hear-slide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    transition: all 0.5s ease;
    position: relative;
}


/* ?�라?�드 번호 ?�시 - Figma ?��????�용 */

.five-hear-slide-number-display {
    position: absolute;
    top: -30px;
    right: 0;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    transition: all 0.5s ease;
}

.five-hear-main-swiper .swiper-slide:not(.swiper-slide-active) .five-hear-slide-number-display {
    opacity: 0;
    visibility: hidden;
}

.five-hear-main-swiper .swiper-slide-active .five-hear-slide-number-display {
    opacity: 1;
    visibility: visible;
}

.five-hear-current-number {
    font-size: 133px;
    font-family: 'Noto Serif KR', serif;
    font-weight: 400;
    line-height: 133px;
    word-wrap: break-word;
    background: linear-gradient(to left, #e3e3e34f 0%, rgb(94 108 95 / 95%) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.five-hear-number-char {
    font-size: 120px;
    font-family: 'Noto Serif KR', serif;
    font-weight: 400;
    line-height: 120px;
    word-wrap: break-word;
    background: linear-gradient(to left, rgb(94 108 95 / 26%) 0%, rgb(94 108 95 / 95%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ?��?지 ?�역 */

.five-hear-slide-image {
    width: 100%;
    max-width: 380px;
    height: 348px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.five-hear-main-swiper .swiper-slide:not(.swiper-slide-active) .five-hear-slide-image {
    filter: blur(5px);
    opacity: 0.5;
}

.five-hear-main-swiper .swiper-slide-active .five-hear-slide-image {
    filter: blur(0);
    opacity: 1;
}

.five-hear-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}


/* ?�스???�보 */

.five-hear-slide-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.5s ease;
}

.five-hear-main-swiper .swiper-slide:not(.swiper-slide-active) .five-hear-slide-info {
    opacity: 0;
    visibility: hidden;
}

.five-hear-main-swiper .swiper-slide-active .five-hear-slide-info {
    opacity: 1;
    visibility: visible;
}

.five-hear-slide-title {
    color: #111111;
    font-size: 54px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 54px;
    margin: 0;
}

.five-hear-slide-sub {
    color: #555555;
    font-size: 24px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

.five-hear-slide-detail {
    color: #767676;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 20px;
    margin: 0;
    margin-top: 20px;
}


/* ?�세??보기 버튼 */

.five-hear-detail-wrapper {
    text-align: center;
    margin-top: 80px;
}

.five-hear-detail-btn {
    display: inline-block;
    width: 310px;
    padding: 16px 30px;
    background: #ffffff;
    border: 1px solid #E5E5EC;
    border-radius: 12px;
    color: #111111;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    line-height: 25.60px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.five-hear-detail-btn:hover {
    background: #005E32;
    border-color: #005E32;
    color: white;
    box-shadow: 0px 4px 30px rgba(0, 94, 50, 0.15);
}


/* 반응??- ?�블�?*/

@media (max-width: 1200px) {
    .five-hear-slider-wrapper {
        padding: 0 80px;
    }
    .five-hear-main-swiper {
        padding: 140px 0 100px;
    }
    .five-hear-slide-image {
        max-width: 320px;
        height: 300px;
    }
    .five-hear-slide-number-display {
        top: -120px;
    }
    .five-hear-current-number {
        font-size: 100px;
        line-height: 100px;
    }
    .five-hear-number-char {
        font-size: 90px;
        line-height: 90px;
    }
    .five-hear-slide-title {
        font-size: 48px;
        line-height: 48px;
    }
    .five-hear-slide-sub {
        font-size: 22px;
        line-height: 22px;
    }
    .five-hear-slide-detail {
        font-size: 18px;
        line-height: 18px;
    }
}


/* 반응??- 모바??*/

@media (max-width: 1024px) {
    .five-hear-system-section {
        padding: 80px 20px;
    }
    .five-hear-header {
        margin-bottom: 60px;
    }
    .five-hear-subtitle {
        font-size: 16px;
        font-weight: 600;
    }
    .five-hear-title-number,
    .five-hear-title-text {
        font-size: 24px;
    }
    .five-hear-description {
        font-size: 16px;
    }
    .five-hear-slider-wrapper {
        padding: 0 40px;
        margin-bottom: 40px;
    }
    .five-hear-nav-button {
        width: 56px;
        height: 56px;
    }
    .five-hear-nav-button svg {
        width: 12px;
        height: 24px;
    }
    .five-hear-nav-prev {
        left: 0px;
    }
    .five-hear-nav-next {
        right: 0px;
    }
    .five-hear-main-swiper {
        padding: 80px 0 80px;
    }
    .five-hear-main-swiper .swiper-slide-prev,
    .five-hear-main-swiper .swiper-slide-next {
        display: block;
        opacity: 0.3;
        transform: scale(0.7) !important;
    }
    .five-hear-slide-item {
        gap: 32px;
    }
    .five-hear-slide-image {
        max-width: 300px;
        height: 280px;
    }
    .five-hear-slide-number-display {
        top: -90px;
        right: -10px;
    }
    .five-hear-current-number {
        font-size: 80px;
        line-height: 80px;
    }
    .five-hear-number-char {
        font-size: 72px;
        line-height: 72px;
    }
    .five-hear-slide-title {
        font-size: 36px;
        line-height: 36px;
    }
    .five-hear-slide-sub {
        font-size: 20px;
        line-height: 20px;
    }
    .five-hear-slide-detail {
        font-size: 16px;
        line-height: 16px;
        margin-top: 16px;
    }
    .five-hear-detail-wrapper {
        margin-top: 60px;
    }
    .five-hear-detail-btn {
        width: 100%;
        max-width: 310px;
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .five-hear-slider-wrapper {
        padding: 0 50px;
    }
    .five-hear-nav-button {
        width: 48px;
        height: 48px;
    }
    .five-hear-main-swiper {
        padding: 80px 0 60px;
    }
    .five-hear-slide-image {
        max-width: 240px;
        height: 220px;
    }
    .five-hear-slide-imag img {
        object-fit:contain;
    }
    .five-hear-slide-number-display {
        top: -34px;
        right: -35px;
    }
    .five-hear-current-number {}
    .five-hear-number-char {}
    .five-hear-slide-title {
        line-height: 32px;
    }
    .five-hear-slide-sub {
        font-size: 18px;
        line-height: 18px;
    }
}


/* ===========================================
   ?�료�??�개 ?�션
   =========================================== */

.medical-team-section {
    position: relative;
    width: 100%;
    min-height: 908px;
    background-color: #F3F3F6;
    overflow: hidden;
    padding: 150px 0 20px;
}


/* 배경 ?��?지 */

.team-bg-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}


/* 그라?�이???�버?�이 */

.team-gradient-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 634px;
    background: linear-gradient(180deg, #FDFDFD 52%, rgba(238, 238, 242, 0) 100%);
    z-index: 2;
}


/* 컨텐�?컨테?�너 */

.team-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 3;
}


/* ?�더 */

.team-header {
    margin-bottom: 56px;
}

.team-subtitle {
    color: #18522F;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6em;
    margin-bottom: 12px;
}

.team-title {
    color: #111111;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.6em;
    margin: 0;
}


/* 메인 컨텐�??�역 */

.team-content {
    display: flex;
    gap: 90px;
    align-items: flex-start;
}


/* ===========================================
   좌측: ?�료�???리스??   =========================================== */

.team-tab-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 225px;
}

.team-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-tab:hover {
    background: #F1F1F5;
}

.team-tab.active {
    background: #4B6558;
}

.team-tab.active .tab-name {
    color: white;
    font-weight: 500;
}

.tab-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #F1F1F5;
    border: 1px solid #E5E5EC;
    flex-shrink: 0;
}

.tab-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-name {
    color: #999999;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
    transition: all 0.3s ease;
}


/* ?�세?�보�?버튼 */

.team-detail-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: #BEBEBE;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    color: white;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.6em;
    text-decoration: none;
    transition: background 0.3s ease;
}

.team-detail-btn:hover {
    background: #9C9C9C;
}


/* ===========================================
   ?�측: ?�료�??�세 ?�보
   =========================================== */

.team-info-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    gap: 0;
}


/* ?�보 카드 */

.team-info-card {
    width: 810px;
    min-height: 335px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    padding: 57px 53px;
    position: relative;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.team-info-card.fade-out {
    opacity: 0;
}


/* 카드 ?�이?�아??*/

.team-info-card.fade-out {
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ?�사 ?�더 */

.doctor-header {
    margin-bottom: 28px;
}

.doctor-name-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 12px;
}

.doctor-name {
    color: #111111;
    font-size: 32px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1em;
    margin: 0;
}

.doctor-position {
    color: #111111;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1em;
}

.doctor-education {
    color: #555555;
    font-size: 22px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
    margin: 0;
}


/* 경력 ?�션 */

.doctor-career-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 400px;
    /* ?�체 경력 ?�션 최�? ?�비 ?�한 */
}

.career-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: #E8E8E8;
    border-radius: 4px;
    width: 260px;
    /* Figma?� ?�일?�게 고정 ?�비 */
}

.career-title {
    color: #111111;
    font-size: 17px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1.6em;
}

.career-more {
    color: #111111;
    font-size: 17px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1.6em;
    text-decoration: none;
}


/* 경력 리스??*/

.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 6px;
    /* 경력 ?�더?� ?�간???�여?�기 */
}

.career-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555555;
    font-size: 17px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 1.6em;
    position: relative;
    padding-left: 16px;
    max-width: 100%;
    /* 부�??�비�??��? ?�도�?*/
}

.career-item::before {
    content: '';
    position: absolute;
    left: 0;
    width: 4px;
    height: 4px;
    background: #878787;
    border-radius: 50%;
}


/* ?�료�??�신 ?��?지 */

.doctor-image-wrapper {
    position: absolute;
    right: -80px;
    top: -22px;
    max-width: 500px;
    width: 100%;
    height: 780px;
    z-index: 2;
    overflow: hidden;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.doctor-image.fade-out {
    opacity: 0;
    transform: translateX(50px);
}

.doctor-image.slide-in {
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 0.8s ease forwards;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ===========================================
   반응???�자??   =========================================== */

@media (max-width: 1600px) {
    .team-container {
        padding: 0 80px;
    }
    .doctor-image-wrapper {
        right: 0px;
        width: 450px;
        height: 700px;
    }
}

@media (max-width: 1200px) {
    .team-content {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .medical-team-section {
        padding: 80px 0 60px;
    }
    .team-container {
        padding: 0 20px;
    }
    .team-header {
        margin-bottom: 32px;
        text-align: center;
    }
    .team-subtitle {
        font-size: 16px;
        font-weight: 600;
    }
    .team-title {
        font-size: 24px;
    }
    .team-content {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        align-items: flex-start;
        position: relative;
    }
    .team-tab-list {
        flex-direction: column;
        width: fit-content;
        flex-shrink: 0;
        order: 1;
        min-width: auto;
    }
    .team-tab {
        width: 100%;
        min-width: 162px;
    }
    .tab-avatar {
        width: 36px;
        height: 36px;
    }
    .tab-name {
        font-size: 16px;
    }
    /* team-content??직접 ?�식????doctor-image-wrapper ?��???*/
    .team-content>.doctor-image-wrapper {
        /* width: calc(100% - 183px); */
        height: 378px;
        position: absolute;
        flex-shrink: 0;
        order: 2;
        margin: 0;
        overflow: visible;
        right: -114px;
        top: 0;
        z-index: -1;
    }
    .doctor-career-section {
        max-width: 100%;
    }
    /* 모바?�에???��?지가 ?�리지 ?�도�?contain ?�용 */
    .team-content>.doctor-image-wrapper .doctor-image {
        object-fit: contain;
        object-position: center bottom;
    }
    .team-info-wrapper {
        width: 100%;
        order: 3;
        flex: 100%;
    }
    .team-info-card {
        padding: 32px 24px;
    }
    .doctor-name {
        font-size: 26px;
    }
    .doctor-position {
        font-size: 18px;
    }
    .doctor-education {
        font-size: 18px;
    }
    .career-title,
    .career-more,
    .career-item {
        font-size: 15px;
    }
    .team-bg-image {
        height: 350px;
    }
    .career-header {
        width: 100%;
    }
}


/* ===========================================
   진료과목 ?�션
   =========================================== */

.clinic-specialties-section {
    position: relative;
    width: 100%;
    min-height: 1306px;
    background-color: #414B32;
    overflow: hidden;
    padding: 180px 0;
}


/* 배경 ?��?지 */

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

.specialties-background img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 750px;
    object-fit: cover;
    /* ???��?지�??�둡�?처리 */
    filter: brightness(0.6) saturate(0.8);
    opacity: 0.5;
}

.specialties-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 750px;
    /* ?�쪽?� ?�전 불투�?(배경??, ?�래�?갈수�??�명 */
    background: linear-gradient(180deg, #414B32 0%, rgba(65, 75, 50, 0.7) 30%, rgba(65, 75, 50, 0) 64%);
    pointer-events: none;
    z-index: 2;
}


/* 콘텐�?컨테?�너 */

.specialties-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}


/* ?�더 */

.specialties-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.specialties-subtitle {
    color: white;
    font-size: 20px;
    font-family: 'MaruBuri', 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
    text-align: center;
    margin: 0;
}

.specialties-title {
    color: white;
    font-size: 36px;
    font-family: 'MaruBuri', 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
    text-align: center;
    margin: 0;
}


/* 카드 컨테?�너 */

.specialties-cards {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
}


/* 개별 카드 */

.specialty-card {
    width: 585px;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .specialty-card:hover {
        transform: translateY(-20px);
    }
}

.specialty-card-ear {
    background: linear-gradient(182deg, #CFD0CD 0%, #CFD0CD 100%);
}

.specialty-card-brain {
    background: linear-gradient(182deg, #DFE2E1 0%, #DFE2E1 100%);
}


/* 카드 콘텐�?*/

.specialty-card-content {
    padding: 79px 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    z-index: 2;
    position: relative;
}


/* ?�이�??�역 */

.specialty-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
}

.specialty-icon {
    width: 22px;
    height: 22px;
}

.specialty-icon-large {
    width: 30px;
    height: 43px;
}


/* ?�스???�역 */

.specialty-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.specialty-name {
    color: #506038;
    font-size: 38px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1.6em;
    text-align: center;
    margin: 0;
}


/* 질환 목록 */

.specialty-conditions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.conditions-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.conditions-row span {
    color: #767676;
    font-size: 24px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 1.6em;
}


/* ?��?지 ?�역 */

.specialty-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 401px;
    height: 401px;
    z-index: 1;
}

.specialty-image {
    width: 400px;
    height: 400px;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ???�리???��?지 그라?�이???�과 */

.specialty-card-brain .specialty-image img {
    width: 334px;
    height: 334px;
    position: absolute;
    bottom: 33px;
    left: 50%;
    transform: translateX(-50%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0) 100%);
}


/* ===========================================
   반응???�자??   =========================================== */


/* ?�블�?*/

@media (max-width: 1280px) {
    .specialties-container {
        max-width: 100%;
        padding: 0 40px;
    }
    .specialties-cards {
        gap: 20px;
    }
    .specialty-card {
        width: calc(50% - 10px);
        min-width: 400px;
    }
}

@media (max-width: 1024px) {
    .clinic-specialties-section {
        min-height: auto;
        padding: 120px 0;
    }
    .specialties-header {
        max-width: 100%;
    }
    .specialties-title {
        font-size: 32px;
    }
    .specialty-card {
        width: 100%;
        max-width: 450px;
        min-width: auto;
        height: auto;
        padding-bottom: 150px;
    }
    .specialty-name {
        font-size: 32px;
    }
    .conditions-row span {
        font-size: 20px;
    }
    .specialty-image {
        width: 320px;
        height: 320px;
    }
    .specialty-card-brain .specialty-image img {
        width: 280px;
        height: 280px;
    }
}


/* 모바??*/

@media (max-width: 1024px) {
    .clinic-specialties-section {
        padding: 80px 0;
    }
    .specialties-container {
        padding: 0 20px;
        gap: 40px;
    }
    .specialties-subtitle {
        font-size: 18px;
        font-weight: 600;
    }
    .specialties-title {
        font-size: 28px;
    }
    .specialties-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .specialty-card-content {
        padding: 60px 30px 0;
        align-items: flex-start;
    }
    .specialty-text {
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }
    .specialty-conditions {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        flex-wrap: wrap;
    }
    .specialty-name {
        font-size: 28px;
    }
    .conditions-row {
        gap: 15px;
    }
    .conditions-row span {
        font-size: 18px;
    }
    .specialty-image {
        width: 280px;
        height: 280px;
    }
    .specialty-image {
        width: auto;
        height: 160px;
        right: 0;
        left: auto;
        transform: unset;
    }
    .specialty-card-brain .specialty-image img {
        width: 164px;
        height: 164px;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
    }
}

@media (max-width: 480px) {
    .specialties-title {
        font-size: 24px;
    }
    .specialty-card {}
    .specialty-card-content {
        padding: 40px 20px 0;
    }
    .specialty-name {
        font-size: 24px;
    }
    .conditions-row span {
        font-size: 16px;
    }
}


/* ===========================================
   치료방법 ?�션
   =========================================== */

.treatment-method-section {
    padding: 160px 0;
    background-color: #F8F8F8;
}

.treatment-method-container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 180px;
}


/* ?�더 */

.treatment-method-header {
    text-align: center;
    margin-bottom: 60px;
}

.treatment-method-subtitle {
    font-size: 20px;
    font-family: 'MaruBuri', 'Pretendard', sans-serif;
    font-weight: 400;
    color: #18522F;
    line-height: 1.6em;
    margin: 0 0 12px 0;
}

.treatment-method-title {
    font-size: 36px;
    font-family: 'MaruBuri', 'Pretendard', sans-serif;
    font-weight: 400;
    color: #111111;
    line-height: 1.6em;
    margin: 0;
}


/* 카드 그리??*/

.treatment-method-cards {
    display: flex;
    gap: 16px;
    height: 709px;
}


/* 개별 카드 - 기본 ?�태 */

.treatment-method-card {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    transition: flex 0.5s ease;
    cursor: pointer;
}


/* �?번째 카드�?기본?�로 ?�쳐�?*/

.treatment-method-cards:not(:hover) .treatment-method-card:nth-child(1) {
    flex: 2;
}


/* 카드 ?�버 ??- ?�당 카드�??��? */

.treatment-method-card:hover {
    flex: 2 !important;
}


/* 배경 ?��?지 */

.treatment-method-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.treatment-method-card:hover .treatment-method-card-bg {
    transform: scale(1.05);
}


/* ?�쳐�?카드?�만 ?�두???�색 ?�체 ?�버?�이 ?�용 */

.treatment-method-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(128deg, rgba(45, 60, 23, 0.85) 0%, rgba(9, 13, 4, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}


/* �?번째 카드가 기본?�로 ?�쳐???�을 ???�버?�이 보임 */

.treatment-method-cards:not(:hover) .treatment-method-card:nth-child(1) .treatment-method-card-bg::after {
    opacity: 0.9;
}


/* ?�버??카드�??�버?�이 보임 */

.treatment-method-card:hover .treatment-method-card-bg::after {
    opacity: 0.9;
}


/* ?�버?�이 그라?�이??(?�단) - 모든 카드 */

.treatment-method-overlay {
    position: absolute;
    width: 100%;
    height: 273px;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}


/* Best 배�? 컨테?�너 */

.treatment-method-badge {
    display: inline-block;
    width: 74px;
    height: 74px;
    margin-bottom: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}


/* best ?�래?��? ?�는 카드?�서�?배�? ?�시 - 기본 ?��?지 */

.treatment-method-card.best .treatment-method-badge {
    opacity: 1;
    background-image: url('../images/best-badge.png');
}


/* �?번째 카드??기본?�으�??�쳐???�으므�??�버 ?��?지 */

.treatment-method-cards:not(:hover) .treatment-method-card.best:nth-child(1) .treatment-method-badge {
    background-image: url('../images/best-badge-hover.png');
}


/* best ?�래?��? ?�는 카드 ?�버 ???�버 ?��?지 */

.treatment-method-card.best:hover .treatment-method-badge {
    background-image: url('../images/best-badge-hover.png');
}


/* 콘텐�??�퍼 - 기본 ?�치???�단 */

.treatment-method-content {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s ease;
    gap: 8px;
}


/* �?번째 카드 콘텐�?- 기본 ?�태?�서 중앙 (그룹???�버 ?�을 ?? */

.treatment-method-cards:not(:hover) .treatment-method-card:nth-child(1) .treatment-method-content {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
}


/* 카드 ?�버 ??- 중앙?�로 ?�동 */

.treatment-method-card:hover .treatment-method-content {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
}


/* 카드 ?�목 */

.treatment-method-card-title {
    font-size: 32px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    color: #fff;
    line-height: 1.6em;
    margin: 0;
    padding: 0;
}


/* 카드 ?�명 - ??�� 보임 */

.treatment-method-card-desc {
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    color: #fff;
    line-height: 1.6em;
    margin: 0;
    padding: 0;
}


/* ?�세??보기 버튼 - 기본 ?��? */

.treatment-method-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background-color: transparent;
    border: 1px solid rgba(177, 177, 177, 0.5);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    line-height: 1.6em;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 46px;
    box-shadow: 0px 4px 30px rgba(23, 105, 86, 0.08);
    opacity: 0;
    transform: translateY(10px);
}


/* �?번째 카드 버튼 - 기본 ?�태?�서 보임 (그룹???�버 ?�을 ?? */

.treatment-method-cards:not(:hover) .treatment-method-card:nth-child(1) .treatment-method-button {
    opacity: 1;
    transform: translateY(0);
}


/* 카드 ?�버 ??버튼 ?�시 */

.treatment-method-card:hover .treatment-method-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.treatment-method-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}


/* 반응??- ?�블�?*/

@media (max-width: 1400px) {
    .treatment-method-container {
        padding: 0 80px;
    }
}

@media (max-width: 1024px) {
    .treatment-method-container {
        padding: 0 40px;
    }
}


/* 반응??- 모바??*/

@media (max-width: 1024px) {
    .treatment-method-section {
        padding: 80px 0;
    }
    .treatment-method-container {
        padding: 0 20px;
    }
    .treatment-method-header {
        margin-bottom: 40px;
    }
    .treatment-method-subtitle {
        font-size: 16px;
        font-weight: 600;
    }
    .treatment-method-title {
        font-size: 24px;
    }
    .treatment-method-cards {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }
    .treatment-method-card {
        height: 200px;
        flex: none !important;
    }
    .treatment-method-card:hover {
        flex: none !important;
    }
    /* 모바?�에?�는 모든 카드 ?�버?�이 ?�시 */
    .treatment-method-card-bg::after,
    .treatment-method-cards:not(:hover) .treatment-method-card:nth-child(1) .treatment-method-card-bg::after {
        opacity: .5;
        background: #000;
    }
    .treatment-method-card-bg {}
    .treatment-method-overlay {
        display: none;
    }
    .treatment-method-card.best .treatment-method-card-bg::after {
        background: linear-gradient(151deg, #2D3C17 13.77%, #090D04 100%) !important;
        opacity: .8 !important;
    }
    /* 모바?�에?�는 모든 카드 중앙 ?�렬 */
    .treatment-method-content {
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%) !important;
    }
    .treatment-method-cards:not(:hover) .treatment-method-card:nth-child(1) .treatment-method-content {
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
    }
    /* 모바?�에?�는 모든 버튼 ?�시 */
    .treatment-method-button {
        opacity: 1 !important;
        transform: translateY(0) !important;
        display: none !important;
    }
    .treatment-method-card-title {
        font-size: 28px;
    }
    .treatment-method-card-desc {
        font-size: 18px;
    }
    .treatment-method-button {
        font-size: 15px;
        padding: 14px 24px;
        margin-top: 30px;
    }
    .treatment-method-content {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .treatment-method-badge {
        position: absolute;
        right: 15px;
        top: 15px;
        background-image: url(../images/best-badge-hover.png) !important;
    }
}


/* ?�자 ?�기 ?�션 CSS */


/* 초기??*/

.patient-reviews-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ?�션 컨테?�너 */

.patient-reviews-section {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0px;
}


/* 배경 ?��?지 */

.patient-reviews-section .reviews-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.patient-reviews-section .reviews-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* 콘텐�?컨테?�너 */

.patient-reviews-section .reviews-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1426px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}


/* ?�더 */

.patient-reviews-section .reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.patient-reviews-section .reviews-subtitle {
    color: #8ECEA6;
    font-size: 20px;
    font-family: 'MaruBuri', 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1.6em;
}

.patient-reviews-section .reviews-title {
    color: #fff;
    font-size: 36px;
    font-family: 'MaruBuri', 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
}


/* ?�라?�더 ?�퍼 */

.patient-reviews-section .reviews-slider-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 41px;
    justify-content: center;
}


/* ?�비게이??버튼 */

.patient-reviews-section .reviews-nav-btn {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.patient-reviews-section .reviews-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.patient-reviews-section .reviews-nav-btn svg {
    width: 17px;
    height: 31px;
}


/* Swiper 컨테?�너 */

.patient-reviews-section .reviews-swiper {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}


/* 리뷰 카드 */

.patient-reviews-section .review-card {
    background: #F8F8F8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.patient-reviews-section .review-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.patient-reviews-section .review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patient-reviews-section .review-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.patient-reviews-section .review-text-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.patient-reviews-section .review-quote {
    color: #111;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1.4em;
}

.patient-reviews-section .review-description {
    color: #555;
    font-size: 17px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 1.4em;
    min-height: 3em;
}

.patient-reviews-section .review-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.patient-reviews-section .patient-name {
    color: #111;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1em;
}

.patient-reviews-section .divider {
    width: 1px;
    height: 16px;
    background: #7D7D7D;
}

.patient-reviews-section .patient-condition {
    color: #555;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    line-height: 1em;
}


/* ?�로그레??�?(Bullet ?��??? */

.patient-reviews-section .reviews-progress {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 6px;
    display: flex;
    align-items: center;
}

.patient-reviews-section .progress-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #979797;
    border-radius: 3px;
}

.patient-reviews-section .progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 6px;
    width: 300px;
    background: #fff;
    border-radius: 3px;
    transition: left 0.6s ease;
}


/* ?�세?�보�?버튼 */

.patient-reviews-section .reviews-button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.patient-reviews-section .reviews-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 477px;
    width: 100%;
    padding: 30px 80px;
    border: 1px solid #B7B7B7;
    border-radius: 12px;
    background: transparent;
    color: #fff;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.6em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 30px rgba(23, 105, 86, 0.08);
}

.patient-reviews-section .reviews-detail-btn:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}


/* 반응??- ?�블�?*/

@media (max-width: 1024px) {
    .patient-reviews-section {
        min-height: auto;
        padding: 80px 15px;
    }
    .patient-reviews-section .reviews-container {
        gap: 60px;
    }
    .patient-reviews-section .reviews-title {
        font-size: 32px;
    }
    .patient-reviews-section .reviews-slider-wrapper {
        gap: 20px;
    }
    .patient-reviews-section .reviews-nav-btn {
        width: 56px;
        height: 56px;
    }
    .patient-reviews-section .progress-bar {
        width: 200px;
    }
}


/* 반응??- 모바??*/

@media (max-width: 1024px) {
    .patient-reviews-section {}
    .patient-reviews-section .reviews-container {
        gap: 40px;
    }
    .patient-reviews-section .reviews-subtitle {
        font-size: 16px;
        font-weight: 600;
    }
    .patient-reviews-section .reviews-title {
        font-size: 24px;
    }
    .patient-reviews-section .reviews-slider-wrapper {
        gap: 16px;
    }
    .patient-reviews-section .reviews-nav-btn {
        display: none !important;
        width: 48px;
        height: 48px;
    }
    .patient-reviews-section .reviews-nav-btn svg {
        width: 14px;
        height: 26px;
    }
    .patient-reviews-section .review-quote {
        font-size: 18px;
    }
    .patient-reviews-section .review-description {
        font-size: 15px;
    }
    .patient-reviews-section .reviews-detail-btn {
        padding: 24px 60px;
        font-size: 18px;
    }
    .patient-reviews-section .progress-bar {
        width: 120px;
    }
}


/* ===========================================
   ?�시??�??�션 ?��???   =========================================== */


/* CSS 초기??*/

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


/* ?�션 ?�체 */

.location-section {
    width: 100%;
    padding: 0px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}


/* 컨테?�너 */

.location-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    position: relative;
}


/* ===========================================
     좌측 ?�식 ?�이콘들
     =========================================== */

.location-decorations {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}


/* ===========================================
     카카?�맵 ?�역
     =========================================== */

.location-map-container {
    flex: 0 0 50%;
    width: 50%;
    height: 950px;
    background-color: #AEAEAE;
    overflow: hidden;
}

.kakao-map {
    width: 100%;
    height: 100%;
}


/* 카카?�맵 ?�포?�도???�두�??�상 변�?*/

.kakao-map div[style*="border"] {
    border-color: #ddd !important;
}


/* ===========================================
     ?�측 ?�보 ?�역
     =========================================== */

.location-info {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 56px;
    min-width: 0;
    padding: 80px;
    box-sizing: border-box;
}


/* ?�더 */

.location-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

.location-subtitle {
    text-align: center;
    color: #828D6A;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6em;
}

.location-title {
    color: #111111;
    font-size: 36px;
    font-family: 'MaruBuri', 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
}


/* ===========================================
     ?�보 리스??     =========================================== */

.location-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.detail-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.detail-label {
    width: 70px;
    flex-shrink: 0;
    color: #18522F;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.6em;
}

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-content p {
    color: #555555;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
    margin: 0;
}


/* 주차 ?�보 */

.detail-content p br {
    display: block;
    content: "";
    margin-top: 4px;
}


/* ===========================================
     진료?�간
     =========================================== */

.operating-title {
    color: #111111 !important;
    font-size: 24px !important;
    font-family: 'Pretendard', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1em !important;
    margin-bottom: 12px !important;
}

.operating-hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0.8;
}

.hours-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.day-label {
    color: #555555;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    line-height: 1.6em;
    flex-shrink: 0;
}

.time-text {
    color: #555555;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
}

.time-note {
    color: #555555;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
}

.holiday-notice {
    color: #555555;
    font-size: 18px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 1.6em;
}

.holiday-notice strong {
    font-weight: 700;
}


/* ===========================================
     ?�화?�담
     =========================================== */

.phone-number {
    color: #111111 !important;
    font-size: 40px !important;
    font-family: 'Pretendard', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1em !important;
    margin-bottom: 12px !important;
}

.phone-description {
    color: #555555 !important;
    font-size: 18px !important;
    font-family: 'Pretendard', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.6em !important;
    opacity: 0.8;
}


/* ===========================================
     반응???�자??     =========================================== */


/* ?�블�?*/

@media (max-width: 1440px) {
    .location-container {
        flex-direction: column;
    }
    .location-map-container {
        flex: 0 0 auto;
        width: 100%;
        height: 500px;
    }
    .location-info {
        padding: 40px;
        width: 100%;
    }
    .location-decorations {
        gap: 30px;
    }
    .decoration-icon svg {
        max-width: 80%;
    }
    .location-title {
        font-size: 32px;
    }
}


/* 모바??*/

@media (max-width: 1024px) {
    .location-section {
        padding: 0px 0;
    }
    .location-container {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
    /* ?�식 ?�이�??��? */
    .location-decorations {
        display: none;
    }
    /* �?*/
    .location-map-container {
        width: 100%;
        height: 400px;
    }
    /* ?�보 ?�역 */
    .location-info {
        width: 100%;
        gap: 40px;
        padding: 40px 15px 80px;
    }
    .location-subtitle {
        font-size: 16px;
        font-weight: 600;
    }
    .location-title {
        font-size: 28px;
        line-height: 1.4em;
    }
    .location-details {
        gap: 24px;
    }
    .detail-item {
        flex-direction: column;
        gap: 8px;
    }
    .detail-label {
        width: 100%;
        font-size: 18px;
    }
    .detail-content p {
        font-size: 16px;
    }
    .operating-title {
        font-size: 20px !important;
    }
    .day-label,
    .time-text,
    .holiday-notice {
        font-size: 16px;
    }
    .time-note {
        font-size: 12px;
    }
    .phone-number {
        font-size: 32px !important;
    }
    .phone-description {
        font-size: 16px !important;
    }
    .hours-row {
        flex-direction: column;
        gap: 4px;
    }
}


/* ?��? 모바??*/

@media (max-width: 480px) {
    .location-section {}
    .location-map-container {
        height: 300px;
    }
    .location-title {
        font-size: 24px;
    }
    .phone-number {
        font-size: 28px !important;
    }
}


/* ===========================================
   멤버???�션 ?��???   =========================================== */

.membership-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

.membership-header .section-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.membership-header .section-motto {
    font-size: 16px;
    color: #999;
    margin-bottom: 20px;
    font-style: italic;
}

.membership-header .section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.membership-header .section-description {
    font-size: 20px;
    color: #666;
    margin: 0;
}


/* 멤버??그리??*/

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}


/* 멤버??카드 */

.membership-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    min-height: 280px;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.membership-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.membership-card:hover .card-icon {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.1);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/* 카드 ?�버?�이 (?�릭 ???�세 ?�보) */

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.membership-card.active .card-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.overlay-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}


/* 가�??�역 */

.membership-pricing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.pricing-info {
    text-align: left;
}

.pricing-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.pricing-amount .currency {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.pricing-amount .price {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.pricing-monthly {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 240px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

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

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}


/* 반응???�자??*/

@media screen and (max-width: 1200px) {
    .membership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .pricing-info {
        text-align: center;
    }
    .pricing-stats {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .fw-container {
        word-break: keep-all;
    }
    .membership-section {
        padding: 60px 0;
    }
    .membership-container {
        padding: 0 20px;
    }
    .membership-header {
        margin-bottom: 50px;
    }
    .membership-header .section-title {
        font-size: 32px;
    }
    .membership-header .section-description {
        font-size: 16px;
    }
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    .membership-card {
        padding: 30px;
        min-height: 240px;
    }
    .card-title {
        font-size: 20px;
    }
    .card-description {
        font-size: 14px;
    }
    .membership-pricing {
        padding: 40px 30px;
    }
    .pricing-amount .price {
        font-size: 42px;
    }
    .pricing-stats {
        flex-direction: column;
        gap: 24px;
    }
    .pricing-actions {
        width: 100%;
    }
}


}