/* 한바퀴 랜딩 전용 상단 내비게이션 */
#header.or-site-header {
    top: 28px;
    width: min(1460px, calc(100% - 48px));
    max-width: none;
    height: 84px;
    border: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow:
        0 18px 48px rgba(3, 28, 91, .18),
        0 2px 8px rgba(3, 28, 91, .08);
}

#header.or-site-header .header-inner {
    display: flex;
    align-items: center;
    padding: 0 22px 0 28px;
}

#header.or-site-header #logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    margin: 0;
}

#header.or-site-header #logo a {
    display: flex;
    width: auto;
    min-width: 172px;
    height: 84px;
    align-items: center;
    gap: 0;
    color: #10224a;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -1px;
    line-height: normal;
    white-space: nowrap;
}

.or-header-brand-mark {
    display: block;
    width: 170px;
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
}

#header.or-site-header #logo .or-header-brand-mark {
    width: 170px;
    min-width: 170px;
    max-width: 170px;
    max-height: 58px;
    height: auto;
}

#header.or-site-header #logo a span {
    display: none;
}

.or-side-brand-mark {
    display: block;
    width: 152px;
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
}

.or-side-brand .or-side-brand-mark {
    width: 152px;
    min-width: 152px;
    max-width: 152px;
    max-height: 58px;
    height: auto;
}

#header.or-site-header .gnb {
    position: static;
    display: flex;
    height: 100%;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

#header.or-site-header .gnb > li {
    float: none;
    width: auto;
    height: 84px;
    line-height: normal;
}

#header.or-site-header .gnb > li > a {
    position: relative;
    display: flex;
    min-width: 174px;
    height: 84px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border-radius: 14px;
    color: #17213a;
    font-size: 16px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: -.6px;
    transition: color .2s ease, background .2s ease;
}

.or-app-menu-bubble {
    position: absolute;
    top: 7px;
    right: 10px;
    display: inline-flex;
    min-width: 34px;
    height: 21px;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: #ff5a3c;
    box-shadow: 0 6px 14px rgba(225, 57, 30, .28);
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .5px;
    pointer-events: none;
    animation: or-app-menu-bob 1.45s ease-in-out infinite;
}

.or-app-menu-bubble::after {
    position: absolute;
    right: 7px;
    bottom: -5px;
    width: 0;
    height: 0;
    border-top: 5px solid #ff5a3c;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
}

.or-app-menu-bubble.is-side,
.or-app-menu-bubble.is-mobile {
    position: relative;
    top: auto;
    right: auto;
    flex: 0 0 auto;
    margin-left: 8px;
    vertical-align: middle;
}

.or-side-menu-name {
    display: flex;
    min-width: 0;
    align-items: center;
}

@keyframes or-app-menu-bob {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(3px); }
}

#header.or-site-header .gnb > li > a:hover,
#header.or-site-header .gnb > li:focus-within > a {
    color: #1457d9;
    background: #f4f7fd;
}

#header.or-site-header .gnb-arrow {
    width: 14px;
    height: 8px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform .2s ease;
}

#header.or-site-header .gnb > li:hover .gnb-arrow,
#header.or-site-header .gnb > li:focus-within .gnb-arrow {
    transform: rotate(180deg);
}

#header.or-site-header .gnb > li.is-cta {
    height: 58px;
    margin-left: 10px;
}

#header.or-site-header .gnb > li.is-cta > a {
    min-width: 146px;
    height: 58px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #1764e8, #1045c5);
    box-shadow: 0 10px 23px rgba(18, 77, 201, .25);
}

#header.or-site-header .gnb > li.is-cta > a:hover,
#header.or-site-header .gnb > li.is-cta:focus-within > a {
    color: #fff;
    background: linear-gradient(135deg, #2376f4, #1551d4);
}

.or-header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid #e7ebf3;
}

.or-header-action {
    display: inline-flex;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid #dfe5ef;
    border-radius: 11px;
    color: #35435d;
    background: #fff;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: -.4px;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.or-header-action i {
    color: #1457d9;
    font-size: 14px;
}

.or-header-action--utility:hover,
.or-header-action--utility:focus-visible {
    border-color: #b9cbec;
    color: #1457d9;
    background: #f3f7ff;
}

