.hear-filler-page-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('/home_assets/img/main/jab_center/hear_filler_background.png');
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hear-filler-page-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hear-filler-page-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hear-filler-page-text {
    margin-bottom: 80px;
    text-align: center;
}

.hear-filler-page-main-title {
    font-family: 'Noto Serif KR';
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
    margin-bottom: 100px;
}

.hear-filler-page-description {
    line-height: 1.8;
}

.description-light {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 200;
    color: #333;
}

.description-regular {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    color: #333;
}

.hear-filler-page-buttons {
    width: 100%;
    margin-left: -120px;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.button-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.button-label {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-align: left;
    margin-left: 10px;
}

.hear-filler-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #83A6E8;
    border: none;
    border-radius: 14px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 169px;
    height: 87px;
    box-sizing: border-box;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.4);
}

.hear-filler-btn:hover {
    background-color: #6b92e0;
    transform: translateY(-2px);
}

.hear-filler-btn img {
    width: 20px;
    height: 20px;
}

.hear-filler-btn span {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.button-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.main-text {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.sub-text {
    font-family: 'Pretendard';
    font-size: 14px !important;
    font-weight: 300;
    color: #ffffff;
}

.fade-in-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/*=== 헤어필러 시술 부위 영역 ===*/
.hear-filler-area-section {
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #EEF3F9 23%, #DEECF7 38%, #D5DFEF 56%, #EBF0F7 83%, #FFFFFF 100%);
}

.hear-filler-area-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.hear-filler-area-title {
    font-family: 'Noto Serif KR', serif;
    font-weight: 400;
    font-size: 32px;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

.hear-filler-area-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.hear-filler-area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hear-filler-area-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hear-filler-area-image {
    width: 300px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.hear-filler-area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hear-filler-area-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 30px;
    border-radius: 25px;
    text-align: center;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    min-width: 200px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #fff;
}

.hear-filler-area-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: #000000;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hear-filler-area-notice {
    font-family: 'Pretendard', sans-serif;
    font-weight: 100;
    font-size: 15px;
    color: #000000;
    text-align: right;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .hear-filler-area-gallery {
        gap: 30px;
    }

    .hear-filler-area-image {
        width: 200px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hear-filler-area-section {
        padding: 80px 0;
    }

    .hear-filler-area-container {
        padding: 0 20px;
    }

    .hear-filler-area-header {
        margin-bottom: 60px;
    }

    .hear-filler-area-title {
        font-size: 24px;
    }

    .hear-filler-area-gallery {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .hear-filler-area-image {
        width: 250px;
        height: 350px;
    }

    .hear-filler-area-description {
        font-size: 18px;
    }

    .hear-filler-area-notice {
        font-size: 13px;
        text-align: center;
    }
}

/*=== 비포앤애프터 영역 ===*/
.hear-before-after-section {
    width: 100%;
    background: #fff;
    padding: 80px 0;
}

.hear-before-after-container {
    margin: 0 auto;
    padding: 0 20px;
}

.hear-before-after-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hear-before-after-main-title {
    font-family: 'Noto Serif KR', serif;
    font-weight: 400;
    font-size: 32px;
    color: #000;
    margin: 0 0 20px;
    line-height: 1.4;
}

.hear-before-after-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: #000;
}

.hear-before-after-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.hear-before-after-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    transform: translateX(-100px);
}

.hear-before-after-description {
    margin: 0 0 40px;
    max-width: 600px;
}

.description-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 100;
    font-size: 20px;
    color: #000;
    line-height: 1.8;
    margin: 0;
}

.description-text .text-regular {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #000;
}

.hear-before-after-disclaimer {
    font-family: 'Pretendard', sans-serif;
    font-weight: 100;
    font-size: 15px;
    color: #000;
    margin: 0;
    text-align: center;
}

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

    .hear-before-after-main-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hear-before-after-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .description-text {
        font-size: 18px;
    }

    .description-text .text-regular {
        font-size: 18px;
    }

    .hear-before-after-disclaimer {
        font-size: 13px;
    }
}

/*=== 비교 영역===*/
.hear-comparison-section {
    width: 100%;
    padding: 120px 0;
    position: relative;
}

.hear-comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hear-comparison-wrapper {
    display: flex;
    justify-content: center;
    gap: 0;
    align-items: flex-start;
}

.comparison-category {
    display: flex;
    flex-direction: column;
    width: 120px;
    border-radius: 20px 0 0 20px;
}

.comparison-active {
    display: flex;
    flex-direction: column;
    width: 470px;
    background: #ffffff;
    border-radius: 20px;
    margin-right: 10px;
    margin-left: 10px;
    z-index: 2;
    margin-top: -40px;
    position: relative;
}

