@charset "utf-8";

/* =========================== COMMON SECTION STYLES */
.section_title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section_title h2 {
    font-size: 45px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    font-family: 'Pretendard', sans-serif;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

.section_title h2::after {
    display: none;
}

/* =========================== LENS LIST BANNER */
#lensListBanner {
    padding: 80px 0;
    position: relative;
    background: #f5f5f7;
}

.lens_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.lens_title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.lens_title h2 {
    font-size: 56px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.8px;
    font-family: 'Pretendard', sans-serif;
    line-height: 1.07;
}

.lens_content_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.lens_product_card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.lens_product_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.lens_card_inner {
    padding: 50px 40px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lens_card_title {
    font-size: 40px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.5px;
    font-family: 'Pretendard', sans-serif;
    margin-bottom: 8px;
    line-height: 1.1;
    min-height: 88px;
    display: flex;
    align-items: flex-start;
}

.lens_card_subtitle {
    font-size: 21px;
    font-weight: 400;
    color: #6e6e73;
    letter-spacing: -0.2px;
    font-family: 'Pretendard', sans-serif;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lens_card_link {
    font-size: 17px;
    font-weight: 400;
    color: #0066cc;
    text-decoration: none;
    font-family: 'Pretendard', sans-serif;
    margin-bottom: 30px;
    display: inline-block;
    transition: all 0.2s ease;
}

.lens_card_link:hover {
    text-decoration: underline;
}

.lens_card_image {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    height: 220px;
    flex-shrink: 0;
}

.lens_card_image img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lens_product_card:hover .lens_card_image img {
    transform: scale(1.05);
}
@media(max-width: 1024px) {
    #lensListBanner {
        padding: 60px 0;
    }

    .lens_title h2 {
        font-size: 48px;
    }

    .lens_content_wrapper {
        gap: 16px;
    }

    .lens_product_card {
        min-height: 420px;
    }

    .lens_card_inner {
        padding: 40px 30px 30px;
    }

    .lens_card_title {
        font-size: 32px;
        min-height: 70px;
    }

    .lens_card_subtitle {
        font-size: 19px;
    }

    .lens_card_link {
        font-size: 16px;
    }

    .lens_card_image {
        height: 210px;
    }
}

@media(max-width: 768px) {
    #lensListBanner {
        padding: 50px 0;
    }

    .lens_title {
        margin-bottom: 40px;
    }

    .lens_title h2 {
        font-size: 40px;
    }

    .lens_content_wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lens_product_card {
        min-height: 400px;
    }

    .lens_card_inner {
        padding: 35px 25px 25px;
    }

    .lens_card_title {
        font-size: 28px;
        min-height: 62px;
    }

    .lens_card_subtitle {
        font-size: 17px;
    }

    .lens_card_link {
        font-size: 15px;
    }

    .lens_card_image {
        height: 200px;
    }
}

@media(max-width: 480px) {
    #lensListBanner {
        padding: 40px 0;
    }

    .lens_container {
        padding: 0 20px;
    }

    .lens_title h2 {
        font-size: 32px;
    }

    .lens_product_card {
        min-height: 300px;
    }

    .lens_card_inner {
        padding: 30px 20px 20px;
    }

    .lens_card_title {
        font-size: 24px;
        min-height: 53px;
    }

    .lens_card_subtitle {
        font-size: 16px;
    }

    .lens_card_link {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .lens_card_image {
        padding: 10px 0;
        height: 150px;
    }
}

/* =========================== PRODUCT LIST SECTION */
#productListSection {
    background: #f5f5f7;
    padding: 80px 0;
    position: relative;
}

.product_list_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.product_list_title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.product_list_title h2 {
    font-size: 56px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.8px;
    font-family: 'Pretendard', sans-serif;
    line-height: 1.07;
}

.product_list_title h2::after {
    display: none;
}

.product_tabs_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #d2d2d7;
    position: relative;
}

.product_tabs {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.product_tab {
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 400;
    color: #6e6e73;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: -0.2px;
}

.product_tab.active {
    color: #1d1d1f;
    font-weight: 600;
}

.product_tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1d1d1f 0%, #424245 100%);
    transition: all 0.3s ease;
}

.product_tab:hover {
    color: #1d1d1f;
}

.tabs_view_more {
    padding-bottom: 15px;
    position: absolute;
    right: 0;
}

.tabs_view_more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1d1d1f;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: -0.2px;
    transition: all 0.2s ease;
}

.tabs_view_more a:hover {
    text-decoration: underline;
}

.tabs_view_more a span {
    transition: transform 0.2s ease;
    font-size: 16px;
}

.tabs_view_more a:hover span {
    transform: translateX(3px);
}

.product_grid_container {
    position: relative;
    min-height: 600px;
}

