﻿/* =========================
   reset
========================= */
* {
    box-sizing: border-box;
}

:root {
    --page-max: 1560px;
    --page-gutter: 24px;
    --ipx-colour: #008294;
    --ipx-gradient: linear-gradient(45deg, rgba(32, 58, 64, 0.9) 0%, rgba(0, 138, 150, 0.9) 30%, rgba(0, 138, 150, 0.9) 70%, rgba(113, 192, 144, 0.9) 100%);
}

html, body {
    margin: 0;
    padding: 0;
    color: #333;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    width: 100%;
    max-width: var(--page-max);
    margin: 0 auto;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
}


/* =========================
   header / nav
========================= */
.top {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.topbar {
    display: flex;
    align-items: center;
/*    gap: 34px;*/
    min-height: 72px;
    max-width: 1680px;
    margin: 0 auto;
}

.logo {
    flex: 0 0 auto;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    color: #111;
    letter-spacing: -2px;
    white-space: nowrap;
}

.gnb {
    flex: 1;
}

.gnb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gnb-item {
    position: relative;
}

.gnb-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: #4c5560;
    background: transparent;
    border-radius: 999px;
    transition: all .18s ease;
}

    .gnb-link:hover {
        color: #111;
        background: #f4f6f8;
    }

.gnb-item.has-panel:hover > .gnb-link,
.gnb-item.has-panel:focus-within > .gnb-link {
    background: #111;
    color: #fff;
}

.top-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
    white-space: nowrap;
}

/* =========================
   desktop mega menu
========================= */
.header-panel {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.98);
    border-top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 2999;
}

    .header-panel::before {
        content: "";
        position: absolute;
        top: -18px;
        left: 0;
        right: 0;
        height: 18px;
        background: transparent;
    }

.top:has(.gnb-item.has-panel:hover) .header-panel,
.top:has(.gnb-item.has-panel:focus-within) .header-panel,
.top:has(.header-panel:hover) .header-panel,
.top:has(.header-panel:focus-within) .header-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-panel > .wrap {
    width: 100%;
    max-width: var(--page-max);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.header-panel-inner {
    display: grid;
    grid-template-columns: 220px 220px 220px minmax(260px, 1fr) 240px;
    gap: 24px;
    width: 100%;
    padding: 28px 0;
    align-items: start;
    box-sizing: border-box;
}

.panel-col {
    min-width: 0;
}

    .panel-col + .panel-col {
        border-left: 1px solid #ececec;
        padding-left: 20px;
    }

.panel-col-leftmenu {
    border-left: none !important;
    padding-left: 0 !important;
}

.panel-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
}

.panel-parent-box {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 14px;
    background: #111;
    letter-spacing: .02em;
}

.panel-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .panel-links li {
        margin: 0 0 4px;
    }

    .panel-links a {
        display: block;
        padding: 9px 10px;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.42;
        color: #53606d;
        transition: all .15s ease;
    }

.panel-col-leftmenu .panel-links a {
    font-weight: 700;
    color: #28323b;
}

.panel-links a:hover {
    background: #f4f7f8;
    color: #0a8fa5;
}

.panel-promo {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    border-left: none !important;
    padding-left: 0 !important;
}

.promo-card {
    width: 100%;
    min-height: 220px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0f1114 0%, #1e252d 45%, #0b8ca0 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.promo-icon {
    width: 56px;
    height: 56px;
    font-size: 0;
    line-height: 1;
    margin-bottom: 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

    .promo-text span {
        display: block;
        margin-top: 8px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255,255,255,.72);
    }

/* =========================
   language picker
========================= */
.lang-picker {
    position: relative;
    display: inline-block;
    margin: 0;
}

    .lang-picker summary {
        list-style: none;
    }

        .lang-picker summary::-webkit-details-marker {
            display: none;
        }

.lang-picker__trigger {
    min-width: 92px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: #42515b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    transition: all .18s ease;
    box-sizing: border-box;
}

    .lang-picker__trigger:hover {
        background: #f7f9fa;
        border-color: rgba(10,143,165,.18);
        box-shadow: 0 6px 18px rgba(0,0,0,.05);
    }

.lang-picker[open] .lang-picker__trigger {
    background: #fff;
    border-color: rgba(10,143,165,.24);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.lang-picker__icon {
    width: 16px;
    height: 16px;
    color: #159ab5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

    .lang-picker__icon svg {
        width: 16px;
        height: 16px;
        display: block;
    }

.lang-picker__value {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #3f4e58;
    white-space: nowrap;
}

.lang-picker__arrow {
    width: 14px;
    height: 14px;
    color: #74808a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform .18s ease;
}

    .lang-picker__arrow svg {
        width: 14px;
        height: 14px;
        display: block;
    }

.lang-picker[open] .lang-picker__arrow {
    transform: rotate(180deg);
}

.lang-picker__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 170px;
    padding: 6px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
    z-index: 7000;
}

.lang-picker__option {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #33414b;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

    .lang-picker__option:hover {
        background: rgba(10,143,165,.08);
        color: #067f92;
    }

/* =========================
   mobile button
========================= */
.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #e6e8eb;
    background: #fff;
    color: #333;
    font-size: 24px;
    line-height: 1;
    padding: 0;
    margin-left: 4px;
    cursor: pointer;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

    .mobile-menu-btn span {
        display: block;
        width: 18px;
        height: 2px;
        background: #111;
        border-radius: 2px;
    }

/* =========================
   mobile drawer
========================= */
.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 3998;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(92vw, 400px);
    height: 100vh;
    background: #ffffff;
    box-shadow: -12px 0 34px rgba(0, 0, 0, 0.14);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 3999;
    display: flex;
    flex-direction: column;
}

.mobile-drawer__head {
    min-height: 78px;
    padding: 18px 22px;
    border-bottom: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer__title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.mobile-drawer__logo {
    display: none;
}

.mobile-drawer__close {
    width: 36px;
    height: 36px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 24px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    margin-left: auto;
}

.mobile-drawer__lang {
    padding: 16px 22px;
    border-bottom: 1px solid #ececec;
}

.mobile-drawer__lang-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #666;
}

.mobile-drawer__lang-select {
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 12px;
    background: #fff;
}

.mobile-drawer__viewport {
    flex: 1;
    overflow-y: auto;
}

.mobile-drawer__panel {
    padding: 12px 0 24px;
}

.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ececec;
}

    .mobile-nav li {
        margin: 0;
    }

.mobile-nav__link {
    display: block;
    width: 100%;
    padding: 16px 22px;
    font-size: 16px;
    font-weight: 700;
    color: #33414b;
    text-decoration: none;
    border: 0;
    background: transparent;
    text-align: left;
}

    .mobile-nav__link:hover {
        background: rgba(0,0,0,.03);
    }

.mobile-submenu {
    padding: 0 22px 20px;
}

.mobile-submenu__section {
    padding: 18px 0;
    border-top: 1px solid #ececec;
}

    .mobile-submenu__section:first-child {
        border-top: 0;
    }

    .mobile-submenu__section h3 {
        margin: 0 0 12px;
        font-size: 16px;
        font-weight: 700;
        color: #111;
    }

    .mobile-submenu__section ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-submenu__section li {
        margin: 0 0 10px;
    }

    .mobile-submenu__section a {
        font-size: 15px;
        line-height: 1.45;
        color: #5a5a5a;
        font-weight: 600;
        text-decoration: none;
    }

        .mobile-submenu__section a:hover {
            color: #068ea4;
        }

body.mobile-menu-open {
    overflow: hidden;
}

    body.mobile-menu-open .mobile-drawer {
        transform: translateX(0);
    }

    body.mobile-menu-open .mobile-drawer-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

/* =========================
   responsive
========================= */
@media (max-width: 1400px) {
    .header-panel-inner {
        grid-template-columns: 200px 200px 200px 1fr 220px;
        gap: 22px;
    }

    .panel-col + .panel-col {
        padding-left: 22px;
    }
}

