/* ================================================================
   TLB PRODUCT — 상품 상세페이지 통합 스타일
   아임웹 상품 에디터에 삽입되는 교재/코스 상세정보
   Merged from: tlb-product-common, lb-product, lb-normalpages
   ================================================================ */

/* --- Section A: Product Common (상단/통계/TOC/저자/법적고지/리뷰) --- */
/* ==========================================================================
   TLB PRODUCT COMMON - V6 Refined Round 10 (Cleaned & Author Fix)
   ========================================================================== */

/* SUITE Font Import (For Main Header) */
@import url('https://cdn.jsdelivr.net/gh/sunn-us/SUITE/fonts/static/woff2/SUITE.css');

/* Section Wrapper */
.tlb_common_section {
    width: 100%;
    padding: 80px 0;
    background-color: #050505;
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
    color: #ffffff;
    position: relative;
}

.tlb_common_container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 60px;
    /* Limits content width */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* 1. Header */
.tlb_header_group {
    text-align: center;
    margin-bottom: 20px;
}

.tlb_header_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid rgba(150, 45, 227, 0.3);
    border-radius: 50px;
    background: rgba(150, 45, 227, 0.1);
    color: #b355ff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tlb_header_title {
    font-family: 'SUITE', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* 2. Media Section (Images & Video) */
.tlb_detail_media_wrapper {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.tlb_detail_media_wrapper p {
    text-align: center;
    margin: 0;
}

.tlb_detail_media_wrapper img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* 2. Visual Area */
.tlb_visual_area_center {
    width: 600px;
    max-width: 100%;
    margin-bottom: 30px;
}

.tlb_book_img_center {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

/* 3. Text Info Group */
.tlb_text_group_center {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tlb_brand_logo_large {
    height: 80px;
    width: auto;
    margin-bottom: 4px;
    opacity: 0.9;
    display: block;
}

.tlb_title_row {
    margin-top: 0;
    margin-bottom: 20px;
}

.tlb_product_title_main {
    font-family: 'SUIT', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    display: block;
    margin-bottom: 4px;
}

.tlb_product_subtitle_main {
    font-family: 'SUIT', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    display: block;
}

.tlb_divider_line {
    width: 100%;
    max-width: 100%;
    height: 1px;
    background-color: #333;
    margin: 20px auto 15px auto;
    /* Explicit auto margins for centering */
}

.tlb_desc_text {
    text-align: left;
    width: 100%;
    margin-top: 5px;
    /* 15px (divider bottom) + 5px = 20px Top Gap */
    /* Next Divider has 20px Top Margin = 20px Bottom Gap */
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
}

.tlb_desc_text p {
    margin: 0 0 20px 0;
}

.tlb_desc_text p:last-child {
    margin-bottom: 0;
}

.tlb_solve_logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 12px;
    opacity: 0.95;
    display: block;
}

.tlb_type_text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.tlb_stat_big_num {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}

.tlb_q_detail_row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 2px;
    width: 100%;
}

.tlb_chip_gradient {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    background: linear-gradient(135deg, #962de3, #5e33fa);
    white-space: nowrap;
}

.tlb_q_detail_text {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
}

.tlb_page_num {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

/* 5. STATS GRID (Restored) */
.tlb_stats_grid_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.tlb_stat_card_unit {
    background-color: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 180px;
    position: relative;
    box-sizing: border-box;
}

.tlb_stat_header {
    font-size: 14px;
    color: #888;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tlb_stat_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
}

/* 5. TOC Enhanced */
.tlb_toc_clean_wrapper {
    width: 100%;
    text-align: left;
    border-top: 1px solid #333;
    padding-top: 40px;
    padding-bottom: 40px;
}

.tlb_toc_head_title {
    font-family: 'SUITE', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

/* Author Section Title Modifier */
.tlb_toc_head_title.author_mode {
    align-self: flex-start;
    margin-bottom: 8px;
    /* Reduced margin */
}

.tlb_toc_list_clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tlb_toc_item_clean {
    display: flex;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #222;
}

.tlb_toc_idx_clean {
    color: #555;
    font-size: 28px;
    font-weight: 900;
    width: 60px;
    margin-right: 20px;
    line-height: 1;
}

.tlb_toc_content_col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tlb_toc_main_title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.tlb_toc_sub_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tlb_toc_sub_item {
    font-size: 15px;
    color: #bbb;
    position: relative;
    padding-left: 14px;
    line-height: 1.4;
}

.tlb_toc_sub_item::before {
    content: '-';
    position: absolute;
    left: 0;
    top: 0;
    color: #666;
}

.tlb_toc_desc_text {
    font-size: 15px;
    color: #777;
    line-height: 1.5;
    margin-top: 4px;
}

/* 6. Author Section */
.tlb_author_box {
    width: 100%;
    position: relative;
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    overflow: hidden;
    border: 1px solid #2d2d2d;
    margin-top: 0;
    /* NO GAP */
    box-sizing: border-box;
    /* Ensure padding doesn't affect total width calculation destructively */
}

.tlb_author_bg_logo {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 240px !important;
    max-width: none !important;
    height: auto !important;
    opacity: 0.05 !important;
    pointer-events: none !important;
    z-index: 0 !important;
    margin: 0 !important;
    border: none !important;
    display: block !important;
}

.tlb_author_content_wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
    position: relative;
    z-index: 1;
}

.tlb_author_img_crop {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #333;
}

.tlb_author_photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tlb_author_text_col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tlb_author_label {
    font-size: 13px;
    color: #962de3;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.tlb_author_name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.tlb_author_desc {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .tlb_common_container {
        padding: 0 20px;
        /* Restore mobile padding */
    }

    /* Header Reductions (Mobile) */
    .tlb_header_badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .tlb_header_title {
        font-size: 40px;
        /* Reduced from 48px (approx 15%) */
    }

    .tlb_product_title_main,
    .tlb_product_subtitle_main {
        font-size: 30px;
        /* Reduced from 36px (approx 15%) */
    }

    .tlb_visual_area_center {
        width: 100%;
    }

    .tlb_desc_text {
        font-size: 17px;
    }

    .tlb_stats_grid_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tlb_stat_card_unit {
        min-height: auto;
        padding: 30px;
    }

    .tlb_toc_idx_clean {
        font-size: 24px;
        width: 45px;
        margin-right: 15px;
    }

    /* Author Section Mobile */
    .tlb_author_box {
        width: 100%;
        /* Full width on mobile */
        padding: 30px;
    }

    .tlb_author_content_wrapper {
        flex-direction: column;
        align-items: center;
        /* Image centered */
        text-align: left;
        /* Text left aligned */
        gap: 24px;
    }

    .tlb_author_text_col {
        width: 100%;
        text-align: left;
    }

    .tlb_author_desc {
        font-size: 14px;
        /* Reduced from 16px */
    }

    .tlb_author_text_col .tlb_toc_sub_item {
        font-size: 13px;
        /* Reduced from 15px */
    }

    .tlb_author_bg_logo {
        width: 180px;
        opacity: 0.08;
    }
}

/* 7. Product Info Notice (Legal) - Div Layout */
.tlb_legal_container {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 60px;
    border-top: 2px solid #fff;
    display: flex;
    flex-direction: column;
}

.tlb_legal_row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: stretch;
}

.tlb_legal_label {
    width: 25%;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    font-weight: 600;
    color: #eee;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.tlb_legal_value {
    width: 75%;
    padding: 12px 15px;
    color: #ddd;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .tlb_legal_row {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 15px;
        padding-top: 10px;
    }

    .tlb_legal_label {
        width: 100%;
        background: transparent;
        padding: 5px 0;
        color: #aaa;
        font-size: 12px;
        margin-bottom: 2px;
        align-items: flex-end;
        /* Align bottom like a label */
    }

    .tlb_legal_value {
        width: 100%;
        padding: 0;
        font-size: 14px;
        display: block;
    }
}