.product_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.product_grid.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.product_card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: none;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.product_image {
    width: 100%;
    height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.product_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product_card:hover .product_image img {
    transform: scale(1.05);
}

.product_info {
    padding: 20px 20px 30px;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    flex-grow: 1;
    justify-content: space-between;
}

.product_title {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: -0.3px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.product_desc {
    display: none;
    font-size: 14px;
    font-weight: 400;
    color: #6e6e73;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: -0.2px;
    margin: 0;
    line-height: 1.4;
}

.product_inquiry_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1d1d1f 0%, #424245 100%);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: -0.1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.product_inquiry_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.product_inquiry_btn:hover::before {
    left: 100%;
}

.product_inquiry_btn:hover {
    background: linear-gradient(135deg, #2c2c2e 0%, #515154 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.product_inquiry_btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.view_more_btn {
    display: none;
}

@media(max-width: 1300px) {
    .product_list_title h2 {
        font-size: 48px;
    }

    .product_grid {
        gap: 16px;
    }

    .product_image {
        height: 260px;
        padding: 30px;
    }
}

@media(max-width: 1024px) {
    #productListSection {
        padding: 60px 0;
    }

    .product_list_title h2 {
        font-size: 48px;
    }

    .product_list_title {
        margin-bottom: 50px;
    }

    .product_tabs {
        gap: 40px;
    }

    .product_tab {
        font-size: 16px;
    }

    .tabs_view_more a {
        font-size: 16px;
    }

    .product_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .product_image {
        height: 240px;
    }
}

@media(max-width: 768px) {
    #productListSection {
        padding: 50px 0;
    }

    .product_list_title {
        margin-bottom: 40px;
    }

    .product_list_title h2 {
        font-size: 40px;
    }

    .product_tabs_wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .product_tabs {
        gap: 30px;
        width: 100%;
        justify-content: center;
    }

    .product_tab {
        font-size: 15px;
        padding: 12px 0;
    }

    .tabs_view_more {
        padding-bottom: 0;
        position: static;
        width: 100%;
        text-align: center;
    }

    .tabs_view_more a {
        font-size: 15px;
    }

    .product_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .product_image {
        height: 200px;
        padding: 24px;
    }

    .product_info {
        padding: 16px;
        gap: 6px;
        min-width: 0;
    }

    .product_title {
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product_desc {
        font-size: 13px;
    }

    .product_inquiry_btn {
        font-size: 12px;
        padding: 9px 18px;
    }
}

@media(max-width: 480px) {
    #productListSection {
        padding: 40px 0;
    }

    .product_list_container {
        padding: 0 20px;
    }

    .product_list_title {
        margin-bottom: 30px;
    }

    .product_list_title h2 {
        font-size: 32px;
    }

    .product_tabs {
        gap: 20px;
    }

    .product_tab {
        font-size: 14px;
    }

    .tabs_view_more a {
        font-size: 14px;
    }

    .product_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product_image {
        height: 160px;
        padding: 24px;
    }

    .product_info {
        padding: 12px;
        gap: 10px;
        min-width: 0;
    }

    .product_title {
        font-size: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product_desc {
        font-size: 12px;
    }

    .product_inquiry_btn {
        font-size: 11px;
        padding: 8px 16px;
    }
}

/* =========================== PLACE SECTION */
#placeSection {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.place_container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.place_title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 0 40px;
}

.place_title h2 {
    font-size: 56px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.8px;
    font-family: 'Pretendard', sans-serif;
    line-height: 1.07;
}

.place_content_wrapper {
    position: relative;
}

.place_scroll_wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0 0 0 max(40px, calc((100% - 1400px) / 2));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.place_scroll_wrapper::-webkit-scrollbar {
    display: none;
}

.place_cards_container {
    display: flex;
    gap: 12px;
    width: max-content;
    padding-right: max(40px, calc((100% - 1400px) / 2));
}

.place_card {
    width: 375px;
    min-width: 375px;
    height: 600px;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.place_card_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
}

.place_card_header {
    position: absolute;
    top: 45px;
    left: 40px;
    right: 40px;
    z-index: 2;
}

.place_tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #f5f5f7;
    font-family: 'Pretendard', sans-serif;
    margin-bottom: 12px;
    opacity: 0.8;
}

.place_card_title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    font-family: 'Pretendard', sans-serif;
    line-height: 1.2;
    margin: 0;
}

.place_card_image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.place_card_image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.3s ease;
}

.place_card:hover .place_card_image::after {
    background: rgba(0, 0, 0, 0.2);
}

.place_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.place_card:hover .place_card_image img {
    transform: scale(1.05);
}

.place_plus_btn {
    position: absolute;
    bottom: 45px;
    right: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.place_plus_btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Navigation Arrows */
.place_navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 40px;
    padding: 0 max(40px, calc((100% - 1400px) / 2));
}

.place_nav_btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8e8ed;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1d1d1f;
}

.place_nav_btn:hover:not(:disabled) {
    background: #d2d2d7;
}

.place_nav_btn:disabled {
    cursor: not-allowed;
    opacity: 0.3;
    background: #f5f5f7;
}

@media(max-width: 1024px) {
    #placeSection {
        padding: 60px 0;
    }

    .place_title h2 {
        font-size: 48px;
    }

    .place_title {
        margin-bottom: 40px;
    }

    .place_scroll_wrapper {
        padding: 0 0 0 30px;
    }

    .place_cards_container {
        padding-right: 30px;
    }

    .place_card {
        width: 340px;
        min-width: 340px;
        height: 550px;
    }

    .place_card_header {
        top: 40px;
        left: 35px;
        right: 35px;
    }

    .place_card_title {
        font-size: 26px;
    }

    .place_plus_btn {
        bottom: 40px;
        right: 35px;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .place_pagination {
        padding: 0 30px;
        margin-top: 30px;
    }
}

