/* --- Reset & Base Styles --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Noto Sans KR', sans-serif; 
    letter-spacing: -0.03em; 
}
body { 
    color: #333; 
    background-color: #fff; 
    overflow-x: hidden; 
    line-height: 1.6; 
}
img { 
    max-width: 100%; 
    display: block; 
    margin: 0 auto; 
}
ul, li { 
    list-style: none; 
}
a { 
    text-decoration: none; 
    color: inherit; 
}

/* --- Layout Common --- */
.inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    width: 100%; 
}
.section-title { 
    text-align: center; 
    font-size: 2.2rem; 
    font-weight: 700; 
    color: #111; 
    margin-bottom: 15px; 
}
.section-subtitle { 
    text-align: center; 
    font-size: 1rem; 
    color: #666; 
    margin-bottom: 40px; 
    text-transform: uppercase; 
    font-weight: 500; 
}
.sub-tag { 
    display: block; 
    text-align: center; 
    color: #8a2be2; 
    font-weight: 600; 
    font-size: 0.9rem; 
    margin-bottom: 10px; 
}

/* --- Header / Hero --- */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/img_01.jpg') no-repeat center/cover; 
    padding: 270px 0; 
    text-align: center; 
    color: #fff; 
}
.hero-tag { 
    background: #8a2be2; 
    padding: 4px 15px; 
    border-radius: 20px; 
    font-size: 0.85rem; 
    display: inline-block; 
    margin-bottom: 15px; 
}
.hero h1 { 
    font-size: 2.8rem; 
    font-weight: 700; 
    margin-bottom: 15px; 
}
.hero p { 
    font-size: 1.1rem; 
    opacity: 0.9; 
}

/* --- Top Banner --- */
.top-banner { 
    background: #f3effa; 
    padding: 20px 0; 
    border-bottom: 1px solid #e1d5f5; 
}
.top-banner .inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 15px; 
}
.top-banner p { 
    font-weight: 600; 
    color: #4a148c; 
    font-size: 1.05rem; 
}
.top-banner a { 
    background: #4a148c; 
    color: #fff; 
    padding: 8px 20px; 
    border-radius: 4px; 
    font-size: 0.9rem; 
    font-weight: 500; 
}

/* --- Intro Section --- */
.intro-sec { 
    padding: 60px 0; 
    background: #fff; 
}
.intro-box { 
    display: flex; 
    align-items: center; 
    background: #f9f9f9; 
    border-radius: 12px; 
    overflow: hidden; 
    margin-top: 30px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}
.intro-img { 
    flex: 1; 
    min-height: 300px; 
    background: url('img/img_02.png') center/cover; 
}
.intro-text { 
    flex: 1; 
    padding: 40px; 
}
.intro-text h3 { 
    font-size: 1.6rem; 
    color: #222; 
    margin-bottom: 15px; 
    font-weight: 700; 
}
.intro-text p { 
    color: #555; 
    font-size: 1rem; 
}

/* --- Huge Background Text (무한 흐르는 배너) --- */
.bg-text-wrap { 
    overflow: hidden; 
    padding: 30px 0; 
    background: #fafafa; 
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
/* 텍스트를 한 줄로 정렬하고 애니메이션을 실행하는 트랙 */
.bg-text-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

/* 배너 내부의 개별 텍스트 스타일 */
.bg-text { 
    font-size: 3.5rem; 
    font-weight: 900; 
    color: #e0dbe8; /* 가독성을 위해 살짝 톤 다운된 고급스러운 라벤더 그레이 */
    letter-spacing: 0.02em;
    flex-shrink: 0;
    display: inline-block;
}


/* 왼쪽으로 100% 이동한 뒤 처음으로 돌아가는 무한 루프 애니메이션 */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-33.3333%); /* 3개의 텍스트 덩어리 중 하나만큼 이동했을 때 루프 */
    }
}

/* 모바일 화면에서는 글자 크기를 조절해 자연스럽게 보이도록 처리 */
@media (max-width: 768px) {
    .bg-text {
        font-size: 2rem;
    }
    .bg-text-wrap {
        padding: 20px 0;
    }
}

/* --- Product Tabs Section --- */
.prod-sec { 
    padding: 60px 0; 
    background: #fff; 
}
.tab-menu { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 50px; 
    border-bottom: 2px solid #eee; 
}
.tab-btn { 
    padding: 15px 40px; 
    font-size: 1.2rem; 
    font-weight: 600; 
    color: #999; 
    cursor: pointer; 
    background: none; 
    border: none; 
    position: relative; 
    bottom: -2px; 
    transition: all 0.2s ease;
}
.tab-btn.active { 
    color: #4a148c; 
    border-bottom: 3px solid #4a148c; 
}

.tab-content { 
    display: none; 
}
.tab-content.active { 
    display: block; 
    animation: fadeIn 0.5s ease; 
}

.tab-header-block {
    text-align: center; 
    margin-bottom: 30px;
}
.tab-header-block h3 {
    font-size: 1.8rem; 
    font-weight:700;
}
.tab-header-block p {
    color:#666; 
    margin-top:5px;
}
.tab-graphic-img {
    margin: 20px auto; 
    max-width: 600px;
}

.why-store-block {
    padding: 80px 40px;
    border-radius: 24px;
    
    /* 실물 이미지로 대체 시 적용할 구문 */
    background: url('img/img_05.png') no-repeat center/cover; 
}

.why-store-block .block-title {
    font-size: 1.4rem; 
    font-weight: 700; 
    margin-bottom: 5px;
}
.why-store-block .block-desc {
    color:#777; 
    font-size:0.9rem; 
    margin-bottom:20px;
}