/* ================================================================
   8-NEW. Top Section — Product Type + Sample + Notice (v3)
   ================================================================ */
.tlb_top_section {
    width: 100%;
    position: relative;
    padding: 48px 0 44px;
    background: #0c0c0c;
    overflow: hidden;
    font-family: 'SUIT', sans-serif;
    color: #fff;
}

.tlb_top_bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    pointer-events: none;
}

.tlb_top_inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* --- 타입 표시 --- */
.tlb_top_type {
    display: inline-block;
    font-family: 'SUIT', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

/* --- 설명 --- */
.tlb_top_desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0 0 28px;
}

/* --- 샘플 다운로드 버튼 --- */
.tlb_top_sample_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: #fff;
    border: none;
    border-radius: 8px;
    color: #111;
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
}

.tlb_top_sample_btn svg {
    fill: #111;
    opacity: 0.5;
}

.tlb_top_sample_btn:hover {
    background: #e4e4e4;
}

/* --- 구매 안내 --- */
.tlb_top_notice_list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tlb_top_notice_list li {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.28);
    padding-left: 12px;
    position: relative;
}

.tlb_top_notice_list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.15);
}

/* --- Mobile --- */
@media (max-width: 600px) {
    .tlb_top_section {
        padding: 36px 0 32px;
    }

    .tlb_top_type {
        font-size: 26px;
    }

    .tlb_top_desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .tlb_top_sample_btn {
        width: 100%;
        justify-content: center;
    }

    .tlb_top_notice_list {
        margin-top: 24px;
        padding-top: 16px;
    }

    .tlb_top_notice_list li {
        font-size: 12px;
    }
}

/* ================================================================
   8-OLD. Unified Section (기존 lb_ 페이지 호환 유지)
   ================================================================ */
.tlb_unified_section {
    width: 100%;
    padding: 48px 0 40px;
    position: relative;
    background-color: #0a0a0a;
    overflow: hidden;
    color: #fff;
    font-family: 'SUIT', sans-serif;
}

.tlb_unified_content {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tlb_concept_bg {
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    height: 220%;
    opacity: 0.04;
    z-index: 1;
    background: radial-gradient(ellipse at center, var(--core-color, #4A86E8), transparent 60%);
    pointer-events: none;
}

/* --- Type Header: 크고 임팩트 있게 --- */
.tlb_unified_header {
    font-family: 'SUITE', 'SUIT', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.tlb_header_prefix {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.tlb_header_main {
    color: #fff;
}

.tlb_concept_badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    background: var(--core-color, #4A86E8);
    color: #fff;
    font-family: 'SUITE', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    vertical-align: baseline;
}

/* --- Description: 컴팩트 --- */
.tlb_unified_desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 24px;
    margin-top: 0;
}

.tlb_unified_desc strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* --- Sample Download: 한 줄, 컴팩트 --- */
.tlb_nested_sample {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0;
    box-sizing: border-box;
}

.tlb_nested_sample:hover .tlb_sample_btn {
    background-color: #e8e8e8;
}

.tlb_nested_info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tlb_nested_title {
    font-family: 'SUIT', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.tlb_nested_icon {
    font-size: 16px;
    opacity: 0.7;
}

.tlb_nested_sub {
    display: none;
}

.tlb_sample_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    padding: 0 20px;
    background: #fff;
    color: #0a0a0a;
    font-family: 'SUITE', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.tlb_sample_btn svg {
    width: 14px;
    height: 14px;
    fill: #0a0a0a;
}

.tlb_sample_btn:hover {
    background-color: #e8e8e8;
}

/* --- Purchase Notice: 인라인, 극도로 절제 --- */
.tlb_nested_notice {
    width: 100%;
    padding: 20px 0 0;
    box-sizing: border-box;
    margin-top: 20px;
}

.tlb_notice_header_row {
    display: none;
}

.tlb_notice_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 16px;
}

.tlb_notice_list li {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.25);
    display: inline;
}

.tlb_notice_list li::before {
    content: '·';
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.15);
}

/* --- Mobile --- */
@media (max-width: 600px) {
    .tlb_unified_section {
        padding: 36px 0 32px;
    }

    .tlb_unified_header {
        font-size: 28px;
    }

    .tlb_header_prefix {
        font-size: 14px;
    }

    .tlb_concept_badge {
        font-size: 17px;
        padding: 5px 14px;
    }

    .tlb_unified_desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .tlb_nested_sample {
        flex-direction: column;
        gap: 12px;
    }

    .tlb_sample_btn {
        width: 100%;
        height: 42px;
        font-size: 14px;
    }

    .tlb_notice_list {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
}

/* 9. Lecture Section Refined */
.tlb_lecture_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensures left alignment */
    margin-top: 60px;
}

.tlb_lecture_intro {
    font-size: 16px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 40px;
    margin-top: 10px;
    /* Increased spacing from header */
    max-width: 100%;
    text-align: left;
    word-break: keep-all;
    /* Optimization for Korean text wrapping */
}

.tlb_lecture_list {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tlb_lecture_item {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    /* Dark card bg */
    border: 1px solid #2d2d2d;
    border-radius: 12px;
    padding: 20px 25px;
    transition: transform 0.2s, border-color 0.2s;
}

/* 10. Review Assurance Section */
.tlb_review_section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
    font-family: 'SUIT', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    min-height: 600px;
    box-sizing: border-box;
    text-align: center;
}

.tlb_review_bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://tlb-assets.pages.dev/images/review_assurance/img_review_bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    opacity: 1.0;
    z-index: 1;
}

/* Gradient overlay */
.tlb_review_bg_layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.tlb_review_content_container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 180px;
}

