/**
 * NextBio Website - 초고압살균(HPP) 임가공 서비스 페이지 스타일
 */

.toll-hpp-page {
    width: 100%;
    background: #ffffff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 160px;
    padding: 160px 0;
}

.toll-hpp-page .inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 섹션 01 (프로세스 탭) */
.toll-hpp-page .section-01 {
    width: 100%;
}

.toll-hpp-page .section-header {
    text-align: center;
    margin-bottom: 120px;
}

.toll-hpp-page .toll-processing {
    font-size: 48px;
    font-weight: 800;
    line-height: 60px;
    color: #000000;
    margin: 0 0 48px 0;
    font-family: var(--font-family-suit);
    font-weight: 800;
}

.toll-hpp-page .header-desc {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #000000;
    word-break: keep-all;
    margin: 0;
    font-family: var(--font-family-suit);
    font-weight: 500;
}

.toll-hpp-page .tab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1196px;
    margin: 0 auto;
}

.toll-hpp-page .tab-item {
    background: #ffffff;
    border: 1px solid #dfdfdf;
    border-radius: 16px;
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.toll-hpp-page .tab-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.toll-hpp-page .tab-item img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.toll-hpp-page .tab-item span {
    font-size: 24px;
    font-weight: 700;
    color: #555555;
    margin: 0;
    font-family: "Suit-Bold", sans-serif;
    text-align: center;
}

.toll-hpp-page .tab-item.active {
    background: var(--main, #8dc63f);
    border: none;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.toll-hpp-page .tab-item.active span {
    color: #ffffff;
}

.toll-hpp-page .tab-item.active img {
    filter: brightness(0) invert(1);
}

/* 섹션 02 (서비스 상세 - 녹색 배경) */
.toll-hpp-page .section-02 {
    background: #f4faec;
    padding: 120px 0;
    width: 100%;
}

.toll-hpp-page .section-02 .inner {
    padding: 0 20px;
}

.toll-hpp-page .flex-row {
    display: flex;
    gap: 122px;
    align-items: flex-start;
}

.toll-hpp-page .detail-img {
    width: 708px;
    height: 530px;
    border-radius: 32px;
    object-fit: cover;
    flex-shrink: 0;
}

.toll-hpp-page .txt-content {
    padding-top: 60px;
    flex: 1;
}

.toll-hpp-page .detail-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: #000000;
    margin: 0 0 60px 0;
    font-family: "Suit-Bold", sans-serif;
}

.toll-hpp-page .desc-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toll-hpp-page .desc-item {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #000000;
    margin: 0;
    font-family: var(--font-family-suit);
    font-weight: 600;
    word-break: keep-all;
}

.toll-hpp-page .point-text {
    color: var(--point-01, #f5821f);
}

/* 섹션 03 (설비) */
.toll-hpp-page .section-03 {
    width: 100%;
}

.toll-hpp-page .side-title {
    border-left: 2px solid var(--main, #8dc63f);
    padding-left: 24px;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 48px 0;
    font-family: "Suit-Bold", sans-serif;
}

.toll-hpp-page .equip-grid {
    display: flex;
    gap: 48px;
}

.toll-hpp-page .equip-card {
    width: 448px;
    border-radius: 16px;
    border: 1px solid #dfdfdf;
    overflow: hidden;
    background: #ffffff;
}

.toll-hpp-page .equip-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.toll-hpp-page .equip-info {
    padding: 24px;
    border-top: 1px solid #dfdfdf;
    background: #ffffff;
}

.toll-hpp-page .equip-name {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 12px 0;
    font-family: var(--font-family-suit);
    font-weight: 600;
}

.toll-hpp-page .spec-row {
    display: flex;
    gap: 24px;
    align-items: center;
}

.toll-hpp-page .spec-label {
    color: var(--main, #8dc63f);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-family-suit);
    font-weight: 600;
}

.toll-hpp-page .spec-val {
    color: #555555;
    font-size: 18px;
    font-weight: 400;
    font-family: "Suit-Regular", sans-serif;
}

/* 섹션 04 (문의) */
.toll-hpp-page .section-04 {
    width: 100%;
    text-align: center;
}

.toll-hpp-page .section-04.last {
    padding-bottom: 0;
}

.toll-hpp-page .v-line {
    width: 1px;
    height: 120px;
    background: #dfdfdf;
    margin: 0 auto 60px;
}

.toll-hpp-page .contact-box {
    border: 1px solid #dfdfdf;
    border-radius: 16px;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.toll-hpp-page .inquiry-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #000000;
    margin: 0;
    font-family: "Suit-Bold", sans-serif;
    word-break: keep-all;
}

.toll-hpp-page .contact-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.toll-hpp-page .method-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.toll-hpp-page .tag {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    font-family: var(--font-family-suit);
    font-weight: 600;
}

.toll-hpp-page .value {
    font-size: 20px;
    font-weight: 400;
    color: #555555;
    font-family: "Suit-Regular", sans-serif;
}

.toll-hpp-page .h-sep {
    width: 1px;
    height: 18px;
    background: #555555;
    opacity: 0.5;
}

/* 반응형 */
@media (max-width: 1440px) {
    .toll-hpp-page .inner {
        padding: 0 120px;
    }
    
    .toll-hpp-page .tab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .toll-hpp-page {
        padding: 120px 0;
        gap: 120px;
    }
    
    .toll-hpp-page .flex-row {
        flex-direction: column;
        gap: 60px;
    }
    
    .toll-hpp-page .detail-img {
        width: 100%;
        height: auto;
        max-height: 400px;
    }
    
    .toll-hpp-page .txt-content {
        padding-top: 0;
    }
}

@media (max-width: 1024px) {
    .toll-hpp-page {
        padding: 100px 0;
        gap: 100px;
    }
    
    .toll-hpp-page .inner {
        padding: 0 40px;
    }
    
    .toll-hpp-page .tab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .toll-hpp-page .equip-grid {
        flex-direction: column;
        gap: 32px;
    }
    
    .toll-hpp-page .equip-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .toll-hpp-page {
        padding: 60px 0;
        gap: 80px;
    }
    
    .toll-hpp-page .inner {
        padding: 0 20px;
    }
    
    .toll-hpp-page .section-header {
        margin-bottom: 60px;
    }
    
    .toll-hpp-page .toll-processing {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 32px;
    }
    
    .toll-hpp-page .header-desc {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .toll-hpp-page .tab-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .toll-hpp-page .tab-item {
        padding: 40px 0;
        gap: 20px;
    }
    
    .toll-hpp-page .tab-item img {
        height: 80px;
    }
    
    .toll-hpp-page .tab-item span {
        font-size: 20px;
    }
    
    .toll-hpp-page .section-02 {
        padding: 60px 0;
    }
    
    .toll-hpp-page .detail-title {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 40px;
    }
    
    .toll-hpp-page .desc-item {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .toll-hpp-page .side-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .toll-hpp-page .v-line {
        height: 60px;
        margin-bottom: 40px;
    }
    
    .toll-hpp-page .contact-box {
        padding: 60px 20px;
        gap: 40px;
    }
    
    .toll-hpp-page .inquiry-text {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .toll-hpp-page .contact-methods {
        flex-direction: column;
        gap: 20px;
    }
    
    .toll-hpp-page .h-sep {
        width: 18px;
        height: 1px;
    }
    
    .toll-hpp-page .method-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .toll-hpp-page .tag,
    .toll-hpp-page .value {
        font-size: 18px;
    }
}