/* --- Grid & Cards Layouts --- */
.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
    margin-top: 30px; 
}
.card-item { 
    background: #fff; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.06); 
    border: 1px solid #eee; 
    position: relative; 
}
.card-img { 
    height: 200px; 
    background: url('img/img_01.jpg') center/cover; 
    position: relative; 
}
.card-num { 
    position: absolute; 
    top: 15px; 
    right: 20px; 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: rgba(255,255,255,0.6); 
}
.card-body { 
    padding: 25px; 
}
.card-body h4 { 
    font-size: 1.25rem; 
    margin-bottom: 10px; 
    font-weight: 700; 
    color: #222; 
}
.card-body p { 
    color: #666; 
    font-size: 0.95rem; 
}

/* --- Why Section --- */
.why-medipost-box { 
    margin-top: 60px; 
    padding: 40px 20px; 
    border-radius: 12px;
    background: #fcfbfe;
}
.why-medipost-box .box-title {
    font-size: 1.5rem; 
    font-weight: 700; 
    text-align:center; 
    margin-bottom:30px;
}
.row-list { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    margin-top: 30px; 
}
.row-item { 
    display: flex; 
    background: #fff; 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid #e8e8e8; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.02); 
}
.row-img { 
    width: 250px; 
    background: url('img/img_01.jpg') center/cover; 
    flex-shrink: 0; 
}
.row-text { 
    padding: 30px; 
    flex: 1; 
}
.row-text h4 { 
    font-size: 1.2rem; 
    font-weight: 700; 
    margin-bottom: 8px; 
    color: #333; 
}
.row-text p { 
    color: #666; 
    font-size: 0.95rem; 
}

/* --- Pricing & Tanks --- */
.price-sec { 
    padding: 60px 0; 
}
.tank-wrap { 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    margin-top: 40px; 
}
.tank-box { 
    border: 2px solid #e1d5f5; 
    border-radius: 16px; 
    padding: 40px; 
    text-align: center; 
    width: 100%; 
    max-width: 400px; 
    background: #fff; 
    transition: all 0.3s ease; 
}
.tank-box.highlight { 
    border-color: #4a148c; 
    box-shadow: 0 10px 25px rgba(74,20,140,0.1); 
}
.tank-box img { 
    width: 150px; 
    margin-bottom: 25px; 
}
.tank-box h4 { 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: #222; 
    margin-bottom: 5px; 
}
.tank-box p { 
    font-size: 1.1rem; 
    color: #8a2be2; 
    font-weight: 700; 
}
.tank-notice { 
    text-align: center; 
    font-size: 0.85rem; 
    color: #999; 
    margin-top: 20px; 
}

/* --- Analysis / Statistics --- */
.stats-sec { 
    padding: 100px 0; 
    background-color: #fafbfc; /* 대조감을 높여주는 초박형 그레이 에어 그라운드 */
}
.stats-grid { 
    display: grid; 
    grid-template-columns: 1.1fr 1.2fr 1.2fr; 
    gap: 30px; 
    align-items: stretch; 
    text-align: left;
}

.stats-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
}

.stats-left h3 { 
    font-size: 2.3rem; 
    font-weight: 700; 
    color: #111; 
    line-height: 1.3;
    margin-bottom: 50px;
}
.stats-left .stats-sub-title {
    font-size: 0.95rem;
    color: #a5a5b5;
    font-weight: 500;
    margin-bottom: 8px;
}

.stats-left p { 
    color: #8a2be2; 
    font-weight: 600; 
    font-size: 1.05rem; 
}
.stats-card { 
    background: #fff; 
    padding: 25px; 
    border-radius: 12px; 
    border: 1px solid #eee; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
    text-align: center; 
}
.stats-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.stats-card img { 
    margin-top: 15px; 
    border-radius: 6px; 
}

/* --- Middleware Banner (Dark) --- */
.dark-banner { 
    background: linear-gradient(rgba(10,10,25,0.85), rgba(10,10,25,0.85)), url('img/img_01.jpg') center/cover; 
    padding: 80px 0; 
    text-align: center; 
    color: #fff; 
}
.dark-banner h2 { 
    font-size: 2.2rem; 
    font-weight: 700; 
    margin-bottom: 15px; 
}
.dark-banner p { 
    font-size: 1rem; 
    opacity: 0.8; 
    margin-bottom: 40px; 
}
.circle-wrap { 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
}
.circle-item { 
    text-align: center; 
}
.circle-item span {
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
}
.circle-icon { 
    width: 90px; 
    height: 90px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.1); 
    border: 1px solid rgba(255,255,255,0.2); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto; 
    font-size: 1.8rem; 
}

/* --- System / Trust Section --- */
.system-sec { 
    padding: 60px 0; 
    background: #fff; 
    margin-top: -40px; 
    position: relative; 
    z-index: 10; 
}
.system-container { 
    background: #fff; 
    border-radius: 16px; 
    padding: 50px 40px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
    border: 1px solid #eee; 
}
.system-title-box { 
    text-align: center; 
    margin-bottom: 40px; 
}
.system-title-box span { 
    font-weight: 600; 
    color: #8a2be2; 
    font-size: 0.95rem; 
}
.system-title-box h3 { 
    font-size: 1.8rem; 
    font-weight: 700; 
    margin-top: 5px; 
    color: #222; 
}

.sys-row { 
    display: flex; 
    align-items: center; 
    gap: 40px; 
    margin-bottom: 40px; 
}
.sys-row:last-child {
    margin-bottom: 0;
}
.sys-row.reverse { 
    flex-direction: row-reverse; 
}
.sys-img { 
    flex: 1.1; 
    border-radius: 12px; 
    overflow: hidden; 
    height: 280px; 
    background: url('img/img_01.jpg') center/cover; 
}
.sys-text { 
    flex: 1; 
}
.sys-text .num { 
    font-size: 2rem; 
    font-weight: 800; 
    color: #e1d5f5; 
    line-height: 1; 
    margin-bottom: 10px; 
}
.sys-text h4 { 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: #333; 
    margin-bottom: 12px; 
}
.sys-text p { 
    color: #666; 
    font-size: 0.98rem; 
}