/* RE MOVED MODEL WRAPPER STYLES */

.tlb_review_text_group {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
}

.tlb_review_sub_header {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    font-family: 'SUIT', sans-serif;
}

.tlb_review_main_header {
    font-size: 12vw;
    font-weight: 300;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    width: 100%;
    font-family: 'SUITE', sans-serif !important;
}

/* Responsive Font Sizing Desktop */
@media (min-width: 1200px) {
    .tlb_review_main_header {
        font-size: 4.5vw;
        /* Aggressive reduction to 4.5vw */
        white-space: nowrap;
    }
}

.tlb_highlight_bold {
    font-weight: 700;
    font-family: 'SUITE', sans-serif !important;
}

/* Mobile Break Control */
.tlb_mo_only {
    display: none;
}

.tlb_review_desc_body {
    margin-top: 30px;
    margin-bottom: 30px;
}

.tlb_review_desc_body p {
    font-size: 20px;
    color: #d0d0d0;
    margin: 4px 0;
    line-height: 1.5;
    letter-spacing: -0.5px;
    font-family: 'SUIT', sans-serif;
}

/* Animation Keyframes */
@keyframes tlbFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply Animation - JS가 활성화하면 숨겼다가 애니메이션, 없으면 그냥 보임 */
.tlb_review_section.tlb_anim_ready .tlb_review_sub_header,
.tlb_review_section.tlb_anim_ready .tlb_review_main_header,
.tlb_review_section.tlb_anim_ready .tlb_review_desc_body,
.tlb_review_section.tlb_anim_ready .tlb_review_logo,
.tlb_review_section.tlb_anim_ready .tlb_review_footer_note {
    opacity: 0;
    /* JS가 tlb_anim_ready를 붙인 후에만 숨김 — JS 없으면 기본 보임 */
}

/* Activate Animation when class is added via JS */
.tlb_animate_active .tlb_review_sub_header,
.tlb_animate_active .tlb_review_main_header,
.tlb_animate_active .tlb_review_desc_body,
.tlb_animate_active .tlb_review_logo,
.tlb_animate_active .tlb_review_footer_note {
    animation: tlbFadeInUp 1.0s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

/* Standard Delays (Triggered after activation) */
.tlb_animate_active .tlb_review_sub_header {
    animation-delay: 0.2s;
}

.tlb_animate_active .tlb_review_main_header {
    animation-delay: 0.4s;
}

.tlb_animate_active .tlb_review_desc_body {
    animation-delay: 0.6s;
}

.tlb_animate_active .tlb_review_logo {
    animation-delay: 0.8s;
}

.tlb_animate_active .tlb_review_footer_note {
    animation-delay: 1.0s;
}


.tlb_review_logo {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 80px auto;
    opacity: 0.9;
}

.tlb_review_footer_note {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
    font-family: 'SUIT', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tlb_review_section {
        padding: 40px 0;
        min-height: 100vw;
        max-height: 600px;
    }

    .tlb_review_bg_layer {
        background-position: center top;
    }

    .tlb_review_content_container {
        margin-top: 100px;
        /* Reduced margin */
    }

    .tlb_mo_only {
        display: block;
        /* Activate mobile line break */
    }

    .tlb_review_sub_header {
        font-size: 13px;
    }

    .tlb_review_main_header {
        font-size: 12vw;
        /* Reduced by ~15% from 14vw */
        margin-bottom: 20px;
        line-height: 1.1;
        font-weight: 300;
    }

    .tlb_review_desc_body {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .tlb_review_desc_body p {
        font-size: 13px;
        margin: 2px 0;
    }

    .tlb_review_logo {
        width: 90px;
        margin-bottom: 40px;
    }

    .tlb_review_footer_note {
        font-size: 10px;
        white-space: nowrap;
        letter-spacing: -1.0px;
        transform-origin: center top;
        transform: scale(0.95);
        width: 100%;
        overflow: visible;
    }
}


.tlb_lecture_item:hover {
    border-color: #555;
    transform: translateY(-2px);
}

.tlb_lec_idx {
    font-size: 16px;
    font-weight: 700;
    color: #888;
    margin-right: 20px;
    min-width: 50px;
    /* Increased for '제1강' */
    white-space: nowrap;
}

.tlb_lec_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tlb_lec_title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.tlb_lec_desc {
    font-size: 14px;
    color: #999;
    text-align: left;
}

.tlb_lec_time_badge {
    background-color: rgba(150, 45, 227, 0.1);
    border: 1px solid rgba(150, 45, 227, 0.3);
    color: #b355ff;
    /* Brand Purple */
    font-weight: 700;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    margin-left: 20px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .tlb_lecture_item {
        position: relative;
        /* For absolute positioning of badge */
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tlb_lec_time_badge {
        position: absolute;
        top: 20px;
        /* Match container padding */
        right: 25px;
        /* Match container padding */
        margin: 0;
        background: transparent;
        border: none;
        color: #b355ff;
        /* Keep purple text */
        padding: 0;
        font-size: 14px;
    }

    .tlb_lec_idx {
        margin-bottom: 4px;
    }
}
/* --- Section B: Legacy Product Styles (lb_ prefix — 기존 페이지 호환) --- */
/* ==========================================================================
   LB PRODUCT - 상세페이지 전용 스타일
   The LEET BIBLE Design System - Product Detail Page Styles
   ========================================================================== */

/* ==========================================================================
   Product Detail Styles
   ========================================================================== */

.book-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.book-title {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-bottom: 0.5rem !important;
}

.book-subtitle {
  font-size: 1.25rem !important;
  opacity: 0.8 !important;
  margin-bottom: 1rem !important;
}

.book-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  font-size: 0.9375rem !important;
}

.book-meta-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.5rem 1rem !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 0.5rem !important;
}

.book-description {
  font-size: 1.125rem !important;
  line-height: 1.8 !important;
  margin-top: 2rem !important;
}

/* ==========================================================================
   TOC List with Hover Effect
   ========================================================================== */

.toc-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 2rem 0 !important;
}