@media(max-width: 768px) {
    #placeSection {
        padding: 50px 0;
    }

    .place_title h2 {
        font-size: 40px;
    }

    .place_title {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .place_scroll_wrapper {
        padding: 0 0 0 20px;
    }

    .place_cards_container {
        padding-right: 20px;
    }

    .place_card {
        width: 300px;
        min-width: 300px;
        height: 480px;
        border-radius: 24px;
    }

    .place_card_header {
        top: 35px;
        left: 30px;
        right: 30px;
    }

    .place_tag {
        font-size: 13px;
    }

    .place_card_title {
        font-size: 24px;
    }

    .place_plus_btn {
        bottom: 35px;
        right: 30px;
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    .place_pagination {
        padding: 0 20px;
        margin-top: 25px;
        gap: 7px;
    }

    .place_dot {
        width: 7px;
        height: 7px;
    }

    .place_dot.active {
        width: 7px;
        height: 7px;
    }
}

@media(max-width: 480px) {
    #placeSection {
        padding: 40px 0;
    }

    .place_title h2 {
        font-size: 32px;
    }

    .place_title {
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .place_scroll_wrapper {
        padding: 0 0 0 15px;
    }

    .place_cards_container {
        padding-right: 15px;
    }

    .place_card {
        width: 280px;
        min-width: 280px;
        height: 420px;
        border-radius: 20px;
    }

    .place_card_header {
        top: 30px;
        left: 25px;
        right: 25px;
    }

    .place_tag {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .place_card_title {
        font-size: 22px;
    }

    .place_plus_btn {
        bottom: 30px;
        right: 25px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .place_pagination {
        padding: 0 15px;
        margin-top: 20px;
        gap: 6px;
    }

    .place_dot {
        width: 6px;
        height: 6px;
    }

    .place_dot.active {
        width: 6px;
        height: 6px;
    }
}

/* =========================== IMAGE POPUP */
.image_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}

.image_popup.active {
    opacity: 1;
    visibility: visible;
}

.popup_content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popupZoom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@keyframes popupZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup_content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.popup_close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.popup_close:hover {
    background: #f5f5f5;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.popup_close svg {
    color: #1d1d1f;
    width: 22px;
    height: 22px;
}

@media(max-width: 768px) {
    .popup_content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .popup_content img {
        max-height: 85vh;
        border-radius: 8px;
    }

    .popup_close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .popup_close svg {
        width: 18px;
        height: 18px;
    }
}

/* =========================== CONTACT SECTION - Minimal & Trendy */
#contactSection {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

.contact_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact_title {
    text-align: center;
    margin-bottom: 64px;
}

.contact_title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -1.5px;
    font-family: 'Pretendard', sans-serif;
    line-height: 1.2;
    margin-bottom: 12px;
}

.contact_title h2::after {
    display: none;
}

.contact_title p {
    font-size: 17px;
    color: #86868b;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
}

.contact_content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: stretch;
}

/* 연락처 정보 카드 */
.contact_info_card {
    background: #f5f5f7;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact_info_header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8ed;
}

.contact_info_header .icon_circle {
    width: 48px;
    height: 48px;
    background: #1d1d1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_info_header .icon_circle svg {
    color: #ffffff;
    width: 22px;
    height: 22px;
}

.contact_info_header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    font-family: 'Pretendard', sans-serif;
    margin: 0;
}

.contact_details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail_item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #1d1d1f;
    font-family: 'Pretendard', sans-serif;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.2s ease;
}

.detail_item:hover {
    color: #0071e3;
}

.detail_item svg {
    flex-shrink: 0;
    color: #86868b;
    width: 20px;
    height: 20px;
}

.detail_item span {
    line-height: 1.5;
}

.contact_cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #e8e8ed;
}

.contact_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: #1d1d1f;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-family: 'Pretendard', sans-serif;
}

.contact_cta_btn:hover {
    background: #000000;
    transform: scale(1.02);
}

.contact_cta_btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.contact_cta_btn:hover svg {
    transform: translateX(4px);
}

/* 지도 영역 */
.contact_map {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f7;
}

.contact_map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 반응형 - 1024px */
@media(max-width: 1024px) {
    #contactSection {
        padding: 80px 0;
    }

    .contact_container {
        padding: 0 24px;
    }

    .contact_title h2 {
        font-size: 36px;
    }

    .contact_title {
        margin-bottom: 48px;
    }

    .contact_content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact_map {
        height: 320px;
        min-height: auto;
        order: -1;
    }

    .contact_info_card {
        padding: 32px;
    }
}

/* 반응형 - 768px */
@media(max-width: 768px) {
    #contactSection {
        padding: 64px 0;
    }

    .contact_container {
        padding: 0 20px;
    }

    .contact_title h2 {
        font-size: 30px;
    }

    .contact_title p {
        font-size: 15px;
    }

    .contact_title {
        margin-bottom: 40px;
    }

    .contact_map {
        height: 280px;
        border-radius: 16px;
    }

    .contact_info_card {
        padding: 28px;
        border-radius: 16px;
        gap: 24px;
    }

    .contact_info_header h3 {
        font-size: 18px;
    }

    .detail_item {
        font-size: 14px;
    }

    .contact_cta_btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* 반응형 - 480px */