@media (max-width: 991px) {
    .header-panel-inner {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .panel-col + .panel-col {
        border-left: none;
        padding-left: 0;
    }

    .panel-promo {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .promo-card {
        width: 220px;
        min-height: 180px;
    }

    .promo-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .desktop-gnb,
    .header-panel,
    .lang-form--desktop {
        display: none !important;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .topbar {
        min-height: 78px;
        gap: 16px;
    }

    .logo {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .top-icons {
        margin-left: auto;
    }

    .mobile-drawer,
    .mobile-drawer-backdrop {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 34px;
    }

    .mobile-drawer {
        width: calc(100vw - 18px);
    }

    .mobile-submenu {
        padding: 0 18px 18px;
    }

    .mobile-nav__link {
        padding: 15px 18px;
        font-size: 15px;
    }

    .mobile-submenu__section h3,
    .mobile-submenu__section a {
        font-size: 15px;
    }
}


/* =========================
   sticky header readability only
========================= */
.top.is-scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

    .top.is-scrolled .topbar {
        background: transparent;
    }

    .top.is-scrolled .gnb-link {
        color: #2f3742;
    }

        .top.is-scrolled .gnb-link:hover {
            color: #0a8fa5;
        }

    .top.is-scrolled .logo {
        color: #111;
    }

    .top.is-scrolled .top-icons {
        color: #2f3742;
    }

    .top.is-scrolled .mobile-menu-btn {
        color: #1f2937;
        background: #fff;
    }


/* =========================
   responsive header
========================= */
@media (max-width: 1400px) {
    .header-panel-inner {
        grid-template-columns: 200px 200px 200px 1fr 220px;
        gap: 22px;
    }

    .panel-col + .panel-col {
        padding-left: 22px;
    }
}

@media (max-width: 991px) {
    .topbar {
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo {
        font-size: 38px;
    }

    .top-icons {
        margin-left: auto;
        gap: 10px;
        font-size: 14px;
    }

    .gnb {
        order: 3;
        width: 100%;
    }

    .gnb-list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 6px 10px;
    }

    .gnb-link {
        height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    .header-panel {
        top: calc(100% - 1px);
        width: calc(100vw - 32px);
        max-width: none;
    }

    .header-panel-inner {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .panel-col + .panel-col {
        border-left: none;
        padding-left: 0;
    }

    .panel-promo {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .promo-card {
        width: 220px;
        min-height: 180px;
    }

    .promo-text {
        font-size: 18px;
    }
}


@media (max-width: 480px) {
    .topbar {
        gap: 12px;
        min-height: 74px;
    }

    .wrap {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo {
        font-size: 34px;
    }

    .top-icons {
        gap: 8px;
        font-size: 14px;
    }

    .mobile-drawer {
        width: calc(100vw - 18px);
    }

    .mobile-nav__link {
        min-height: 52px;
        font-size: 15px;
        padding: 0 18px;
    }

    .mobile-nav__arrow {
        font-size: 22px;
    }

    .mobile-submenu {
        padding: 0 18px 18px;
    }

    .mobile-submenu__section h3,
    .mobile-submenu__section a,
    .mobile-drawer__breadcrumb {
        font-size: 15px;
    }
}

/* =========================
   main
========================= */
.main {
    width: 100%;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
}

    .main > .wrap {
        max-width: var(--page-max);
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }

/* =========================
   hero
========================= */
.hero {
    position: relative;
    overflow: hidden;
    border: 1px solid #e1e4e8;
}

.hero-image {
    position: relative;
    height: 760px;
    overflow: hidden;
    background: #e9edf1;
}

.hero-main-image {
    position: relative;
    top: -150px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-copy {
    text-align: center;
}

.overlay-copy {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    text-align: center;
    background: transparent;
    z-index: 2;
}

.hero-copy h1 {
    margin: 0 0 12px;
    font-weight: 300;
    font-size: 56px;
    line-height: 1.2;
    color: #000000;
    letter-spacing: -1px;
}

.hero-copy p {
    margin: 0 0 22px;
    color: #000000;
    font-size: 20px;
    line-height: 1.5;
}

/* hero overlay 가독성 개선 */
.hero.hero-overlay .hero-image {
    position: relative;
}

    .hero.hero-overlay .hero-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.22) 38%, rgba(0, 0, 0, 0.55) 72%, rgba(0, 0, 0, 0.72) 100% );
        z-index: 1;
        pointer-events: none;
    }

.hero.hero-overlay .overlay-copy {
    z-index: 2;
}

.hero.hero-overlay .hero-copy h1,
.hero.hero-overlay .hero-copy p {
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.hero.hero-overlay .hero-copy h1 {
    font-weight: 300;
}

.hero.hero-overlay .btn.btn-dark {
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

    .hero.hero-overlay .btn.btn-dark:hover {
        background: #111111;
        color: #ffffff;
        border-color: #111111;
    }

/* =========================
   buttons
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    height: 42px;
    padding: 0 20px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s ease;
}

.btn-dark {
    background: #1f2126;
    color: #fff;
}

    .btn-dark:hover {
        background: #00a7c8;
        color: #fff;
    }

.btn-sm {
    min-width: 118px;
    height: 36px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .main {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

        .main > .wrap {
            max-width: 100% !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
}

@media (max-width: 768px) {
    .hero-image {
        height: 420px !important;
    }

    .hero-main-image {
        object-position: center 30%;
    }

    .overlay-copy {
        left: 50%;
        bottom: 28px;
        transform: translateX(-50%);
        width: calc(100% - 28px);
        max-width: none;
        padding: 26px 18px 24px;
        background: rgba(0, 150, 170, 0.76);
        background: var(--ipx-colour);
        background: var(--ipx-gradient);
        color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .hero-copy h1 {
        font-size: 25px !important;
        line-height: 1.18;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
        color: #ffffff;
    }

    .hero-copy p {
        font-size: 17px;
        line-height: 1.35;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .hero .btn-dark {
        min-width: 190px;
        height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .slide-card {
        flex: 0 0 50%;
        min-width: 50%;
        max-width: 50%;
    }

    .fake-img {
        height: 150px;
        min-height: 150px;
    }

    .slide-content {
        padding: 18px 16px;
    }

        .slide-content h3 {
            font-size: 20px;
        }
}

@media (max-width: 640px) {
    .slide-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .fake-img {
        height: 180px;
        min-height: 180px;
    }

    .slide-content {
        padding: 18px 14px;
    }

        .slide-content h3 {
            font-size: 18px;
        }

        .slide-content p {
            font-size: 13px;
            margin-bottom: 14px;
        }

    .btn-sm {
        min-width: 130px;
        height: 38px;
        font-size: 12px;
    }
}

.img-1 {
    background: radial-gradient(circle at 20% 40%, #1b1b1b 0 22px, transparent 23px), radial-gradient(circle at 65% 35%, #00a7c8 0 18px, transparent 19px), linear-gradient(135deg, #cfd4d9, #f2f5f7);
}

.img-2 {
    background: radial-gradient(circle at 28% 50%, #e53935 0 36px, transparent 37px), radial-gradient(circle at 70% 30%, #444 0 22px, transparent 23px), linear-gradient(135deg, #f3f5f7, #dde3e8);
}

.img-3 {
    background: linear-gradient(120deg, rgba(0,167,200,.25), rgba(255,255,255,.1)), linear-gradient(135deg, #dde6ea, #f6f9fb);
}

.img-4 {
    background: radial-gradient(circle at 55% 40%, #0f2233 0 28px, transparent 29px), linear-gradient(135deg, #d9dee3, #f8fafb);
}

.slide-content {
    padding: 0px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

    .slide-content h3 {
        margin: 0 0 12px;
        font-size: 20px;
        font-weight: 600;
        color: #ffffff;
    }

    .slide-content p {
        margin: 0 0 18px;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.6;
    }

.slider-dots {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: #cfcfcf;
    cursor: pointer;
}

    .dot.active {
        background: #5a5a5a;
    }

/* =========================
   common sections
========================= */
.section {
    padding: 70px 24px 20px;
    text-align: center;
}

    .section h2,
    .section-title {
        margin: 0 0 18px;
        font-size: 52px;
        font-weight: 300;
        line-height: 1.28;
        color: #555;
    }

    .section p {
        width: min(100%, 980px);
        margin: 0 auto 12px;
        color: #666;
        font-size: 16px;
        line-height: 1.8;
    }

/* =========================
   category grid
========================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 24px;
    background: #ddd;
}

.cat-card {
    background: #fff;
    overflow: hidden;
    min-height: 260px;
}

.cat-img {
    height: 210px;
}

.cat-a {
    background: linear-gradient(135deg, #d7dde2, #f4f7f9);
}

.cat-b {
    background: linear-gradient(135deg, #d9e2f0, #edf4fa);
}

.cat-c {
    background: linear-gradient(135deg, #eadff0, #f9f2fc);
}

.cat-d {
    background: linear-gradient(135deg, #d9edf0, #f0fafb);
}

.cat-title {
    height: 50px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #6f7378;
    font-size: 18px;
    font-weight: 300;
}

/* =========================
   notice
========================= */
.notice-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 26px 20px;
}

.badge-circle {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff;
    border: 5px solid #0aa9be;
    color: #0aa9be;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
}

.notice-text {
    font-size: 24px;
    font-weight: 600;
    color: #19abc2;
}

/* =========================
   info cards
========================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: #ddd;
}

.info-card {
    min-height: 180px;
    background: #fafafa;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .info-card h3 {
        margin: 0 0 10px;
        font-size: 30px;
        font-weight: 300;
        color: #5b5b5b;
    }

    .info-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.7;
        color: #777;
    }

    .info-card a {
        margin-top: 18px;
        color: #00a7c8;
        font-size: 28px;
        align-self: flex-end;
    }

/* =========================
   banner
========================= */
.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 2px;
    background: #ddd;
}

.banner {
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.banner-left {
    background: linear-gradient(135deg, rgba(0, 172, 193, .85), rgba(0, 116, 151, .9)), linear-gradient(135deg, #61d7dd, #2aa9d6);
}

.banner-right {
    background: radial-gradient(circle at 50% 130%, #2ed3b0 0%, rgba(46, 211, 176, 0) 42%), linear-gradient(180deg, #eaf7f6, #d7f0ec 60%, #f5fbfb 100%);
}

.banner-copy {
    position: absolute;
    inset: 0;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

    .banner-copy h3 {
        margin: 0 0 24px;
        font-size: 38px;
        font-weight: 300;
        line-height: 1.45;
        color: #fff;
    }

.banner-right .banner-copy h3 {
    color: #6b6b6b;
}

/* =========================
   news
========================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-top: 18px;
}

.news-card {
    text-align: left;
}

.news-img {
    height: 170px;
    margin-bottom: 12px;
    border-radius: 2px;
}

.n1 {
    background: linear-gradient(135deg, #d8dee3, #f6f7f9);
}

.n2 {
    background: linear-gradient(135deg, #f5d9c5, #fff1e8);
}

.n3 {
    background: linear-gradient(135deg, #3f2e2a, #8b5e54);
}

.n4 {
    background: linear-gradient(135deg, #0a2134, #2ba1d9);
}

.n5 {
    background: linear-gradient(135deg, #5a6775, #b8d0e8);
}

.news-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* =========================
   article
========================= */
.article-copy {
    padding-bottom: 60px;
}

/* =========================
   footer - creative clean professional
========================= */
.bottom {
    width: 100%;
    background: linear-gradient(180deg, #fbfcfc 0%, #f4f7f8 100%);
    border-top: 1px solid #e4eaed;
    color: #22303c;
}

.footer-main {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 26px 36px 24px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 52px;
    align-items: start;
}

.footer-brand {
    min-width: 0;
}

.footer-brand-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin: 0;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2.4px;
    color: #111820;
}

    .footer-logo span {
        color: #008a9b;
        margin-left: 1px;
    }

.footer-brand-caption {
    margin: 0 0 10px;
    color: #008a9b;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.footer-brand-desc {
    margin: 0;
    max-width: 220px;
    color: #5b6874;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 400;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

    .footer-social a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #2f3942;
        background: #ffffff;
        border: 1px solid #dbe4e8;
        font-size: 15px;
        transition: all .2s ease;
    }

        .footer-social a:hover {
            color: #ffffff;
            background: #008a9b;
            border-color: #008a9b;
            transform: translateY(-2px);
        }

.footer-links,
.footer-links-desktop {
    display: grid;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    gap: 54px;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

    .footer-col h4 {
        position: relative;
        margin: 0 0 16px;
        padding-bottom: 10px;
        color: #1f2a33;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 750;
        letter-spacing: -0.15px;
    }

        .footer-col h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 26px;
            height: 2px;
            background: linear-gradient(90deg, #008a9b 0%, rgba(0, 138, 155, .15) 100%);
            border-radius: 2px;
        }

    .footer-col a {
        display: block;
        width: fit-content;
        margin: 0 0 10px;
        color: #33414d;
        font-size: 14px;
        line-height: 1.45;
        font-weight: 400;
        transition: color .18s ease, transform .18s ease;
    }

        .footer-col a:hover {
            color: #008a9b;
            transform: translateX(3px);
        }

.footer-accordion {
    display: none;
}

/* =========================
   legal full-width bar
========================= */
.footer-legal {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    background: linear-gradient(90deg, #007f90 0%, #0593a4 45%, #007f90 100%);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.footer-legal-inner {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    min-height: 58px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
}

    .footer-legal-links a {
        color: #ffffff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,.72);
        transition: all .18s ease;
    }

        .footer-legal-links a:hover {
            color: #eafcff;
            border-bottom-color: #eafcff;
        }

    .footer-legal-links span {
        opacity: .65;
    }

.footer-legal-copy {
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
}

/* =========================
   tablet
========================= */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 220px 1fr;
        gap: 34px;
        padding: 24px 28px 22px;
    }

    .footer-links,
    .footer-links-desktop {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 30px 44px;
    }

    .footer-legal-inner {
        padding: 14px 28px;
        min-height: auto;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .footer-legal-copy {
        white-space: normal;
        text-align: center;
    }
}

/* =========================
   mobile
========================= */
@media (max-width: 768px) {
    .footer-main {
        display: block;
        padding: 22px 0 0;
    }

    .footer-brand {
        padding: 0 18px 18px;
    }

    .footer-brand-top {
        margin-bottom: 6px;
    }

    .footer-logo {
        font-size: 34px;
    }

    .footer-brand-caption {
        font-size: 10px;
        letter-spacing: 1.8px;
        margin-bottom: 8px;
    }

    .footer-brand-desc {
        max-width: none;
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-links-desktop {
        display: none !important;
    }

    .footer-accordion {
        display: block;
        width: 100%;
        border-top: 1px solid #dde5e9;
        background: rgba(255,255,255,.5);
        backdrop-filter: blur(6px);
    }

    .footer-acc-item {
        border-bottom: 1px solid #dde5e9;
    }

    .footer-acc-btn {
        width: 100%;
        min-height: 56px;
        padding: 0 18px;
        border: 0;
        background: transparent;
        color: #25313a;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 15px;
        font-weight: 750;
        text-align: left;
        cursor: pointer;
    }

    .footer-acc-icon {
        color: #008a9b;
        font-size: 22px;
        line-height: 1;
    }

    .footer-acc-panel {
        display: none;
        padding: 0 18px 16px;
    }

    .footer-acc-item.is-open .footer-acc-panel {
        display: block;
    }

    .footer-acc-panel a {
        display: block;
        padding: 7px 0;
        color: #4b5864;
        font-size: 14px;
        line-height: 1.45;
    }

    .footer-legal-inner {
        padding: 16px 18px;
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal-links {
        justify-content: center;
        font-size: 13px;
        line-height: 1.7;
        text-align: center;
    }

    .footer-legal-copy {
        font-size: 12px;
        white-space: normal;
        text-align: center;
    }
}

/* =========================
   responsive
========================= */
@media (max-width: 1400px) {
    .header-panel-inner {
        grid-template-columns: 200px 200px 200px 1fr 220px;
        gap: 22px;
    }

    .panel-col + .panel-col {
        padding-left: 22px;
    }
}

@media (max-width: 1200px) {
    .hero-image {
        height: 620px;
    }

    .hero-copy h1,
    .section h2,
    .section-title {
        font-size: 42px;
    }

    .hero-copy p {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .topbar {
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo {
        font-size: 40px;
    }

    .top-icons {
        margin-left: auto;
        gap: 10px;
        font-size: 14px;
    }

    .gnb {
        order: 3;
        width: 100%;
    }

    .gnb-list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 6px 10px;
    }

    .gnb-link {
        height: 34px;
        padding: 0 10px;
        font-size: 13px;
    }

    .header-panel {
        top: calc(100% - 1px);
        width: calc(100vw - 32px);
        max-width: none;
    }

    .header-panel-inner {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .panel-col + .panel-col {
        border-left: none;
        padding-left: 0;
    }

    .panel-promo {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .promo-card {
        width: 220px;
        height: 180px;
    }

    .promo-icon {
        font-size: 64px;
        margin-bottom: 10px;
    }

    .promo-text {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .topbar {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo icons"
            "menu menu";
        align-items: center;
        gap: 10px 12px;
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo {
        grid-area: logo;
        font-size: 34px;
        letter-spacing: -2px;
    }

    .top-icons {
        grid-area: icons;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        font-size: 13px;
        white-space: nowrap;
    }

    .gnb {
        grid-area: menu;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        .gnb::-webkit-scrollbar {
            display: none;
        }

    .gnb-list {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        width: max-content;
        min-width: 100%;
        justify-content: flex-start;
        padding: 4px 0 0;
    }

    .gnb-item {
        flex: 0 0 auto;
    }

    .gnb-link {
        height: 32px;
        padding: 0 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .header-panel {
        width: calc(100vw - 20px);
        top: calc(100% - 1px);
    }

    .header-panel-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .panel-col + .panel-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e1e1e1;
        padding-top: 14px;
    }

    .panel-promo {
        display: none;
    }
}


/* =========================
   mobile drawer
========================= */
.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 28px;
    line-height: 1;
    padding: 0;
    margin-left: 4px;
    cursor: pointer;
}

.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 3998;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(92vw, 380px);
    height: 100vh;
    background: #f7f7f7;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 3999;
    display: flex;
    flex-direction: column;
}

.mobile-drawer__head {
    min-height: 84px;
    padding: 18px 22px;
    border-bottom: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mobile-drawer__logo {
    display: none;
}

.mobile-drawer__head-left {
    display: none;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.mobile-drawer__back {
    border: 0;
    background: transparent;
    color: #333;
    font-size: 42px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.mobile-drawer__breadcrumb {
    font-size: 17px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-drawer__close {
    border: 0;
    background: transparent;
    color: #333;
    font-size: 34px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    margin-left: auto;
}

.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .mobile-nav li {
        margin: 0;
    }

.mobile-nav__link {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 74px;
    padding: 0 22px;
    font-size: 17px;
    font-weight: 600;
    color: #49576a;
    text-align: left;
    cursor: pointer;
}

    .mobile-nav__link:hover {
        background: rgba(0, 0, 0, 0.03);
    }

.mobile-nav__arrow {
    flex: 0 0 auto;
    font-size: 28px;
    line-height: 1;
    color: #666;
}

.mobile-submenu {
    padding: 0 22px 20px;
}

.mobile-submenu__section {
    padding: 22px 0;
    border-top: 1px solid #dddddd;
}

    .mobile-submenu__section:first-child {
        border-top: 0;
        padding-top: 8px;
    }

.mobile-submenu__title-row {
    margin-bottom: 8px;
}

.mobile-submenu__highlight {
    border: 0;
    background: #068ea4;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 16px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    cursor: default;
}

.mobile-submenu__section h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 500;
    color: #111;
}

.mobile-submenu__section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-submenu__section li {
    margin: 0 0 14px;
}

.mobile-submenu__section a {
    font-size: 17px;
    line-height: 1.45;
    color: #5a5a5a;
    font-weight: 600;
}

    .mobile-submenu__section a:hover {
        color: #068ea4;
    }

body.mobile-menu-open {
    overflow: hidden;
}

    body.mobile-menu-open .mobile-drawer {
        transform: translateX(0);
    }

    body.mobile-menu-open .mobile-drawer-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.mobile-drawer.is-submenu .mobile-drawer__logo {
    display: none;
}

.mobile-drawer.is-submenu .mobile-drawer__head-left {
    display: inline-flex;
}

@media (max-width: 480px) {
    .topbar {
        gap: 12px;
        min-height: 82px;
    }

    .wrap {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo {
        font-size: 40px;
    }

    .top-icons {
        gap: 8px;
        font-size: 14px;
    }

    .mobile-drawer {
        width: calc(100vw - 28px);
    }

    .mobile-nav__link {
        min-height: 40px;
        font-size: 16px;
        padding: 0 18px;
    }

    .mobile-nav__arrow {
        font-size: 26px;
    }

    .mobile-submenu {
        padding: 0 18px 18px;
    }

    .mobile-submenu__section h3,
    .mobile-submenu__section a,
    .mobile-drawer__breadcrumb {
        font-size: 16px;
    }
}

/* =========================
   tablet
========================= */
@media (max-width: 991px) {
    .section {
        padding: 48px 16px 18px;
    }

        .section h2,
        .section-title {
            font-size: 34px;
            line-height: 1.22;
            margin-bottom: 14px;
        }

        .section p {
            width: 100%;
            max-width: 100%;
            font-size: 15px;
            line-height: 1.7;
        }

    .category-grid,
    .info-grid,
    .banner-grid,
    .news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .cat-card {
        min-height: 220px;
    }

    .cat-img {
        height: 170px;
    }

    .cat-title {
        height: 50px;
        font-size: 16px;
        justify-content: center;
        text-align: center;
        padding: 0 12px;
    }

    .notice-strip {
        padding: 22px 16px;
        gap: 14px;
    }

    .badge-circle {
        width: 66px;
        height: 66px;
        font-size: 34px;
    }

    .notice-text {
        font-size: 20px;
        line-height: 1.35;
        text-align: center;
    }

    .info-card {
        min-height: 160px;
        padding: 24px 18px;
    }

        .info-card h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .info-card p {
            font-size: 13px;
            line-height: 1.6;
        }

        .info-card a {
            font-size: 24px;
        }

    .banner {
        min-height: 240px;
    }

    .banner-copy {
        padding: 24px 18px;
    }

        .banner-copy h3 {
            font-size: 28px;
            line-height: 1.35;
            margin-bottom: 18px;
        }

    .news-img {
        height: 150px;
    }

    .news-card p {
        font-size: 13px;
        line-height: 1.45;
    }
}

/* =========================
   mobile
========================= */
@media (max-width: 640px) {
    .section {
        padding: 36px 14px 14px;
    }

        .section h2,
        .section-title {
            font-size: 26px;
            line-height: 1.24;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .section p {
            width: 100%;
            max-width: 100%;
            font-size: 14px;
            line-height: 1.65;
            margin-bottom: 10px;
        }

    /* intro */
    .intro {
        padding-top: 34px;
    }

    /* category */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        background: transparent;
        margin-top: 18px;
        padding: 0 14px;
    }

    .cat-card {
        min-height: auto;
        border: 1px solid #e7e7e7;
    }

    .cat-img {
        height: 190px;
    }

    .cat-title {
        height: auto;
        min-height: 52px;
        justify-content: center;
        text-align: center;
        padding: 14px 12px;
        font-size: 17px;
        line-height: 1.35;
    }

    /* notice */
    .notice-strip {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 26px 16px 20px;
    }

    .badge-circle {
        width: 62px;
        height: 62px;
        font-size: 30px;
        border-width: 4px;
    }

    .notice-text {
        font-size: 17px;
        line-height: 1.4;
        max-width: 320px;
    }

    /* info cards */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        background: transparent;
        padding: 0 14px;
    }

    .info-card {
        min-height: auto;
        padding: 20px 16px;
        border: 1px solid #e7e7e7;
    }

        .info-card h3 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .info-card p {
            font-size: 13px;
            line-height: 1.6;
        }

        .info-card a {
            margin-top: 12px;
            font-size: 22px;
        }

    /* banners */
    .banner-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        background: transparent;
        padding: 0 14px;
        margin-top: 10px;
    }

    .banner {
        min-height: 220px;
        border: 1px solid #e7e7e7;
    }

    .banner-copy {
        padding: 22px 16px;
    }

        .banner-copy h3 {
            font-size: 24px;
            line-height: 1.32;
            margin-bottom: 16px;
        }

    .banner .btn-dark {
        min-width: 150px;
        height: 40px;
        font-size: 13px;
    }

    /* news */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 16px;
        padding: 0 14px;
    }

    .news-card {
        border: 1px solid #e7e7e7;
        background: #fff;
        padding-bottom: 12px;
    }

    .news-img {
        height: 190px;
        margin-bottom: 10px;
    }

    .news-card p {
        padding: 0 12px;
        font-size: 13px;
        line-height: 1.5;
        margin: 0;
    }
}

/* =========================
   compact language picker
========================= */
.lang-picker {
    position: relative;
    display: inline-block;
    margin: 0;
}

    .lang-picker summary {
        list-style: none;
    }

        .lang-picker summary::-webkit-details-marker {
            display: none;
        }

.lang-picker__trigger {
    min-width: 94px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 999px;
    background: rgba(255,255,255,.70);
    color: #42515b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    transition: all .18s ease;
    box-sizing: border-box;
}

    .lang-picker__trigger:hover {
        background: rgba(255,255,255,.95);
        border-color: rgba(10,143,165,.20);
        box-shadow: 0 6px 18px rgba(0,0,0,.05);
    }

.lang-picker[open] .lang-picker__trigger {
    background: #fff;
    border-color: rgba(10,143,165,.24);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.lang-picker__icon {
    width: 16px;
    height: 16px;
    color: #159ab5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

    .lang-picker__icon svg {
        width: 16px;
        height: 16px;
        display: block;
    }

.lang-picker__value {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #3f4e58;
    white-space: nowrap;
}

.lang-picker__arrow {
    width: 14px;
    height: 14px;
    color: #74808a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform .18s ease;
}

    .lang-picker__arrow svg {
        width: 14px;
        height: 14px;
        display: block;
    }

.lang-picker[open] .lang-picker__arrow {
    transform: rotate(180deg);
}

.lang-picker__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 170px;
    padding: 6px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
    z-index: 7000;
}

.lang-picker__option {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #33414b;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

    .lang-picker__option:hover {
        background: rgba(10,143,165,.08);
        color: #067f92;
    }

    .lang-picker__option.is-active {
        background: rgba(10,143,165,.12);
        color: #067f92;
    }

/* header 톤 */
.top.top--smart .lang-picker__trigger {
    background: rgba(255,255,255,.62);
}

.top.top--smart.is-scrolled .lang-picker__trigger {
    background: rgba(255,255,255,.88);
}

@media (max-width: 1024px) {
    .lang-form--desktop {
        display: none;
    }
}

/* =========================================
   WIDER HEADER + MAIN LAYOUT
   add at the very bottom of style.css
========================================= */

/* 1) overall page width */
:root {
    --page-max: 1740px;
    --page-gutter: 32px;
}

/* 2) bootstrap container limit remove for iShop main area */
#iShopBody > main.container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 3) shared inner width */
.wrap {
    width: min(100%, var(--page-max));
    max-width: var(--page-max);
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
}

.main {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

    .main > .wrap {
        width: min(100%, var(--page-max));
        max-width: var(--page-max);
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
    }

/* 4) top header wider */
.topbar {
    min-height: 72px;
    gap: 34px;
    max-width: 1680px; /* 메인보다 더 작게 */
    margin: 0 auto;
}

.gnb-list {
    gap: 16px;
}

.gnb-link {
    height: 42px;
    padding: 0 16px;
    font-size: 15px;
}

/* 5) mega menu panel wider */
.header-panel {
    width: min(var(--page-max), calc(100vw - 24px));
}

.header-panel-inner {
    grid-template-columns: 240px 240px 240px 1fr 280px;
    gap: 32px;
    padding: 34px 32px;
}

/* 6) hero area more expansive like IDS */
.hero {
    border: 0;
}

.hero-image {
    height: clamp(760px, 72vw, 965px);
    background: #ffffff;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    top: 0;
}

.overlay-copy {
    max-width: 1320px;
    bottom: 38px;
    padding: 10px 32px;
}

.hero-copy h1 {
    font-size: clamp(48px, 4.2vw, 78px);
    line-height: 1.12;
}

.hero-copy p {
    font-size: clamp(18px, 1.45vw, 26px);
}

/* 7) sections breathe more on wide screens */
.section {
    padding: 90px 32px 28px;
}

    .section h2,
    .section-title {
        font-size: clamp(42px, 3.2vw, 68px);
        line-height: 1.18;
    }

    .section p {
        width: min(100%, 1180px);
        font-size: 18px;
    }

/* 8) cards / grids wider feeling */
.category-grid,
.info-grid,
.banner-grid {
    gap: 4px;
}

.news-grid {
    gap: 28px;
}

/* 9) footer width align */
.bottom .wrap,
.footer-legal .wrap.footer-legal__inner {
    width: min(100%, var(--page-max));
    max-width: var(--page-max);
}

/* 10) ultra wide monitor tuning */
@media (min-width: 1700px) {
    :root {
        --page-gutter: 40px;
    }

    .gnb-link {
        padding: 0 18px;
        font-size: 16px;
    }

    .header-panel-inner {
        grid-template-columns: 260px 260px 260px 1fr 300px;
        gap: 36px;
    }

    .slide-content h3 {
        font-size: 32px;
    }

    .banner-copy h3 {
        font-size: 44px;
    }
}

/* 11) tablet */
@media (max-width: 1200px) {
    :root {
        --page-max: 100%;
        --page-gutter: 24px;
    }

    .header-panel {
        width: calc(100vw - 24px);
    }

    .header-panel-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 24px;
    }

    .hero-image {
        height: 620px;
    }
}

/* 12) mobile keep edge-to-edge clean */
@media (max-width: 768px) {
    .desktop-gnb {
        display: none !important;
    }

    .header-panel {
        display: block !important;
        position: static !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #fff !important;
    }

        .header-panel::before {
            display: none !important;
        }

        .header-panel > .wrap {
            max-width: 100% !important;
            padding-left: 16px !important;
            padding-right: 16px !important;
        }

    .header-panel-inner {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 12px 0 20px !important;
    }

    .panel-col {
        border: 0 !important;
        padding: 0 !important;
    }

        .panel-col + .panel-col {
            border-top: 1px solid #e8e8e8 !important;
            margin-top: 12px;
            padding-top: 12px !important;
        }

    .panel-title,
    .panel-parent-box {
        margin-bottom: 10px;
    }

    .panel-links li a {
        padding: 12px 4px !important;
        font-size: 15px !important;
        line-height: 1.4;
    }

    .panel-promo {
        display: none !important;
    }
}


/* =========================
   sticky header readability only
========================= */
.top {
    background: rgba(255,255,255,0.96);
    transition: background .22s ease, box-shadow .22s ease, border-color .22s ease;
}

    .top.is-scrolled {
        background: rgba(255,255,255,0.98);
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        border-bottom: 1px solid rgba(0,0,0,.06);
    }

        .top.is-scrolled .topbar {
            background: transparent;
        }

        .top.is-scrolled .gnb-link {
            color: #2f3742;
        }

            .top.is-scrolled .gnb-link:hover {
                color: #0a8fa5;
            }

        .top.is-scrolled .logo {
            color: #111;
        }

        .top.is-scrolled .top-icons {
            color: #2f3742;
        }

        .top.is-scrolled .lang-picker {
            background: rgba(255,255,255,.92);
            border-color: rgba(0,0,0,.08);
            color: #1f2937;
        }

        .top.is-scrolled .lang-picker__trigger {
            color: inherit;
        }

        .top.is-scrolled .mobile-menu-btn {
            color: #1f2937;
        }



/* =========================
   premium mobile drawer redesign
========================= */
.mobile-drawer-backdrop {
    background: rgba(15, 17, 20, 0.42) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-drawer {
    width: min(92vw, 420px) !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%) !important;
    box-shadow: -18px 0 44px rgba(0, 0, 0, 0.16) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-drawer__head {
    min-height: 84px !important;
    padding: 20px 20px 18px !important;
    border-bottom: 1px solid #edf1f4 !important;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-drawer__brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-drawer__brand-logo {
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
    color: #111;
}

.mobile-drawer__brand-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #7b8791;
}

.mobile-drawer__close {
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #e5eaee !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: #222 !important;
    font-size: 20px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.mobile-drawer__lang {
    padding: 16px 20px 18px !important;
    border-bottom: 1px solid #edf1f4 !important;
}

.mobile-drawer__lang-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #7a8691;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mobile-drawer__lang-select {
    width: 100%;
    height: 46px;
    border: 1px solid #dde4ea;
    border-radius: 14px;
    padding: 0 14px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #25313b;
    outline: none;
}

.mobile-drawer__viewport {
    flex: 1;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer__panel {
    padding: 18px 20px 24px !important;
}

/* top menu */
.mobile-main-nav {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.mobile-main-nav__item {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    background: #f5f8fa;
    color: #25313b;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .18s ease;
}

    .mobile-main-nav__item:hover {
        background: #eef4f7;
        color: #0a8fa5;
    }

    .mobile-main-nav__item.is-strong {
        background: linear-gradient(135deg, #0f1114 0%, #1c2730 48%, #0b8ca0 100%);
        color: #fff;
        box-shadow: 0 10px 24px rgba(9, 30, 45, 0.14);
    }

/* content cards */
.mobile-menu-groups {
    display: grid;
    gap: 14px;
}

.mobile-menu-card {
    padding: 16px 16px 14px;
    border: 1px solid #e8edf1;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.mobile-menu-card__title {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.01em;
}

.mobile-menu-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

    .mobile-menu-card__list li {
        margin: 0;
    }

    .mobile-menu-card__list a {
        display: block;
        padding: 10px 4px;
        font-size: 14px;
        line-height: 1.4;
        color: #5d6973;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #f1f4f6;
        transition: color .16s ease, transform .16s ease;
    }

    .mobile-menu-card__list li:last-child a {
        border-bottom: 0;
    }

    .mobile-menu-card__list a:hover {
        color: #068ea4;
        transform: translateX(2px);
    }

/* old structure neutralize */
.mobile-drawer__head-left,
.mobile-drawer__back,
.mobile-drawer__breadcrumb,
.mobile-drawer__slides,
.mobile-nav,
.mobile-submenu,
.mobile-nav__arrow,
.mobile-submenu__title-row,
.mobile-submenu__highlight {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-gnb,
    .header-panel,
    .lang-form--desktop {
        display: none !important;
    }

    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .topbar {
        min-height: 78px;
        gap: 14px;
    }

    .top-icons {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .mobile-drawer {
        width: calc(100vw - 14px) !important;
    }

    .mobile-drawer__panel {
        padding: 16px 16px 22px !important;
    }

    .mobile-main-nav__item {
        min-height: 48px;
        font-size: 14px;
    }

    .mobile-menu-card {
        padding: 14px 14px 12px;
        border-radius: 16px;
    }

    .mobile-menu-card__list a {
        font-size: 13px;
    }
}

.mobile-main-nav__item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    background: #f5f8fa;
    color: #25313b;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .18s ease;
}

    .mobile-main-nav__item:hover {
        background: #eef4f7;
        color: #0a8fa5;
    }

    .mobile-main-nav__item.is-strong {
        background: linear-gradient(135deg, #0f1114 0%, #1c2730 48%, #0b8ca0 100%);
        color: #fff;
        box-shadow: 0 10px 24px rgba(9, 30, 45, 0.14);
    }

    .mobile-main-nav__item.is-active {
        background: linear-gradient(135deg, rgba(10, 143, 165, 0.12), rgba(10, 143, 165, 0.04));
        color: #067f92;
        border-color: rgba(10, 143, 165, 0.18);
        box-shadow: 0 8px 20px rgba(10, 143, 165, 0.10);
    }

        .mobile-main-nav__item.is-active::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 4px;
            border-radius: 0 999px 999px 0;
            background: linear-gradient(180deg, #0aa9be 0%, #068ea4 100%);
        }

        .mobile-main-nav__item.is-active::after {
            content: "";
            width: 8px;
            height: 8px;
            margin-left: auto;
            border-radius: 50%;
            background: #068ea4;
            flex: 0 0 auto;
        }

    .mobile-main-nav__item.is-strong.is-active {
        background: linear-gradient(135deg, #0f1114 0%, #1c2730 48%, #0b8ca0 100%);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 12px 28px rgba(9, 30, 45, 0.18);
    }

        .mobile-main-nav__item.is-strong.is-active::before {
            background: rgba(255,255,255,.95);
        }

        .mobile-main-nav__item.is-strong.is-active::after {
            background: #fff;
        }

        .gnb-link {
    position: relative;
}

.gnb-link {
    position: relative;
    transition: color .22s ease, background-color .22s ease, box-shadow .22s ease, border-color .22s ease;
}

    .gnb-link.is-active {
        color: #16202a !important;
        background: linear-gradient(180deg, #f8fafb 0%, #eef3f6 100%) !important;
        box-shadow: inset 0 0 0 1px rgba(16, 28, 38, 0.08), inset 0 -1px 0 rgba(255, 255, 255, 0.55);
    }

        .gnb-link.is-active > span {
            display: inline-block;
            background: linear-gradient(90deg, #17212b 0%, #136a7c 58%, #1aa8bf 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .gnb-link.is-active::before {
            content: "";
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 5px;
            height: 1px;
            background: linear-gradient( 90deg, rgba(8, 116, 134, 0) 0%, rgba(8, 116, 134, 0.45) 18%, rgba(10, 143, 165, 0.95) 50%, rgba(8, 116, 134, 0.45) 82%, rgba(8, 116, 134, 0) 100% );
        }

        .gnb-link.is-active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 3px;
            width: 34px;
            height: 3px;
            transform: translateX(-50%);
            border-radius: 999px;
            background: linear-gradient(90deg, #087486 0%, #0aa9be 50%, #087486 100%);
            box-shadow: 0 0 10px rgba(10, 143, 165, 0.18);
        }

.gnb-item.has-panel > .gnb-link.is-active {
    color: #fff !important;
    background: linear-gradient(135deg, #11161b 0%, #1c2730 58%, #0b7485 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 18px rgba(8, 20, 30, 0.16);
}

    .gnb-item.has-panel > .gnb-link.is-active > span {
        display: inline-block;
        background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, #ffffff 50%, #bfeef5 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .gnb-item.has-panel > .gnb-link.is-active::before {
        background: linear-gradient( 90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 20%, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0.28) 80%, rgba(255,255,255,0) 100% );
    }

    .gnb-item.has-panel > .gnb-link.is-active::after {
        background: linear-gradient(90deg, rgba(255,255,255,0.72) 0%, #ffffff 50%, rgba(255,255,255,0.72) 100%);
        box-shadow: 0 0 12px rgba(255,255,255,0.18);
    }


/* IPX FINAL HEADER FIX
   Load this file AFTER the current style.css
   Purpose:
   1) Keep desktop mega menu centered with the desktop nav
   2) Prevent mobile drawer/header-panel from showing on desktop
   3) Keep header-panel hidden on mobile
   4) Neutralize broken overrides added later in the current CSS
*/

/* ---------- Desktop baseline ---------- */
@media (min-width: 769px) {
    .topbar {
        display: flex !important;
        align-items: center !important;
        min-height: 72px !important;
        max-width: 1680px !important;
        margin: 0 auto !important;
        gap: 34px !important;
    }

    .logo {
        flex: 0 0 auto !important;
    }

    .gnb {
        flex: 1 1 auto !important;
        display: flex !important;
        justify-content: flex-start !important;
        order: 0 !important;
        width: auto !important;
        overflow: visible !important;
    }

    .gnb-list {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 5px !important;
        width: auto !important;
        min-width: 0 !important;
        justify-content: flex-start !important;
        padding: 0 !important;
    }

    .gnb-item {
        flex: 0 0 auto !important;
    }

    .gnb-link {
        height: 42px !important;
        padding: 0 16px !important;
        font-size: 15px !important;
        white-space: nowrap !important;
    }

    .top-icons {
        margin-left: auto !important;
    }

    /* desktop mega menu alignment */
    .header-panel {
        display: block !important;
        position: absolute !important;
        top: calc(100% - 1px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        transform: translateY(-8px) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        border-top: 0 !important;
        border-radius: 0 !important;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12) !important;
    }

        .header-panel::before {
            display: block !important;
        }

    .top:has(.gnb-item.has-panel:hover) .header-panel,
    .top:has(.gnb-item.has-panel:focus-within) .header-panel,
    .top:has(.header-panel:hover) .header-panel,
    .top:has(.header-panel:focus-within) .header-panel {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    .header-panel > .wrap {
        width: 100% !important;
        max-width: 1680px !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    .header-panel-inner {
        display: grid !important;
        grid-template-columns: 240px 240px 240px 1fr 280px !important;
        gap: 32px !important;
        width: 100% !important;
        padding: 34px 0 !important;
        align-items: start !important;
        box-sizing: border-box !important;
    }

    .panel-col + .panel-col {
        border-left: 1px solid #ececec !important;
        padding-left: 26px !important;
        border-top: 0 !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .panel-col-leftmenu {
        border-left: 0 !important;
        padding-left: 0 !important;
    }

    .panel-promo {
        display: flex !important;
    }

    /* desktop must never show mobile drawer controls */
    .mobile-menu-btn,
    .mobile-drawer,
    .mobile-drawer-backdrop {
        display: none !important;
    }
}

/* ---------- Tablet / mobile ---------- */
@media (max-width: 768px) {
    .desktop-gnb,
    .header-panel,
    .lang-form--desktop {
        display: none !important;
    }

        .header-panel::before {
            display: none !important;
        }

    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .mobile-drawer,
    .mobile-drawer-backdrop {
        display: block !important;
    }

    .topbar {
        min-height: 78px !important;
        gap: 16px !important;
    }

    .top-icons {
        margin-left: auto !important;
    }
}

/* ---------- Small tablet cleanup ---------- */
@media (min-width: 769px) and (max-width: 1200px) {
    .header-panel > .wrap {
        max-width: calc(100vw - 32px) !important;
    }

    .header-panel-inner {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        padding: 24px !important;
    }

    .panel-col + .panel-col {
        border-left: 0 !important;
        padding-left: 0 !important;
    }

    .panel-promo {
        grid-column: 1 / -1 !important;
        justify-content: flex-start !important;
    }
}

/* =========================
   FINAL mobile drawer scroll fix
   add at very bottom
========================= */
@media (max-width: 768px) {
    .mobile-drawer {
        display: flex !important;
        flex-direction: column !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        overflow: hidden !important;
    }

    .mobile-drawer__head,
    .mobile-drawer__lang {
        flex: 0 0 auto !important;
    }

    .mobile-drawer__viewport {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        height: auto !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: env(safe-area-inset-bottom, 0) !important;
    }

    .mobile-drawer__panel {
        flex: 0 0 auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        padding-bottom: 32px !important;
    }

    .mobile-main-nav,
    .mobile-menu-groups {
        display: block !important;
    }

    .mobile-menu-card:last-child {
        margin-bottom: 28px !important;
    }
}

@media (max-width: 480px) {
    .mobile-drawer {
        height: 100dvh !important;
        max-height: 100dvh !important;
    }

    .mobile-drawer__viewport {
        padding-bottom: calc(env(safe-area-inset-bottom, 0) + 12px) !important;
    }

    .mobile-drawer__panel {
        padding-bottom: 40px !important;
    }

    .mobile-menu-card:last-child {
        margin-bottom: 36px !important;
    }
}

.gnb-link {
    position: relative;
    overflow: hidden;
}

    .gnb-link > span {
        position: relative;
        z-index: 2;
        display: inline-flex;
        align-items: center;
    }

    /* active visual */
    .gnb-link.is-active {
        color: #16202a !important;
        background: linear-gradient(180deg, #f8fafb 0%, #eef3f6 100%) !important;
        box-shadow: inset 0 0 0 1px rgba(16, 28, 38, 0.08), inset 0 -1px 0 rgba(255, 255, 255, 0.55);
    }

        .gnb-link.is-active > span {
            background: linear-gradient(90deg, #17212b 0%, #136a7c 58%, #1aa8bf 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .gnb-link.is-active::before {
            content: "";
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 5px;
            height: 1px;
            background: linear-gradient( 90deg, rgba(8, 116, 134, 0) 0%, rgba(8, 116, 134, 0.45) 18%, rgba(10, 143, 165, 0.95) 50%, rgba(8, 116, 134, 0.45) 82%, rgba(8, 116, 134, 0) 100% );
        }

        .gnb-link.is-active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 3px;
            width: 34px;
            height: 3px;
            transform: translateX(-50%);
            border-radius: 999px;
            background: linear-gradient(90deg, #087486 0%, #0aa9be 50%, #087486 100%);
            box-shadow: 0 0 10px rgba(10, 143, 165, 0.18);
        }

/* products dark mode */
.gnb-item.has-panel > .gnb-link.is-active {
    color: #fff !important;
    background: linear-gradient(135deg, #11161b 0%, #1c2730 58%, #0b7485 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 18px rgba(8, 20, 30, 0.16);
}

    .gnb-item.has-panel > .gnb-link.is-active > span {
        background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, #ffffff 50%, #bfeef5 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .gnb-item.has-panel > .gnb-link.is-active::before {
        background: linear-gradient( 90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 20%, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0.28) 80%, rgba(255,255,255,0) 100% );
    }

    .gnb-item.has-panel > .gnb-link.is-active::after {
        background: linear-gradient(90deg, rgba(255,255,255,0.72) 0%, #ffffff 50%, rgba(255,255,255,0.72) 100%);
        box-shadow: 0 0 12px rgba(255,255,255,0.18);
    }

/* icon base */
.gnb-link > span::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    opacity: 0;
    transform: translateY(0) scale(1);
    transition: opacity .18s ease;
}

/* glow base */
.gnb-link > span::after {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transform: translateY(-50%) scale(.82);
    opacity: 0;
    z-index: -1;
    transition: opacity .18s ease;
}

/* animate when hover, click, active */
.gnb-link:hover > span::before,
.gnb-link:active > span::before,
.gnb-link.is-active > span::before {
    opacity: 1;
    animation: menuIconFloatLoop 2.3s ease-in-out infinite;
}

.gnb-link:hover > span::after,
.gnb-link:active > span::after,
.gnb-link.is-active > span::after {
    opacity: 1;
    animation: menuGlowLoop 2.3s ease-in-out infinite;
}

/* normal menu icon glow */
.gnb-link:hover > span::after,
.gnb-link:active > span::after,
.gnb-link.is-active > span::after {
    background: radial-gradient(circle, rgba(10,143,165,.16) 0%, rgba(10,143,165,0) 72%);
}

/* dark products icon glow */
.gnb-item.has-panel > .gnb-link:hover > span::after,
.gnb-item.has-panel > .gnb-link:active > span::after,
.gnb-item.has-panel > .gnb-link.is-active > span::after {
    background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 72%);
}

/* menu-specific icons */
.gnb-list > .gnb-item:nth-child(1) > .gnb-link > span::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a8fa5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10.5 12 3l9 7.5'/><path d='M5 9.5V21h14V9.5'/></svg>");
}

.gnb-list > .gnb-item:nth-child(2) > .gnb-link > span::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='5' width='16' height='12' rx='2'/><circle cx='12' cy='11' r='3.2'/><path d='M9 20h6'/></svg>");
}

.gnb-list > .gnb-item:nth-child(3) > .gnb-link > span::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a8fa5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 17l5-5 4 3 7-8'/><path d='M4 20h16'/></svg>");
}

.gnb-list > .gnb-item:nth-child(4) > .gnb-link > span::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a8fa5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='3.2'/><path d='M5 20c1.6-3.4 4-5 7-5s5.4 1.6 7 5'/></svg>");
}

.gnb-list > .gnb-item:nth-child(5) > .gnb-link > span::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a8fa5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3v4'/><path d='M12 17v4'/><path d='M4.9 4.9l2.8 2.8'/><path d='M16.3 16.3l2.8 2.8'/><path d='M3 12h4'/><path d='M17 12h4'/><path d='M4.9 19.1l2.8-2.8'/><path d='M16.3 7.7l2.8-2.8'/><circle cx='12' cy='12' r='3.2'/></svg>");
}

.gnb-list > .gnb-item:nth-child(6) > .gnb-link > span::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a8fa5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 6h16v12H4z'/><path d='m5 7 7 6 7-6'/></svg>");
}

/* products icon on dark bg */
.gnb-item.has-panel > .gnb-link > span::before {
    filter: drop-shadow(0 2px 6px rgba(255,255,255,.12));
}

.gnb-link:hover > span::before,
.gnb-link:active > span::before,
.gnb-link.is-active > span::before,
.gnb-link:hover > span::after,
.gnb-link:active > span::after,
.gnb-link.is-active > span::after {
    animation-duration: 3.2s;
}

.gnb-link:hover > span::before,
.gnb-link:active > span::before,
.gnb-link.is-active > span::before {
    opacity: 1;
    animation: menuIconFloatLoop 2.8s ease-in-out infinite;
}

.gnb-link:hover > span::after,
.gnb-link:active > span::after,
.gnb-link.is-active > span::after {
    opacity: 1;
    animation: menuGlowLoop 2.8s ease-in-out infinite;
}

.gnb-link > span::before {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    background-size: 20px 20px;
    transform: translateY(2px);
    transform-origin: center;
}

@keyframes menuIconFloatLoop {
    0% {
        transform: translateY(4px) scale(1) rotate(0deg);
    }

    20% {
        transform: translateY(2px) scale(1.04) rotate(-4deg);
    }

    40% {
        transform: translateY(-1px) scale(1.08) rotate(3deg);
    }

    60% {
        transform: translateY(1px) scale(1.05) rotate(-2deg);
    }

    80% {
        transform: translateY(3px) scale(1.03) rotate(2deg);
    }

    100% {
        transform: translateY(4px) scale(1) rotate(0deg);
    }
}

@keyframes menuGlowLoop {
    0% {
        transform: translateY(-50%) scale(.78);
        opacity: .16;
    }

    35% {
        transform: translateY(-50%) scale(1.18);
        opacity: .30;
    }

    70% {
        transform: translateY(-50%) scale(1.28);
        opacity: .22;
    }

    100% {
        transform: translateY(-50%) scale(.78);
        opacity: .16;
    }
}

/* =========================================================
   MOBILE DRAWER HORIZONTAL SCROLL FIX
   닫힌 모바일 메뉴가 오른쪽 화면 밖에서 페이지 폭을 밀지 않게 처리
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
/*    overflow-x: hidden !important;*/
}

body {
    position: relative;
}

/* 전체 페이지 래퍼들이 모바일에서 100vw 이상 커지지 않게 */
#iShopBody,
#iShopBody > main,
#iShopBody > main.container,
.main,
.wrap,
.top,
.topbar {
    max-width: 100%;
    overflow-x: clip;
}

/* clip 미지원 브라우저 fallback */
@supports not (overflow-x: clip) {
    #iShopBody,
    #iShopBody > main,
    #iShopBody > main.container,
    .main,
    .wrap,
    .top,
    .topbar {
        overflow-x: hidden;
    }
}

/* 모바일 드로어는 닫힌 상태에서 완전히 화면 밖으로 보내되,
   body 가로 스크롤 영역으로 잡히지 않게 처리 */
.mobile-drawer {
    right: 0;
    max-width: 400px;
    transform: translate3d(105%, 0, 0);
    will-change: transform;
    overflow-x: hidden;
    contain: layout paint;
}

body.mobile-menu-open .mobile-drawer {
    transform: translate3d(0, 0, 0);
}

/* 백드롭도 가로 영역을 만들지 않게 */
.mobile-drawer-backdrop {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
}

/* =========================================================
   MOBILE ONLY
   ========================================================= */

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden !important;
        touch-action: pan-y;
    }

    .top {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .topbar {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: clip;
    }

    .wrap {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-left: 14px;
        padding-right: 14px;
        overflow-x: clip;
    }

    .main {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

        .main > .wrap {
            width: 100%;
            max-width: 100%;
            min-width: 0;
            overflow-x: hidden;
        }

    .mobile-drawer {
        width: min(88vw, 360px);
        max-width: 360px;
        transform: translate3d(calc(100% + 24px), 0, 0);
    }

    body.mobile-menu-open .mobile-drawer {
        transform: translate3d(0, 0, 0);
    }

    .mobile-drawer__viewport {
        overflow-x: hidden;
    }

    .mobile-drawer__panel,
    .mobile-nav,
    .mobile-submenu,
    .mobile-submenu__section {
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .mobile-drawer {
        width: min(86vw, 340px);
        max-width: 340px;
        transform: translate3d(calc(100% + 24px), 0, 0);
    }

    body.mobile-menu-open .mobile-drawer {
        transform: translate3d(0, 0, 0);
    }
}

/* ipx-quick-menu */
.ipx-quick-menu {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
    pointer-events: none;
}

    .ipx-quick-menu,
    .ipx-quick-menu * {
        box-sizing: border-box;
    }

.ipx-quick-menu__item {
    position: relative;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #078c9b;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 8px 18px rgba(0, 106, 118, 0.24);
    transition: width .24s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
    pointer-events: auto;
    font-family: Arial, Helvetica, sans-serif;
    appearance: none;
    -webkit-appearance: none;
}

    .ipx-quick-menu__item:hover {
        background: #057f8c;
        transform: translateY(-1px);
        box-shadow: 0 11px 24px rgba(0, 106, 118, 0.30);
    }

.ipx-quick-menu__item--contact:hover {
    width: 150px;
}

.ipx-quick-menu__item--newsletter:hover {
    width: 160px;
}

.ipx-quick-menu__item--top:hover {
    width: 105px;
}

.ipx-quick-menu__icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 48px;
}

    .ipx-quick-menu__icon svg {
        width: 22px;
        height: 22px;
        display: block;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
        color: #fff;
        opacity: 1;
        visibility: visible;
    }

.ipx-quick-menu__item--newsletter .ipx-quick-menu__icon svg {
    width: 24px;
    height: 24px;
}

.ipx-quick-menu__text {
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(7px);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.15px;
    padding-right: 18px;
    color: #fff;
    transition: opacity .16s ease .05s, visibility .16s ease .05s, transform .18s ease .05s;
}

.ipx-quick-menu__item:hover .ipx-quick-menu__text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.ipx-quick-menu__item--top {
    padding: 0;
}

@media (max-width: 768px) {
    .ipx-quick-menu {
        right: 14px;
        bottom: 16px;
        gap: 8px;
    }

    .ipx-quick-menu__item {
        width: 42px;
        height: 42px;
    }

    .ipx-quick-menu__icon {
        width: 42px;
        min-width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

        .ipx-quick-menu__icon svg {
            width: 19px;
            height: 19px;
        }

    .ipx-quick-menu__item--newsletter .ipx-quick-menu__icon svg {
        width: 21px;
        height: 21px;
    }

    .ipx-quick-menu__text {
        font-size: 13px;
        padding-right: 15px;
    }

    .ipx-quick-menu__item--contact:hover {
        width: 138px;
    }

    .ipx-quick-menu__item--newsletter:hover {
        width: 148px;
    }

    .ipx-quick-menu__item--top:hover {
        width: 92px;
    }
}

.ipx-quick-menu__icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 48px;
}

    .ipx-quick-menu__icon svg {
        width: 22px;
        height: 22px;
        display: block;
        overflow: visible;
        color: #fff;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: 1 !important;
        visibility: visible !important;
    }

        .ipx-quick-menu__icon svg path,
        .ipx-quick-menu__icon svg rect,
        .ipx-quick-menu__icon svg line,
        .ipx-quick-menu__icon svg polyline,
        .ipx-quick-menu__icon svg polygon,
        .ipx-quick-menu__icon svg circle {
            fill: none !important;
            stroke: currentColor !important;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

.ipx-quick-menu__item--newsletter .ipx-quick-menu__icon svg {
    width: 23px;
    height: 23px;
}

.info-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

    .info-card-link:hover,
    .info-card-link:focus {
        color: inherit;
        text-decoration: none;
    }

    .info-card-link .info-card {
        height: 100%;
        cursor: pointer;
    }

.info-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: right;
    margin-top: auto;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.22s ease;
}

.info-card-link:hover .info-card-arrow {
    transform: translateX(6px);
}