.toc-item {
  position: relative !important;
  padding: 1.25rem 1.5rem !important;
  margin-bottom: 0.75rem !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0.75rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
}

.toc-item::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 4px !important;
  background: linear-gradient(to bottom, #667eea, #764ba2) !important;
  border-radius: 0.75rem 0 0 0.75rem !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.toc-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateX(8px) !important;
}

.toc-item:hover::before {
  opacity: 1 !important;
}

.toc-number {
  display: inline-block !important;
  width: 2rem !important;
  height: 2rem !important;
  line-height: 2rem !important;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  margin-right: 1rem !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
}

.toc-title {
  font-weight: 600 !important;
  font-size: 1.125rem !important;
}

.toc-description {
  font-size: 0.9375rem !important;
  opacity: 0.7 !important;
  margin-top: 0.5rem !important;
}

/* ==========================================================================
   Outcomes Section
   ========================================================================== */

.outcomes-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 1.5rem !important;
  margin: 2rem 0 !important;
}

.outcome-card {
  position: relative !important;
  padding: 2rem !important;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 1rem !important;
  transition: all 0.3s ease !important;
  overflow: hidden !important;
}

.outcome-card::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}

.outcome-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.outcome-card:hover::before {
  opacity: 1 !important;
}

.outcome-icon {
  width: 3rem !important;
  height: 3rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 0.75rem !important;
  margin-bottom: 1rem !important;
  font-size: 1.5rem !important;
}

.outcome-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.75rem !important;
}

.outcome-description {
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
  opacity: 0.9 !important;
}

/* ==========================================================================
   Keyframe Animations
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Animation Utility Classes */
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards !important;
}

.animate-fadeInDown {
  animation: fadeInDown 0.6s ease-out forwards !important;
}

.animate-scaleIn {
  animation: scaleIn 0.5s ease-out forwards !important;
}

.animate-slideInLeft {
  animation: slideInLeft 0.7s ease-out forwards !important;
}

.animate-slideInRight {
  animation: slideInRight 0.7s ease-out forwards !important;
}

.animate-float {
  animation: float 3s ease-in-out infinite !important;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite !important;
}

/* Animation Delays */
.delay-100 { animation-delay: 100ms !important; }
.delay-200 { animation-delay: 200ms !important; }
.delay-300 { animation-delay: 300ms !important; }
.delay-400 { animation-delay: 400ms !important; }
.delay-500 { animation-delay: 500ms !important; }

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-subtitle {
    font-size: 1.125rem !important;
  }

  .shadcn-card,
  .card-3d,
  .book-detail {
    padding: 1.5rem !important;
  }

  .book-title {
    font-size: 2rem !important;
  }

  .media-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
  }

  .outcomes-grid {
    grid-template-columns: 1fr !important;
  }

  .toc-item {
    padding: 1rem !important;
  }
}

/* ==========================================================================
   Dark Theme Utilities
   ========================================================================== */

.dark-bg-primary {
  background-color: #0f0f0f !important;
}

.dark-bg-secondary {
  background-color: #1a1a1a !important;
}

.dark-bg-tertiary {
  background-color: #2d2d2d !important;
}

.dark-text-primary {
  color: #ffffff !important;
}

.dark-text-secondary {
  color: rgba(255, 255, 255, 0.8) !important;
}

.dark-text-tertiary {
  color: rgba(255, 255, 255, 0.6) !important;
}

.dark-border {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Glassmorphism Effect */
.glass {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Glow Effect */
.glow {
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3) !important;
}

.glow:hover {
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.5) !important;
}

/* ==========================================================================
   Product Detail Page (.lb_productdetail)
   범용 상품 상세페이지 스타일
   ========================================================================== */