@media(max-width: 480px) {
    #contactSection {
        padding: 48px 0;
    }

    .contact_container {
        padding: 0 16px;
    }

    .contact_title h2 {
        font-size: 26px;
    }

    .contact_title p {
        font-size: 14px;
    }

    .contact_title {
        margin-bottom: 32px;
    }

    .contact_map {
        height: 220px;
        border-radius: 14px;
    }

    .contact_info_card {
        padding: 24px;
        border-radius: 14px;
        gap: 20px;
    }

    .contact_info_header {
        padding-bottom: 20px;
        gap: 12px;
    }

    .contact_info_header .icon_circle {
        width: 42px;
        height: 42px;
    }

    .contact_info_header .icon_circle svg {
        width: 20px;
        height: 20px;
    }

    .contact_info_header h3 {
        font-size: 17px;
    }

    .detail_item {
        font-size: 14px;
        gap: 12px;
    }

    .contact_cta {
        padding-top: 20px;
    }

    .contact_cta_btn {
        padding: 14px 18px;
        font-size: 14px;
        border-radius: 10px;
    }
}

/* =========================== MAIN */
#mainVisual{overflow:hidden;position:relative;letter-spacing:-.2px;width:100%;height:100vh;min-height:650px;background:#000}
#mainVisual .main_slide{height:100%}
#mainVisual ul li{position:relative;background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../img/main/main01.jpg) center no-repeat;background-size: cover;background-position: center;background-blend-mode: darken;}
#mainVisual ul li::after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.4);z-index:1;pointer-events:none}
#mainVisual ul li{background-size: cover;background-position: center;}
#mainVisual ul li.bg02{background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../img/main/main02.jpg)}
#mainVisual ul li.bg03{background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../img/main/main03.jpg)}
#mainVisual ul li img{object-fit: cover;filter:brightness(0.7)}
.main a.main_eng_btn {color: #fff;!important;margin-right: 30px;}
.sh_nav .fa-magnifying-glass {color: #fff;font-size: 1.2rem;}
.sh_nav_ic {display: flex; align-items: center;}
/* 텍스트 */
#mainVisual .main_txt{position:absolute;top:50%;left:5%;z-index:101;transform:translateY(-50%);width:max-content;font-size:18px;line-height:1.5;color: rgb(255 255 255 / 81%);font-family:'Pretendard', sans-serif}
#mainVisual .main_txt .stit{display:block;font-size:16px;font-weight:500;color:var(--primary)}
#mainVisual .main_txt .btit{margin:45px 0 30px;font-size:60px;font-weight:700;color:#fff;line-height:1.25;white-space:pre-line}

/* 컨트롤 */
#mainVisual .controls{display:flex;flex-flow:column;align-items:flex-start;width:max-content;margin-top:100px}
#mainVisual .controls div{display:flex;align-items:center;margin-bottom:20px}
#mainVisual .controls .arr{cursor:pointer;padding-bottom:4px}
#mainVisual .controls .pager{width:75px;margin:0 35px; font-size:0}
#mainVisual .controls .pager span{position:relative;font-size:14px;font-weight:600;color:#fff}
#mainVisual .controls .pager span+span{opacity:.5;margin-left:20px;padding-left:20px}
#mainVisual .controls .pager span:before{content:"0"}
#mainVisual .controls .pager span+span:after{display:block;;content:"";position:absolute;left:0;top:4px;width:1px;height:12px;background:rgba(255,255,255,.4)}
#mainVisual .main_timeline{width:100%;height:auto;margin-right:12px}
#mainVisual .main_timeline span{display:none;position:relative;width:100%;height:2px;border-radius:0;background:#fff;opacity:1}
#mainVisual .main_timeline span.on{display:block}
#mainVisual .main_timeline span:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%}
#mainVisual .main_timeline span.on:before{background:var(--primary);animation:progressbar 4s linear}
@keyframes progressbar{0%{width:0}to{width:100%}}

@media(max-width:1310px){
#mainVisual .main_txt{left:30px;font-size:16px}
#mainVisual .main_txt .btit{font-size:48px}
.main_eng_btn{color: #000;font-weight: 600;}
}
@media(max-width:768px){
#mainVisual{min-height:450px}
#mainVisual .main_txt{width:100%;padding-right:30px;word-break:keep-all}
#mainVisual .main_txt .stit{font-size:14px}
#mainVisual .main_txt .btit{margin:20px 0;font-size:38px}
#mainVisual .controls{margin-top:50px}
#mainVisual .controls div{margin-bottom:10px}
#mainVisual .controls .pager span{font-size:13px}
}
@media(max-width:480px){
#mainVisual .main_txt .btit{white-space:normal;word-break:keep-all}
#mainVisual .main_txt .btit{font-size:32px}
#mainVisual .main_txt {padding: 0 5%; left: 0;}
}

/* =========================== inc01 */
#inc01{display:flex;padding:220px 0 220px 5%;background:url(../img/main/inc01/bg.png) bottom center no-repeat #020305}
#inc01 .tit_area{flex-shrink:0;padding-top:70px}
#inc01 .tit_area p{margin-bottom:25px;font-size:65px;font-weight:700;color:#fff}
#inc01 .tit_area .pl{font-size:17px;white-space:pre-line;line-height:1.8}
#inc01 .controls{display:flex;align-items:center;margin-top:70px;color:#fff}
#inc01 .controls .arr{display:flex;align-items:center;cursor:pointer}
#inc01 .controls .pager{width:76px;margin:0 35px;font-size:0}
#inc01 .controls .pager span{position:relative;font-size:14px;font-weight:600}
#inc01 .controls .pager span+span{opacity:.5;margin-left:20px;padding-left:20px}
#inc01 .controls .pager span:before{content:"0"}
#inc01 .controls .pager span+span:after{display:block;;content:"";position:absolute;left:0;top:4px;width:1px;height:12px;background:rgba(255,255,255,.4)}

#inc01 .inc01_slide {margin-left:18%}
#inc01 ul li{height:526px;overflow:hidden;border-radius:30px;background:url(../img/main/inc01/biz_img.jpg) center no-repeat;background-size:cover}
#inc01 ul li.li02{background-image:url(../img/main/inc01/img02.jpg)}
#inc01 ul li.li03{background-image:url(../img/main/inc01/img03.jpg)}
#inc01 ul li a{position:relative;display:flex;flex-flow:column;align-items:flex-start;height:100%;padding:50px;color:rgba(255,255,255,.7);word-break:keep-all;transition:all .3s}
#inc01 ul li a img{opacity:0;margin-top:15px;transition:all .3s}
#inc01 ul li p{margin:auto 0 15px;font-size:30px;font-weight:600;line-height:1.35;color:#fff}
#inc01 ul li:before{opacity:0;display:block;content:"";position:absolute;left:0;top:0;z-index:0;width:100%;height:100%;background:var(--primary);transition:all .3s}
#inc01 .main_business_bg {background-size: cover;background-position: center;background-blend-mode: darken;}
#inc01 .biz_con {background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('/img/home/main1/business_biz.png');}
#inc01 .lift_con {background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('/img/home/main1/business_lift.png');}
#inc01 .tm_con {background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('/img/home/main1/business_tm.png');}
#inc01 .robot_con {background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('/img/home/main1/business_robot.png');}
#inc01 .space_con {background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('/img/home/main1/business_space.png');}
#inc01 .camera_con {background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('/img/home/main1/business_camera.png');}
#inc01 .infra_con {background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('/img/home/main1/business_infra.png');}
@media(hover:hover){
#inc01 ul li:hover:before{opacity:.9}
#inc01 ul li:hover a{color:#fff}
#inc01 ul li:hover img{opacity:1;margin:0}
}
@media(max-width:1300px){
#inc01{padding:160px 0 160px 30px}
#inc01 .inc01_slide{margin-left:8%}
#inc01 ul li{height:480px}
#inc01 ul li a{padding:30px}
}
@media(max-width:1024px){
#inc01 .tit_area p{font-size:42px}
#inc01 .tit_area .pl{font-size:16px}
#inc01 ul li{height:420px}
#inc01 ul li p{font-size:26px}
}
@media(max-width:768px){
#inc01{display:block;padding:60px 0}
#inc01 .tit_area{padding:0 20px 25px;text-align:center}
#inc01 .tit_area p{margin-bottom:10px;font-size:32px}
#inc01 .tit_area .pl{white-space:normal;word-break:keep-all}
#inc01 .controls{justify-content:center;margin-top:15px}
#inc01 .inc01_slide{margin-left:20px}
#inc01 ul li{height:380px;border-radius:16px}
#inc01 ul li a{padding:20px}
#inc01 ul li p{font-size:22px;word-break:keep-all}
}
@media(max-width:480px){
#inc01 .inc01_slide{margin-left:0}
}

/* =========================== inc02 */
#inc02{ display:flex;align-items: baseline;height:970px;padding:80px 5% 0;background:url(../img/main/inc02/bg.png) top center no-repeat #020305}
#inc02 .tit_area{flex-shrink:0;padding-top:70px}
#inc02 .tit_area p{margin-bottom:25px;font-size:65px;font-weight:700;color:#fff}
#inc02 .tit_area .pl{font-size:17px;white-space:pre-line;line-height:1.8}

#inc02 ul{display:flex;flex-grow:1;margin-left:250px}
#inc02 ul li{width:33%;text-align:center}
#inc02 ul li span{font-size:65px;font-weight:700;color:#fff;font-family:'Pretendard', sans-serif}
#inc02 ul li p i{font-size:45px;font-weight:700;color:#fff;font-style:normal;font-family:'Pretendard', sans-serif}
#inc02 ul li .tit{margin:5px 0 30px;font-size:30px;font-weight:600;color:#fff}
#inc02 ul li div{white-space:pre-line}
@media(max-width:1500px){
#inc02 ul{margin-left:8%}
}
@media(max-width:1300px){
#inc02{padding:80px 30px}
}
@media(max-width:1024px){
#inc02{height:600px;padding-top:0}
#inc02 .tit_area p{font-size:42px}
#inc02 .tit_area .pl{font-size:16px}
#inc02 ul li span{font-size:40px}
#inc02 ul li .tit{font-size:26px}
#inc02 ul li p i{font-size:26px}
}
@media(max-width:768px){
#inc02{display:block;padding:60px 20px}
#inc02 .tit_area{padding:0 20px 35px;text-align:center}
#inc02 .tit_area p{margin-bottom:10px;font-size:32px}
#inc02 .tit_area .pl{white-space:normal;word-break:keep-all}
#inc02 ul{margin-left:0}
#inc02 ul li span{font-size:32px}
#inc02 ul li .tit{margin-bottom:15px;font-size:22px}
}
@media(max-width:480px){
#inc02{height:auto}
#inc02 ul{display:block}
#inc02 ul li{width:auto}
#inc02 ul li+li{margin-top:25px}
#inc02 ul li span{font-size:26px}
#inc02 ul li p i{font-size:20px}
#inc02 ul li .tit{margin-bottom:10px;font-size:18px}
}

/* =========================== inc03 */
#inc03{display:flex;padding:220px 0 280px 5%;background:url(../img/main/inc03/bg.png) 70% center no-repeat #020305}
#inc03 .tit_area{flex-shrink:0;padding-top:70px}
#inc03 .tit_area p{margin-bottom:25px;font-size:65px;font-weight:700;color:#fff}
#inc03 .tit_area .pl{font-size:17px;white-space:pre-line;line-height:1.8}
#inc03 .controls{display:flex;align-items:center;margin-top:70px;color:#fff}
#inc03 .controls .arr{display:flex;align-items:center;cursor:pointer}
#inc03 .controls .pager{width:76px;margin:0 35px;font-size:0}
#inc03 .controls .pager span{position:relative;font-size:14px;font-weight:600}
#inc03 .controls .pager span+span{opacity:.5;margin-left:20px;padding-left:20px}
#inc03 .controls .pager span:before{content:"0"}
#inc03 .controls .pager span+span:after{display:block;;content:"";position:absolute;left:0;top:4px;width:1px;height:12px;background:rgba(255,255,255,.4)}

#inc03 .inc03_slide{margin-left:18%}
#inc03 ul{padding-top:15px}
#inc03 ul li{height:526px;overflow:hidden;border-radius:30px;background:center no-repeat #fff;background-size:cover;transition:transform .3s}
#inc03 ul li:nth-child(even){margin-top:65px}
#inc03 ul li a{position:relative;display:flex;flex-flow:column;align-items:flex-start;height:100%;padding:100px 50px 80px;color:#777;word-break:keep-all}
#inc03 ul li a img{opacity:0;margin-top:15px;transition:all .3s}
#inc03 ul li p{margin-bottom:25px;font-size:27px;font-weight:600;word-break:keep-all;color:#222;line-height:1.35}
#inc03 ul li span{margin-top:auto;font-size:15px}
#inc03 ul li a.img{color:rgba(255,255,255,.75);background:rgba(0,0,0,.5)}
#inc03 ul li a.img p{color:#fff}

@media(hover:hover){
#inc03 ul li:hover{transform:translateY(-15px)}
}
@media(max-width:1300px){
#inc03{padding:160px 0 160px 30px}
#inc03 .inc03_slide{margin-left:8%}
#inc03 ul li{height:480px}
#inc03 ul li a{padding:30px}
}
@media(max-width:1024px){
#inc03 .tit_area p{font-size:42px}
#inc03 .tit_area .pl{font-size:16px}
#inc03 ul li{height:420px}
#inc03 ul li p{font-size:26px}
}
@media(max-width:768px){
#inc03{display:block;padding:60px 0}
#inc03 .tit_area{padding:0 20px 25px;text-align:center}
#inc03 .tit_area p{margin-bottom:10px;font-size:32px}
#inc03 .tit_area .pl{white-space:normal;word-break:keep-all}
#inc03 .controls{justify-content:center;margin-top:15px}
#inc03 .inc03_slide{margin-left:20px}
#inc03 ul li{height:380px;border-radius:16px}
#inc03 ul li:nth-child(even){margin-top:0}
#inc03 ul li a{padding:20px}
#inc03 ul li p{font-size:20px;word-break:keep-all}
#inc03 ul li span{font-size:13px}
}
@media(max-width:480px){
#inc03 .inc03_slide{margin-left:0}
#inc03 ul li{height:280px}
}

/*퀵메뉴*/
.floating-wrapper{
    position:fixed;
    right:24px;
    bottom:120px;
    z-index:1000;
    display:flex;
    flex-direction:column;
    gap:12px;

}
.floating-btn{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:56px;
    height:56px;
    padding:0 20px;
    border-radius:28px;
    background:linear-gradient(135deg,#027BFF,#0052D4);
    color:#fff!important;
    font:500 15px/1.2 "Noto Sans KR",sans-serif;
    box-shadow:0 4px 10px rgba(0,0,0,.15);
    overflow:hidden;
    text-decoration:none;
    transition:width .25s ease,box-shadow .25s ease;
}
.floating-btn .icon{
    flex:none;
    font-size:24px;
}
.floating-btn .label{
    opacity:0;
    white-space:nowrap;
    margin-left:12px;
    transition:opacity .15s .1s ease;
}
.floating-btn:hover{
    width:220px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}
.floating-btn:hover .label{
    opacity:1;
}
.material-icons {
    position: absolute;
    left: 30%;
    transition: left 0.3s ease;
}
.floating-btn:hover .material-icons {
    left: 10%;
}
.floating-btn.quote{
    background:linear-gradient(135deg,#00BCF2,#0090E7);
}
@media(max-width:768px){
    .floating-wrapper{bottom:80px;right:25px;}
    .floating-btn:hover{
        width: 44px;
        box-shadow:none;
    }
    .floating-btn span.label {
        display: none;
    }
    .floating-btn:hover .material-icons {
        left: 25%;

    }
}

/* =========================== 트렌디 헤더 스타일 (서브 페이지용) */

/* 서브 페이지 헤더 기본 스타일 */
#sh_hd.sub #shGnb {
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

#sh_hd.sub .sh_logo img {
    width: 120px;
}

#sh_hd.sub #shGnb .sh_nav {
    margin: 0 32% 0 auto;
}

#sh_hd.sub #shGnb .sh_nav > li {
    line-height: 80px;
}

#sh_hd.sub #shGnb .sh_nav > li > a {
    padding: 0 28px;
    font-size: 15px;
    font-weight: 500;
    color: #1d1d1f;
    font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
    transition: color 0.2s ease;
    position: relative;
    display: flex;
}

#sh_hd.sub #shGnb .sh_nav > li:hover > a {
    color: #1d1d1f !important;
    font-weight: 600;
}