/* --- Process Slider Section (6 Steps) --- */
.process-sec { 
    padding: 100px 0; 
    background: #fff; /* 순백색 배경 톤 동기화 */
    text-align: left; /* 전체 좌측 정렬 레이아웃 적용 */
}
.process-sec .inner {
    max-width: 1200px;
}
.process-sec .section-title {
    text-align: left !important;
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 50px;
}
.slider-container { 
    position: relative; 
    width: 100%;
}
.slider-track { 
    display: flex; 
    gap: 24px; 
    overflow-x: auto; 
    /* 모바일 터치 관성 스크롤 부드럽게 적용 */
    -webkit-overflow-scrolling: touch; 
    padding: 15px 5px 35px; 
    cursor: grab; /* 잡을 수 있는 손모양 커서 선언 */
    user-select: none; /* 드래그 도중 글씨 블록 지정 방지 */
}

/* 기본 브라우저 스크롤 바 완벽 제거 가이드 */
.slider-track::-webkit-scrollbar { 
    display: none !important; 
}

.slider-track { 
    -ms-overflow-style: none !important; 
    scrollbar-width: none !important; 
}

.process-card { 
    min-width: 280px; 
    width: 280px; 
    background: #f4f6fa; /* 이미지 고유의 정교한 연한 라벤더-그레이 에어팟 컬러 */
    border-radius: 20px; 
    padding: 40px 30px; 
    border: none !important; 
    box-shadow: none !important;
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px; /* 세로 축 배율 리사이징 고정 */
    transition: transform 0.3s ease; 
}
.process-card:hover { 
    transform: translateY(-5px); 
}
.proc-step { 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: #8a2be2; 
    background: #f3effa; 
    padding: 3px 10px; 
    border-radius: 12px; 
    display: inline-block; 
    margin-bottom: 15px; 
}
.process-card h4 { 
    font-size: 1.15rem; 
    font-weight: 700; 
    color: #222; 
    margin-bottom: 10px; 
}
.process-card p { 
    font-size: 0.9rem; 
    color: #666; 
    line-height: 1.5; 
}
.proc-arrow { 
    position: absolute; 
    bottom: 20px; 
    right: 20px; 
    color: #ccc; 
    font-weight: bold; 
}

.slider-controls { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-top: 10px; 
}
.slider-btn { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    border: 1px solid #ddd; 
    background: #fff; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.1rem; 
    color: #555; 
    transition: all 0.2s; 
}
.slider-btn:hover { 
    background: #4a148c; 
    color: #fff; 
    border-color: #4a148c; 
}

/* --- Footer Banner --- */
.footer-banner { 
    background: linear-gradient(rgba(74,20,140,0.9), rgba(74,20,140,0.9)), url('img/img_01.jpg') center/cover; 
    padding: 60px 0; 
    text-align: center; 
    color: #fff; 
}
.footer-banner h2 { 
    font-size: 2rem; 
    font-weight: 700; 
    margin-bottom: 25px; 
}
.footer-banner a { 
    background: #fff; 
    color: #4a148c; 
    padding: 12px 35px; 
    border-radius: 25px; 
    font-weight: 700; 
    display: inline-block; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); 
    transition: background 0.2s; 
}
.footer-banner a:hover { 
    background: #f3effa; 
}

/* --- Footer Bottom --- */
footer { 
    background: #222; 
    color: #aaa; 
    padding: 30px 0; 
    font-size: 0.85rem; 
    border-top: 1px solid #333; 
}
footer .inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 15px; 
}

/* --- Animation --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Web Design (RWD) --- */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; text-align: center; }
    .stats-left { margin-bottom: 15px; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.7rem; }
    .intro-box { flex-direction: column; }
    .intro-img { min-height: 200px; width: 100%; }
    .row-item { flex-direction: column; }
    .row-img { width: 100%; height: 180px; }
    .tank-wrap { flex-direction: column; align-items: center; }
    .tank-box { max-width: 100%; }
    .sys-row, .sys-row.reverse { flex-direction: column; gap: 20px; }
    .sys-img { width: 100%; height: 200px; }
    .bg-text { font-size: 2.5rem; }
    .circle-wrap { flex-wrap: wrap; gap: 20px; }
    .top-banner .inner { flex-direction: column; text-align: center; }
}

/* --- "줄기세포, 왜 특별한가요?" 상단 레이아웃 개정 --- */
.block-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}
.block-title-area {
    text-align: left;
}
.block-title-area .block-desc {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
}
.block-title-area .block-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0;
}
.block-side-text {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    text-align: right;
    font-weight: 400;
}

/* --- 이미지 기반 카드 오버레이 레이아웃 스타일 디자인 --- */
.special-cell-grid {
    margin-top: 20px !important;
    gap: 20px !important;
}
.special-card {
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
    border-radius: 16px !important;
    overflow: hidden;
    aspect-ratio: 4 / 4; /* 직사각형 카드 비율 유지 */
    height: auto !important;
}
.card-img-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
}
/* 이미지 위에 어두운 그라데이션을 주어 글자 가독성 확보 */
.card-img-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.special-card .card-num {
    position: relative;
    z-index: 2;
    top: 0; right: 0;
    text-align: right;
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
}
.card-overlay-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.card-overlay-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 12px;
}
.card-overlay-content p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: keep-all;
}

/* --- 반응형 미디어 쿼리 조정 --- */
@media (max-width: 900px) {
    .block-top-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .block-side-text {
        text-align: left;
    }
    .special-cell-grid {
        grid-template-columns: 1fr !important;
    }
    .special-card {
        aspect-ratio: 16 / 10;
    }
}