.or-header-action--service {
    min-width: 119px;
    border-color: #102958;
    color: #fff;
    background: #102958;
    box-shadow: 0 8px 18px rgba(8, 30, 74, .18);
}

.or-header-action--service i {
    color: #8ff0ce;
}

.or-header-action--service:hover,
.or-header-action--service:focus-visible {
    border-color: #173b7d;
    color: #fff;
    background: #173b7d;
    transform: translateY(-2px);
}

.or-header-action--inquiry {
    display: none;
    color: #fff;
    border-color: #1764e8;
    background: #1764e8;
}

.or-header-action--inquiry i {
    color: #fff;
}

.or-header-action:focus-visible {
    outline: 3px solid rgba(20, 87, 217, .24);
    outline-offset: 2px;
}

#header.or-site-header .gnb .snb,
.device-md #header.or-site-header .gnb .snb {
    display: block;
    top: 76px;
    right: auto;
    left: 50%;
    width: 250px;
    margin-top: -14px;
    padding: 24px 10px 10px;
    border: 1px solid #e7ebf3;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(14, 37, 83, .17);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    will-change: opacity, transform;
}

#header.or-site-header .gnb > li:hover .snb,
#header.or-site-header .gnb > li:focus-within .snb {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    #header.or-site-header .gnb .snb {
        transition: opacity .16s ease, visibility .16s ease;
    }
}

#header.or-site-header .gnb .snb::before {
    position: absolute;
    top: -6px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 1px solid #e7ebf3;
    border-left: 1px solid #e7ebf3;
    background: #fff;
    content: "";
    transform: translateX(-50%) rotate(45deg);
}

#header.or-site-header .gnb .snb li {
    position: relative;
    border: 0;
    font-size: 14px;
    line-height: normal;
    text-align: left;
}

#header.or-site-header .gnb .snb li a,
#header.or-site-header .gnb .snb li > span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    color: #27344d;
    font-weight: 650;
    line-height: 1.4;
    word-break: keep-all;
}

#header.or-site-header .gnb .snb li a:hover,
#header.or-site-header .gnb .snb li a:focus-visible {
    color: #1457d9;
    background: #eef4ff;
}

#header.or-site-header .gnb .snb li.is-disabled > span {
    color: #a3aab7;
    cursor: not-allowed;
}

.scrolled #header.or-site-header {
    top: 14px;
    border: 0;
    background: #fff;
    box-shadow:
        0 16px 42px rgba(3, 28, 91, .2),
        0 2px 8px rgba(3, 28, 91, .08);
}

.side_gnb .depth-2 > li.is-disabled > span {
    display: block;
    padding: 0 1.5em 0 2.2em;
    color: #898989;
    background: #e5e5e5;
    font-size: 16px;
    line-height: 3em;
    cursor: not-allowed;
}

#guide-franchise,
#guide-headquarters,
#order-industries,
#order-faq,
#order-cta {
    scroll-margin-top: 125px;
}

@media screen and (max-width: 1250px) and (min-width: 961px) {
    #header.or-site-header .gnb > li > a {
        min-width: 132px;
        padding: 0 13px;
        font-size: 14px;
    }

    #header.or-site-header .gnb > li.is-cta > a {
        min-width: 112px;
    }

    .or-header-actions {
        gap: 5px;
        margin-left: 8px;
        padding-left: 8px;
    }

    .or-header-action {
        width: 42px;
        padding: 0;
    }

    .or-header-action--utility span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        clip-path: inset(50%);
    }

    .or-header-action--service {
        width: auto;
        min-width: 108px;
        padding: 0 11px;
    }
}