#sh_hd.sub #shGnb .sh_nav > li:hover > a::after {
    width: calc(100% - 56px);
}

/* 서브메뉴 드롭다운 */
#sh_hd.sub .sh_lnb_bg {
    height: auto;
    min-height: 320px;
    padding-bottom: 40px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#sh_hd.sub #shGnb .sh_lnb_s {
    min-height: auto;
    padding: 24px 0 60px 0;
}

#sh_hd.sub #shGnb .sh_lnb_s:before {
    display: none;
}

#sh_hd.sub #shGnb .sh_lnb_s li {
    padding: 0 20px;
}

#sh_hd.sub #shGnb .sh_lnb_s li a {
    font-size: 14px;
    font-weight: 400;
    color: #6e6e73;
    line-height: 2.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
    transition: color 0.2s ease;
}

#sh_hd.sub #shGnb .sh_nav > li:hover .sh_lnb_s a {
    color: #6e6e73;
}

#sh_hd.sub #shGnb .sh_lnb_s li a:hover {
    color: #1d1d1f !important;
    font-weight: 500;
}

/* 검색 버튼 - 미니멀 */
#sh_hd.sub .header-search-btn {
    width: 40px;
    height: 40px;
    background: #f5f5f7;
    border-radius: 50%;
    color: #1d1d1f;
    box-shadow: none;
}