/* ==========================================================================
   왜 '지방' 줄기세포인가요? 비대칭 레이아웃 스타일 (image_717f87.png 매칭)
   ========================================================================== */
.why-fat-cell-container {
    margin-top: 80px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    text-align: left;
}

/* 좌측 고정 사이드바 */
.fat-cell-sidebar {
    flex: 0 0 280px;
    position: sticky;
    top: 40px;
}
.fat-cell-sidebar .sidebar-sub {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 10px;
    font-weight: 500;
}
.fat-cell-sidebar .sidebar-main {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

/* 우측 레이아웃 콘텐츠 트랙 */
.fat-cell-content-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.fat-cell-block {
    width: 100%;
}

/* 상단 라운디드 배너 이미지 구조 */
.fat-cell-banner-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    background-color: #e4edf7; /* 에셋 공백 대비용 베이스 컬러 */
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* 텍스트 디테일 */
.fat-cell-text-box h4 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
/* 강조 키워드 컬러링 포인트 */
.fat-cell-text-box h4 span {
    color: #5e2bb8; /* 프리미엄 바이오 퍼플 매칭 고정 */
}
.fat-cell-text-box p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.65;
    word-break: keep-all;
}

/* 하단 작은 안내 문구 각주 */
.fat-cell-notice {
    font-size: 0.78rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-top: -10px;
    padding-left: 5px;
}

/* ==========================================================================
   반응형 모바일 미디어 쿼리 최적화
   ========================================================================== */
@media (max-width: 960px) {
    .why-fat-cell-container {
        flex-direction: column;
        gap: 35px;
    }
    .fat-cell-sidebar {
        flex: none;
        width: 100%;
        position: relative;
        top: 0;
    }
    .fat-cell-sidebar .sidebar-main br {
        display: none; /* 태블릿/모바일에서는 한 줄로 정렬 */
    }
    .fat-cell-banner-img {
        height: 180px;
    }
}

@media (max-width: 580px) {
    .fat-cell-sidebar .sidebar-main {
        font-size: 1.7rem;
    }
    .fat-cell-text-box h4 {
        font-size: 1.2rem;
    }
    .fat-cell-text-box p {
        font-size: 0.88rem;
    }
    .fat-cell-banner-img {
        height: 140px;
        border-radius: 12px;
    }
}

/* ==========================================================================
   줄기세포 보관상품 전용 단독 뷰 쇼케이스 (image_7260a0.png 완벽 싱크)
   ========================================================================== */
.stem-product-showcase {
    margin-top: 90px;
    padding: 20px 0;
    text-align: left; /* 이미지 기준 좌측 정렬 레이아웃 적용 */
}

.stem-product-showcase .prod-tag-sub {
    display: block;
    font-size: 0.9rem;
    color: #a5a5b5;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.stem-product-showcase .prod-title-main {
    font-size: 2.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 45px;
}

/* 2열 구조 카드 정렬 트랙 */
.premium-tank-wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* 개별 하이엔드 용기 보관 카드 명세 */
.premium-tank-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e9f0; /* 미선택 기본 카드의 연한 그레이 보더 테두리 */
    border-radius: 24px;
    padding: 40px 30px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    /* 호버 시 테두리가 자연스럽게 바뀌도록 트랜지션 추가 */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    cursor: pointer;
}

/* [중요] 첫 번째 카드: 이미지 고유의 딥 퍼플 강조 보더 라인 처리 */
.premium-tank-card.highlight {
    border: 2px solid #5e2bb8; /* 메디포스트 아이덴티티 바이오 퍼플 고정 */
    box-shadow: 0 12px 35px rgba(94, 43, 184, 0.04);
}

/* [핵심 수정] 마우스 호버(Hover) 했을 때만 보라색 띠와 그림자 발생 */
.premium-tank-card:hover {
    border: 2px solid #5e2bb8; /* 메디포스트 아이덴티티 바이오 퍼플 고정 */
    box-shadow: 0 12px 35px rgba(94, 43, 184, 0.12);
    transform: translateY(-5px); /* 호버 시 살짝 위로 떠오르는 시각 효과 추가 */
}

/* 탱크 안착을 위한 원형 입체 그레이 베이스 디테일 */
.tank-circle-base {
    width: 200px;
    height: 200px;
    background-color: #f4f6fa;
    border-radius: 50%;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tank-circle-base img {
    width: 82%;
    height: auto;
    object-fit: contain;
}

/* 상품 제목 스타일 */
.premium-tank-card h4 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

/* 가격 ₩ 특수 기호 크기 및 볼드 고정 */
.premium-tank-card .tank-price-value {
    font-size: 1.65rem;
    font-weight: 800;
    color: #4a1d95;
    letter-spacing: -0.01em;
}

/* 하단 작은 예외 고지 사항 */
.tank-bottom-notice {
    font-size: 0.82rem;
    color: #b0b0c2;
    margin-top: 25px;
    font-weight: 400;
}

/* ==========================================================================
   반응형 100% 미디어 모바일 레이아웃 최적화
   ========================================================================== */
@media (max-width: 1024px) {
    .premium-tank-wrap {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .premium-tank-card {
        width: 100%;
        max-width: 100%;
        padding: 45px 20px;
    }
    .tank-circle-base {
        width: 210px;
        height: 210px;
        margin-bottom: 25px;
    }
}

@media (max-width: 580px) {
    .stem-product-showcase .prod-title-main {
        font-size: 1.65rem;
        margin-bottom: 30px;
    }
    .premium-tank-card h4 {
        font-size: 1.2rem;
    }
    .premium-tank-card .tank-price-value {
        font-size: 1.35rem;
    }
}

/* 설명문 단락 디자인 코팅 */
.stats-desc-box h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #5e2bb8; /* 포인트 아이덴티티 딥 바이오 퍼플 고정 */
    line-height: 1.45;
    margin-bottom: 20px;
    word-break: keep-all;
}
.stats-desc-box p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 25px;
}
.stats-desc-box .stats-desc-highlight {
    color: #666;
    margin-bottom: 0;
}