@media screen and (max-width: 960px) {
    body.right-side-on {
        overflow: hidden;
    }

    #or-side-backdrop {
        position: fixed;
        z-index: 1190;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(4, 16, 43, .58);
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(5px);
        transition: opacity .3s ease, visibility .3s ease;
        cursor: pointer;
    }

    .right-side-on #or-side-backdrop {
        opacity: 1;
        visibility: visible;
    }

    #right-side {
        position: fixed;
        z-index: 1200;
        top: 0;
        right: auto;
        bottom: 0;
        left: 0;
        width: min(420px, calc(100vw - 24px));
        max-width: none;
        height: 100%;
        padding: 0;
        overflow: hidden;
        color: #15213a;
        background: #f4f7fc;
        box-shadow: 24px 0 70px rgba(3, 20, 61, .3);
        transform: translateX(-105%);
        transition: transform .38s cubic-bezier(.22, .75, .25, 1);
    }

    .right-side-on #right-side {
        right: auto;
        transform: translateX(0);
    }

    .right-side-on #wrap,
    .right-side-on #wrapper {
        left: auto;
    }

    .right-side-on #header {
        left: 50%;
    }

    .or-side-head {
        position: relative;
        min-height: 210px;
        padding: 26px 28px 28px 76px;
        overflow: hidden;
        color: #fff;
        background:
            radial-gradient(circle at 92% 3%, rgba(81, 140, 255, .62), transparent 36%),
            linear-gradient(145deg, #092c79 0%, #0a3da5 60%, #145bd8 100%);
    }

    .or-side-head::after {
        position: absolute;
        right: -58px;
        bottom: -88px;
        width: 210px;
        height: 210px;
        border: 28px solid rgba(255, 255, 255, .08);
        border-radius: 50%;
        content: "";
    }

    .or-side-brand {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 0;
        padding: 8px 12px;
        border-radius: 16px;
        color: #fff;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 12px 26px rgba(4, 18, 50, .16);
        font-size: 18px;
        font-weight: 850;
        letter-spacing: -1px;
    }

    .or-side-brand-mark {
        display: block;
        width: 145px;
        height: auto;
        flex: 0 0 auto;
        object-fit: contain;
    }

    .or-side-close {
        position: absolute;
        z-index: 2;
        top: 22px;
        right: 20px;
        display: none;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: 13px;
        background: rgba(255, 255, 255, .1);
    }

    .or-side-close span {
        position: absolute;
        top: 20px;
        left: 11px;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: #fff;
        transform: rotate(45deg);
    }

    .or-side-close span:last-child {
        transform: rotate(-45deg);
    }

    .or-side-intro {
        position: relative;
        z-index: 1;
        margin-top: 28px;
    }

    .or-side-intro strong {
        display: block;
        font-size: 25px;
        font-weight: 800;
        line-height: 1.28;
        letter-spacing: -1.4px;
    }

    .or-side-intro p {
        margin-top: 10px;
        color: rgba(255, 255, 255, .7);
        font-size: 13px;
        letter-spacing: -.4px;
    }

    .or-side-body {
        height: calc(100% - 210px);
        padding: 18px 18px 28px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    #right-side .quick_menu {
        width: 100%;
        margin: 0 0 20px;
        padding: 0;
    }

    #right-side .quick_menu ul {
        display: flex;
        gap: 8px;
        text-align: left;
    }

    #right-side .quick_menu li {
        display: block;
        flex: 1 1 0;
        width: auto;
        margin: 0;
        border: 0;
    }

    #right-side .quick_menu li a {
        display: flex;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 0 10px;
        border: 1px solid #e2e8f2;
        border-radius: 12px;
        color: #263653;
        background: #fff;
        box-shadow: 0 6px 16px rgba(25, 48, 91, .06);
        font-size: 12px;
        font-weight: 700;
    }

    #right-side .quick_menu li a i {
        color: #1764e8;
        font-size: 13px;
    }

    #right-side .side_gnb {
        float: none;
        width: 100%;
        padding: 0;
    }

    #right-side .side_gnb .or-side-nav-label {
        margin: 0 0 9px;
        padding: 0 4px;
        color: #8792a7 !important;
        font-size: 15px !important;
        font-weight: 800;
        letter-spacing: 1.8px;
        text-align: left !important;
    }

    #right-side .side_gnb .menu-list {
        display: block;
        margin: 0;
        overflow: hidden;
        border: 1px solid #e1e7f0;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(19, 43, 86, .08);
    }

    #right-side .side_gnb .menu-list > li {
        border-top: 1px solid #edf1f6;
    }

    #right-side .side_gnb .menu-list > li:first-child {
        border-top: 0;
    }

    #right-side .side_gnb .menu-list > li > a {
        display: grid;
        grid-template-columns: 34px 1fr 22px;
        min-height: 66px;
        align-items: center;
        padding: 0 18px;
        border: 0;
        color: #17243e;
        background: #fff;
        font-size: 16px;
        font-weight: 800;
        line-height: 1.3;
        letter-spacing: -.7px;
        text-decoration: none;
        transition: color .2s ease, background .2s ease;
    }

    #right-side .side_gnb .menu-list > li.on > a {
        color: #1457d9;
        background: #f3f7ff;
    }

    .or-side-menu-number {
        color: #a4adbd;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: .5px;
    }

    #right-side .side_gnb .menu-list > li.on .or-side-menu-number {
        color: #70a0f3;
    }

    .or-side-menu-arrow,
    .or-side-menu-link {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: #7d899e;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.8;
        transition: transform .25s ease, stroke .25s ease;
    }

    #right-side .side_gnb .menu-list > li.on .or-side-menu-arrow {
        stroke: #1457d9;
        transform: rotate(180deg);
    }

    #right-side .side_gnb .depth-2 {
        display: none;
        padding: 3px 14px 13px 51px;
        background: #f3f7ff;
    }

    #right-side .side_gnb .depth-2 > li {
        position: relative;
        background: transparent;
    }

    #right-side .side_gnb .depth-2 > li::before {
        position: absolute;
        top: 20px;
        left: 1px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #a8b7d2;
        content: "";
    }

    #right-side .side_gnb .depth-2 > li > a,
    #right-side .side_gnb .depth-2 > li > span {
        display: block;
        padding: 11px 12px;
        border: 0;
        border-radius: 9px;
        color: #4a5b77;
        background: transparent;
        font-size: 13px;
        font-weight: 650;
        line-height: 1.55;
        word-break: keep-all;
    }

    #right-side .side_gnb .depth-2 > li > a:focus-visible,
    #right-side .side_gnb .depth-2 > li > a:hover {
        color: #1457d9;
        background: #e6efff;
    }

    #right-side .side_gnb .depth-2 > li.is-disabled::before {
        background: #d0d5df;
    }

    #right-side .side_gnb .depth-2 > li.is-disabled > span {
        padding: 11px 12px;
        color: #a8afbc;
        background: transparent;
        font-size: 13px;
        line-height: 1.55;
    }

    .or-side-contact {
        margin-top: 18px;
        padding: 22px;
        border-radius: 18px;
        color: #fff;
        background: #102958;
        box-shadow: 0 14px 28px rgba(8, 30, 74, .18);
    }

    .or-side-contact > div span {
        display: block;
        margin-bottom: 7px;
        color: #8ff0ce;
        font-size: 17px;
        font-weight: 800;
        letter-spacing: -.2px;
    }

    .or-side-contact > div strong {
        display: block;
        font-size: 17px;
        font-weight: 750;
        line-height: 1.45;
        letter-spacing: -.7px;
    }

    .or-side-contact > a {
        display: flex;
        height: 47px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
        border-radius: 12px;
        color: #fff;
        background: #1764e8;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .4px;
    }

    .or-side-contact > a svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.8;
    }

    .or-side-contact > a.or-side-phone {
        height: auto;
        margin-top: 13px;
        color: rgba(255, 255, 255, .7);
        background: transparent;
        font-size: 12px;
        letter-spacing: 0;
    }

    #header.or-site-header {
        top: 12px;
        width: 100%;
        height: 42px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        pointer-events: none;
    }

    #header.or-site-header .header-inner {
        display: block;
        padding: 0;
    }

    #header.or-site-header #logo {
        display: none;
    }

    #header.or-site-header .gnb {
        display: none !important;
    }

    .scrolled #header.or-site-header {
        top: 12px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    #open-button {
        z-index: 1210;
        top: 12px;
        right: auto;
        left: 10px;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .78);
        border-radius: 14px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 8px 22px rgba(3, 28, 91, .18);
        appearance: none;
        pointer-events: auto;
    }

    #open-button > div {
        width: 24px;
        height: 20px;
        margin: 0 auto;
    }

    #open-button .nl1,
    #open-button .nl2,
    #open-button .nl3 {
        right: 0;
        width: 24px;
        height: 2px;
        border-radius: 3px;
    }

    #open-button .nl1 { top: 1px; }
    #open-button .nl2 { top: 9px; }
    #open-button .nl3 { top: 17px; }

    #open-button .navicon-line,
    .scrolled #open-button .navicon-line {
        background: #14264b;
    }

    #open-button.on {
        border-color: rgba(255, 255, 255, .25);
        background: rgba(255, 255, 255, .12);
        box-shadow: none;
    }

    #open-button.on > div > div,
    #open-button.on.scrolled > div > div {
        top: 9px;
        right: 0;
        width: 24px;
        background: #fff;
    }

    #open-button.on > div > .nl1 {
        transform: rotate(45deg);
    }

    #open-button.on > div > .nl2 {
        opacity: 0;
        transform: none;
    }

    #open-button.on > div > .nl3 {
        transform: rotate(-45deg);
    }

    .or-header-actions {
        position: absolute;
        top: 0;
        right: 10px;
        display: flex;
        height: 46px;
        align-items: center;
        gap: 4px;
        margin: 0;
        padding: 0;
        border: 0;
        pointer-events: auto;
    }

    .or-header-action {
        width: auto;
        height: 46px;
        gap: 3px;
        padding: 0 14px;
        border-color: rgba(255, 255, 255, .8);
        border-radius: 13px;
        background: rgba(255, 255, 255, .95);
        box-shadow: 0 8px 22px rgba(3, 28, 91, .16);
        font-size: 15px;
        letter-spacing: -.7px;
    }

    .or-header-action i {
        font-size: 17px;
    }

    .or-header-action--admin {
        display: inline-flex;
    }

    .or-header-action--service {
        min-width: 78px;
        border-color: #102958;
        background: #102958;
    }

    .or-header-action--inquiry {
        display: inline-flex;
        min-width: 61px;
        border-color: #1764e8;
        background: #1764e8;
    }
}