#sh_hd.sub .header-search-btn:hover {
    background: #e8e8e8;
    transform: none;
    box-shadow: none;
}

/* ENG 버튼 */
#sh_hd.sub .main_eng_btn {
    font-size: 13px;
    font-weight: 500;
    color: #6e6e73;
    margin-left: 16px;
}

#sh_hd.sub .main_eng_btn:hover {
    color: #1d1d1f;
}

/* 회사소개서 다운로드 버튼 - 숨김 */
#sh_hd.sub .down_btn {
    display: none;
}


/* 메인 페이지 헤더 기본 스타일 (배경 투명, 텍스트 흰색) */
#sh_hd:not(.sub) #shGnb {
    height: 80px;
    border-bottom: none;
    transition: background 0.3s ease;
}

/* 스크롤 시 어두운 반투명 배경 */
#sh_hd:not(.sub) #shGnb.on {
    background: rgba(0, 0, 0, 0.85);
}

/* 메뉴 호버 시 서브페이지와 동일한 스타일 (흰색 배경, 검은색 텍스트) */
#sh_hd:not(.sub) #shGnb:hover {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

/* 호버 시 로고 교체 - 흰색 로고 숨기고 컬러 로고 표시 */
#sh_hd:not(.sub) #shGnb:hover #sh_logo1 {
    display: none !important;
}