/* 프리미엄 리서치 데이터 화이트 백 카드 프레임 명세 */
.stats-card-premium { 
    background: #fff; 
    padding: 30px; 
    border-radius: 24px; 
    border: 1px solid #ebedf3; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* 내포 데이터 차트 이미지 스케일 뷰 래퍼 */
.card-inner-img {
    width: 100%;
    aspect-ratio: 4 / 4; /* 원본 이미지 속 도표 비율 완전 고정 */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    margin-bottom: 20px;
}

/* 소형 하단 출처 논문 인덱스 텍스트 */
.chart-source {
    font-size: 0.76rem;
    color: #9da0b0;
    text-align: center;
    width: 100%;
    word-break: break-all;
}

/* ==========================================================================
   반응형 모바일 디바이스 웹 레이아웃 최적화
   ========================================================================== */
@media (max-width: 1100px) {
    .stats-grid { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .stats-left h3 {
        margin-bottom: 30px;
    }
    .stats-card-premium {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 580px) {
    .stats-left h3 {
        font-size: 1.8rem;
    }
    .stats-desc-box h4 {
        font-size: 1.15rem;
    }
    .stats-desc-box p {
        font-size: 0.88rem;
    }
    .stats-card-premium {
        padding: 20px 15px;
        border-radius: 16px;
    }
}

/* ==========================================================================
   신뢰성 다크 배너 및 지그재그 리스트 레이아웃 개정 (image_a451df.jpg 싱크)
   ========================================================================== */
.premium-trust-banner {
    background: url('img/img_20.png') center/cover !important;
    padding: 100px 0 160px !important; /* 아래 화이트 하이라이팅 박스가 얹어질 공간 확보 */
}
.dark-banner-sub {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}
.premium-trust-banner h2 {
    font-size: 2.3rem !important;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.dark-banner-desc {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 45px;
    font-weight: 300;
}

/* 상단 3구 원형 아이콘 배열 구조 */
.premium-circle-grid {
    gap: 60px !important;
}
.premium-circle-grid .circle-icon {
    width: 150px !important;
    height: 150px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.premium-circle-grid .circle-icon img {
    width: 45%;
    height: auto;
    object-fit: contain;
}
.premium-circle-grid .circle-item span {
    color: #e2e8f0 !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    margin-top: 12px !important;
}

/* ==========================================================================
   중앙 화이트보드 캔버스 및 지그재그 리스트 디테일
   ========================================================================== */
.premium-trust-layout {
    margin-top: -70px !important; /* 다크 배너 위로 오버랩 처리 */
    position: relative;
    z-index: 20;
    padding-bottom: 100px !important;
}
.premium-white-box {
    padding: 70px 50px !important;
    border-radius: 28px !important;
    border: 1px solid #eef2f8 !important;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06) !important;
}

.center-logo-deco {
    margin: 0 auto 15px;
    max-width: 60px;
}
.premium-white-box .system-title-box h3 {
    font-size: 2.1rem !important;
    line-height: 1.35;
    color: #1e293b;
    font-weight: 800;
}
.premium-white-box .system-title-box h3 span {
    color: #5e2bb8; /* 메디포스트 컬러링 포인트 포커스 고정 */
}

/* 로우 내부 스펙 최적화 */
.trust-row {
    margin-bottom: 60px !important;
    gap: 50px !important;
}
.trust-img-frame {
    height: 310px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.trust-text-frame {
    text-align: left;
}
/* 타이틀 상단 도트 3개 생성 구조 */
.title-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}
.title-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #cbd5e1;
}
.title-dots span:first-child {
    background-color: #5e2bb8; /* 첫 도트 포인트 컬러 고정 */
}

.trust-text-frame h4 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 18px !important;
    letter-spacing: -0.02em;
}
.trust-text-frame p {
    font-size: 0.95rem !important;
    color: #64748b !important;
    line-height: 1.75 !important;
    word-break: keep-all;
}

/* ==========================================================================
   반응형 인터페이스 RWD 최적화
   ========================================================================== */
@media (max-width: 1024px) {
    .premium-circle-grid {
        gap: 30px !important;
    }
    .trust-row, .trust-row.reverse {
        flex-direction: column !important;
        gap: 25px !important;
        margin-bottom: 50px !important;
    }
    .trust-img-frame {
        width: 100% !important;
        height: 240px !important;
    }
    .premium-white-box {
        padding: 50px 25px !important;
    }
}

@media (max-width: 640px) {
    .premium-trust-banner h2 {
        font-size: 1.75rem !important;
    }
    .premium-circle-grid .circle-icon {
        width: 85px !important;
        height: 85px !important;
    }
    .premium-white-box .system-title-box h3 {
        font-size: 1.55rem !important;
    }
    .trust-text-frame h4 {
        font-size: 1.25rem !important;
    }
    .trust-text-frame p {
        font-size: 0.9rem !important;
    }
}

.trust-integrated-container {
    width: 100%;
    position: relative;
    background-color: #fff;
}

/* 상단 정보 영역과 아이콘 정렬 구조 */
.proc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px; /* 텍스트 단락과의 압도적인 수직 거리 부여 */
}
.proc-step { 
    font-size: 0.88rem; 
    font-weight: 700; 
    color: #5e2bb8; /* 매칭 바이오 퍼플 고정 */
    background: transparent !important; 
    padding: 0;
    margin-bottom: 0;
}
/* 카드 우측 상단 고유 보관 그래픽 에셋 소형 인클로저 */
.proc-icon-box {
    width: 28px;
    height: 28px;
}
.proc-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 본문 설명 디테일 */
.process-card h4 { 
    font-size: 1.2rem; 
    font-weight: 700; 
    color: #111; 
    margin-bottom: 16px; 
}
.process-card p { 
    font-size: 0.92rem; 
    color: #666; 
    line-height: 1.65; 
    word-break: keep-all;
}

/* [최고 디테일] 카드 우측 하단 미니 백그라운드 원형 링 화살표 버튼 */
.proc-arrow-circle {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}
.proc-arrow-circle::after {
    content: '>';
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    margin-left: 1px;
}

/* 수동 제어 버튼 제거 (이미지 레이아웃 기준 스크롤 트랙만 깨끗하게 노출) */
.slider-controls { 
    display: none !important; 
}

/* ==========================================================================
   당신의 '오늘'을 가치 있게 보관하는 방법 (푸터 가로 통합 배너 트랙)
   ========================================================================= */
.footer-banner { 
    background: url('img/img_34.png') no-repeat center 35%/cover !important; 
    padding: 110px 0 !important; 
    text-align: center; 
    color: #fff; 
}
.footer-banner .banner-tag-sub {
    display: block;
    font-size: 0.9rem;
    color: #8c9bb4;
    font-weight: 500;
    margin-bottom: 12px;
}
.footer-banner h2 { 
    font-size: 2.3rem; 
    font-weight: 700; 
    margin-bottom: 40px; 
    letter-spacing: -0.01em;
}
/* 대형 라운드 퍼플 캡슐 신청 링 구현 */
.footer-banner a { 
    background: linear-gradient(90deg, #5e2bb8 0%, #4a148c 100%);
    color: #fff; 
    padding: 15px 55px; 
    border-radius: 30px; 
    font-size: 1rem;
    font-weight: 600; 
    display: inline-block; 
    box-shadow: 0 10px 25px rgba(94, 43, 184, 0.3); 
    transition: all 0.3s ease; 
}
.footer-banner a:hover { 
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(94, 43, 184, 0.45); 
}

/* 하단 각주 고지 경고 사항 가이드셋 */
.footer-warning-notice-bar {
    background-color: #22252a;
    padding: 30px 0;
    border-bottom: 1px solid #2d3138;
    text-align: left;
}
.warning-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.warning-flex .warn-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    padding-top: 2px;
}
.warning-flex .warn-desc {
    font-size: 0.82rem;
    color: #8c93a0;
    line-height: 1.7;
}

/* 반응형 미디어 모바일 최적화 스펙 정의 */
@media (max-width: 1024px) {
    .process-sec { padding: 60px 0; }
    .process-sec .section-title { margin-bottom: 30px; font-size: 1.7rem; }
    .warning-flex { flex-direction: column; gap: 10px; }
}
@media (max-width: 768px) {
    .footer-banner h2 { font-size: 1.65rem; }
    .footer-banner a { padding: 12px 35px; font-size: 0.9rem; }
}

/* ==========================================================================
   ★ [image_a60fff.jpg 완전 일치] 세포보관 서비스란? 인트로 섹션 단독 지정 스펙
   ========================================================================== */
.premium-intro-layout {
    padding: 90px 0 60px !important;
    background-color: #fff !important;
    text-align: left !important; /* 전체 콘텐츠 좌측 정렬 강제 고정 */
}

/* 상단 라벨 및 타이틀 정렬 */
.intro-top-title-block {
    text-align: left !important;
    margin-bottom: 35px !important;
}
.intro-top-title-block .sub-tag {
    display: block !important;
    text-align: left !important;
    color: #9ca3af !important; /* 이미지 특유의 연한 그레이 라벨 라인 */
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.02em !important;
}
.intro-top-title-block .section-title {
    text-align: left !important;
    font-size: 2.3rem !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 0 !important;
}

/* 중앙 와이드 배너 단독 프레임 규격 독립화 */
.intro-main-photo-banner {
    width: 100% !important;
    height: 280px !important; /* 이미지 비례를 완전 고정하기 위한 전용 높이 */
    background: url('img/img_02.png') no-repeat center/cover !important;
    border-radius: 24px !important; /* 모서리 아치 라운딩 타게팅 */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02) !important;
    margin-bottom: 40px !important;
}

/* 하단 텍스트 단락 비대칭 2컬럼 가로 배열 트랙 */
.intro-bottom-split-wrap {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 60px !important;
    width: 100% !important;
}

/* 하단 좌측 캐치프레이즈 타이틀 */
.intro-bottom-left-title {
    flex: 1.1 !important;
}
.intro-bottom-left-title h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #111 !important;
    line-height: 1.45 !important;
    word-break: keep-all !important;
    text-align: left !important;
}
.intro-bottom-left-title h3 span {
    color: #5e2bb8 !important; /* 핵심 각인 키워드 퍼플 하이라이트 */
}