.comparison-inactive {
    display: flex;
    flex-direction: column;
    width: 380px;
    background: transparent;
    border-radius: 0 20px 20px 0;
    position: relative;
}

.comparison-inactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 80px;
    background: #C1CFE6;
    z-index: 1;
}

.category-item {
    padding: 20px 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item.empty-header {
    min-height: 80px;
    background-color: #C1CFE6;
    border-right: 1px solid #fff;
    position: relative;
}

.empty-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 80px;
    background: #C1CFE6;
    z-index: 1;
    border-left: 1px solid #ffffff;
}

.active-header {
    background: #80A8F2;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #ffffff;
    padding: 40px 40px;
    text-align: center;
    border-radius: 40px 40px 0 0;
    height: 120px;
    display: flex;
    align-items: center;

}

.inactive-header {
    background: #C1CFE6;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
    padding: 25px 40px;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    border-left: 1px solid #fff;
}

.active-content,
.inactive-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: transparent;
}

.active-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    border: 1px solid #80A8F2;
    border-top: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
    position: relative;
}

.active-content::before {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: -12px;
    width: 1px;
    background: #3E668E;
    z-index: 1;
}

.active-content::after {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 2px;
    right: -12px;
    width: 1px;
    background: #3E668E;
    z-index: 1;
}

.active-item:last-child {
    border-bottom: none;
    border-radius: 0 0 18px 18px;
}

.active-item {
    padding: 15px 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #333;
    line-height: 1.6;
    text-align: left;
    display: flex;
    align-items: center;
}

.inactive-item {
    padding: 15px 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: #666;
    line-height: 1.6;
    text-align: left;
    display: flex;
    align-items: center;
    background: transparent;
}

.active-item:last-child,
.inactive-item:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}

.hear-comparison-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
}

.hear-comparison-bubble-1 {
    width: 320px;
    height: 320px;
    top: -70px;
    left: -50px;
    background: linear-gradient(180deg, rgba(131, 172, 232, 0.4) 6%, rgba(255, 255, 255, 0) 91%);
}

.hear-comparison-bubble-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: 320px;
    background: linear-gradient(340deg, rgba(131, 172, 232, 0.4) 6%, rgba(255, 255, 255, 0) 91%);
}

.hear-comparison-bubble-3 {
    width: 150px;
    height: 150px;
    bottom: 150px;
    right: 320px;
    background: linear-gradient(300deg, rgba(131, 172, 232, 0.4) 6%, rgba(255, 255, 255, 0) 91%);
}

@media (max-width: 768px) {
    .hear-comparison-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .comparison-category,
    .comparison-active,
    .comparison-inactive {
        width: 100%;
        border-radius: 20px;
    }

    .active-header,
    .inactive-header {
        font-size: 20px;
        padding: 20px;
    }

    .category-item,
    .active-item,
    .inactive-item {
        font-size: 18px;
        padding: 20px;
    }
}

/*=== 헤어필러 추천 영역 ===*/
.hear-filler-reco-section {
    width: 100%;
    background: #ffffff;
    padding: 120px 0;
}

.hear-filler-reco-container {
    min-width: 1200px;
    margin: 0 18vw;
    padding: 0 40px;
}

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

.hear-filler-reco-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 100;
    font-size: 20px;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.5;
}

.hear-filler-reco-title {
    font-family: 'Dream Orphans', serif;
    font-weight: 400;
    font-size: 64px;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.hear-filler-reco-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.hear-filler-reco-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -40px;
    bottom: -40px;
    width: 1px;
    border-left: 1px dashed #6FA4F4;
    transform: translateX(-50%);
    z-index: 1;
}

.hear-filler-reco-item {
    width: 100%;
    padding: 25px 40px;
    border: 1px solid #D3D3D3;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.6s ease;
    opacity: 1;
    transform: translateY(0);
}

.hear-filler-reco-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #333;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hear-filler-reco-section {
        padding: 80px 0;
    }

    .hear-filler-reco-container {
        padding: 0 20px;
    }

    .hear-filler-reco-header {
        margin-bottom: 60px;
    }

    .hear-filler-reco-subtitle {
        font-size: 18px;
    }

    .hear-filler-reco-title {
        font-size: 48px;
    }

    .hear-filler-reco-item {
        padding: 20px 30px;
    }

    .hear-filler-reco-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hear-filler-reco-title {
        font-size: 36px;
    }

    .hear-filler-reco-item {
        padding: 18px 20px;
    }

    .hear-filler-reco-text {
        font-size: 16px;
    }
}