@media screen and (max-width: 480px) {
    #header.or-site-header {
        width: 100%;
    }

    #open-button {
        left: 7px;
        width: 44px;
        height: 44px;
    }

    .or-header-actions {
        right: 7px;
        gap: 3px;
    }

    .or-header-action {
        height: 44px;
        padding: 0 14px;
        border-radius: 12px;
        font-size: 15px;
    }

    .or-header-action--admin,
    .or-header-action--auth {
        min-width: 44px;
    }

    .or-header-action--service {
        min-width: 69px;
    }

    .or-header-action i {
        display: none;
    }

    .or-header-action--inquiry {
        min-width: 54px;
    }

    .or-side-head {
        min-height: 198px;
        padding: 24px 22px 24px 68px;
    }

    .or-side-intro {
        margin-top: 25px;
    }

    .or-side-intro strong {
        font-size: 23px;
    }

    .or-side-body {
        height: calc(100% - 198px);
        padding: 16px 14px 24px;
    }
}

@media screen and (min-width: 961px) {
    #or-side-backdrop,
    #right-side {
        display: none !important;
    }
}

@media screen and (max-width: 350px) {
    #open-button {
        left: 5px;
        width: 42px;
        height: 42px;
    }

    .or-header-actions {
        right: 5px;
        gap: 2px;
    }

    .or-header-action {
        min-width: 0;
        height: 42px;
        padding: 0 5px;
        font-size: 9px;
    }

    .or-header-action--admin,
    .or-header-action--auth {
        min-width: 40px;
    }

    .or-header-action--service {
        min-width: 63px;
    }

    .or-header-action--inquiry {
        min-width: 49px;
    }
}