/* Wrapper - 100% 폭, 여백 없음 */
.lb_productdetail {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

/* Section 기본 */
.lb_productdetail section {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Container (패딩 있는 영역) */
.lb_productdetail .container {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.lb_productdetail .hero {
    background: linear-gradient(135deg, #962de3 0%, #5f17d1 50%, #111111 100%) !important;
    padding: 40px 0 30px !important;
}

.lb_productdetail .shipping {
    background: rgba(26, 26, 26, 0.8) !important;
    border: 1px solid rgba(150, 45, 227, 0.2) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    padding: 20px 24px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    transition: all 0.3s ease !important;
}

.lb_productdetail .shipping:hover {
    border-color: rgba(150, 45, 227, 0.5) !important;
    box-shadow: 0 0 30px rgba(150, 45, 227, 0.2) !important;
}

.lb_productdetail .shipping-icon {
    font-size: 2rem !important;
    background: linear-gradient(135deg, #962de3, #c03eff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.lb_productdetail .shipping-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 2px !important;
    color: #f9f9f9 !important;
}

.lb_productdetail .shipping-text {
    color: #d1d5db !important;
    font-size: 1rem !important;
}

/* ==========================================================================
   Sample Section
   ========================================================================== */

.lb_productdetail .sample {
    background: #0a0a0a !important;
    padding: 40px 0 !important;
}

.lb_productdetail .sample-card {
    background: rgba(26, 26, 26, 0.6) !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 16px !important;
    padding: 30px !important;
    transition: all 0.3s ease !important;
}

.lb_productdetail .sample-card:hover {
    background: rgba(26, 26, 26, 0.9) !important;
    border-color: #962de3 !important;
    box-shadow: 0 0 40px rgba(150, 45, 227, 0.2) !important;
}

.lb_productdetail .sample-header {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.lb_productdetail .sample-icon {
    font-size: 3rem !important;
    background: linear-gradient(135deg, #962de3, #c03eff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    flex-shrink: 0 !important;
}

.lb_productdetail .sample-title {
    font-size: 1.875rem !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    color: #f9f9f9 !important;
}

.lb_productdetail .sample-desc {
    color: #d1d5db !important;
    line-height: 1.6 !important;
    font-size: 1.125rem !important;
}

/* ==========================================================================
   Media Gallery - 100% 너비, 여백 없음
   ========================================================================== */

.lb_productdetail .media {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.lb_productdetail .gallery {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
}

.lb_productdetail .media-item {
    width: 100% !important;
    line-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.lb_productdetail .media-item img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.lb_productdetail .video {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.lb_productdetail .video-wrapper {
    position: relative !important;
    padding-bottom: 56.25% !important;
    height: 0 !important;
    background: #000 !important;
    width: 100% !important;
}

.lb_productdetail .video-wrapper iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

/* ==========================================================================
   Book Detail Section
   ========================================================================== */

.lb_productdetail .book {
    background: #0a0a0a !important;
    padding: 60px 0 !important;
}

.lb_productdetail .book-header {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.lb_productdetail .book-category {
    display: inline-block !important;
    background: linear-gradient(135deg, #962de3, #c03eff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 10px !important;
}

.lb_productdetail .book-title {
    font-size: 3rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    background: linear-gradient(135deg, #ffffff 0%, #962de3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.lb_productdetail .intro-card {
    background: rgba(26, 26, 26, 0.6) !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 12px !important;
    padding: 30px !important;
    margin-bottom: 40px !important;
}

.lb_productdetail .identity {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #2a2a2a !important;
    margin-bottom: 20px !important;
}

.lb_productdetail .logo {
    width: 60px !important;
    height: auto !important;
}

.lb_productdetail .name-en {
    font-size: 1.875rem !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    color: #f9f9f9 !important;
}

.lb_productdetail .name-ko {
    color: #d1d5db !important;
    font-size: 1.25rem !important;
}

.lb_productdetail .description p {
    margin-bottom: 14px !important;
    line-height: 1.7 !important;
    color: #e5e7eb !important;
    font-size: 1.125rem !important;
}

/* ==========================================================================
   Specs Grid
   ========================================================================== */

.lb_productdetail .specs {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
}

.lb_productdetail .spec-card {
    background: rgba(26, 26, 26, 0.6) !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 12px !important;
    padding: 24px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.lb_productdetail .spec-number {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #962de3, #c03eff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    line-height: 1 !important;
    margin-bottom: 6px !important;
}

.lb_productdetail .spec-label {
    font-weight: 600 !important;
    margin-bottom: 4px !important;
    color: #f9f9f9 !important;
    font-size: 1.125rem !important;
}

.lb_productdetail .spec-unit {
    color: #9ca3af !important;
    font-size: 1rem !important;
}

.lb_productdetail .spec-breakdown {
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid #2a2a2a !important;
    text-align: left !important;
}

.lb_productdetail .spec-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
}

.lb_productdetail .badge {
    display: inline-block !important;
    padding: 4px 10px !important;
    background: linear-gradient(135deg, #962de3, #b447ff) !important;
    color: white !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
}

.lb_productdetail .badge-alt {
    background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
}

/* ==========================================================================
   TOC (Table of Contents)
   ========================================================================== */

.lb_productdetail .toc-title {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 32px !important;
    color: #f9f9f9 !important;
}

.lb_productdetail .toc-list {
    max-width: 100% !important;
}

.lb_productdetail .toc-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px 16px !important;
    border-bottom: 1px solid #2a2a2a !important;
    transition: all 0.3s ease !important;
}

.lb_productdetail .toc-item:hover {
    background: rgba(150, 45, 227, 0.05) !important;
    padding-left: 24px !important;
}

.lb_productdetail .toc-number {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: linear-gradient(135deg, #962de3, #b447ff) !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
}

.lb_productdetail .toc-subtitle {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #f9f9f9 !important;
    margin-bottom: 6px !important;
}

.lb_productdetail .toc-desc {
    color: #d1d5db !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
}

/* ==========================================================================
   Outcomes Section
   ========================================================================== */

.lb_productdetail .outcomes {
    background: rgba(26, 26, 26, 0.6) !important;
    border: 1px solid #2a2a2a !important;
    padding: 40px 20px !important;
    border-radius: 16px !important;
}

.lb_productdetail .outcome-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.lb_productdetail .outcome-item {
    display: flex !important;
    gap: 12px !important;
    padding: 16px !important;
    background: rgba(26, 26, 26, 0.4) !important;
    border-radius: 8px !important;
    border-left: 3px solid #962de3 !important;
    transition: all 0.3s ease !important;
}

.lb_productdetail .outcome-item:hover {
    transform: translateX(6px) !important;
    background: rgba(150, 45, 227, 0.1) !important;
}

.lb_productdetail .outcome-icon {
    font-size: 1.25rem !important;
    background: linear-gradient(135deg, #962de3, #c03eff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
}

.lb_productdetail .outcome-content p {
    color: #e5e7eb !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.lb_productdetail .outcome-content strong {
    background: linear-gradient(135deg, #962de3, #c03eff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 700 !important;
}

/* ==========================================================================
   Mobile Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .lb_productdetail .container {
        padding: 30px 16px !important;
    }

    .lb_productdetail .book-title {
        font-size: 2rem !important;
    }

    .lb_productdetail .shipping {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }

    .lb_productdetail .sample-header {
        flex-direction: column !important;
        text-align: center !important;
    }

    .lb_productdetail .identity {
        flex-direction: column !important;
        text-align: center !important;
    }

    .lb_productdetail .specs {
        grid-template-columns: 1fr !important;
    }

    .lb_productdetail .toc-item {
        flex-direction: column !important;
        padding: 16px 12px !important;
    }
}

@media (min-width: 769px) {
    .lb_productdetail .specs {
        grid-template-columns: 1fr 2fr !important;
    }
}

/* ==========================================================================
   FAQ Section - Product Detail Page (Principle Blue Theme)
   ========================================================================== */

.lb_productdetail .lb_faq {
    position: relative !important;
    background: var(--color-background) !important;
    padding: 30px 0 35px 0 !important;
    overflow: hidden !important;
}

/* 다크모드 적용 */
.lb_productdetail .lb_faq[data-theme="dark"] {
    --color-text-title: #f9fafb;
    --color-text-body: #e5e7eb;
    --color-text-light: #9ca3af;
    --color-background: #1a1a1a;
}

/* 그라데이션 배경 - 상단에서 하단으로 */
.lb_productdetail .lb_faq::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 500px !important;
    background: linear-gradient(to bottom,
        rgba(52, 105, 212, 0.25) 0%,
        rgba(74, 134, 232, 0.15) 30%,
        rgba(74, 134, 232, 0.08) 60%,
        transparent 100%
    ) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.lb_productdetail .lb_faq .container {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    max-width: 760px !important;
    margin: 0 auto !important;
    padding: 0 var(--section-padding-x) !important;
}

.lb_productdetail .lb_faq .faq_content {
    position: relative !important;
    width: 100% !important;
    margin: 60px auto !important;
}

/* FAQ Header */
.lb_productdetail .lb_faq .faq_header {
    margin-bottom: 48px !important;
}

.lb_productdetail .lb_faq .faq_label_line {
    width: 40px !important;
    height: 6px !important;
    background-color: var(--color-principle) !important;
    margin-bottom: 28px !important;
    display: block !important;
}

.lb_productdetail .lb_faq .faq_label {
    display: block !important;
    font-family: var(--lb-font-family) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: 0.2em !important;
    color: var(--color-principle) !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
}

.lb_productdetail .lb_faq .faq_title {
    font-family: var(--lb-font-family) !important;
    font-size: var(--section-title-size) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
    color: var(--color-text-title) !important;
    margin: 0 !important;
}

/* FAQ List */
.lb_productdetail .lb_faq .faq_list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

/* FAQ Item */
.lb_productdetail .lb_faq .faq_item {
    background: rgba(74, 134, 232, 0.05) !important;
    border: 2px solid rgba(74, 134, 232, 0.2) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.lb_productdetail .lb_faq .faq_item:hover {
    border-color: rgba(74, 134, 232, 0.4) !important;
    background: rgba(74, 134, 232, 0.08) !important;
}

.lb_productdetail .lb_faq .faq_item.active {
    border-color: var(--color-principle) !important;
    background: transparent !important;
}

/* FAQ Question Button */
.lb_productdetail .lb_faq .faq_question {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding: 20px 24px 20px 0 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
}

.lb_productdetail .lb_faq .faq_question:hover {
    background: rgba(74, 134, 232, 0.05) !important;
}

.lb_productdetail .lb_faq .faq_q_text {
    font-family: var(--lb-font-family) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    letter-spacing: -0.01em !important;
    color: var(--color-text-title) !important;
    flex: 1 !important;
    pointer-events: none !important;
}

/* FAQ Icon - CSS Arrow (아임웹 SVG 제거 문제 해결) */
.lb_productdetail .lb_faq .faq_question::after {
    content: '' !important;
    flex-shrink: 0 !important;
    width: 12px !important;
    height: 12px !important;
    border-right: 2px solid var(--color-principle) !important;
    border-bottom: 2px solid var(--color-principle) !important;
    transform: rotate(45deg) !important;
    transition: transform 0.3s ease !important;
    margin-top: -4px !important;
    pointer-events: none !important;
}

.lb_productdetail .lb_faq .faq_item.active .faq_question::after {
    transform: rotate(-135deg) !important;
    margin-top: 4px !important;
}

/* FAQ Answer */
.lb_productdetail .lb_faq .faq_answer {
    max-height: 0;
    overflow: hidden !important;
    transition: max-height 0.4s ease;
}

.lb_productdetail .lb_faq .faq_item.active .faq_answer {
    border-top: 2px solid rgba(74, 134, 232, 0.2) !important;
}

.lb_productdetail .lb_faq .faq_answer_content {
    padding: 20px 24px 24px 24px !important;
    background: rgba(74, 134, 232, 0.05) !important;
}

.lb_productdetail .lb_faq .faq_answer_content p {
    font-family: var(--lb-font-family) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.75 !important;
    letter-spacing: -0.01em !important;
    color: var(--color-text-body) !important;
    margin: 0 0 16px 0 !important;
}

.lb_productdetail .lb_faq .faq_answer_content p:last-child {
    margin-bottom: 0 !important;
}

/* 반응형 - 모바일 */
@media (max-width: 767px) {
    .lb_productdetail .lb_faq {
        padding: 20px 0 25px 0 !important;
    }

    .lb_productdetail .lb_faq .container {
        padding: 0 var(--section-padding-x-mobile) !important;
    }

    .lb_productdetail .lb_faq .faq_title {
        font-size: var(--section-title-size-mobile) !important;
    }

    .lb_productdetail .lb_faq .faq_header {
        margin-bottom: 32px !important;
    }

    .lb_productdetail .lb_faq .faq_list {
        gap: 12px !important;
    }

    .lb_productdetail .lb_faq .faq_item {
        border-radius: 12px !important;
    }

    .lb_productdetail .lb_faq .faq_question {
        padding: 18px 16px !important;
        gap: 12px !important;
    }

    .lb_productdetail .lb_faq .faq_q_text {
        font-size: 16px !important;
    }

    .lb_productdetail .lb_faq .faq_answer_content {
        padding: 18px 16px 18px 16px !important;
    }

    .lb_productdetail .lb_faq .faq_answer_content p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin: 0 0 12px 0 !important;
    }

    .lb_productdetail .lb_faq .faq_answer_content p:last-child {
        margin-bottom: 0 !important;
    }
}


/* --- Section C: Normal Pages (FAQ, 배송, 일반 컴포넌트) --- */
/* ==========================================================================
   LB NORMAL PAGES - 일반 페이지 스타일
   The LEET BIBLE Design System - FAQ, Delivery, and Common Page Components
   ========================================================================== */

/* ==========================================================================
   Section Heading System
   ========================================================================== */

/* Center-aligned heading variant */
.section_header {
    text-align: center;
    margin-bottom: 60px;
}

.section_label {
    display: inline-block;
    font-size: var(--section-label-size);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--section-label-spacing);
}

.section_label.color-principle {
    color: var(--color-principle);
}

.section_label.color-passion {
    color: var(--color-passion);
}

.section_label.color-patience {
    color: var(--color-patience);
}

.section_title {
    font-size: var(--section-title-size);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--section-subtitle-spacing) 0;
    color: var(--color-text-title);
}

.section_subtitle {
    font-size: var(--section-subtitle-size);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0 auto;
}

/* Left-aligned heading variant */
.section_header--left {
    text-align: left;
    margin-bottom: 60px;
}

.section_header--left .section_title {
    margin-left: var(--section-title-offset-left);
}

.section_header--left .section_subtitle {
    margin: 0;
}

/* Mobile styles */
@media (max-width: 767px) {
    .section_header {
        margin-bottom: 40px;
    }

    .section_label {
        font-size: var(--section-label-size-mobile);
        margin-bottom: var(--section-label-spacing-mobile);
    }

    .section_title {
        font-size: var(--section-title-size-mobile);
        margin-bottom: var(--section-subtitle-spacing-mobile);
    }

    .section_subtitle {
        font-size: var(--section-subtitle-size-mobile);
    }

    .section_header--left {
        margin-bottom: 40px;
    }
}
/* ==========================================================================
   Delivery Info Section - CSS Variables 기반
   ========================================================================== */

.lb_delivery_info {
    position: relative;
    background: var(--color-background);
    padding: 100px 0 120px 0;
    overflow: hidden;
}

/* 다크모드 적용 */
.lb_delivery_info[data-theme="dark"] {
    --color-text-title: #f9fafb;
    --color-text-body: #e5e7eb;
    --color-text-light: #9ca3af;
    --color-text-lighter: #6b7280;
    --color-background: #1a1a1a;
    --color-background-dark: #0a0a0a;
    --color-background-card: #2d2d2d;
    --color-background-hover: #333333;
    --color-background-gradient-light: #2a2a2a;
    --color-background-gradient-dark: #1a1a1a;
    --color-border: #404040;
    --color-border-light: #333333;
    --color-border-dark: #4d4d4d;
}

/* 그라데이션 배경 - 하단 중앙에서 연한 보라색 원형으로 */
.lb_delivery_info::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 600px;
    background: radial-gradient(
        ellipse at center bottom,
        rgba(150, 45, 227, 0.2) 0%,
        rgba(124, 58, 237, 0.12) 25%,
        rgba(139, 92, 246, 0.06) 45%,
        rgba(139, 92, 246, 0.02) 65%,
        transparent 85%
    );
    pointer-events: none;
    z-index: 0;
}

.lb_delivery_info .container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

.lb_delivery_info .delivery_content {
    position: relative;
    text-align: left;
    padding: 0;
    max-width: var(--content-max-width);
}

/* 검은색 장식 선 */
.lb_delivery_info .delivery_black_line {
    width: var(--spacing-xl);
    height: 6px;
    background-color: var(--color-text-title);
    margin-bottom: var(--spacing-lg);
    display: block;
}

/* DELIVERY INFO 라벨 */
.lb_delivery_info .delivery_label {
    display: block;
    font-family: var(--lb-font-family);
    font-size: var(--font-size-sm);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

/* 메인 제목 컨테이너 */
.lb_delivery_info .delivery_title {
    font-family: var(--lb-font-family);
    line-height: 1.1;
    margin: 0 0 var(--spacing-md) 0;
}

/* "본 교재는" */
.lb_delivery_info .title_small {
    display: inline;
    font-size: var(--font-size-2xl);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--color-text-title);
}

/* "실물교재" - 그라데이션 */
.lb_delivery_info .title_large_bold {
    display: inline;
    font-size: var(--section-title-size);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #C4B5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* "입니다." */
.lb_delivery_info .title_large_normal {
    display: inline;
    font-size: var(--section-title-size);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text-title);
}

/* 설명 텍스트 */
.lb_delivery_info .delivery_desc {
    font-family: var(--lb-font-family);
    font-size: var(--font-size-md);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--color-text-title);
    margin: 0 0 4px 0;
}

/* 배송 방법 */
.lb_delivery_info .delivery_method {
    font-family: var(--lb-font-family);
    font-size: var(--font-size-md);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--color-text-light);
    margin: 0 0 var(--spacing-xl) 0;
}

/* 버튼 컨테이너 */
.lb_delivery_info .delivery_buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

/* 버튼 공통 스타일 */
.lb_delivery_info .delivery_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 56px;
    border-radius: 28px;
    font-family: var(--lb-font-family);
    font-size: var(--font-size-base);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: var(--lb-transition-base);
    cursor: pointer;
}

/* 보라색 채움 버튼 */
.lb_delivery_info .delivery_btn_primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-text-white);
    border: none;
    box-shadow: 0 4px 16px rgba(150, 45, 227, 0.3);
}

.lb_delivery_info .delivery_btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(150, 45, 227, 0.4);
}

/* 흰색 아웃라인 버튼 */
.lb_delivery_info .delivery_btn_secondary {
    background: var(--color-background-card);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(150, 45, 227, 0.15);
}

.lb_delivery_info .delivery_btn_secondary:hover {
    background: var(--color-primary-transparent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(150, 45, 227, 0.25);
}

/* 모바일 전용 줄바꿈 */
.mobile-only {
    display: none;
}

/* 반응형 - 모바일 */
@media (max-width: 767px) {
    .lb_delivery_info {
        padding: 80px 0;
    }

    .lb_delivery_info .container {
        padding: 0 var(--section-padding-x-mobile);
    }

    /* 모바일에서 그라데이션 크기 조정 */
    .lb_delivery_info::before {
        width: 800px;
        height: 400px;
        bottom: 0;
    }

    .lb_delivery_info .delivery_content {
        padding: 0;
    }

    .lb_delivery_info .title_small {
        font-size: var(--font-size-lg);
        display: inline;
    }

    .lb_delivery_info .title_large_bold {
        font-size: var(--section-title-size-mobile);
    }

    .lb_delivery_info .title_large_normal {
        font-size: var(--section-title-size-mobile);
    }

    .lb_delivery_info .delivery_desc {
        font-size: 15px;
    }

    .lb_delivery_info .delivery_method {
        font-size: var(--font-size-sm);
    }

    .lb_delivery_info .delivery_buttons {
        align-items: center;
    }

    .lb_delivery_info .delivery_btn {
        width: 100%;
        max-width: 100%;
    }

    /* 모바일에서만 줄바꿈 보이기 */
    .mobile-only {
        display: inline;
    }
}

/* ==========================================================================
   Container System - 한국형 이중 컨테이너
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-text {
    max-width: 860px;
    margin: 0 auto;
}

/* ==========================================================================
   Section Background Utilities - 섹션별 배경
   ========================================================================== */

/* 밝은 배경 */
.section-light {
    background: #ffffff;
    color: var(--color-text-body);
}

/* 어두운 배경 */
.section-dark {
    background: #1a1a1a;
    color: #e5e7eb;
}

.section-dark .section_title,
.section-dark h2,
.section-dark h3 {
    color: #f9fafb;
}

.section-dark .section_subtitle,
.section-dark p {
    color: #e5e7eb;
}

/* 그라데이션 배경 */
.section-gradient-purple {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b47 100%);
    color: #e5e7eb;
}

.section-gradient-blue {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0ff 100%);
    color: var(--color-text-body);
}

/* 섹션 패딩 */
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 80px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-padding-sm {
        padding: 40px 0;
    }

    .section-padding-lg {
        padding: 80px 0;
    }
}

/* ==========================================================================
   Management Landing Page Components
   ========================================================================== */

/* Intro Card - 범용 카드 컴포넌트 */
.intro-card {
    background: var(--color-background-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.section-dark .intro-card {
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Outcome List - 체크리스트 스타일 (심플 버전) */
.outcome-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.outcome-item:last-child {
    border-bottom: none;
}

.outcome-item:hover {
    padding-left: 8px;
}

.section-dark .outcome-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outcome-icon {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--color-primary);
    font-weight: 700;
    min-width: 32px;
    text-align: center;
}

.outcome-content {
    flex: 1;
}

.outcome-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Spec Cards - 스펙 카드 */
.specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.spec-card {
    background: linear-gradient(135deg, rgba(150, 45, 227, 0.05), rgba(150, 45, 227, 0.1));
    border: 2px solid rgba(150, 45, 227, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(150, 45, 227, 0.15);
}

.spec-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-title);
    margin-bottom: 8px;
}

.spec-unit {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ==========================================================================
   FAQ Section - 관리반용
   ========================================================================== */

.lb_faq {
    position: relative;
    background: var(--color-background);
    padding: 100px 0;
}

.lb_faq[data-theme="dark"] {
    background: #1a1a1a;
}

.lb_faq .faq_content {
    position: relative;
    width: 100%;
}

.lb_faq .faq_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lb_faq .faq_item {
    background: rgba(150, 45, 227, 0.05);
    border: 2px solid rgba(150, 45, 227, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lb_faq .faq_item:hover {
    border-color: rgba(150, 45, 227, 0.4);
}

.lb_faq .faq_item.active {
    border-color: var(--color-primary);
    background: rgba(150, 45, 227, 0.1);
}

.lb_faq .faq_question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--lb-font-family);
}

.lb_faq .faq_question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.lb_faq .faq_item.active .faq_question::after {
    transform: rotate(45deg);
}

.lb_faq .faq_q_text {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-title);
    flex: 1;
}

.lb_faq .faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.lb_faq .faq_answer_content {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-body);
}

.lb_faq .faq_answer_content p {
    margin-bottom: 16px;
}

.lb_faq .faq_answer_content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Management Hero Section - 코드잇 스타일
   ========================================================================== */

.management-hero {
    position: relative;
    padding: 80px 0 0 0;
    overflow: hidden;
}

.management-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

/* 왼쪽 콘텐츠 */
.management-hero__content {
    z-index: 2;
}

.management-hero__label {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.management-hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: #f9fafb;
    margin: 0 0 40px 0;
    letter-spacing: -0.03em;
}

/* 정보 카드 */
.management-hero__info {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.management-hero__info-item {
    flex: 1;
    min-width: 0;
}

.management-hero__info-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.management-hero__info-content {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-title);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.management-hero__badge {
    display: inline-block;
    background: #ff3366;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.management-hero__info-separator {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 16px;
}

/* 오른쪽 그래픽 */
.management-hero__graphics {
    position: relative;
    height: 500px;
    z-index: 1;
}

.management-hero__graphic-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(150, 45, 227, 0.3) 0%,
        rgba(124, 58, 237, 0.2) 30%,
        rgba(139, 92, 246, 0.1) 60%,
        transparent 100%
    );
    border-radius: 50%;
}

.management-hero__graphic-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(150, 45, 227, 0.1), rgba(150, 45, 227, 0.05));
    border-radius: 50%;
    border: 2px solid rgba(150, 45, 227, 0.2);
}

.management-hero__lottie {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
}

/* 혜택 배너 */
.management-hero__benefit {
    position: relative;
    background: white;
    margin-top: -1px;
}

.management-hero__benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at top left, transparent 28px, white 28px);
}

.management-hero__benefit::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at top right, transparent 28px, white 28px);
}

.management-hero__benefit-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.management-hero__benefit-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
}

.management-hero__benefit-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-text-title);
    margin: 0;
}

.management-hero__benefit-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.management-hero__benefit-item {
    text-align: center;
    position: relative;
}

.management-hero__benefit-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 1;
}

.management-hero__benefit-icon {
    margin-bottom: 12px;
}

.management-hero__benefit-icon svg {
    width: 60px;
    height: 60px;
}

.management-hero__benefit-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text-title);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .management-hero {
        padding: 60px 0 0 0;
    }

    .management-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .management-hero__title {
        font-size: 36px;
    }

    .management-hero__info {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .management-hero__info-separator {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .management-hero__graphics {
        height: 300px;
    }

    .management-hero__graphic-main {
        width: 280px;
        height: 280px;
    }

    .management-hero__benefit-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .management-hero__benefit-title {
        font-size: 24px;
    }

    .management-hero__benefit-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .mobile-only {
        display: inline;
    }
}