/* 하단 우측 상세 서술 문맥 단락 */
.intro-bottom-right-desc {
    flex: 1 !important;
}
.intro-bottom-right-desc p {
    font-size: 0.94rem !important;
    color: #666 !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    word-break: keep-all !important;
    text-align: left !important;
}

/* ==========================================================================
   인트로 섹션 전용 독립형 모바일/태블릿 반응형 가이드
   ========================================================================== */
@media (max-width: 1024px) {
    .intro-main-photo-banner {
        height: 320px !important;
    }
    .intro-bottom-split-wrap {
        flex-direction: column !important; /* 화면 하단 가로폭 좁아질 때 수직 배열 자동 전환 */
        gap: 20px !important;
    }
    .intro-bottom-left-title h3 {
        font-size: 1.4rem !important;
    }
    .intro-bottom-right-desc p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 580px) {
    .premium-intro-layout {
        padding: 60px 0 40px !important;
    }
    .intro-top-title-block .section-title {
        font-size: 1.75rem !important;
    }
    .intro-main-photo-banner {
        height: 200px !important;
        border-radius: 14px !important;
        margin-bottom: 25px !important;
    }
    .intro-bottom-left-title h3 {
        font-size: 1.2rem !important;
    }
}

/* ==========================================================================
   ★ [image_a6891c.jpg 완전 일치] 최상단 Hero 및 융합 배너 전용 독점 가이드 명세
   ========================================================================== */