/* 그누보드 모바일 헤더 */
#hd.or-mobile-header--home {
    position: absolute;
    top: 12px;
    right: 12px;
    left: 12px;
    z-index: 1000;
    width: auto;
    height: 64px;
    border: 0;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(3, 28, 91, .2);
}

#hd.or-mobile-header--home #hd_wrapper {
    position: relative;
    height: 64px;
}

#hd.or-mobile-header--home #logo {
    position: absolute;
    top: 0;
    right: 156px;
    left: 49px;
    height: 64px;
    padding: 10px 0;
    text-align: left;
}

#hd.or-mobile-header--home #logo a {
    display: inline-flex;
    max-width: 100%;
    height: 44px;
    align-items: center;
    gap: 0;
    color: #10224a;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: -.8px;
    white-space: nowrap;
}

#hd.or-mobile-header--home .or-header-brand-mark {
    width: 116px;
    min-width: 0;
    max-width: 100%;
    max-height: 42px;
    height: auto;
    object-fit: contain;
}

#hd.or-mobile-header--home #logo a span {
    display: none;
}

#hd.or-mobile-header--home #gnb_open {
    top: 12px;
    right: auto;
    left: 7px;
    width: 38px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    color: #14264b;
    font-size: 21px;
}

#hd.or-mobile-header--home #user_btn {
    display: none;
}