#sh_hd:not(.sub) #shGnb:hover #sh_logo2 {
    display: block !important;
}

#sh_hd:not(.sub) #shGnb:hover .sh_nav > li > a {
    color: #1d1d1f;
}

#sh_hd:not(.sub) #shGnb:hover .sh_nav > li:hover > a {
    color: #1d1d1f !important;
    font-weight: 600;
}

#sh_hd:not(.sub) #shGnb:hover .sh_nav > li > a::after {
    background: #1d1d1f;
}

#sh_hd:not(.sub) #shGnb:hover .header-search-btn {
    background: #f5f5f7;
    color: #1d1d1f;
}

#sh_hd:not(.sub) #shGnb:hover .header-search-btn:hover {
    background: #e8e8e8;
}

#sh_hd:not(.sub) #shGnb:hover .main_eng_btn {
    color: #6e6e73;
}

#sh_hd:not(.sub) #shGnb:hover .main_eng_btn:hover {
    color: #1d1d1f;
}

#sh_hd:not(.sub) #shGnb:hover .down_btn {
    background: #1d1d1f;
    color: #fff;
    border-color: #1d1d1f;
}

#sh_hd:not(.sub) #shGnb:hover .down_btn:hover {
    background: #333;
}

/* 메인 페이지 헤더 호버 시 문의 버튼 - 서브페이지와 동일한 스타일 */
#sh_hd:not(.sub) #shGnb:hover .header-inquiry-btn {
    background: rgba(0, 0, 0, 0.08);
    color: #222 !important;
    box-shadow: none;
}

#sh_hd:not(.sub) #shGnb:hover .header-inquiry-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* 문의 버튼 언더라인 효과 제거 */
#sh_hd:not(.sub) #shGnb .sh_nav_inquiry > a::after,
#sh_hd:not(.sub) #shGnb:hover .sh_nav_inquiry > a::after {
    display: none !important;
}

#sh_hd:not(.sub) .sh_logo img {
    width: 120px;
}

#sh_hd:not(.sub) #shGnb .sh_nav {
    margin: 0 32% 0 auto;
}

#sh_hd:not(.sub) #shGnb .sh_nav > li {
    line-height: 80px;
}

/* 기본 상태 - 흰색 텍스트 */
#sh_hd:not(.sub) #shGnb .sh_nav > li > a {
    padding: 0 28px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
    transition: color 0.2s ease;
    position: relative;
    display: flex;
}