.premium-hero-frame {
    width: 100% !important;
    min-height: 100vh !important; /* 브라우저 첫 화면을 가득 채우는 스케일 */
    position: relative !important;
    /* 실물 이미지 특유의 딥 블루-라벤더 컬러 필터 오버레이 융합 */
    background: linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.4)), 
                url('img/img_01.jpg') no-repeat center 40%/cover !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important; /* 중앙 글귀와 하단 배너를 위아래로 격리 배치 */
    align-items: center !important;
    overflow: hidden !important;
}

/* 중앙 타이틀 단락 */
.hero-center-content {
    margin: auto 0 !important; /* 상하 수직 정밀 정렬 */
    text-align: center !important;
    color: #fff !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.hero-badge-pill {
    background-color: #5e2bb8 !important; /* 원본 폰트 바탕의 시그니처 캡슐 퍼플 라벨 */
    color: #fff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 6px 20px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    margin-bottom: 25px !important;
    letter-spacing: 0.03em !important;
}
.premium-hero-frame h1 {
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.01em !important;
}
.hero-sub-text {
    font-size: 1.3rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400 !important;
    margin-bottom: 40px !important;
}

/* [요청 사항] 수직 왕복 구동형 이중 화살표 애니메이션 세팅 */
.scrolling-indicator-arrows {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
}
.scrolling-indicator-arrows span {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7) !important;
    border-right: 2px solid rgba(255, 255, 255, 0.7) !important;
    transform: rotate(45deg) !important; /* 화살표 각도 생성 */
    animation: arrowBounce 1.5s infinite;
}
.scrolling-indicator-arrows span:nth-child(2) {
    animation-delay: 0.2s; /* 두 번째 화살표 시차 작동 */
}
@keyframes arrowBounce {
    0% { transform: rotate(45deg) translate(-2px, -2px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(45deg) translate(4px, 4px); opacity: 0; }
}

/* ==========================================================================
   하단 일체화형 반투명 유리막(Glassmorphism) 상담 배너 디자인 바
   ========================================================================== */
.integrated-blur-banner {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.12) !important; /* 반투명 백그라운드 필터 */
    backdrop-filter: blur(15px) !important; /* 이미지 실물 고유의 초정밀 하이엔드 블러 현상화 */
    -webkit-backdrop-filter: blur(15px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 0 !important; /* 내부 패딩을 삭제하고 높이를 유연화 */
}
.blur-banner-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: stretch !important; /* 좌우 구역 세로 높이를 균등하게 확장 */
    padding: 0 !important;
}

/* 배너 좌측 텍스트 문맥 단락 */
.blur-banner-left-text {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
    padding: 35px 20px 35px 0 !important;
    text-align: left !important;
}
.blur-banner-left-text span {
    color: #c084fc !important; /* 이미지 특유의 라벤더 바이오 퍼플 강조색 */
    font-weight: 700 !important;
}

/* 배너 우측 터치 링 신청 노드 링크 구역 */
.blur-banner-right-link {
    display: flex !important;
    align-items: center !important;
    gap: 35px !important;
    padding: 35px 30px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important; /* 실물 이미지 구분선 복원 */
    color: #fff !important;
    transition: background 0.3s ease !important;
}
.blur-banner-right-link:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}
.blur-banner-right-link .link-text-node {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-align: left !important;
}
/* 우측 끝 45도 상향 화살표 기호 */
.blur-banner-right-link .link-arrow-icon {
    font-size: 2.2rem !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: transform 0.3s ease !important;
}
.blur-banner-right-link:hover .link-arrow-icon {
    transform: translate(3px, -3px) !important; /* 호버 시 사선 구동 인터랙션 */
}

/* ==========================================================================
   최상단 헤더 배너 모바일 스크린 예외 최적화 (RWD)
   ========================================================================== */
@media (max-width: 900px) {
    .premium-hero-frame h1 { font-size: 2.2rem !important; }
    .hero-sub-text { font-size: 1.05rem !important; margin-bottom: 30px !important; }
    .blur-banner-flex { flex-direction: column !important; }
    .blur-banner-left-text { padding: 25px 15px !important; font-size: 0.95rem !important; text-align: center !important; }
    .blur-banner-right-link { justify-content: center !important; border-left: none !important; border-top: 1px solid rgba(255, 255, 255, 0.15) !important; padding: 20px !important; }
    .blur-banner-right-link .link-arrow-icon { font-size: 1.6rem !important; }
}

/* ==========================================================================
   ★ [image_a6891c.jpg & image_a6fd1b_2.jpg 싱크] 하단 배경 투과 오버랩 배너 CSS 명세
   ========================================================================== */
.premium-footer-integrated-wrap {
    width: 100% !important;
    position: relative !important;
    background-color: #fff !important;
}

/* 상단과 동일한 백그라운드 우주 구체 에셋 위에 투명도를 정확히 다운시킨 마스크 오버레이 설계 */
.premium-glass-mask-banner {
    width: 100% !important;
    padding: 110px 0 !important;
    text-align: center !important;
    color: #fff !important;
    /* 최상단 Hero 필터 규격과 일치하게 rgba 불투명도를 낮춰 배경 이미지를 투과시키는 핵심 명세 */
    background: linear-gradient(rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.72)), 
                url('img/img_34.png') no-repeat center 35%/cover !important; 
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2) !important;
}