#hd.or-mobile-header--home .or-mobile-auth {
    position: absolute;
    top: 14px;
    right: 93px;
    display: inline-flex;
    height: 36px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 8px;
    border: 1px solid #dce4f1;
    border-radius: 10px;
    color: #33415b;
    background: #f7f9fd;
    font-size: 17px;
    font-weight: 750;
    line-height: 36px;
    letter-spacing: -.45px;
    white-space: nowrap;
}

#hd.or-mobile-header--home .or-mobile-auth i {
    color: #1457d9;
    font-size: 12px;
}

#hd.or-mobile-header--home .or-mobile-entry {
    top: 14px;
    right: 7px;
    height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    box-shadow: 0 7px 16px rgba(20, 87, 217, .22);
    font-size: 17px;
    line-height: 36px;
    white-space: nowrap;
}

#gnb .gnb_2dli.is-disabled .gnb_2da {
    display: block;
    padding-left: 30px;
    color: #a4a9b2;
    cursor: not-allowed;
}

.or-mobile-account-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 70px 14px 12px;
    background: #fff;
}

.or-mobile-account-actions a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #dfe6f1;
    border-radius: 11px;
    color: #34425c;
    background: #f8faff;
    font-size: 13px;
    font-weight: 750;
}

.or-mobile-account-actions a i {
    color: #1457d9;
    font-size: 15px;
}

.or-mobile-account-actions a.is-service {
    grid-column: 1 / -1;
    color: #fff;
    border-color: #102958;
    background: #102958;
}

.or-mobile-account-actions a.is-service i {
    color: #8ff0ce;
}

.or-mobile-account-actions a:nth-child(2):last-child {
    grid-column: 1 / -1;
}

@media screen and (max-width: 640px) {
    .order-hero .order-hero__inner {
        padding-top: 132px;
    }

    #gnb {
        max-width: 360px;
        background: #f4f7fc;
        box-shadow: 16px 0 45px rgba(6, 24, 67, .25);
    }

    #gnb_1dul {
        padding: 4px 14px 18px;
        background: #fff;
    }

    .gnb_1dli {
        margin-bottom: 7px;
        border: 1px solid #e6ebf4;
        border-radius: 12px;
        overflow: hidden;
    }

    .gnb_1da {
        display: flex;
        align-items: center;
        padding: 8px 18px;
        border-bottom: 0;
        color: #17213a;
        font-size: 15px;
    }

    .or-app-menu-bubble.is-mobile {
        margin-left: 10px;
    }

    .gnb_2dul {
        border-top: 1px solid #edf0f5;
        background: #f7f9fd;
    }

    .gnb_2da,
    #gnb .gnb_2dli.is-disabled .gnb_2da {
        padding: 9px 20px 9px 28px;
        color: #44516a;
        font-size: 14px;
    }

    #gnb_close {
        top: 14px;
        right: 14px;
        color: #17213a;
    }
}

@media (prefers-reduced-motion: reduce) {
    .or-app-menu-bubble {
        animation: none;
    }
}