#sh_hd:not(.sub) #shGnb .sh_nav > li:hover > a {
    color: #fff !important;
    font-weight: 600;
}

/* 메뉴 hover 시 언더라인 애니메이션 (흰색) */
#sh_hd:not(.sub) #shGnb .sh_nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.25s ease;
}

#sh_hd:not(.sub) #shGnb .sh_nav > li:hover > a::after {
    width: calc(100% - 56px);
}

/* 메인 페이지 서브메뉴 드롭다운 - 미니멀 스타일 */
#sh_hd:not(.sub) .sh_lnb_bg {
    height: auto;
    min-height: 320px;
    padding-bottom: 40px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#sh_hd:not(.sub) #shGnb .sh_lnb_s {
    min-height: auto;
    padding: 24px 0 60px 0;
}

#sh_hd:not(.sub) #shGnb .sh_lnb_s:before {
    display: none;
}

#sh_hd:not(.sub) #shGnb .sh_lnb_s li {
    padding: 0 20px;
}

#sh_hd:not(.sub) #shGnb .sh_lnb_s li a {
    font-size: 14px;
    font-weight: 400;
    color: #6e6e73 !important;
    line-height: 2.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
    transition: color 0.2s ease;
}

#sh_hd:not(.sub) #shGnb .sh_nav > li:hover .sh_lnb_s a {
    color: #6e6e73 !important;
}

#sh_hd:not(.sub) #shGnb .sh_lnb_s li a:hover {
    color: #1d1d1f !important;
    font-weight: 500;
}

/* 메인 페이지 검색 버튼 - 흰색 스타일 */
#sh_hd:not(.sub) .header-search-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    transition: background 0.2s ease;
}

#sh_hd:not(.sub) .header-search-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* 메인 페이지 ENG 버튼 - 흰색 스타일 */
#sh_hd:not(.sub) .main_eng_btn {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
    transition: color 0.2s ease;
}

#sh_hd:not(.sub) .main_eng_btn:hover {
    color: #fff;
}

/* 메인 페이지 다운로드 버튼 - 흰색 아웃라인 스타일 */
#sh_hd:not(.sub) .down_btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
    transition: all 0.2s ease;
}

#sh_hd:not(.sub) .down_btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

#sh_hd:not(.sub) .down_btn svg {
    width: 14px;
    height: 14px;
    margin-left: 6px;
}

/* =========================== 모바일 반응형 메뉴 스타일 (공통) */
@media (max-width: 1310px) {
    /* 햄버거 버튼 */
    #m_navBtn {
        width: 28px;
        cursor: pointer;
    }

    #m_navBtn span {
        display: block;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        height: 2px;
        background-color: transparent;
    }

    #m_navBtn span:before,
    #m_navBtn span:after {
        content: "";
        display: block;
        position: absolute;
        width: 28px;
        height: 2px;
        background-color: #1d1d1f;
        transition: all 0.3s ease;
    }

    #m_navBtn span:before {
        top: -7px;
    }

    #m_navBtn span:after {
        top: 7px;
        width: 18px;
        right: 0;
    }

    /* 햄버거 버튼 - 열린 상태 (X 모양) */
    #m_navBtn.on {
        position: fixed;
        top: 24px;
        right: 24px;
        z-index: 1002;
    }

    #m_navBtn.on span:before {
        top: 0;
        transform: rotate(45deg);
        background-color: #1d1d1f;
    }

    #m_navBtn.on span:after {
        top: 0;
        width: 28px;
        transform: rotate(-45deg);
        background-color: #1d1d1f;
    }

    /* 모바일 메뉴 오버레이 */
    #navWrap {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    #navWrap.on {
        display: block !important;
    }

    /* 모바일 메뉴 패널 */
    #navWrap .inner {
        position: fixed;
        right: -100%;
        top: 0;
        width: 85%;
        max-width: 360px;
        height: 100%;
        background: #fff;
        overflow-y: auto;
        padding: 80px 0 40px;
        transition: right 0.35s ease;
        z-index: 1001;
    }

    #navWrap.on .inner {
        right: 0;
        opacity: 1;
    }

    /* 메뉴 리스트 스타일 */
    #topmenuM .m_lnb {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    #topmenuM .m_lnb > li {
        border-bottom: 1px solid #f0f0f0;
    }

    /* 대분류 버튼 */
    #topmenuM .m_lnb .m_bmenu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 24px;
        border: none;
        background: none;
        font-size: 16px;
        font-weight: 500;
        color: #1d1d1f;
        text-align: left;
        cursor: pointer;
        font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
    }

    #topmenuM .m_lnb .m_bmenu:after {
        display: none !important;
    }

    #topmenuM .m_lnb .m_bmenu.on:after {
        display: none !important;
    }

    /* 소분류 메뉴 */
    #topmenuM .m_smenu {
        display: none;
        padding: 12px 24px 20px 36px;
        background: #fafafa;
    }

    #topmenuM .m_smenu li {
        padding: 10px 0;
    }

    #topmenuM .m_smenu li a {
        font-size: 14px;
        font-weight: 400;
        color: #6e6e73;
        text-decoration: none;
        transition: color 0.2s ease;
        font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
    }

    #topmenuM .m_smenu li a:hover {
        color: #1d1d1f;
    }

    /* 하단 카피라이트 */
    #navWrap .inner .mo_hd_copy {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 12px;
        color: #999;
    }
}