.premium-glass-mask-banner .banner-tag-sub {
    display: block !important;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.6) !important; /* 상단과 동질의 서브 라벨 톤 배율 */
    font-weight: 500 !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.03em !important;
}

.premium-glass-mask-banner h2 {
    font-size: 2.3rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 40px !important;
    letter-spacing: -0.01em !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* 대형 라운드 퍼플 캡슐 신청 인터랙션 버튼 사양 */
.premium-consult-btn-node {
    background: linear-gradient(90deg, #5e2bb8 0%, #4a148c 100%) !important; /* 바이오 딥 퍼플 그라데이션 */
    color: #fff !important;
    padding: 16px 65px !important;
    border-radius: 35px !important; /* 둥근 캡슐형 링 보더 */
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    display: inline-block !important;
    box-shadow: 0 10px 25px rgba(94, 43, 184, 0.35) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.premium-consult-btn-node:hover {
    transform: translateY(-3px) !important; /* 미세 업 구동 효과 */
    box-shadow: 0 15px 30px rgba(94, 43, 184, 0.5) !important;
    filter: brightness(1.1) !important;
}

/* 2. 최하단 그레이 유의사항 주의 각주 단락 레이아웃 구조 */
.premium-notice-gray-bar {
    background-color: #22252a !important; /* 다크 그레이 솔리드 컬러 안착 */
    padding: 30px 0 !important;
    border-top: 1px solid #2d3138 !important;
    border-bottom: 1px solid #1a1c20 !important;
}
.premium-notice-gray-bar .warning-flex {
    display: flex !important;
    align-items: flex-start !important;
    gap: 40px !important;
    text-align: left !important;
}
.premium-notice-gray-bar .warn-title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    flex-shrink: 0 !important;
    padding-top: 2px !important;
    border-right: none !important; /* 세로선 중복 상속 현상 전면 차단 */
    padding-right: 0 !important;
}
.premium-notice-gray-bar .warn-desc {
    font-size: 0.82rem !important;
    color: #8c93a0 !important; /* 은은한 차분한 폰트 컬러 */
    line-height: 1.75 !important;
}

/* ==========================================================================
   하단 배경 투과 융합 배너 디바이스 하드웨어 최적화 (RWD)
   ========================================================================== */
@media (max-width: 1024px) {
    .premium-glass-mask-banner {
        padding: 80px 0 !important;
    }
    .premium-glass-mask-banner h2 {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }
    .premium-notice-gray-bar .warning-flex {
        flex-direction: column !important; /* 모바일 폭 기기 대응 수직 종렬 정렬 */
        gap: 10px !important;
    }
}
@media (max-width: 580px) {
    .premium-consult-btn-node {
        padding: 14px 45px !important;
        font-size: 0.95rem !important;
    }
}

/* ==========================================================================
   ★ [인트로 & 탭 컴포넌트 전체 구역] 통 백그라운드 이미지 투과 이식 레이아웃 명세
   ========================================================================== */

/* 1. 세포보관 서비스란? 인트로 컨테이너 배경 이식 및 마스크 필터링 */
.premium-intro-layout {
    position: relative !important;
    padding: 100px 0 80px !important;
    /* 은은하게 겹치는 투명 필터를 적용하여 글자 가독성을 사수하면서 배경 통이미지를 투과 */
    background: url('img/img_35.png') no-repeat center 20%/cover !important;
}

/* 인트로 내부 메인 이미지 프레임 테두리와 투과도 재조정 */
.intro-main-photo-banner {
    width: 100% !important;
    height: 440px !important;
    background: url('img/img_02.png') no-repeat center/cover !important;
    border-radius: 24px !important;
    box-shrink: 0 !important;
    box-shadow: 0 15px 45px rgba(10, 24, 47, 0.05) !important;
}


/* 2. 줄기세포 / 면역세포 보관상품 (탭 전체 컨테이너 구역) 배경 투과 이식 */
.prod-sec {
    position: relative !important;
    padding: 100px 0 !important;
    /* 하단으로 갈수록 자연스럽게 퓨어 화이트에 동화되도록 은은한 라벤더-블루 필터와 융합 */
    background: url('img/img_36.png') no-repeat center center/cover !important;
    background-attachment: fixed !important; /* 스크롤 시 배경이 고급스럽게 고정되는 페이드 효과 추가 */
}

/* 탭 메뉴 전환 버튼 바 투명도 밸런싱 */
.tab-menu {
    border-bottom: 2px solid rgba(74, 20, 140, 0.1) !important;
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border-radius: 12px 12px 0 0 !important;
    max-width: 600px !important;
    margin: 0 auto 60px !important;
}

/* 탭 활성화 시에만 포인트 딥 퍼플 라인 강조 고정 */
.tab-btn {
    color: #888899 !important;
}
.tab-btn.active {
    color: #5e2bb8 !important;
    border-bottom: 3px solid #5e2bb8 !important;
    font-weight: 700 !important;
}


/* ==========================================================================
   통 배경 이미지 이식 부문 모바일 인터페이스 최적화 (RWD)
   ========================================================================== */
@media (max-width: 1024px) {
    .premium-intro-layout {
        padding: 70px 0 50px !important;
        background: rgba(255, 255, 255, 0.96) !important; /* 모바일 기기에서는 피로도 감소를 위해 투명 마스크를 조금 더 두껍게 조율 */
    }
    .intro-main-photo-banner {
        height: 300px !important;
    }
    .prod-sec {
        padding: 70px 0 !important;
        background-attachment: scroll !important; /* 모바일 성능 리스크 사수를 위해 고정 효과 해제 */
    }
    .tab-menu {
        margin-bottom: 40px !important;
    }
}

@media (max-width: 580px) {
    .intro-main-photo-banner {
        height: 200px !important;
        border-radius: 16px !important;
    }
}