@media screen and (max-width: 370px) {
    #hd.or-mobile-header--home {
        right: 8px;
        left: 8px;
    }

    #hd.or-mobile-header--home #logo {
        right: 146px;
        left: 45px;
    }

    #hd.or-mobile-header--home #logo a {
        gap: 4px;
        font-size: 12px;
        letter-spacing: -1px;
    }

    #hd.or-mobile-header--home .or-header-brand-mark {
        width: 102px;
        min-width: 0;
        max-width: 100%;
        height: auto;
    }

    #hd.or-mobile-header--home #gnb_open {
        left: 4px;
        width: 37px;
    }

    #hd.or-mobile-header--home .or-mobile-auth {
        right: 87px;
        gap: 0;
        padding: 0 7px;
        font-size: 15px;
    }

    #hd.or-mobile-header--home .or-mobile-auth i {
        display: none;
    }

    #hd.or-mobile-header--home .or-mobile-entry {
        right: 4px;
        padding: 0 8px;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #header.or-site-header,
    #header.or-site-header *,
    #hd.or-mobile-header--home * {
        transition: none !important;
    }
}

/* 2026-07-06: cleaner Sabangnet-like top bar */
@media screen and (min-width: 961px) {
    #header.or-site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: auto;
        width: 100%;
        max-width: none;
        height: 74px;
        border-radius: 0;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 1px 0 rgba(17, 24, 39, .08);
        backdrop-filter: blur(16px);
        font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
        transform: none;
        z-index: 1200;
    }

    #header.or-site-header .header-inner {
        width: min(1280px, calc(100% - 56px));
        height: 74px;
        margin: 0 auto;
        padding: 0;
    }

    #header.or-site-header #logo a {
        min-width: 0;
        height: 74px;
    }

    #header.or-site-header #logo .or-header-brand-mark {
        width: 128px;
        min-width: 128px;
        max-width: 128px;
        max-height: 42px;
    }

    #header.or-site-header .gnb {
        gap: 4px;
        margin-right: auto;
        margin-left: 34px;
    }

    #header.or-site-header .gnb > li {
        height: 74px;
    }

    #header.or-site-header .gnb > li.is-cta {
        display: none;
    }

    #header.or-site-header .gnb > li > a {
        min-width: 0;
        height: 74px;
        padding: 0 16px;
        border-radius: 0;
        color: #111827;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: -.45px;
    }

    #header.or-site-header .gnb > li > a:hover,
    #header.or-site-header .gnb > li:focus-within > a {
        color: #2563eb;
        background: transparent;
    }

    .or-header-actions {
        gap: 8px;
        margin-left: 22px;
        padding-left: 0;
        border-left: 0;
    }

    .or-header-action {
        height: 40px;
        padding: 0 15px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 750;
        box-shadow: none;
    }

    .or-header-action i {
        display: none;
    }

    .or-header-action--inquiry {
        display: inline-flex;
        color: #2563eb;
        border-color: #bfdbfe;
        background: #eff6ff;
    }

    .or-header-action--service {
        min-width: 118px;
        border-color: #2563eb;
        background: #2563eb;
        box-shadow: 0 10px 20px rgba(37, 99, 235, .2);
    }

    .scrolled #header.or-site-header {
        top: 0;
        box-shadow: 0 1px 0 rgba(17, 24, 39, .1), 0 10px 30px rgba(17, 24, 39, .08);
    }
}

/* 2026-07-06: final responsive guard after legacy mobile header rules */
@media screen and (max-width: 640px) {
    .order-hero .order-hero__inner {
        padding-top: 120px;
    }

    #hd.or-mobile-header--home {
        top: 10px;
        right: 10px;
        left: 10px;
        height: 58px;
        border-radius: 15px;
    }

    #hd.or-mobile-header--home #hd_wrapper {
        height: 58px;
    }

    #hd.or-mobile-header--home #logo {
        right: 148px;
        left: 49px;
        height: 58px;
        padding: 9px 0;
    }

    #hd.or-mobile-header--home .or-header-brand-mark {
        width: 104px;
        max-height: 38px;
    }

    #hd.or-mobile-header--home .or-mobile-auth,
    #hd.or-mobile-header--home .or-mobile-entry {
        top: 12px;
        height: 34px;
        border-radius: 9px;
        font-size: 14px;
        line-height: 34px;
    }

    #hd.or-mobile-header--home .or-mobile-auth {
        right: 88px;
    }
}

@media screen and (max-width: 370px) {
    .order-hero .order-hero__inner {
        padding-top: 112px;
    }

    #hd.or-mobile-header--home #logo {
        display: none;
    }
}
