* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --p: #1E3A8A;
    --s: #2563EB;
    --l: #3B82F6;
    --bg: #0f1d3d;
    --tx: #f1f5f9;
    --mt: #94a3b8;
    --bd: rgba(255, 255, 255, .1);
    --bb: rgba(37, 99, 235, .3);
    --glass: rgba(255, 255, 255, .04)
}

html {
    scroll-behavior: smooth;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none
}

body {
    font-family: "Pretendard GOV", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--tx);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none
}

input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    user-select: text
}

img {
    -webkit-user-drag: none;
    user-drag: none
}

.rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.rv.show {
    opacity: 1;
    transform: none
}

/* NAV - 최상위 z-index, 절대 가려지지 않음 */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 22px 5% 10px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    transition: box-shadow .4s ease, padding .4s ease;
    pointer-events: auto
}

nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 29, 61, .96);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: -1;
    pointer-events: none;
}

nav.sc {
    box-shadow: 0 1px 0 var(--bd);
    padding-top: 22px;
}

nav.sc::before {
    opacity: 1;
}

nav a {
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto
}

.nav-cert {
    justify-self: start;
    white-space: nowrap;
}

.logo {
    justify-self: center;
}

.logo img {
    height: clamp(36px, 4.2vw, 40px);
    filter: brightness(0) invert(1);
    opacity: .95;
    transition: .3s
}

.nav-menu {
    position: relative;
    justify-self: end;
}

.menu-icon {
    width: clamp(30px, 4vw, 36px);
    height: clamp(30px, 4vw, 36px);
    display: grid;
    place-items: center;
    gap: clamp(4px, .6vw, 5px);
    padding: 7px 4px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    border-radius: 8px;
}

.menu-icon span {
    width: clamp(18px, 2.8vw, 25px);
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform .3s ease, opacity .3s ease;
}

.menu-icon:hover {
    color: var(--l);
    background: rgba(255, 255, 255, .06);
}

.dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(15, 29, 61, .95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 197, 253, .18);
    border-radius: 12px;
    padding: 6px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.96);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-menu:hover .dropdown,
.nav-menu.nav-open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown a {
    padding: 11px 16px;
    color: rgba(219, 234, 254, .78);
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
    font-size: clamp(.78rem, .6vw + .68rem, .95rem);
    border-radius: 8px;
}

.dropdown a:hover {
    background: rgba(96, 165, 250, .12);
    color: #fff;
}

/* 모바일: 풀스크린 오버레이 메뉴 */
@media (max-width: 768px) {
    .dropdown {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        bottom: auto;
        left: auto;
        min-width: min(82vw, 260px);
        border: 1px solid rgba(147, 197, 253, .22);
        border-radius: 12px;
        padding: 6px;
        background: rgba(15, 29, 61, .97);
        backdrop-filter: blur(22px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(.96);
        transition: transform .24s ease, opacity .24s ease, visibility .24s ease;
        box-shadow: 0 16px 40px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .06);
        z-index: 2;
    }

    .nav-menu:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .nav-menu.nav-open .dropdown,
    .nav-menu.nav-open:hover .dropdown {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .dropdown a {
        width: 100%;
        max-width: none;
        padding: 12px 14px;
        text-align: left;
        font-size: clamp(.82rem, 1vw + .7rem, 1rem);
        font-weight: 800;
        color: rgba(219, 234, 254, .72);
        border-radius: 8px;
        border-bottom: none;
        opacity: 0;
        transform: translateY(6px);
        transition: background .2s ease, color .2s ease, opacity .24s ease, transform .24s ease;
    }

    .nav-menu:hover .dropdown a,
    .nav-menu.nav-open .dropdown a {
        opacity: 1;
        transform: translateY(0);
    }

    .dropdown a:last-child {
        border-bottom: none;
    }

    .dropdown a:hover,
    .dropdown a:active {
        background: rgba(96, 165, 250, .15);
        color: #fff;
    }
}

/* 모든 섹션 공통: 스택 카드 효과를 위한 sticky */
.page {
    --stack-top: 0px;
    min-height: 0;
    height: calc(100vh - var(--stack-top));
    height: calc(100dvh - var(--stack-top));
    padding: 80px 5% 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: var(--stack-top);
    background: var(--bg);
    box-shadow: 0 -15px 40px rgba(0, 0, 0, .4);
    overflow: hidden;
}

.page-scroll {
    width: 100%;
    max-height: 100%;
    min-height: 0;
    overflow-x: clip;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scrollbar-gutter: stable;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.page-scroll::-webkit-scrollbar {
    display: none;
}

.page.inner-scrollable .page-scroll {
    justify-content: flex-start;
}

.page.hero {
    align-items: stretch;
    position: sticky;
    top: 0;
    box-shadow: none;
    z-index: 1
}

.page.hero>.page-scroll {
    display: block;
    grid-column: 1 / -1;
    align-self: stretch;
    justify-self: stretch;
    min-height: 100%;
    width: 100%;
    overflow-y: auto;
}

/* 스택 순서를 위한 z-index - 위에 쌓이는 페이지일수록 높은 z-index */
#home {
    z-index: 1
}

#service {
    z-index: 2
}

#guide {
    z-index: 3
}

#procedure {
    z-index: 4
}

#faq {
    z-index: 5
}

#visit {
    z-index: 6
}

/* HERO Backgrounds */
.hero {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    align-content: center;
    gap: 40px;
    min-height: 100vh;
    padding: 200px 5% 80px;
    transition: background-color 1s ease
}

/* Removed Weather transitions */

.orb1 {
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, .12);
    top: -10%;
    left: -5%
}

.orb2 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, .08);
    bottom: 5%;
    right: 5%;
    animation-delay: 5s
}

.hero-text {
    position: relative;
    z-index: 2;
    width: min(62vw, 960px);
    max-width: calc(100% - min(30vw, 500px) - clamp(24px, 3vw, 56px));
    margin-top: 72px
}

.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 22px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--bd);
    font-size: clamp(0.6rem, 0.67vw + 0.5rem, 1rem);
    font-weight: 800;
    color: var(--mt)
}

.pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, .5);
    animation: pulse 2s infinite
}

.pill.blue {
    background: rgba(37, 99, 235, .15);
    border-color: rgba(37, 99, 235, .3);
    color: #93c5fd;
    font-size: clamp(0.65rem, 0.71vw + 0.55rem, 1.08rem);
    font-weight: 900;
    padding: 11px 26px
}

.hero h1 {
    font-size: clamp(1.2rem, 5.33vw + 0.2rem, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 18px;
    color: #fff
}

.hero h1 .grad {
    background: linear-gradient(135deg, #60a5fa, #93c5fd, #bfdbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 5s linear infinite
}

.hero .sub {
    font-size: clamp(0.78rem, 0.44vw + 0.77rem, 1.1rem);
    color: var(--mt);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 24px
}

.hero-nums {
    display: flex;
    gap: 28px
}

.hn {
    padding-left: 14px;
    border-left: 3px solid var(--s)
}

.hn strong {
    display: block;
    font-size: clamp(0.9rem, 1.56vw + 0.63rem, 1.8rem);
    font-weight: 900;
    color: #fff
}

.hn span {
    font-size: .78rem;
    color: var(--mt)
}

.weather-fx {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: 30px;
}

.sun-fx,
.rain-fx,
.snow-fx {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.page.hero.weather-clear .sun-fx {
    opacity: 1;
}

.page.hero.weather-rain .rain-fx {
    opacity: 1;
}

.page.hero.weather-snow .snow-fx {
    opacity: 1;
}

/* Sun rays & glow */
.sun-fx {
    background: radial-gradient(circle at 80% -10%, rgba(253, 184, 19, 0.4) 0%, transparent 50%);
}

.sun-fx::after {
    content: '';
    position: absolute;
    top: -50px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: #fdb813;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse-sun 4s infinite alternate;
}

@keyframes pulse-sun {
    0% {
        transform: scale(1);
        opacity: 0.6
    }

    100% {
        transform: scale(1.2);
        opacity: 0.9
    }
}

/* Realistic Rain (CSS only) */
.rain-fx {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    background-size: 8px 120px, 15px 150px;
    background-position: 0 0, 0 0;
    animation: rainDrop 0.6s linear infinite;
    transform: rotate(10deg) scale(1.5);
}

@keyframes rainDrop {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 0 100vh, 0 100vh;
    }
}

/* Realistic Snow */
.snow-fx {
    background-image:
        radial-gradient(4px 4px at 20px 30px, #fff, transparent),
        radial-gradient(6px 6px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(3px 3px at 50px 160px, #fff, transparent),
        radial-gradient(4px 4px at 90px 40px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(5px 5px at 130px 80px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: snowFall 5s linear infinite;
}

@keyframes snowFall {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 200px;
    }
}

/* 히어로 우측 카드들 */
.hero-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.side-card {
    padding: 24px;
    border-radius: 18px;
    background: var(--glass);
    border: 1px solid var(--bd);
    backdrop-filter: blur(8px)
}

.side-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px
}

.side-card>p {
    font-size: .8rem;
    color: var(--mt);
    margin-bottom: 14px
}

.sf {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.sf input,
.sf select {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: .95rem;
    font-family: inherit;
    outline: none;
    transition: .3s;
    -webkit-appearance: none
}

.sf input:focus,
.sf select:focus {
    border-color: var(--s);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15)
}

.sf input::placeholder {
    color: #64748b
}

.sf select {
    color: var(--mt)
}

.sf select option {
    background: #1a2744;
    color: #fff
}

.sf button {
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--p), var(--s));
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: .3s
}

.sf button:hover {
    box-shadow: 0 6px 16px rgba(37, 99, 235, .35)
}

.sf button.kakao {
    background: #FEE500;
    color: #000
}

.sf button.kakao:hover {
    box-shadow: 0 6px 16px rgba(254, 229, 0, .35)
}

.sr {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    display: none;
    font-size: .85rem
}

.sr.found {
    display: block;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .2)
}

.sr.notfound {
    display: block;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .2)
}

.sr.ok {
    display: block;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .2)
}

.live-banner {
    --live-accent: #94a3b8;
    position: absolute;
    top: 90px;
    left: 5%;
    width: 90%;
    background:
        linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, rgba(9, 21, 45, 0.96), rgba(15, 23, 42, 0.86));
    background-size: 24px 24px, 24px 24px, auto;
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 10fr 30fr 38fr 22fr;
    align-items: center;
    padding: clamp(6px, 0.55vw, 10px) clamp(14px, 1.35vw, 21px) calc(clamp(6px, 0.55vw, 10px) + 12px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.08);
    gap: 10px;
    box-sizing: border-box;
    z-index: 10;
    overflow: visible;
}

.live-banner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 18px;
    background: rgba(2, 6, 23, 0.24);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.live-banner::after {
    content: none;
}

#lbClockArea {
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 18px !important;
    min-width: 0 !important;
}

.live-board-title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #dbeafe;
    font-size: clamp(0.96rem, 0.5vw + 0.78rem, 1.4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.18;
    white-space: normal;
    text-align: center;
    text-shadow: none;
}

.live-board-title-inner {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: max-content;
}

.live-board-title-inner span:first-child {
    position: relative;
    color: #FF8C02;
    text-shadow: 0 0 14px rgba(255, 140, 2, 0.34);
}

.live-board-title-inner span:last-child {
    color: #dbeafe;
}

.live-board-title::after {
    content: none;
}

.live-board-title-inner::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: -5px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF8C02, transparent);
    opacity: 0.8;
    animation: liveTitleScan 2.8s ease-in-out infinite;
}

#lbClockDate {
    font-size: clamp(0.84rem, 0.31vw + 0.75rem, 1.18rem) !important;
    color: #94a3b8;
    font-weight: 800;
    margin-bottom: 6px;
}

#lbClockTime {
    font-size: clamp(1rem, 0.6vw + 0.93rem, 1.8rem) !important;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
}

#lbClockTime .clock-seconds {
    font-size: clamp(0.72rem, 0.29vw + 0.63rem, 1rem);
    color: #94a3b8;
}

.clock-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: auto;
    flex: 0 0 auto;
}

.banner-weather {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 7px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    position: relative;
    cursor: help;
}

#bannerWeatherIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.banner-weather-icon {
    width: clamp(60px, 5.5vw, 84px);
    height: clamp(60px, 5.5vw, 84px);
    display: block;
}

#bannerWeatherTemp {
    font-size: clamp(0.75rem, 0.35vw + 0.65rem, 1.16rem);
    color: #bfdbfe;
    font-weight: 900;
}

/* 구역 1: 상태 배지 및 타이틀 */
.wide-section-status {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 6px 9px;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.16));
    border: 0;
    border-left: 3px solid var(--live-accent);
    border-radius: 0;
}

.status-badge-wrap {
    position: relative;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 9px;
    border-radius: 5px;
    background: rgba(239, 68, 68, 0.12);
    border: 0;
    box-shadow: none;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: none;
    animation: pulseGlow 1.5s infinite;
}

.live-badge {
    font-size: clamp(0.66rem, 0.125vw + 0.62rem, 0.8rem);
    font-weight: 900;
    letter-spacing: 1px;
    color: #f87171;
}

.status-text h2 {
    color: #fff;
    font-size: clamp(0.96rem, 0.5vw + 0.78rem, 1.4rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: none;
}

.holiday-name {
    color: #f87171;
}

.live-banner.is-live .status-text h2 {
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    animation: none;
}

.live-banner.is-live .status-badge-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -13px;
    width: 68px;
    height: 6px;
    transform: translateX(-50%);
    background: #f87171;
    border-radius: 999px;
    animation: liveDotFlow 2.1s steps(6, end) infinite;
    mask:
        radial-gradient(circle at 3px 50%, #000 0 3px, transparent 3.4px) 0 0 / 12px 6px repeat-x;
    -webkit-mask:
        radial-gradient(circle at 3px 50%, #000 0 3px, transparent 3.4px) 0 0 / 12px 6px repeat-x;
}

.status-text p {
    font-size: clamp(0.74rem, 0.104vw + 0.71rem, 0.86rem);
    font-weight: 500;
    color: #94a3b8;
    margin: 12px 0 0 0;
}

.status-text p:empty {
    display: none;
}

.status-text p.is-holiday {
    color: #fca5a5;
    font-weight: 800;
}

.vehicle-line {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.1vw, 18px);
    color: #fff;
    font-weight: 800;
    min-width: 0;
    white-space: nowrap;
}

.vehicle-line .vehicle-plate,
.vehicle-line .vehicle-model {
    overflow: hidden;
    text-overflow: ellipsis;
}

.vehicle-line .vehicle-model {
    max-width: min(22vw, 260px);
}

.vehicle-type {
    color: #cbd5e1;
}

.live-line {
    color: #fff !important;
}

.live-line.is-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 9px;
    color: rgba(226, 232, 240, .84) !important;
    font-weight: 800;
}

.live-loading-copy {
    white-space: nowrap;
}

.live-loading-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, .16);
}

.live-loading-bar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 42%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, #93c5fd, transparent);
    animation: liveLoadingBar 1.15s ease-in-out infinite;
}

@keyframes liveLoadingBar {
    from {
        transform: translateX(-110%);
    }

    to {
        transform: translateX(260%);
    }
}

/* 구역 2: 프로그레스 바 (가운데 넓은 영역) */
.wide-section-progress {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
}

.live-progress-bg {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    height: 8px;
    position: relative;
    overflow: hidden;
}

.live-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, #3b82f6 0%, #22c55e 30%, #eab308 60%, #f97316 80%, #ef4444 100%);
    border-radius: 10px;
    transition: width 1s linear;
}

.live-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: clamp(0.68rem, 0.18vw + 0.62rem, 0.85rem);
    font-weight: 700;
    color: #94a3b8;
}

.live-timer {
    font-weight: 900;
    color: #ef4444;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

/* 구역 3: 직전 검사 기록 */
.wide-section-recent {
    justify-self: end;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 6px 10px 6px 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 0;
    background: transparent;
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
}

.recent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px !important;
}

.recent-label {
    font-size: clamp(0.66rem, 0.05vw + 0.636rem, 0.7rem);
    font-weight: 800;
    color: #94a3b8;
}

.recent-time {
    font-size: clamp(0.66rem, 0.05vw + 0.636rem, 0.7rem);
    font-weight: 800;
    color: #94a3b8;
    text-align: right;
    white-space: nowrap;
}

.recent-body {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
}

.recent-line {
    justify-content: flex-start;
    min-width: 0;
    flex: 1 1 auto;
    gap: 8px;
    font-size: clamp(0.78rem, 0.1vw + 0.732rem, 0.86rem);
    font-weight: 700;
    flex-wrap: wrap;
}

.recent-line span {
    white-space: nowrap;
    flex-shrink: 0;
}

.recent-status {
    font-size: clamp(0.66rem, 0.025vw + 0.648rem, 0.68rem);
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 5px;
    white-space: nowrap;
    min-width: 56px;
    text-align: center;
    box-sizing: border-box;
    margin-left: 2px;
}

.recent-status.pass {
    background: #eff6ff;
    color: #2563EA;
    border: 1px solid #bfdbfe;
}

.recent-status.fail {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.recent-status.re {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.recent-status.live {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.16);
}

@media (max-width: 1500px) and (min-width: 901px) {
    .live-banner {
        grid-template-columns: minmax(70px, 0.5fr) minmax(0, 1.1fr) minmax(0, 1.6fr) minmax(160px, 1.2fr);
        align-items: center;
        gap: 8px 12px;
        padding: 8px 16px 20px;
    }

    .live-board-title {
        padding-right: 12px;
        border-right: 1px solid rgba(148, 163, 184, 0.14);
    }

    #lbClockArea {
        gap: 12px !important;
        padding-right: 12px !important;
        border-right: 1px solid rgba(148, 163, 184, 0.12) !important;
    }

    .banner-weather-icon {
        width: clamp(50px, 4.5vw, 68px);
        height: clamp(50px, 4.5vw, 68px);
    }

    .wide-section-status {
        min-width: 0;
        padding: 4px 8px;
    }

    .status-text {
        min-width: 0;
    }

    .status-text h2 {
        white-space: normal;
        line-height: 1.14;
    }

    .live-line {
        gap: 8px;
        white-space: normal;
        flex-wrap: wrap;
    }

    .wide-section-recent {
        width: 100%;
        padding: 4px 8px 4px 12px;
        border-left: 1px solid rgba(148, 163, 184, 0.12);
    }

    .recent-header {
        gap: 8px;
    }

    .recent-line {
        gap: 7px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .recent-status {
        min-width: 48px;
        padding: 2px 6px;
    }
}

.recent-model {
    font-size: clamp(0.88rem, 0.16vw + 0.82rem, 1.05rem);
    font-weight: 700;
    color: #e2e8f0;
    white-space: nowrap;
}

.hours-progress {
    position: absolute;
    left: clamp(20px, 2.4vw, 36px);
    right: clamp(20px, 2.4vw, 36px);
    bottom: 4px;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(130px, auto) 1fr;
    align-items: center;
    gap: 10px;
}

.hours-progress.is-holiday {
    grid-template-columns: 1fr;
}

.hours-progress.is-holiday .hours-progress-meta {
    display: none;
}

.hours-progress-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: clamp(0.64rem, 0.11vw + 0.6rem, 0.74rem);
    font-weight: 900;
    white-space: nowrap;
}

#hoursProgressLabel {
    color: #fff;
}

#hoursProgressTime {
    color: #93c5fd;
}

#hoursProgressTime.is-holiday {
    color: #f87171;
}

.hours-progress-track {
    height: 4px;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 5px;
    overflow: hidden;
}

.hours-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0E74E4 0%, #8CE347 25%, #FEF23C 50%, #FF8C02 75%, #F53F2E 100%);
    background-size: calc(100vw - 72px) 100%;
    background-position: left center;
    border-radius: 5px;
    transition: width 0.5s ease;
}

@media (max-width: 1180px) and (min-width: 901px) {
    .live-banner {
        grid-template-columns: minmax(60px, 0.45fr) minmax(0, 1fr) minmax(0, 1.5fr) minmax(140px, 1.1fr);
        gap: 8px 10px;
    }

    .hero-text {
        margin-top: 116px;
    }

    .banner-weather-icon {
        width: clamp(44px, 4vw, 60px);
        height: clamp(44px, 4vw, 60px);
    }

    .wide-section-recent {
        justify-self: stretch;
        padding-left: 10px;
        border-left: 1px solid rgba(148, 163, 184, 0.12);
        padding-top: 4px;
    }
}

@media (max-width: 1030px) and (min-width: 901px) {
    .live-banner {
        grid-template-columns: minmax(72px, .46fr) minmax(204px, 1.32fr) minmax(188px, 1.16fr) minmax(112px, .72fr);
        column-gap: 14px;
        padding: 8px 14px 20px;
    }

    .live-board-title {
        padding-right: 8px;
        font-size: clamp(.82rem, .42vw + .68rem, 1.02rem);
        line-height: 1.12;
    }

    #lbClockArea {
        justify-content: flex-start;
        gap: 6px !important;
        padding-right: 8px !important;
    }

    .clock-main {
        width: 100%;
        justify-content: space-between;
        gap: 6px;
    }

    #lbClockDate {
        font-size: .82rem !important;
        margin-bottom: 4px;
    }

    #lbClockTime {
        font-size: 1.22rem !important;
    }

    #lbClockTime .clock-seconds {
        font-size: .72rem;
    }

    .banner-weather {
        gap: 2px;
        padding: 2px 3px;
    }

    .banner-weather-icon {
        width: clamp(38px, 4.2vw, 44px);
        height: clamp(38px, 4.2vw, 44px);
    }

    #bannerWeatherTemp {
        font-size: .78rem;
    }

    .wide-section-status {
        padding-left: 10px;
    }
}

@media (max-height: 1100px) and (min-width: 901px) {
    .hero-text {
        margin-top: 132px;
    }

    .hero {
        padding-top: 230px;
    }
}

@media (max-width: 1180px) and (min-width: 901px) and (max-height: 1100px) {
    .hero-text {
        margin-top: 160px;
    }
}

@media (max-width: 900px) {
    nav {
        padding-top: 14px;
        grid-template-columns: minmax(92px, 1fr) auto minmax(46px, 1fr);
        column-gap: 8px;
    }

    .nav-cert.pill.blue {
        max-width: min(31vw, 126px);
        padding: 5px 8px;
        font-size: clamp(0.54rem, 2vw, 0.7rem);
        line-height: 1.08;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }

    .logo img {
        content: url('https://cdn.imweb.me/upload/S2017082759a2c0d30f96f/181a51255c16d.png');
        height: clamp(40px, 12vw, 51px);
        filter: brightness(0) invert(1);
    }

    .page.hero {
        position: sticky;
        height: calc(100dvh - var(--stack-top));
        min-height: 0;
        overflow: hidden;
    }

    .page.hero>.page-scroll {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 18px;
        padding: 96px 0 28px;
    }

    .hero {
        padding-top: 86px;
        gap: 44px;
        align-content: start;
        align-items: start;
    }

    .hero-text {
        margin-top: 0 !important;
        width: 100%;
        max-width: none;
    }

    .live-banner {
        grid-template-columns: 1fr 3fr;
        align-items: stretch;
        gap: 8px;
        padding: 7px 10px 30px;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-bottom: 0;
        border-radius: 8px;
    }

    #lbClockArea {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px !important;
        padding-right: 0 !important;
        padding-bottom: 0;
        border-right: 0 !important;
        border-bottom: 0;
    }

    .clock-main {
        display: flex;
        gap: 10px;
    }

    .clock-main>div:first-child {
        min-width: 0;
    }

    .live-hourly {
        min-width: unset;
        width: 92vw;
        max-width: unset;
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(5px, 2vw, 8px);
        padding: 12px 10px;
    }

    .banner-weather:hover .live-hourly,
    .banner-weather:focus-within .live-hourly {
        transform: translateY(0);
    }

    .live-hourly .wx-hour-icon {
        width: clamp(28px, 8vw, 40px);
        height: clamp(28px, 8vw, 40px);
    }

    .live-board-title {
        letter-spacing: 0;
        padding: 6px 8px;
        border-right: 1px solid rgba(148, 163, 184, 0.12);
        border-bottom: 0;
    }

    .clock-main {
        min-width: 0;
    }

    .banner-weather {
        gap: 5px;
        padding: 3px 6px;
    }

    .banner-weather-icon {
        width: clamp(52px, 15vw, 78px);
        height: clamp(52px, 15vw, 78px);
    }

    .hours-progress {
        left: 12px;
        right: 12px;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hours-progress-meta {
        justify-content: space-between;
    }

    .hours-progress-track {
        height: 5px;
    }

    .wide-section-status {
        grid-column: 1 / -1;
        width: 100%;
        gap: 8px;
        padding: 6px 8px;
        text-align: left;
        align-items: flex-start;
    }

    .status-badge-wrap {
        padding: 4px 8px;
        flex-shrink: 0;
    }

    .live-badge {
        letter-spacing: 0.04em;
    }

    .status-text h2 {
        letter-spacing: -0.02em;
    }

    .status-text p {
        margin-top: 5px;
    }

    .vehicle-line {
        flex-wrap: wrap;
        row-gap: 7px;
        white-space: normal;
    }

    .vehicle-line .vehicle-model {
        max-width: 100%;
    }

    .wide-section-progress {
        max-width: 100%;
        margin-top: 10px;
    }

    .wide-section-recent {
        grid-column: 1 / -1;
        justify-self: stretch;
        width: 100%;
        padding-left: 0;
        border-left: none;
        padding-top: 10px;
        margin-top: 0;
    }

    .recent-header {
        justify-content: flex-start;
    }

    .recent-body {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 10px !important;
    }

    .recent-line {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) and (min-width: 804px) {
    .page.hero>.page-scroll {
        height: calc(100% - 88px);
        max-height: calc(100% - 88px);
        margin-top: 88px;
        padding: 8px 0 28px;
    }
}

@media (max-width: 700px) {
    /* 예보는 툴팁으로만 노출합니다. */
}

@media (max-width: 480px) {
    .hero {
        padding-top: 86px;
    }

    .page {
        padding-left: 18px;
        padding-right: 18px;
    }

    /* ── 홈 히어로 ── */
    .hero h1 {
        line-height: 1.18;
    }

    .hero .sub {
        line-height: 1.65;
    }

    .pill {
        padding: 7px 12px;
    }

    .pill.blue {
        padding: 8px 14px;
    }

    .nav-cert.pill.blue {
        max-width: 30vw;
        padding: 5px 7px;
        font-size: clamp(0.5rem, 2.25vw, 0.62rem);
    }

    /* ── 공통 섹션 타이틀 ── */
    .st {
        margin-bottom: 20px;
    }

    .st .lab {
        letter-spacing: 2px;
    }

    /* ── 카드 레이아웃 공통 ── */
    .svc-row,
    .proc-row,
    .insp-row,
    .fee-row,
    .ci {
        padding: 16px;
    }

    .svc-row,
    .proc-row,
    .insp-row,
    .fee-row {
        gap: 13px;
    }

    .svc-row .simg,
    .svc-notify-card .simg,
    .proc-row .pimg,
    .insp-row .iimg,
    .fee-row .fimg {
        width: 56px;
        height: 56px;
        border-radius: 10px;
        flex-basis: 56px;
    }

    /* ── 카드 본문 / 리스트 ── */
    .svc-row p,
    .proc-row p,
    .insp-row li,
    .ci p {
        line-height: 1.55;
    }

    .live-banner {
        grid-template-columns: 1fr 3fr;
        padding: 7px 9px 32px;
        gap: 8px;
    }

    .hours-progress {
        left: 12px;
        right: 12px;
        bottom: 5px;
    }

    #lbClockArea {
        display: flex !important;
        gap: 4px !important;
    }

    .live-board-title {
        letter-spacing: 0;
        max-width: none;
        white-space: normal;
        line-height: 1.15;
    }

    .banner-weather {
        padding: 2px 5px;
    }

    .banner-weather-icon {
        width: 44px;
        height: 44px;
    }

    .wide-section-status {
        flex-direction: row;
        align-items: center;
    }

    .status-text h2 {
        letter-spacing: -0.02em;
    }

    .recent-header {
        align-items: flex-start;
    }

    .recent-status {
        padding: 2px 7px;
    }

    .recent-line {
        font-weight: 700;
        gap: 7px;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

@keyframes liveDotFlow {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: .4;
    }

    60% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }

    100% {
        clip-path: inset(0 0 0 100%);
        opacity: .4;
    }
}

@keyframes liveTitleScan {

    0%,
    100% {
        transform: translateX(-18%);
        opacity: 0.25;
    }

    50% {
        transform: translateX(18%);
        opacity: 0.9;
    }
}

/* 탭 전환 */
.tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 14px
}

.tab {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--bd);
    background: transparent;
    color: var(--mt);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: .2s;
    text-align: center
}

.tab.active {
    background: var(--s);
    border-color: var(--s);
    color: #fff
}

.tab-body {
    display: none
}

.tab-body.active {
    display: block
}

/* 섹션 타이틀 */
.st {
    margin-bottom: 32px;
    text-align: center
}

.st .lab {
    display: block;
    font-size: clamp(0.62rem, 0.38vw + 0.57rem, 0.85rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--l);
    margin-bottom: 10px
}

#service .st .lab {
    color: #3c82f6
}

#guide .st .lab {
    color: #3471d7
}

#faq .st .lab {
    color: #25509a
}

#visit .st .lab {
    color: #18325d
}

.st h2 {
    font-size: clamp(1.05rem, 3.33vw + 0.4rem, 2.9rem);
    font-weight: 900;
    color: #fff
}

.guide-group-title {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 14px;
    text-align: left;
}

.guide-group-title-process {
    margin-top: 28px;
}

.guide-group-title span {
    display: block;
    margin-bottom: 6px;
    color: #93c5fd;
    font-size: clamp(0.62rem, 0.34vw + 0.58rem, 0.82rem);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.guide-group-title h2,
.guide-group-title h3 {
    color: #fff;
    font-size: clamp(0.96rem, 0.92vw + 0.82rem, 1.55rem);
    font-weight: 900;
}

/* ===== 전체 세로 1열 레이아웃 ===== */

/* 서비스: 좌 일러스트 우 텍스트 (다른 섹션과 통일) */
#service {
    background: #0d1a38
}

.svc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    width: 100%
}

.svc-row {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid var(--bd);
    transition: .3s
}

.svc-row:hover {
    border-color: var(--bb);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2)
}

.svc-row .simg {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0
}

.svc-row .simg img {
    width: 80%;
    height: 80%;
    object-fit: contain
}

.svc-row h3 {
    font-size: clamp(0.8rem, 0.78vw + 0.72rem, 1.3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.svc-row p {
    font-size: clamp(0.74rem, 0.58vw + 0.67rem, 1.1rem);
    color: var(--mt);
    line-height: 1.7
}

.first-tech {
    display: inline-block;
    color: #fde047;
    font-weight: 950;
    text-shadow: 0 0 14px rgba(250, 204, 21, .28);
}

.svc-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 6px;
    color: #93c5fd;
    font-size: clamp(0.58rem, 0.28vw + 0.55rem, 0.76rem);
    font-weight: 850;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.svc-points {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 11px;
}

.svc-points span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 7px;
    background: rgba(96, 165, 250, .1);
    border: 1px solid rgba(147, 197, 253, .18);
    color: rgba(226, 232, 240, .94);
    font-size: clamp(0.64rem, 0.34vw + 0.6rem, 0.84rem);
    font-weight: 750;
    line-height: 1.25;
}

/* 검사 안내: 세로, 좌 일러스트 우 텍스트 */
#guide {
    background: #0f1d3d
}

/* 검사 절차: 세로, 좌 일러스트 우 텍스트 */
#procedure {
    background: #0f1d3d
}

.proc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    width: 100%
}

.process-motion {
    width: min(100%, 1080px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto 18px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(147, 197, 253, .18);
    background:
        radial-gradient(circle at 8% 0%, rgba(96, 165, 250, .18), transparent 30%),
        rgba(255, 255, 255, .045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 16px 34px rgba(2, 6, 23, .18);
}

.process-motion-stage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: rgba(2, 6, 23, .34);
    isolation: isolate;
    cursor: pointer;
    touch-action: manipulation;
}

.process-motion:fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin: 0;
    padding: clamp(14px, 2vw, 28px);
    border: 0;
    border-radius: 0;
    background: #020617;
    justify-content: center;
}

.process-motion:fullscreen .process-motion-stage {
    width: 100%;
    max-height: calc(100vh - 92px);
    border-radius: 14px;
    background: #020617;
}

.process-motion:fullscreen .process-motion-stage img {
    object-fit: contain;
    filter: brightness(1) saturate(1.04) contrast(1.02);
    image-rendering: auto;
}

.process-motion:fullscreen .process-motion-stage img.is-playing {
    animation-name: processKenburnsFullscreen;
}

@keyframes processKenburnsFullscreen {
    0% {
        transform: scale(1.005) translate3d(var(--motion-start-x, 0), var(--motion-start-y, 0), 0);
    }

    100% {
        transform: scale(1.04) translate3d(var(--motion-end-x, 0), var(--motion-end-y, 0), 0);
    }
}

.process-motion-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform-origin: var(--motion-origin, center center);
    transform: scale(1.035);
    filter: brightness(.96) saturate(.98);
    transition:
        opacity .58s cubic-bezier(.22, 1, .36, 1),
        filter .58s cubic-bezier(.22, 1, .36, 1);
    will-change: transform, opacity, filter;
    z-index: 0;
    pointer-events: none;
}

.process-motion-stage img.is-active {
    opacity: 1;
    filter: brightness(1) saturate(1.02);
    z-index: 2;
}

.process-motion-stage img.is-leaving {
    opacity: 0;
    filter: brightness(.88) saturate(.92);
    z-index: 1;
}

.process-motion-stage img.is-playing {
    animation: processKenburns 3.75s ease-out both;
}

.process-motion-stage.is-changing img {
    opacity: 0;
}

.process-motion-stage.is-changing img.is-active {
    opacity: 1;
}

@keyframes processKenburns {
    0% {
        transform: scale(1.035) translate3d(var(--motion-start-x, 0), var(--motion-start-y, 0), 0);
    }

    100% {
        transform: scale(1.105) translate3d(var(--motion-end-x, 0), var(--motion-end-y, 0), 0);
    }
}

.process-motion-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 30%, rgba(2, 6, 23, .72)),
        linear-gradient(90deg, rgba(15, 29, 61, .2), transparent 50%);
    pointer-events: none;
    z-index: 3;
}

.process-motion-panel {
    position: absolute;
    left: clamp(8px, 1vw, 14px);
    right: auto;
    bottom: clamp(8px, 1vw, 14px);
    width: auto;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    z-index: 4;
}

.process-motion-panel span {
    color: #93c5fd;
    font-size: .54rem;
    font-weight: 950;
    letter-spacing: 1.2px;
}

.process-motion-panel h3 {
    margin: 5px 0 0;
    color: #fff;
    font-size: clamp(.9rem, .72vw + .74rem, 1.22rem);
    font-weight: 950;
    line-height: 1.25;
}

.process-motion-panel p {
    margin: 5px 0 0;
    color: rgba(226, 232, 240, .78);
    font-size: clamp(.6rem, .24vw + .58rem, .72rem);
    line-height: 1.48;
}

.process-motion-progress-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px;
    align-items: center;
    gap: 8px;
    margin-top: 9px;
}

.process-motion-progress {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, .16);
}

.process-motion-progress i {
    display: block;
    width: 12.5%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #60a5fa, #bfdbfe);
    transition: width .35s ease;
}

.process-motion-mini-toggle {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, .28);
    background: rgba(15, 29, 61, .48);
    color: #dbeafe;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.process-motion-mini-toggle:hover {
    border-color: rgba(191, 219, 254, .74);
    background: rgba(37, 99, 235, .7);
    color: #fff;
    transform: translateY(-1px);
}

.process-motion-mini-toggle span {
    width: 7px;
    height: 9px;
    display: block;
    background:
        linear-gradient(90deg, currentColor 0 2px, transparent 2px 5px, currentColor 5px 7px);
}

.process-motion-mini-toggle.is-paused span {
    width: 0;
    height: 0;
    margin-left: 2px;
    background: transparent;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid currentColor;
}

.process-motion-controls {
    padding: 2px 0 0;
}

.process-motion-tabs {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 7px;
}

.process-motion-tabs button {
    min-height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .16);
    background: rgba(255, 255, 255, .055);
    color: rgba(219, 234, 254, .78);
    font-family: inherit;
    font-size: .72rem;
    font-weight: 900;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.process-motion-tabs button.active {
    border-color: rgba(191, 219, 254, .72);
    background: #2563eb;
    color: #fff;
}

.proc-row {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid var(--bd);
    transition: .3s
}

.proc-row:hover {
    border-color: var(--bb);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2)
}

.proc-row .pimg {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.proc-row .pimg img {
    width: 80%;
    height: 80%;
    object-fit: contain
}

.proc-row .ptitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px
}

.proc-row h4 {
    font-size: clamp(0.8rem, 0.78vw + 0.72rem, 1.3rem);
    font-weight: 800;
    color: #fff
}

.proc-row p {
    font-size: clamp(0.74rem, 0.58vw + 0.67rem, 1.1rem);
    color: var(--mt);
    line-height: 1.65
}

.process-points {
    list-style: none;
    display: grid;
    gap: 6px;
    margin-top: 8px;
}

.process-points li {
    position: relative;
    padding-left: 14px;
    color: rgba(226, 232, 240, .88);
    font-size: clamp(0.72rem, 0.5vw + 0.66rem, 1rem);
    line-height: 1.55;
}

.process-points li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #93c5fd;
}

.process-points strong {
    color: #bfdbfe;
    font-weight: 800;
}

.process-subtitle {
    margin: 12px 0 5px;
    color: #fff;
    font-size: clamp(0.76rem, 0.56vw + 0.7rem, 1.08rem);
    font-weight: 850;
}

.insp-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    width: 100%
}

.eligibility-tool {
    width: min(100%, 820px);
    margin: 0 auto 16px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, .18);
    background:
        radial-gradient(circle at 16% 8%, rgba(96, 165, 250, .14), transparent 28%),
        rgba(255, 255, 255, .045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 14px 30px rgba(2, 6, 23, .14);
}

.eligibility-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.eligibility-head span {
    display: block;
    margin-bottom: 6px;
    color: #93c5fd;
    font-size: clamp(.58rem, .3vw + .55rem, .76rem);
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.eligibility-head h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1rem, .8vw + .86rem, 1.55rem);
    font-weight: 950;
}

.eligibility-head p {
    margin: 7px 0 0;
    color: rgba(226, 232, 240, .78);
    font-size: clamp(.72rem, .42vw + .66rem, .96rem);
    line-height: 1.55;
}

.eligibility-ts-link {
    margin-bottom: 14px;
}

.eligibility-ts-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .74);
    background: #14284d;
    color: #fff;
    font-family: inherit;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease;
}

.eligibility-ts-btn:hover {
    background: #1d3d73;
    border-color: rgba(255, 255, 255, .9);
}

.eligibility-ts-logo {
    font-size: clamp(1.4rem, 2vw + .9rem, 2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
}

.ts-t {
    color: #FFC109;
}

.ts-s {
    color: #00B6F6;
}

.eligibility-ts-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.4;
    flex: 1;
}

.eligibility-ts-text span {
    font-size: clamp(.7rem, .7vw + .58rem, .82rem);
    font-weight: 700;
    opacity: .85;
    letter-spacing: .02em;
}

.eligibility-ts-action {
    font-size: clamp(.82rem, .9vw + .68rem, .98rem);
    font-weight: 900;
    letter-spacing: .02em;
    white-space: nowrap;
    padding-left: 12px;
    border-left: 1px solid rgba(147, 197, 253, .35);
}

.eligibility-ts-btn:hover {
    background: #1d3d73;
    border-color: rgba(255, 255, 255, .9);
}

.eligibility-mark {
    display: none;
    flex: 0 0 auto;
    padding: 8px 11px;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .2);
    background: rgba(37, 99, 235, .14);
    color: #bfdbfe;
    font-size: .72rem;
    font-weight: 900;
    white-space: nowrap;
}

.eligibility-wizard {
    display: grid;
    gap: 12px;
}

.eligibility-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bfdbfe;
    font-size: .72rem;
    font-weight: 950;
}

.eligibility-progress i {
    position: relative;
    flex: 1;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, .16);
}

.eligibility-progress b {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #60a5fa, #bfdbfe);
    transition: width .25s ease;
}

.eligibility-question {
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(147, 197, 253, .16);
    background:
        linear-gradient(135deg, rgba(37, 99, 235, .22), rgba(15, 29, 61, .5)),
        rgba(15, 29, 61, .52);
}

.eligibility-question span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 7px;
    background: rgba(147, 197, 253, .14);
    color: #bfdbfe;
    font-size: .68rem;
    font-weight: 950;
}

.eligibility-question h4 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(1.08rem, .95vw + .92rem, 1.7rem);
    font-weight: 950;
    line-height: 1.25;
}

.eligibility-question p {
    margin: 8px 0 0;
    color: rgba(226, 232, 240, .78);
    font-size: clamp(.74rem, .4vw + .68rem, .94rem);
    line-height: 1.58;
}

.eligibility-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.eligibility-option {
    min-height: 54px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, .22);
    background: rgba(255, 255, 255, .055);
    color: rgba(226, 232, 240, .88);
    font-family: inherit;
    font-size: clamp(.76rem, .42vw + .68rem, .98rem);
    font-weight: 900;
    line-height: 1.32;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.eligibility-option:hover {
    transform: translateY(-1px);
    border-color: rgba(147, 197, 253, .48);
    background: rgba(96, 165, 250, .12);
}

.eligibility-option.active {
    border-color: rgba(191, 219, 254, .82);
    background: #2563eb;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, .14);
}

.eligibility-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 26px;
}

.eligibility-selected:empty {
    display: none;
}

.eligibility-selected span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    border-radius: 7px;
    background: rgba(147, 197, 253, .12);
    color: rgba(219, 234, 254, .9);
    font-size: .7rem;
    font-weight: 900;
}

.eligibility-nav {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.eligibility-nav button {
    min-width: 88px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .2);
    background: rgba(255, 255, 255, .06);
    color: rgba(226, 232, 240, .9);
    font-family: inherit;
    font-size: .76rem;
    font-weight: 900;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
}

.eligibility-nav button:hover:not(:disabled) {
    border-color: rgba(147, 197, 253, .5);
    background: rgba(96, 165, 250, .12);
}

.eligibility-nav button:disabled {
    opacity: .38;
    cursor: default;
}

.eligibility-wizard.is-complete .eligibility-question,
.eligibility-wizard.is-complete .eligibility-options {
    display: none;
}

.eligibility-result {
    position: relative;
    overflow: hidden;
    display: none;
    flex-direction: column;
    justify-content: center;
    min-height: 192px;
    margin-top: 0;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(147, 197, 253, .18);
    background:
        radial-gradient(circle at 100% 0%, rgba(147, 197, 253, .13), transparent 34%),
        rgba(15, 29, 61, .58);
    transition: background-color .2s ease, border-color .2s ease;
}

.eligibility-wizard.is-complete .eligibility-result {
    display: flex;
}

.eligibility-result::after {
    content: "?";
    position: absolute;
    right: clamp(14px, 2vw, 24px);
    bottom: clamp(12px, 1.6vw, 22px);
    color: rgba(255, 255, 255, .05);
    font-size: clamp(2.7rem, 5.4vw, 4.4rem);
    font-weight: 1000;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.eligibility-result[data-state="yes"] {
    border-color: rgba(248, 113, 113, .58);
    background:
        radial-gradient(circle at 100% 0%, rgba(248, 113, 113, .22), transparent 38%),
        rgba(127, 29, 29, .22);
}

.eligibility-result[data-state="no"] {
    border-color: rgba(34, 197, 94, .5);
    background:
        radial-gradient(circle at 100% 0%, rgba(74, 222, 128, .18), transparent 38%),
        rgba(22, 101, 52, .2);
}

.eligibility-result[data-state="check"] {
    border-color: rgba(251, 191, 36, .56);
    background:
        radial-gradient(circle at 100% 0%, rgba(251, 191, 36, .18), transparent 38%),
        rgba(120, 53, 15, .22);
}

.eligibility-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 8px;
    padding: 4px 8px;
    border-radius: 7px;
    background: rgba(147, 197, 253, .14);
    color: #bfdbfe;
    font-size: .68rem;
    font-weight: 950;
}

.eligibility-result[data-state="yes"] .eligibility-badge {
    background: #dc2626;
    color: #fff;
}

.eligibility-result[data-state="yes"]::after {
    content: "대상";
    color: rgba(254, 202, 202, .11);
}

.eligibility-result[data-state="no"] .eligibility-badge {
    background: rgba(34, 197, 94, .18);
    color: #bbf7d0;
}

.eligibility-result[data-state="no"]::after {
    content: "제외";
    color: rgba(187, 247, 208, .1);
}

.eligibility-result[data-state="check"] .eligibility-badge {
    background: rgba(251, 191, 36, .18);
    color: #fde68a;
}

.eligibility-result[data-state="check"]::after {
    content: "확인";
    color: rgba(253, 230, 138, .1);
}

.eligibility-result strong {
    position: relative;
    z-index: 1;
    display: block;
    color: #fff;
    font-size: clamp(.86rem, .54vw + .78rem, 1.12rem);
    font-weight: 950;
    line-height: 1.35;
}

.eligibility-result p {
    position: relative;
    z-index: 1;
    margin: 7px 0 0;
    color: rgba(226, 232, 240, .8);
    font-size: clamp(.7rem, .38vw + .65rem, .9rem);
    line-height: 1.55;
}

.eligibility-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.eligibility-action {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .24);
    font-family: inherit;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.eligibility-action.primary {
    background: #2563eb;
    color: #fff;
}

.eligibility-action.secondary {
    background: #FEE500;
    color: #111827;
    border-color: #FEE500;
}

.insp-row {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid var(--bd);
    transition: .3s
}

.insp-row:hover {
    border-color: var(--bb);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2)
}

.insp-row .iimg {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.insp-row .iimg img {
    width: 80%;
    height: 80%;
    object-fit: contain
}

.insp-row h3 {
    font-size: clamp(0.8rem, 0.78vw + 0.72rem, 1.3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.guide-intro {
    margin-bottom: 8px;
    color: rgba(226, 232, 240, .9);
    font-size: clamp(0.74rem, 0.58vw + 0.67rem, 1.1rem);
    font-weight: 650;
    line-height: 1.65;
}

.insp-row ul {
    list-style: none
}

.insp-row li {
    font-size: clamp(0.74rem, 0.58vw + 0.67rem, 1.1rem);
    line-height: 1.6;
    margin-bottom: 5px;
    padding-left: 14px;
    position: relative
}

.insp-row li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--l)
}

.insp-row li strong {
    color: #93c5fd;
    font-weight: 700
}

.tw {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: clamp(0.74rem, 0.36vw + 0.73rem, 1rem);
    font-weight: 600;
    line-height: 1.5
}

.tw.warn {
    background: rgba(239, 68, 68, .1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, .2)
}

.tw.info {
    background: rgba(37, 99, 235, .1);
    color: #93c5fd;
    border: 1px solid rgba(37, 99, 235, .2)
}

/* 수수료 항목 */
.fee-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    width: 100%
}

.fee-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid var(--bd);
    transition: .3s
}

.fee-row:hover {
    border-color: var(--bb);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2)
}

.fee-row .fimg {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.fee-row .fimg img {
    width: 80%;
    height: 80%;
    object-fit: contain
}

.fee-row h3 {
    font-size: clamp(0.8rem, 0.78vw + 0.72rem, 1.3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px
}

.fee-row.pen h3 {
    color: #fca5a5
}

.fee-row .fee-items,
.insp-row .fee-items {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.insp-row.fee-summary h3 {
    color: #fff
}

.fee-summary .fee-penalty span:first-child,
.fee-summary .fee-penalty span:last-child {
    color: #fca5a5;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--bd)
}

.fee-item:last-child {
    border: none
}

.fee-item span:first-child {
    font-size: clamp(0.74rem, 0.56vw + 0.68rem, 1.1rem);
    font-weight: 600
}

.fee-item span:last-child {
    font-size: clamp(0.84rem, 0.78vw + 0.72rem, 1.3rem);
    font-weight: 800;
    color: #93c5fd
}

.fee-row.pen .fee-item span:last-child {
    color: #fca5a5
}

/* 히어로 날씨 위젯 */
.hero-wx {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--bd)
}

.hero-wx .wx-temp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff
}

.weather-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: block;
}

.hero-wx .wx-tip {
    font-size: .85rem;
    color: var(--mt);
    margin-top: 4px
}

.wx-hourly {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.live-hourly {
    display: grid;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 9999;
    width: max-content;
    min-width: clamp(300px, 42vw, 480px);
    max-width: min(92vw, 540px);
    transform: translateX(-50%) translateY(-6px);
    grid-template-columns: repeat(6, 1fr);
    justify-content: center;
    gap: clamp(5px, 0.6vw, 9px);
    margin-top: 0;
    padding: clamp(12px, 1.2vw, 18px);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    background: rgba(8, 19, 42, 0.97);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.banner-weather:hover .live-hourly,
.banner-weather:focus-within .live-hourly {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.wx-tooltip-title {
    grid-column: 1 / -1;
    color: #94a3b8;
    font-size: clamp(0.72rem, 0.8vw, 0.84rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: left;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    margin-bottom: 2px;
}

.live-hourly .wx-hour {
    padding: clamp(6px, 0.7vw, 10px) clamp(4px, 0.5vw, 8px);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.4);
    gap: clamp(3px, 0.4vw, 5px);
}

.live-hourly .wx-hour-time {
    font-size: clamp(0.66rem, 0.75vw, 0.8rem);
    font-weight: 700;
}

.live-hourly .wx-hour-icon {
    width: clamp(32px, 3.2vw, 46px);
    height: clamp(32px, 3.2vw, 46px);
}

.live-hourly .wx-hour-temp {
    font-size: clamp(0.74rem, 0.85vw, 0.92rem);
    font-weight: 900;
}

.live-hourly .wx-hour-rain {
    font-size: clamp(0.62rem, 0.7vw, 0.76rem);
    font-weight: 700;
}

.wx-hour {
    min-width: 0;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 7px;
    background: rgba(15, 23, 42, 0.34);
    padding: 7px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-variant-numeric: tabular-nums;
}

.wx-hour-time {
    color: #cbd5e1;
    font-size: clamp(0.62rem, 0.08vw + 0.594rem, 0.72rem);
    font-weight: 800;
    line-height: 1;
}

.wx-hour-icon {
    width: 31px;
    height: 31px;
    display: block;
}

.wx-hour-temp {
    color: #fff;
    font-size: clamp(0.7rem, 0.08vw + 0.674rem, 0.78rem);
    font-weight: 900;
    line-height: 1;
}

.wx-hour-rain {
    color: #93c5fd;
    font-size: clamp(0.6rem, 0.08vw + 0.574rem, 0.68rem);
    font-weight: 800;
    line-height: 1;
}

/* 오시는 길 */
#visit {
    background: linear-gradient(135deg, #0d1a38, #15316d 48%, #1f5fb8);
    padding-bottom: 0;
}

#visit .page-scroll {
    height: 100%;
    min-height: 100%;
    justify-content: flex-start;
    padding-bottom: 0;
}

.map-btns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 820px;
    margin: 0 auto clamp(24px, 4dvh, 48px)
}

.map-btn {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    align-items: center;
    justify-content: stretch;
    gap: 0;
    min-height: 52px;
    padding: 0;
    border-radius: 10px;
    font-size: clamp(1.04rem, .28vw + .96rem, 1.16rem);
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    transition: .3s;
    border: 1px solid var(--bd)
}

.map-btn::after {
    content: "";
    width: 58px;
    height: 1px;
}

.map-btn span {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 100%;
    flex: 0 0 58px;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 5px 14px rgba(15, 23, 42, .16);
}

.map-btn span img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.checkpoint-actions {
    display: none;
}

.checkpoint-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .55);
    font-family: inherit;
    font-size: .82rem;
    font-weight: 950;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.checkpoint-action.notify {
    background: #14284d;
    color: #fff;
}

.checkpoint-action.chat {
    background: #FEE500;
    border-color: #050c1c;
    color: #111827;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3)
}

.map-btn.naver {
    background: #0f1d3d;
    color: #fff;
    border-color: rgba(255, 255, 255, .18)
}

.map-btn.kakao {
    background: #18325d;
    color: #fff;
    border-color: rgba(255, 255, 255, .18)
}

.map-btn.google {
    background: #25509a;
    color: #fff;
    border-color: rgba(255, 255, 255, .18)
}

.map-btn.tmap {
    background: #2c60b8;
    color: #fff;
    border-color: rgba(255, 255, 255, .18)
}

/* 오시는 길: 세로 풀폭 */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 820px;
    width: 100%
}

.directions-list {
    gap: 12px;
}

.ci {
    padding: 28px 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--bd);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(6px);
    transition: .3s
}

.ci:hover {
    background: rgba(255, 255, 255, .1)
}

.ci h3 {
    font-size: clamp(0.8rem, 0.56vw + 0.78rem, 1.2rem);
    font-weight: 800;
    color: rgba(226, 232, 240, .92);
    margin-bottom: 6px
}

.ci p {
    font-size: clamp(0.74rem, 0.58vw + 0.67rem, 1.1rem);
    color: #fff;
    font-weight: 650;
    opacity: 1;
    line-height: 1.6
}

.ci .contact-strong {
    font-weight: 800;
    color: #fff;
}

.ci .contact-muted {
    color: rgba(226, 232, 240, .72);
    font-weight: 650;
}

.ci .ci-hours-label {
    display: inline-block;
    margin-top: 6px;
    color: rgba(226, 232, 240, .92);
    font-size: clamp(0.8rem, 0.56vw + 0.78rem, 1.2rem);
    font-weight: 800;
}

/* ===== 홈 이후 섹션 공통 카드 시스템 ===== */
.svc-list,
.proc-list,
.insp-list,
.contact-list {
    max-width: 820px;
    gap: 14px;
}

.svc-row,
.proc-row,
.insp-row,
.ci {
    --card-pad-x: 22px;
    --media-size: 82px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, .16);
    background: rgba(255, 255, 255, .045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.svc-row:hover,
.proc-row:hover,
.insp-row:hover,
.ci:hover {
    border-color: rgba(96, 165, 250, .36);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.svc-row,
.proc-row,
.insp-row,
.ci {
    gap: 18px;
    padding: 20px var(--card-pad-x);
}

.svc-row .simg,
.proc-row .pimg,
.insp-row .iimg,
.ci .cimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--media-size);
    height: var(--media-size);
    border-radius: 12px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 10px 22px rgba(2, 6, 23, .16);
    overflow: hidden;
    flex: 0 0 var(--media-size);
}

.svc-row .simg img,
.proc-row .pimg img,
.insp-row .iimg img,
.ci .cimg img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.proc-row .ptitle {
    margin-bottom: 7px;
}

@media (max-width: 768px) {
    .eligibility-tool {
        padding: 14px;
        margin-bottom: 14px;
    }

    .eligibility-head {
        flex-direction: column;
        gap: 9px;
        margin-bottom: 14px;
    }

    .eligibility-options {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .eligibility-option {
        min-height: 44px;
    }

    .eligibility-question {
        padding: 15px;
    }

    .eligibility-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eligibility-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .process-motion {
        width: min(100%, 720px);
        padding: 10px;
        gap: 9px;
    }

    .process-motion-stage {
        display: block;
        aspect-ratio: auto;
    }

    .process-motion-stage::before {
        content: "";
        display: block;
        aspect-ratio: 16 / 9;
        width: 100%;
    }

    .process-motion-stage img {
        inset: 0 0 auto;
        height: auto;
        aspect-ratio: 16 / 9;
        object-position: center center;
    }

    .process-motion-shade {
        display: none;
    }

    .process-motion-panel {
        position: static;
        width: 100%;
        max-width: none;
        padding: 8px 10px;
        margin-top: 8px;
        border-radius: 0;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        background: rgba(9, 21, 47, .82);
        box-shadow: none;
    }

    .process-motion-panel span {
        font-size: .44rem;
        letter-spacing: 1.2px;
    }

    .process-motion-panel h3 {
        margin-top: 3px;
        font-size: clamp(.72rem, 2.3vw, .9rem);
    }

    .process-motion-panel p {
        margin-top: 3px;
        font-size: clamp(.5rem, 1.65vw, .62rem);
        line-height: 1.36;
    }

    .process-motion-tabs {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .process-motion-tabs button {
        min-height: 32px;
        font-size: .68rem;
    }

    .process-motion-progress-row {
        grid-template-columns: minmax(0, 1fr) 20px;
        gap: 7px;
        margin-top: 5px;
    }

    .process-motion-mini-toggle {
        width: 20px;
        height: 20px;
    }

    .svc-row,
    .proc-row,
    .insp-row,
    .ci {
        --card-pad-x: 16px;
        --media-size: 70px;
        gap: 13px;
    }

    .map-btns {
        grid-template-columns: 1fr;
    }

    .map-btn {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
        min-height: 54px;
        padding: 0;
        font-size: clamp(.86rem, 3.7vw, 1rem);
        line-height: 1.12;
    }

    .map-btn::after {
        width: 46px;
    }

    .map-btn span {
        width: 46px;
        height: 100%;
        flex-basis: 46px;
    }

}

footer.site-footer {
    position: static;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
    background: rgba(239, 246, 255, .82);
    padding: 14px 5%;
    text-align: center;
    border-top: 1px solid rgba(147, 197, 253, .36);
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08)
}

footer.site-footer img {
    height: 16px;
    filter: none;
    opacity: .82;
    margin-bottom: 4px
}

footer.site-footer p {
    color: rgba(15, 23, 42, .68);
    font-size: .72rem;
    line-height: 1.45
}

body.standalone-page .page,
body.standalone-page .page-scroll {
    padding-bottom: 0 !important;
}

body.standalone-page footer.site-footer {
    margin: clamp(18px, 3vw, 32px) 0 0;
    padding: 20px clamp(18px, 3vw, 30px) calc(18px + env(safe-area-inset-bottom));
    border: 1px solid rgba(219, 234, 254, .3);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -14px 34px rgba(10, 27, 62, .12);
}

body.standalone-page footer.site-footer img {
    display: block;
    width: min(300px, 72vw);
    height: auto;
    margin: 0 auto 10px;
    opacity: 1;
}

body.standalone-page footer.site-footer p {
    margin: 0;
    font-size: clamp(.8rem, .9vw, 1.02rem);
    line-height: 1.55;
    font-weight: 650;
    word-break: keep-all;
}

@media (max-width: 900px) {
    .page-scroll {
        padding-bottom: calc(58px + env(safe-area-inset-bottom));
    }

    #visit .page-scroll {
        min-height: 100%;
        justify-content: flex-start;
        padding-bottom: calc(58px + env(safe-area-inset-bottom));
    }

    footer.site-footer {
        margin-top: auto;
        padding: 12px 5%;
        margin-bottom: calc(var(--quick-mobile-handle, 40px) + max(0px, env(safe-area-inset-bottom)));
        transition: margin-bottom .35s ease;
    }

    body.standalone-page footer.site-footer {
        margin: clamp(18px, 3vw, 32px) 0 0;
        padding: 20px clamp(18px, 3vw, 30px) calc(18px + env(safe-area-inset-bottom));
    }

    #visit .directions-list {
        flex: 0 0 auto;
        margin-bottom: clamp(22px, 5dvh, 42px);
    }

    .checkpoint-actions {
        display: none;
    }
}

@media (max-height: 720px) and (max-width: 900px) {
    #visit .directions-list {
        margin-bottom: 34px;
    }
}

@media (max-width: 560px) {
    .process-motion {
        padding: 8px;
        border-radius: 14px;
    }

    .process-motion-stage {
        border-radius: 11px;
    }

    .process-motion-panel {
        position: static;
        width: 100%;
        padding: 6px 8px;
        margin-top: 6px;
    }

    .process-motion-panel span {
        font-size: .4rem;
    }

    .process-motion-panel h3 {
        font-size: clamp(.68rem, 3.1vw, .82rem);
    }

    .process-motion-panel p {
        font-size: clamp(.48rem, 2.35vw, .58rem);
        line-height: 1.3;
    }

    .process-motion-progress-row {
        grid-template-columns: minmax(0, 1fr) 18px;
        gap: 6px;
        margin-top: 5px;
    }

    .process-motion-progress {
        height: 4px;
    }

    .process-motion-controls {
        grid-template-columns: 1fr;
    }

    .process-motion-tabs {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 5px;
    }

    .process-motion-tabs button {
        min-height: 30px;
    }

    .process-motion-mini-toggle {
        width: 18px;
        height: 18px;
    }

    footer.site-footer {
        margin-top: auto;
        padding: 10px 5%;
    }
}

.adm {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    opacity: 0
}

.kk,
.kakao-channel-float {
    position: fixed;
    right: 18px;
    width: max-content;
    min-width: 144px;
    max-width: min(210px, calc(100vw - 36px));
    height: 44px;
    padding: 0 14px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #FEE500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    z-index: 999;
    transition: .3s;
    cursor: pointer;
    text-decoration: none
}

.kk {
    bottom: 72px;
    background: #14284d;
    border: 1px solid rgba(147, 197, 253, .74);
    color: #fff;
}

.kakao-channel-float {
    bottom: 18px;
    background: #14284d;
    border: 1px solid rgba(147, 197, 253, .74);
    color: #fff;
}

.kk-label {
    display: inline-flex;
    align-items: center;
    gap: .25em;
    color: #111827;
    font-size: clamp(.82rem, .2vw + .76rem, .9rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.16;
    text-align: center;
    white-space: nowrap;
}

.kakao-channel-float .kk-label {
    color: #fff;
}

.kk .kk-label {
    color: #fff;
}

.floating-action-icon {
    width: clamp(24px, .45vw + 20px, 28px);
    height: clamp(24px, .45vw + 20px, 28px);
    flex: 0 0 clamp(24px, .45vw + 20px, 28px);
    object-fit: contain;
    border-radius: 5px;
}

.kk:hover,
.kakao-channel-float:hover {
    transform: translateY(-4px) scale(1.05)
}

body.notify-lock {
    overflow: hidden;
}

.notify-float {
    position: fixed;
    bottom: 126px;
    right: 18px;
    width: max-content;
    min-width: 144px;
    max-width: min(210px, calc(100vw - 36px));
    height: 44px;
    padding: 0 14px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .74);
    background: #14284d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow:
        0 0 0 3px rgba(147, 197, 253, .14),
        0 10px 26px rgba(20, 40, 77, .42),
        0 5px 18px rgba(0, 0, 0, .24);
    z-index: 999;
    transition: .3s;
    cursor: pointer;
    font-family: inherit;
    font-size: clamp(.82rem, .2vw + .76rem, .9rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.16;
    text-align: center;
    white-space: nowrap;
}

.notify-label {
    display: inline-flex;
    align-items: center;
    gap: .25em;
    width: auto;
    font-size: clamp(.82rem, .2vw + .76rem, .9rem);
    font-weight: 500;
}

body.is-checkpoint-active .kk {
    bottom: 72px;
}

body.is-checkpoint-active .kakao-channel-float {
    bottom: 18px;
}

body.is-checkpoint-active .notify-float {
    bottom: 126px;
}

.notify-float:hover {
    transform: translateY(-4px) scale(1.05)
}

.notify-float:active {
    transform: translateY(-1px) scale(.99);
    background: #0f1d3d;
}

@keyframes notifyPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 3px rgba(147, 197, 253, .12),
            0 10px 26px rgba(20, 40, 77, .38),
            0 5px 18px rgba(0, 0, 0, .24);
    }

    50% {
        box-shadow:
            0 0 0 6px rgba(147, 197, 253, .22),
            0 14px 34px rgba(37, 99, 235, .42),
            0 7px 22px rgba(0, 0, 0, .28);
    }
}

.notify-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(3, 7, 18, .68);
    backdrop-filter: blur(10px);
    z-index: 1200;
    overflow: hidden;
    overscroll-behavior: contain;
    touch-action: none;
}

.notify-modal.open {
    display: flex;
}

.notify-panel {
    position: relative;
    width: clamp(360px, 42vw, 640px);
    max-height: min(760px, calc(100vh - 48px));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding: 28px;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(10, 21, 48, .98), rgba(22, 43, 84, .98));
    border: 1px solid rgba(147, 197, 253, .24);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.notify-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #dbeafe;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.notify-kicker {
    color: #93c5fd;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.notify-panel h2 {
    color: #fff;
    font-size: clamp(1.35rem, 1vw + 1.1rem, 1.85rem);
    font-weight: 1000;
    margin-bottom: 8px;
}

.notify-copy {
    color: rgba(219, 234, 254, .72);
    font-size: .9rem;
    line-height: 1.55;
    margin-bottom: 10px;
}

.notify-schedule-note {
    margin-bottom: 18px;
    padding: 11px 12px;
    border: 1px solid rgba(254, 229, 0, .6);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(254, 229, 0, .24), rgba(245, 158, 11, .12)),
        rgba(24, 20, 8, .34);
    color: #fff7cc;
    font-size: .86rem;
    font-weight: 900;
    line-height: 1.45;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .05),
        0 10px 24px rgba(254, 229, 0, .08);
}

.notify-fields {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.notify-fields label span {
    display: block;
    margin-bottom: 6px;
    color: rgba(226, 232, 240, .9);
    font-size: .82rem;
    font-weight: 850;
}

.notify-fields label em {
    color: rgba(147, 197, 253, .78);
    font-style: normal;
    font-size: .72rem;
}

.notify-fields input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, .28);
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 750;
    outline: none;
}

.notify-fields input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, .16);
}

.notify-primary,
.notify-apply {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 900;
    cursor: pointer;
}

.notify-result {
    display: none;
    margin-top: 14px;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .18);
    background: rgba(255, 255, 255, .055);
    padding: 14px;
}

.notify-result.show {
    display: block;
}

.notify-result.done {
    border-color: rgba(34, 197, 94, .34);
    background: rgba(34, 197, 94, .12);
}

.notify-vehicle {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #dbeafe;
    font-size: .88rem;
    line-height: 1.45;
}

.notify-vehicle:last-child {
    border-bottom: 0;
}

.notify-vehicle input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #3b82f6;
}

.notify-vehicle strong {
    color: #fff;
    font-weight: 950;
}

.notify-state {
    display: inline-flex;
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 6px;
    background: #FEE500;
    color: #111827;
    font-style: normal;
    font-size: .68rem;
    font-weight: 950;
    vertical-align: middle;
}

.notify-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.notify-consent {
    display: flex;
    gap: 9px;
    align-items: center;
    margin: 14px 0;
    padding: 12px 13px;
    border: 1px solid rgba(254, 229, 0, .55);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(254, 229, 0, .2), rgba(245, 158, 11, .1)),
        rgba(24, 20, 8, .28);
    color: #fff7cc;
    font-size: .88rem;
    font-weight: 900;
    line-height: 1.45;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .05),
        0 10px 26px rgba(254, 229, 0, .08);
}

.notify-consent input {
    width: 20px;
    height: 20px;
    accent-color: #FEE500;
    flex: 0 0 auto;
}

.notify-message {
    color: rgba(219, 234, 254, .76);
    font-size: .88rem;
    line-height: 1.55;
}

.notify-message strong {
    color: #fff;
}

.notify-done-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 18px 14px;
    border: 1px solid rgba(34, 197, 94, .42);
    border-radius: 8px;
    background: rgba(20, 83, 45, .26);
    text-align: center;
}

.notify-done-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #22c55e;
    color: #052e16;
    font-size: 1.45rem;
    font-weight: 1000;
    box-shadow: 0 0 0 7px rgba(34, 197, 94, .16);
}

.notify-done-close {
    width: min(180px, 100%);
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: #FEE500;
    color: #111827;
    font-family: inherit;
    font-size: .94rem;
    font-weight: 1000;
    cursor: pointer;
}

@media (max-width: 900px) {

    .kk,
    .notify-float,
    .kakao-channel-float {
        box-sizing: border-box;
        bottom: max(8px, env(safe-area-inset-bottom));
        width: calc((100vw - 56px) / 3) !important;
        min-width: 0;
        max-width: none;
        height: 42px;
        padding: 0 6px;
        gap: 4px;
        border-radius: 8px;
        font-size: .72rem;
        line-height: 1;
        transform: none !important;
        white-space: nowrap;
    }

    .kk-label {
        display: inline-flex;
        align-items: center;
        gap: .25em;
        white-space: nowrap;
    }

    .notify-label {
        display: inline-flex;
        align-items: center;
        gap: .25em;
        width: auto;
        white-space: nowrap;
    }

    .notify-float {
        left: 14px;
        right: auto;
        border: 1px solid rgba(147, 197, 253, .74);
        box-shadow:
            0 0 0 2px rgba(147, 197, 253, .14),
            0 8px 20px rgba(20, 40, 77, .38),
            0 4px 14px rgba(0, 0, 0, .24);
    }

    .kk {
        right: auto;
        left: calc(14px + ((100vw - 56px) / 3) + 14px);
        border: 1px solid rgba(147, 197, 253, .74);
    }

    .floating-action-icon {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .ts-inspect-float .floating-action-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }



    .kakao-channel-float {
        right: auto;
        left: calc(14px + (((100vw - 56px) / 3) + 14px) * 2);
    }

    body.is-checkpoint-active .kk,
    body.is-checkpoint-active .notify-float,
    body.is-checkpoint-active .kakao-channel-float,
    #visit:target~.kk,
    #visit:target~.notify-float,
    #visit:target~.kakao-channel-float {
        display: flex;
        bottom: max(8px, env(safe-area-inset-bottom));
    }

    .notify-modal {
        align-items: center;
        padding: clamp(14px, 4vw, 28px);
    }

    .notify-panel {
        width: min(92vw, 640px);
        max-height: calc(100dvh - clamp(28px, 8vw, 56px));
        padding: 20px 14px 16px;
        border-radius: 8px;
    }

    .notify-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .notify-kicker {
        font-size: .64rem;
        margin-bottom: 6px;
    }

    .notify-panel h2 {
        font-size: clamp(1.12rem, 5vw, 1.36rem);
        padding-right: 34px;
    }

    .notify-copy,
    .notify-message,
    .notify-consent,
    .notify-schedule-note,
    .notify-vehicle {
        font-size: .8rem;
    }

    .notify-schedule-note,
    .notify-consent,
    .notify-result {
        padding: 10px;
    }

    .notify-fields {
        gap: 10px;
    }

    .notify-fields input {
        padding: 11px 12px;
        font-size: .88rem;
    }

    .notify-primary,
    .notify-apply {
        min-height: 44px;
        font-size: .88rem;
    }

    .notify-vehicle input {
        width: 17px;
        height: 17px;
    }

    .notify-actions {
        grid-template-columns: 1fr;
    }
}

.test-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(234, 179, 8, .12);
    border: 1px solid rgba(234, 179, 8, .25);
    color: #fbbf24;
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 999;
    font-family: inherit
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes orbF {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(15px, -20px) scale(1.03)
    }

    66% {
        transform: translate(-10px, 10px) scale(.97)
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr
    }

    .hero-side {
        margin-top: 20px
    }
}

@media(max-width:768px) {
    nav .nlinks {
        display: none
    }

    .hero-nums {
        flex-wrap: wrap;
        gap: 16px
    }

    .page {
        padding: 70px 4% 40px
    }

    .page.hero {
        padding-top: 86px;
        align-content: start;
        align-items: start;
    }

    .page.hero>.page-scroll {
        padding-top: 0;
    }

    .proc-row .pimg,
    .insp-row .iimg,
    .fee-row .fimg,
    .svc-row .simg {
        width: 70px;
        height: 70px
    }

}

/* 1. 상단 네비게이션 로고 여백 조정 - 일정하게 유지 (스크롤 시 튀는 문제 수정) */
nav {
    padding-top: 22px !important;
}

nav.sc {
    padding-top: 22px !important;
}

@media (max-width: 900px) {

    nav,
    nav.sc {
        padding-top: 14px !important;
    }
}

/* 2. 날씨 위젯 및 유효기간/알림신청 영역 숨김 */
.hero-wx,
.side-card {
    display: none !important;
}

/* 4. 홈 화면 우측 브랜드 워터마크 */
.hero-watermark {
    position: absolute;
    right: clamp(16px, 4vw, 72px);
    top: 53%;
    width: min(38vw, 540px);
    min-height: 260px;
    transform: translateY(-42%);
    pointer-events: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    opacity: .58;
}

.hero-watermark::before {
    content: "";
    position: absolute;
    inset: -22% -8% -18% 8%;
    background:
        linear-gradient(90deg, rgba(147, 197, 253, 0) 0 28%, rgba(147, 197, 253, .16) 28% 29%, rgba(147, 197, 253, 0) 29% 100%),
        repeating-linear-gradient(0deg, rgba(147, 197, 253, .12) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(90deg, rgba(147, 197, 253, .09) 0 1px, transparent 1px 42px);
    mask-image: linear-gradient(90deg, transparent, #000 26%, #000 84%, transparent);
    opacity: .5;
}

.hero-watermark::after {
    content: "";
    position: absolute;
    right: 2%;
    top: 50%;
    width: min(28vw, 380px);
    height: min(28vw, 380px);
    border: 1px solid rgba(147, 197, 253, .3);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow:
        inset 0 0 0 36px rgba(59, 130, 246, .045),
        0 0 70px rgba(59, 130, 246, .18);
}

.mark-brand,
.inspection-flow {
    position: relative;
}

.mark-brand span {
    position: relative;
    display: block;
    letter-spacing: 0;
    text-shadow: 0 22px 54px rgba(37, 99, 235, .2);
}

.mark-kicker {
    color: rgba(219, 234, 254, .72);
    font-size: clamp(.82rem, 1.1vw, 1.1rem);
    font-weight: 900;
    margin-bottom: 8px;
}

.mark-main {
    color: transparent;
    -webkit-text-stroke: 1px rgba(219, 234, 254, .42);
    font-size: clamp(3.4rem, 6.6vw, 6.3rem);
    font-weight: 950;
    line-height: .88;
}

.mark-sub {
    color: rgba(191, 219, 254, .72);
    font-size: clamp(.72rem, 1vw, .95rem);
    font-weight: 800;
    margin-top: 14px;
}

@media (max-width: 1376px) and (min-width: 901px) {
    .hero-text {
        width: min(56vw, 760px);
        max-width: calc(100% - min(34vw, 460px) - clamp(36px, 4vw, 64px));
    }

    .hero-watermark {
        right: clamp(14px, 3vw, 42px);
        width: min(34vw, 460px);
        opacity: .46;
    }

    .mark-main {
        font-size: clamp(3.2rem, 6vw, 5.3rem);
    }

    .inspection-flow {
        width: min(340px, 80%);
    }
}

@media (max-height: 1100px) and (min-width: 901px) {
    .hero-watermark {
        top: 58%;
        transform: translateY(-34%);
    }
}

@media (max-width: 1180px) and (min-width: 901px) and (max-height: 1100px) {
    .hero-watermark {
        top: 61%;
        width: min(34vw, 460px);
        opacity: .38;
    }

    .mark-main {
        font-size: clamp(3.2rem, 6vw, 5.3rem);
    }
}

.inspection-flow {
    width: min(390px, 82%);
    margin-top: 30px;
    display: grid;
    gap: 13px;
}

.inspection-flow::before,
.inspection-flow::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(191, 219, 254, .38);
}

.inspection-flow::after {
    background: linear-gradient(180deg, transparent, rgba(147, 197, 253, .98), transparent);
    transform-origin: top;
    animation: inspectionScan 7.5s ease-in-out infinite;
}

.flow-step {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    min-height: 22px;
}

.flow-text {
    color: rgba(219, 234, 254, .64);
    font-size: clamp(.72rem, .82vw, .9rem);
    font-weight: 850;
    white-space: nowrap;
    animation: flowTextPulse 7.5s ease-in-out infinite;
    animation-delay: calc(var(--i) * 1.08s);
}

.flow-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(191, 219, 254, .72);
    background: rgba(15, 29, 61, .88);
    box-shadow: 0 0 0 5px rgba(96, 165, 250, .08);
    animation: flowDotPulse 7.5s ease-in-out infinite;
    animation-delay: calc(var(--i) * 1.08s);
}

@keyframes inspectionScan {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    12% {
        opacity: .9;
    }

    74% {
        transform: scaleY(1);
        opacity: .9;
    }

    100% {
        transform: scaleY(1);
        opacity: 0;
    }
}

@keyframes flowDotPulse {

    0%,
    100% {
        background: rgba(15, 29, 61, .88);
        border-color: rgba(191, 219, 254, .66);
        box-shadow: 0 0 0 5px rgba(96, 165, 250, .08);
    }

    12%,
    28% {
        background: #93c5fd;
        border-color: rgba(255, 255, 255, .98);
        box-shadow: 0 0 0 7px rgba(147, 197, 253, .18), 0 0 30px rgba(147, 197, 253, .56);
    }
}

@keyframes flowTextPulse {

    0%,
    100% {
        color: rgba(219, 234, 254, .58);
    }

    12%,
    28% {
        color: rgba(255, 255, 255, .95);
    }
}

@media (max-width: 900px) {
    .hero-watermark {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 90%;
        max-width: 640px;
        min-height: 210px;
        margin: 22px 0 0 auto;
        transform: none;
        align-items: flex-end;
        justify-content: flex-start;
        text-align: right;
        opacity: .5;
        z-index: 0;
        align-self: auto;
        order: 2;
    }

    .hero-watermark::before {
        inset: -22% -8% -18% 8%;
        opacity: .42;
        mask-image: linear-gradient(90deg, transparent, #000 26%, #000 84%, transparent);
    }

    .hero-watermark::after {
        right: 2%;
        left: auto;
        top: 50%;
        width: min(64vw, 360px);
        height: min(64vw, 360px);
        border-color: rgba(147, 197, 253, .18);
    }

    .mark-main {
        color: transparent;
        font-size: clamp(3.2rem, 13vw, 6rem);
        -webkit-text-stroke-color: rgba(219, 234, 254, .28);
    }

    .inspection-flow {
        display: grid;
        width: min(320px, 82%);
        margin-top: 24px;
        gap: 10px;
    }

    .mark-kicker,
    .mark-sub {
        color: rgba(219, 234, 254, .68);
    }
}

@media (max-width: 560px) {
    .hero-watermark {
        left: auto;
        right: auto;
        bottom: auto;
        width: 92%;
        min-height: 190px;
        margin-top: 18px;
        opacity: .56;
    }

    .hero-watermark::before {
        inset: -18% -12% -16% -4%;
        opacity: .36;
    }

    .hero-watermark::after {
        display: block;
        width: min(70vw, 280px);
        height: min(70vw, 280px);
    }

    .mark-main {
        font-size: clamp(3rem, 15vw, 4.6rem);
        color: transparent;
        -webkit-text-stroke-color: rgba(219, 234, 254, .28);
    }

    .mark-kicker {
        font-size: .72rem;
    }

    .mark-sub {
        font-size: .62rem;
        margin-top: 10px;
    }

    .inspection-flow {
        width: min(280px, 86%);
        margin-top: 18px;
        gap: 8px;
    }

    .flow-text {
        font-size: .62rem;
    }

    .flow-dot {
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 512px) {
    .hero-watermark {
        width: 86%;
        margin-right: 2%;
        min-height: 178px;
        overflow: visible;
    }

    .hero-watermark::before {
        inset: -12% 0 -12% 0;
        opacity: .32;
    }

    .hero-watermark::after {
        right: 0;
        width: min(62vw, 250px);
        height: min(62vw, 250px);
    }

    .mark-main {
        font-size: clamp(2.7rem, 12vw, 3.8rem);
    }

    .inspection-flow {
        width: min(260px, 84%);
    }
}

@media (prefers-reduced-motion: reduce) {

    .inspection-flow::after,
    .flow-text,
    .flow-dot {
        animation: none;
    }
}

/* 5. 페이지 상단 라운드 중첩(Stack) 및 단계별 배경 그라데이션
   5px 탭에서 곡선이 보이려면 radius를 작게 설정 */
.page {
    border-top-left-radius: 18px !important;
    border-top-right-radius: 18px !important;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
}

/* 첨부해주신 이미지처럼 상단이 둥글게 15px 간격으로 겹치도록 top 값 조절 */
/* 배경색은 홈(#0f1d3d)에서 마지막(#3b82f6)까지 남은 페이지 수에 맞춰 점진적으로 밝아집니다 */
/* nav 높이 기준
   74px 아래에서 5px씩 탭이 보이도록 top 값 설정 */
#home {
    --stack-top: 0px;
    border-radius: 0 !important;
    border: none !important;
    background: #0f1d3d !important;
}

#service {
    --stack-top: 74px;
    /* nav 바로 아래에 붙음 → #home 탭 0px 노출 (탭 시작점) */
    background: #18325d !important;
}

#guide {
    --stack-top: 79px;
    /* #service 탭 5px 노출 */
    background: #25509a !important;
}

#procedure {
    --stack-top: 84px;
    /* #guide 탭 5px 노출 */
    background: #2c60b8 !important;
}

#faq {
    --stack-top: 89px;
    /* #procedure 탭 5px 노출 */
    background: #3471d7 !important;
}

#visit {
    --stack-top: 94px;
    /* #faq 탭 5px 노출 */
    background: #3c82f6 !important;
}

/* ======= FAQ ======= */
#faq {
    background: #3471d7
}

.faq-list {
    width: 100%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: visible;
    max-height: none;
}

#faq .page-scroll {
    justify-content: flex-start;
    padding-top: clamp(46px, 8dvh, 84px);
    padding-bottom: clamp(34px, 7dvh, 70px);
}

#faq .st,
#faq .faq-item,
#faq .faq-cta {
    flex: 0 0 auto;
}

.faq-item {
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid var(--bd);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.faq-item[open] {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}

.faq-q {
    list-style: none;
    padding: 15px 20px;
    min-height: 54px;
    font-size: clamp(.84rem, 1.5vw + .4rem, .98rem);
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: color .18s ease;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q::marker {
    display: none;
}

.faq-q::after {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(255, 255, 255, .45);
    border-bottom: 2px solid rgba(255, 255, 255, .45);
    transform: rotate(45deg);
    transition: transform .22s ease, border-color .18s ease;
    margin-right: 2px;
    margin-top: -3px;
}

.faq-item[open] .faq-q {
    color: #bfdbfe;
}

.faq-item[open] .faq-q::after {
    transform: rotate(-135deg);
    margin-top: 3px;
    border-color: #93c5fd;
}

.faq-a {
    padding: 0 20px 16px;
    font-size: clamp(.78rem, 1.2vw + .4rem, .9rem);
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
    margin: 0;
}

.faq-cta {
    margin-top: 6px;
    padding: 20px 20px;
    border-radius: 16px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid var(--bd);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.faq-cta-copy {
    margin: 0;
    font-size: clamp(.77rem, 1.2vw + .4rem, .88rem);
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 26px;
    border-radius: 8px;
    border: 1px solid #fff;
    background: #14284d;
    color: #fff;
    font-family: inherit;
    font-size: .87rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.faq-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, .9);
    background: #1d3d73;
    box-shadow:
        0 0 0 4px rgba(191, 219, 254, .22),
        0 14px 34px rgba(29, 61, 115, .5),
        0 7px 22px rgba(0, 0, 0, .28);
}


/* ======= 알림 신청 카드 ======= */
.svc-notify-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid rgba(254, 229, 0, .62);
    transition: border-color .3s, box-shadow .3s;
}

.svc-notify-card:hover {
    border-color: rgba(254, 229, 0, .9);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .2), 0 0 0 1px rgba(254, 229, 0, .18);
}

.svc-featured-badge {
    position: absolute;
    top: -12px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(254, 229, 0, .72);
    background: rgba(15, 23, 42, .86);
    color: #FEE500;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
    pointer-events: none;
}

.svc-featured-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FEE500;
    box-shadow: 0 0 0 4px rgba(254, 229, 0, .16);
}

.svc-notify-top {
    display: flex;
    gap: 20px;
    align-items: center;
}

.svc-notify-card .simg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 10px 22px rgba(2, 6, 23, .16);
    overflow: hidden;
    flex: 0 0 82px;
}

.svc-notify-card .simg img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.svc-notify-info {
    flex: 1;
    min-width: 0;
}

.svc-notify-info p {
    font-size: clamp(0.74rem, 0.58vw + 0.67rem, 1.1rem);
    color: var(--mt);
    line-height: 1.7;
}

.svc-notify-form[hidden] {
    display: none !important;
}

.snf-step[hidden] {
    display: none !important;
}

.snf-result[hidden] {
    display: none !important;
}

.svc-notify-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .74);
    background: #14284d;
    color: #fff;
    font-family: inherit;
    font-size: clamp(.75rem, .7vw + .62rem, .88rem);
    font-weight: 800;
    cursor: pointer;
    transition: background .18s, border-color .18s;
}

.svc-notify-toggle:hover {
    background: #1d3d73;
    border-color: rgba(255, 255, 255, .9);
}

.svc-notify-chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(255, 255, 255, .7);
    border-bottom: 2px solid rgba(255, 255, 255, .7);
    transform: rotate(45deg);
    transition: transform .22s ease;
    flex-shrink: 0;
    margin-top: -2px;
}

.svc-notify-toggle[aria-expanded="true"] .svc-notify-chevron {
    transform: rotate(-135deg);
    margin-top: 2px;
}

/* 폼 */
.svc-notify-form {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(254, 229, 0, .2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.snf-fields {
    display: flex;
    gap: 10px;
}

.snf-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.snf-label {
    font-size: clamp(.7rem, .5vw + .64rem, .78rem);
    font-weight: 700;
    color: rgba(226, 232, 240, .6);
    letter-spacing: .02em;
}

.snf-submit-btn {
    width: 100%;
    padding: 10px 16px;
    margin-top: 4px;
    border-radius: 8px;
    border: none;
    background: #FEE500;
    color: #191600;
    font-family: inherit;
    font-size: clamp(.78rem, .7vw + .68rem, .9rem);
    font-weight: 800;
    cursor: pointer;
    transition: background .15s, transform .12s, box-shadow .15s;
    box-shadow: 0 2px 10px rgba(254, 229, 0, .28);
}

.snf-submit-btn:hover {
    background: #f5dc00;
    box-shadow: 0 4px 18px rgba(254, 229, 0, .44);
    transform: translateY(-1px);
}

.snf-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 6px rgba(254, 229, 0, .2);
}

.snf-actions {
    display: flex;
    gap: 10px;
}

.snf-actions .snf-btn,
.snf-actions .snf-submit-btn {
    flex: 1;
    margin-top: 0;
}

.snf-actions .snf-submit-btn[hidden] {
    display: none !important;
}

.snf-input {
    flex: 1;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .3);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-family: inherit;
    font-size: clamp(.8rem, .7vw + .7rem, .9rem);
    outline: none;
    transition: border-color .18s;
}

.snf-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.snf-input:focus {
    border-color: rgba(147, 197, 253, .7);
}

.snf-btn {
    padding: 9px 16px;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .74);
    background: #14284d;
    color: #fff;
    font-family: inherit;
    font-size: clamp(.75rem, .6vw + .68rem, .86rem);
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s, border-color .18s;
}

.snf-btn:hover {
    background: #1d3d73;
    border-color: rgba(255, 255, 255, .8);
}

.snf-result {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: clamp(.76rem, .6vw + .68rem, .86rem);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.snf-result-loading {
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .6);
}

.snf-result-ok {
    background: rgba(134, 239, 172, .1);
    border: 1px solid rgba(134, 239, 172, .3);
    color: #86efac;
}

.snf-result-none {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--bd);
    color: rgba(226, 232, 240, .7);
}

.snf-result-warn {
    background: rgba(251, 191, 36, .08);
    border: 1px solid rgba(251, 191, 36, .25);
    color: #fcd34d;
}

.snf-result-pending {
    background: rgba(254, 229, 0, .07);
    border: 1px solid rgba(254, 229, 0, .25);
    color: rgba(253, 224, 71, .9);
}

.snf-result-error {
    background: rgba(248, 113, 113, .08);
    border: 1px solid rgba(248, 113, 113, .25);
    color: #fca5a5;
}

.snf-result-canceled {
    background: rgba(191, 219, 254, .08);
    border: 1px solid rgba(147, 197, 253, .28);
    color: #bfdbfe;
}

.snf-submit-btn.snf-cancel-btn {
    background: rgba(244, 63, 94, .12);
    border: 1px solid rgba(251, 113, 133, .42);
    color: #fecdd3;
    box-shadow: none;
}

.snf-submit-btn.snf-cancel-btn:hover {
    background: rgba(244, 63, 94, .18);
    box-shadow: 0 4px 16px rgba(244, 63, 94, .18);
}

.snf-kakao-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 7px;
    background: #FEE500;
    color: #111827;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 950;
    text-decoration: none;
    align-self: flex-start;
    transition: transform .16s, box-shadow .16s;
}

.snf-kakao-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

/* 알림 신청 로딩 애니메이션 */
.snf-result-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.snf-result-loading::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .2);
    border-top-color: #93c5fd;
    border-radius: 50%;
    animation: snfSpin .7s linear infinite;
}

@keyframes snfSpin {
    to {
        transform: rotate(360deg);
    }
}

/* 알림 신청 성공 애니메이션 */
.snf-result-success {
    background: rgba(254, 229, 0, .07);
    border: 1px solid rgba(254, 229, 0, .35);
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    animation: snfSuccessPop .4s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes snfSuccessPop {
    from {
        opacity: 0;
        transform: scale(.88) translateY(6px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.snf-success-anim {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.snf-success-svg {
    width: 44px;
    height: 44px;
    overflow: visible;
}

.snf-success-circle {
    stroke: #FEE500;
    stroke-width: 2.5;
    stroke-dasharray: 152;
    stroke-dashoffset: 152;
    stroke-linecap: round;
    animation: snfCircleDraw .5s ease-out .1s forwards;
}

@keyframes snfCircleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.snf-success-check {
    stroke: #FEE500;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    animation: snfCheckDraw .35s ease-out .52s forwards;
}

@keyframes snfCheckDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.snf-success-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.snf-success-title {
    font-size: clamp(.82rem, .7vw + .72rem, .94rem);
    font-weight: 900;
    color: #FEE500;
    letter-spacing: -.01em;
}

.snf-success-desc {
    font-size: clamp(.73rem, .55vw + .65rem, .82rem);
    color: rgba(254, 229, 0, .72);
    line-height: 1.55;
}

@media (min-width: 769px) and (max-width: 900px) {
    .page.hero>.page-scroll {
        height: auto;
        max-height: 100%;
        margin-top: 0;
        padding: 0 0 28px;
    }
}

@media (max-width: 900px) {
    .page.hero>.page-scroll {
        --hero-mobile-flow-gap: clamp(64px, 8vw, 84px);
        gap: var(--hero-mobile-flow-gap);
    }

    .page.hero .hero-text {
        margin-top: 0 !important;
    }

    .page.hero .hero-watermark {
        margin-top: clamp(-34px, -4vw, -24px);
    }
}

@media (min-width: 480px) and (max-width: 900px) {
    .live-banner {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "title clock"
            "status status"
            "recent recent";
        row-gap: 10px;
        column-gap: 12px;
        padding: 14px 14px 34px;
    }

    .wide-section-status {
        grid-area: status;
        align-items: center;
        gap: 12px;
        padding: 12px;
    }

    .status-badge-wrap {
        padding: 6px 10px;
    }

    .live-badge {
        font-size: clamp(.76rem, 1.25vw, .88rem);
    }

    .status-text h2 {
        font-size: clamp(1.18rem, 2.35vw, 1.5rem);
        letter-spacing: -.02em;
    }

    .live-board-title {
        grid-area: title;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
        padding: 2px 0;
        border-right: 0;
        font-size: clamp(.72rem, 1.4vw, .86rem);
        line-height: 1.1;
    }

    .live-board-title::after {
        content: none;
    }

    #lbClockArea {
        grid-area: clock;
        justify-content: flex-end;
        gap: 6px !important;
        padding-right: 0 !important;
    }

    #lbClockDate {
        font-size: clamp(.66rem, 1.3vw, .8rem) !important;
        margin-bottom: 2px;
    }

    #lbClockTime {
        font-size: clamp(.9rem, 2vw, 1.14rem) !important;
    }

    #lbClockTime .clock-seconds {
        font-size: .62rem;
    }

    .banner-weather {
        gap: 3px;
        padding: 1px 3px;
    }

    .banner-weather-icon {
        width: clamp(32px, 5.4vw, 44px);
        height: clamp(32px, 5.4vw, 44px);
    }

    #bannerWeatherTemp {
        font-size: clamp(.68rem, 1.2vw, .78rem);
    }

    .wide-section-recent {
        grid-area: recent;
        padding-top: 0;
    }
}

@media (max-width: 900px) {
    .svc-notify-card {
        padding: 20px 22px;
        border-radius: 14px;
    }

    .svc-notify-top {
        gap: 18px;
    }

    .svc-notify-card .simg {
        width: 70px;
        height: 70px;
        flex: 0 0 70px;
        border-radius: 12px;
    }

    .svc-notify-info h3 {
        font-size: clamp(.8rem, .78vw + .72rem, 1.3rem);
        font-weight: 800;
        margin-bottom: 8px;
    }

    .svc-notify-info p {
        font-size: clamp(.74rem, .58vw + .67rem, 1.1rem);
    }
}

@media (min-width: 480px) and (max-width: 900px) {
    .live-board-title-inner {
        flex-direction: row;
        gap: 5px;
    }

    .live-board-title-inner::after {
        content: "";
        left: 0;
        right: 0;
        bottom: -5px;
        height: 2px;
    }
}

@media (max-width: 479px) {
    .live-banner {
        grid-template-columns: minmax(74px, .85fr) minmax(0, 2.1fr);
        padding: 7px 8px 30px;
        gap: 7px;
    }

    .live-board-title {
        padding: 4px 5px;
        font-size: .68rem;
        line-height: 1.08;
    }

    .live-board-title-inner {
        gap: 3px;
    }

    .live-board-title-inner::after {
        left: 12%;
        right: 12%;
        bottom: -3px;
        height: 1px;
    }

    #lbClockArea {
        gap: 3px !important;
    }

    .clock-main {
        gap: 4px;
    }

    #lbClockDate {
        font-size: .62rem !important;
        margin-bottom: 1px;
    }

    #lbClockTime {
        font-size: .84rem !important;
    }

    #lbClockTime .clock-seconds {
        font-size: .54rem;
    }

    .banner-weather {
        gap: 1px;
        padding: 1px 2px;
    }

    .banner-weather-icon {
        width: 34px;
        height: 34px;
    }

    #bannerWeatherTemp {
        font-size: .62rem;
    }

    .wide-section-status {
        align-items: center;
        min-height: 0;
        padding: 8px 10px;
    }

    .status-badge-wrap {
        align-self: center;
    }

    .status-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 0;
    }

    .status-text p {
        margin-top: 7px;
    }

    .svc-notify-card {
        padding: 16px;
    }

    .svc-notify-top {
        gap: 13px;
        align-items: center;
    }

    .svc-notify-card .simg {
        width: 70px;
        height: 70px;
        flex: 0 0 70px;
        border-radius: 10px;
    }

    .svc-featured-badge {
        top: -10px;
        right: 14px;
        padding: 5px 10px;
        font-size: .66rem;
    }

    .svc-notify-info h3 {
        font-size: clamp(0.8rem, 0.78vw + 0.72rem, 1.3rem);
        margin-bottom: 6px;
    }

    .svc-notify-info p {
        font-size: clamp(0.74rem, 0.58vw + 0.67rem, 1.1rem);
        line-height: 1.55;
    }

    .svc-points {
        margin-top: 9px;
    }

    .svc-notify-toggle {
        margin-top: 10px;
        padding: 9px 12px;
        font-size: .78rem;
    }

    .snf-fields,
    .snf-actions {
        flex-direction: column;
    }
}

.process-motion:fullscreen .process-motion-stage {
    display: block;
    aspect-ratio: 16 / 9;
    height: min(calc(100vh - 112px), calc((100vw - 56px) * .5625));
    max-height: calc(100vh - 112px);
}

.process-motion:fullscreen .process-motion-stage::before {
    content: none;
}

.process-motion:fullscreen .process-motion-stage img {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
}

.process-motion:fullscreen .process-motion-shade {
    display: block;
}

.process-motion:fullscreen .process-motion-panel {
    position: absolute;
    left: clamp(18px, 3vw, 56px);
    right: auto;
    bottom: clamp(18px, 3vw, 56px);
    width: auto;
    max-width: 55%;
    padding: 0;
    margin-top: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.process-motion:fullscreen .process-motion-panel span {
    font-size: clamp(.68rem, .45vw, 1rem);
    letter-spacing: clamp(1.2px, .12vw, 2.8px);
}

.process-motion:fullscreen .process-motion-panel h3 {
    margin-top: clamp(6px, .45vw, 12px);
    font-size: clamp(1.35rem, 1.28vw, 2.7rem);
}

.process-motion:fullscreen .process-motion-panel p {
    margin-top: clamp(6px, .45vw, 12px);
    font-size: clamp(.88rem, .62vw, 1.35rem);
    line-height: 1.55;
}

.process-motion:fullscreen .process-motion-progress-row {
    grid-template-columns: minmax(0, 1fr) clamp(26px, 1.8vw, 40px);
    gap: clamp(10px, .8vw, 18px);
    margin-top: clamp(12px, .8vw, 20px);
}

.process-motion:fullscreen .process-motion-mini-toggle {
    width: clamp(26px, 1.8vw, 40px);
    height: clamp(26px, 1.8vw, 40px);
}

body.process-motion-lock {
    overflow: hidden;
}

.process-motion.is-pseudo-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 2000;
    width: 100vw;
    height: 100dvh;
    max-width: none;
    margin: 0;
    padding: clamp(14px, 2vw, 28px);
    border: 0;
    border-radius: 0;
    background: #020617;
    justify-content: center;
}

.process-motion.is-pseudo-fullscreen .process-motion-stage {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: min(calc(100dvh - 112px), calc((100vw - 56px) * .5625));
    max-height: calc(100dvh - 112px);
    border-radius: 14px;
    background: #020617;
}

.process-motion.is-pseudo-fullscreen .process-motion-stage::before {
    content: none;
}

.process-motion.is-pseudo-fullscreen .process-motion-stage img {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    filter: brightness(1) saturate(1.04) contrast(1.02);
    image-rendering: auto;
}

.process-motion.is-pseudo-fullscreen .process-motion-stage img.is-playing {
    animation-name: processKenburnsFullscreen;
}

.process-motion.is-pseudo-fullscreen .process-motion-shade {
    display: block;
}

.process-motion.is-pseudo-fullscreen .process-motion-panel {
    position: absolute;
    left: clamp(8px, 3vw, 56px);
    right: auto;
    bottom: clamp(8px, 3vw, 56px);
    width: auto;
    max-width: 55%;
    padding: 0;
    margin-top: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.process-motion.is-pseudo-fullscreen .process-motion-panel span {
    font-size: clamp(.44rem, .45vw, 1rem);
    letter-spacing: clamp(1px, .12vw, 2.8px);
}

.process-motion.is-pseudo-fullscreen .process-motion-panel h3 {
    margin-top: clamp(3px, .45vw, 12px);
    font-size: clamp(.72rem, 1.28vw, 2.7rem);
}

.process-motion.is-pseudo-fullscreen .process-motion-panel p {
    margin-top: clamp(3px, .45vw, 12px);
    font-size: clamp(.5rem, .62vw, 1.35rem);
    line-height: 1.45;
}

.process-motion.is-pseudo-fullscreen .process-motion-progress-row {
    grid-template-columns: minmax(0, 1fr) clamp(20px, 1.8vw, 40px);
    gap: clamp(6px, .8vw, 18px);
    margin-top: clamp(5px, .8vw, 20px);
}

.process-motion.is-pseudo-fullscreen .process-motion-mini-toggle {
    width: clamp(20px, 1.8vw, 40px);
    height: clamp(20px, 1.8vw, 40px);
}

/* ===== 플로팅 미니 플레이어 ===== */
.mp {
    position: fixed;
    left: clamp(14px, 2vw, 24px);
    bottom: clamp(14px, 2vh, 24px);
    z-index: 9000;
    font-family: inherit;
}

.mp[data-state="closed"] {
    display: none;
}

/* 드래그 중 상태 */
.mp.is-dragging .mp-card {
    cursor: grabbing;
    transition: none;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, .55),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

/* 백드롭 */
.mp-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .72);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: -1;
    pointer-events: none;
}

.mp[data-state="expanded"] .mp-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 미니 카드 */
.mp-card {
    width: clamp(200px, 20vw, 280px);
    border-radius: clamp(8px, .8vw, 14px);
    border: 1px solid rgba(147, 197, 253, .3);
    background: rgba(10, 20, 45, .96);
    box-shadow:
        0 12px 36px rgba(0, 0, 0, .4),
        inset 0 1px 0 rgba(255, 255, 255, .06);
    overflow: hidden;
    cursor: grab;
    display: flex;
    flex-direction: column;
    transition: width .4s cubic-bezier(.4, 0, .2, 1),
        border-radius .4s ease,
        box-shadow .4s ease,
        transform .3s ease;
}

/* 확장 상태 - 모달 */
.mp[data-state="expanded"] {
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.mp[data-state="expanded"] .mp-card {
    position: relative;
    width: min(92vw, 960px);
    max-height: 90vh;
    border-radius: clamp(12px, 1vw, 20px);
    border-color: rgba(147, 197, 253, .22);
    cursor: default;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, .55),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    z-index: 1;
}

/* 닫기 버튼 */
.mp-close {
    position: absolute;
    top: clamp(4px, .5vw, 8px);
    right: clamp(4px, .5vw, 8px);
    z-index: 3;
    width: clamp(20px, 2vw, 30px);
    height: clamp(20px, 2vw, 30px);
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, .8);
    font-size: clamp(.56rem, .5vw, .85rem);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
    padding: 0;
    line-height: 1;
    font-family: inherit;
}

.mp-close:hover {
    background: rgba(0, 0, 0, .6);
    color: #fff;
}

.mp[data-state="expanded"] .mp-close {
    width: clamp(28px, 2.4vw, 36px);
    height: clamp(28px, 2.4vw, 36px);
    font-size: clamp(.72rem, .6vw, 1rem);
}

/* 이미지 스테이지 */
.mp-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.mp-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .45s ease;
}

.mp-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 30%, rgba(2, 6, 23, .72)),
        linear-gradient(90deg, rgba(15, 29, 61, .2), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* 확장 힌트 아이콘 (미니에서만) */
.mp-expand-hint {
    position: absolute;
    top: clamp(4px, .5vw, 8px);
    left: clamp(4px, .5vw, 8px);
    z-index: 2;
    width: clamp(22px, 2vw, 28px);
    height: clamp(22px, 2vw, 28px);
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: rgba(0, 0, 0, .36);
    color: rgba(255, 255, 255, .7);
    pointer-events: none;
    transition: opacity .3s ease;
}

.mp[data-state="expanded"] .mp-expand-hint {
    opacity: 0;
    visibility: hidden;
}

/* 오버레이 텍스트 */
.mp-overlay {
    position: absolute;
    left: clamp(6px, .8vw, 14px);
    bottom: clamp(6px, .8vw, 14px);
    right: clamp(6px, .8vw, 14px);
    z-index: 2;
    pointer-events: none;
}

.mp-step {
    display: block;
    color: #93c5fd;
    font-size: clamp(.36rem, .3vw + .28rem, .52rem);
    font-weight: 950;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mp-title {
    margin: 1px 0 0;
    color: #fff;
    font-size: clamp(.56rem, .45vw + .46rem, .82rem);
    font-weight: 950;
    line-height: 1.2;
}

.mp-desc {
    margin: 1px 0 0;
    color: rgba(226, 232, 240, .6);
    font-size: clamp(.42rem, .3vw + .34rem, .56rem);
    line-height: 1.3;
    display: none;
}

/* 확장 시 텍스트 크기 업 */
.mp[data-state="expanded"] .mp-step {
    font-size: clamp(.52rem, .4vw + .42rem, .72rem);
    letter-spacing: 1.5px;
}

.mp[data-state="expanded"] .mp-title {
    font-size: clamp(.82rem, .7vw + .68rem, 1.35rem);
    margin-top: 3px;
}

.mp[data-state="expanded"] .mp-desc {
    display: block;
    font-size: clamp(.62rem, .45vw + .52rem, .88rem);
    margin-top: 4px;
}

/* 미니 프로그레스 바 (미니에서만) */
.mp-progress-mini {
    height: 2px;
    background: rgba(147, 197, 253, .1);
    overflow: hidden;
}

.mp-progress-mini i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width .3s ease;
}

.mp[data-state="expanded"] .mp-progress-mini {
    display: none;
}

/* 표시하지 않기 버튼 (미니에서만) */
.mp-dismiss {
    display: block;
    width: 100%;
    padding: 5px 0;
    border: none;
    border-top: 1px solid rgba(147, 197, 253, .08);
    background: transparent;
    color: rgba(148, 163, 184, .5);
    font-family: inherit;
    font-size: clamp(.48rem, .35vw + .38rem, .6rem);
    font-weight: 600;
    cursor: pointer;
    transition: color .2s ease;
}

.mp-dismiss:hover {
    color: rgba(148, 163, 184, .8);
}

.mp[data-state="expanded"] .mp-dismiss {
    display: none;
}

/* 컨트롤 바 (확장에서만) */
.mp-bar {
    display: none;
    align-items: center;
    gap: clamp(6px, .6vw, 10px);
    padding: clamp(8px, .8vw, 14px) clamp(10px, 1vw, 16px);
    border-top: 1px solid rgba(147, 197, 253, .1);
}

.mp[data-state="expanded"] .mp-bar {
    display: flex;
}

.mp-nav {
    width: clamp(28px, 2.4vw, 36px);
    height: clamp(28px, 2.4vw, 36px);
    display: grid;
    place-items: center;
    border-radius: 8px;
    border: 1px solid rgba(147, 197, 253, .16);
    background: rgba(255, 255, 255, .04);
    color: rgba(219, 234, 254, .72);
    font-size: clamp(.82rem, .6vw + .68rem, 1.1rem);
    font-weight: 900;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    padding: 0;
    line-height: 1;
    font-family: inherit;
    flex-shrink: 0;
}

.mp-nav:hover {
    border-color: rgba(147, 197, 253, .4);
    background: rgba(96, 165, 250, .12);
    color: #fff;
}

.mp-dots {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: clamp(4px, .5vw, 7px);
}

.mp-dot {
    width: clamp(6px, .55vw, 8px);
    height: clamp(6px, .55vw, 8px);
    border-radius: 50%;
    background: rgba(148, 163, 184, .24);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.mp-dot.active {
    background: #60a5fa;
    transform: scale(1.3);
}

.mp-dot:hover {
    background: rgba(96, 165, 250, .5);
}

.mp-play {
    width: clamp(28px, 2.4vw, 36px);
    height: clamp(28px, 2.4vw, 36px);
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(147, 197, 253, .24);
    background: rgba(37, 99, 235, .18);
    color: #dbeafe;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
    padding: 0;
    font-family: inherit;
    flex-shrink: 0;
}

.mp-play:hover {
    border-color: rgba(147, 197, 253, .5);
    background: rgba(37, 99, 235, .4);
    color: #fff;
}

.mp-play-icon {
    width: 0;
    height: 0;
    border-top: clamp(4px, .45vw, 6px) solid transparent;
    border-bottom: clamp(4px, .45vw, 6px) solid transparent;
    border-left: clamp(7px, .65vw, 10px) solid currentColor;
    margin-left: 1px;
}

.mp-play.is-playing .mp-play-icon {
    width: clamp(8px, .7vw, 11px);
    height: clamp(9px, .8vw, 12px);
    border: none;
    margin-left: 0;
    background:
        linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65% 100%);
}

/* 모바일 반응형 */
@media (max-width: 900px) {
    .mp {
        left: clamp(8px, 2vw, 14px);
        bottom: clamp(56px, 8vh, 72px);
    }

    .mp-card {
        width: clamp(160px, 42vw, 240px);
    }

    .mp[data-state="expanded"] {
        left: 0 !important;
        bottom: 0;
    }

    .mp[data-state="expanded"] .mp-card {
        width: min(96vw, 560px);
    }
}

@media (max-width: 480px) {
    .mp {
        left: 8px;
        bottom: 56px;
    }

    .mp-card {
        width: clamp(140px, 44vw, 200px);
    }

    .mp[data-state="expanded"] .mp-card {
        width: calc(100vw - 16px);
    }
}

/* Right-edge pull-out quick action tabs */
.kk,
.kakao-channel-float,
.notify-float {
    --quick-tab-width: 172px;
    --quick-tab-handle: 48px;
    width: var(--quick-tab-width) !important;
    min-width: var(--quick-tab-width) !important;
    max-width: var(--quick-tab-width) !important;
    height: 46px !important;
    right: calc((var(--quick-tab-width) - var(--quick-tab-handle)) * -1) !important;
    left: auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: var(--quick-tab-handle) 1fr !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 0 !important;
    overflow: hidden !important;
    border-radius: 6px 0 0 6px !important;
    border-right: 0 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2) !important;
    transform: none !important;
    transition: right .24s cubic-bezier(.22, .8, .22, 1), bottom .24s cubic-bezier(.22, .8, .22, 1), box-shadow .2s ease, background-color .2s ease !important;
}

.kk:hover,
.kk:focus,
.kk:focus-visible,
.kk:active,
.kakao-channel-float:hover,
.kakao-channel-float:focus,
.kakao-channel-float:focus-visible,
.kakao-channel-float:active,
.notify-float:hover,
.notify-float:focus,
.notify-float:focus-visible,
.notify-float:active {
    right: 0 !important;
    transform: none !important;
    box-shadow:
        -3px 0 0 rgba(147, 197, 253, .16),
        -10px 14px 28px rgba(15, 23, 42, .26) !important;
}

.kk-label,
.notify-label {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    max-width: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    white-space: nowrap !important;
    padding-left: 10px !important;
}

.floating-action-icon {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    justify-self: center !important;
    align-self: center !important;
    border-radius: 4px !important;
    object-fit: contain !important;
}

.ts-inspect-float .floating-action-icon {
    width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
}

@media (max-width: 900px) {

    .kk,
    .kakao-channel-float,
    .notify-float {
        --quick-mobile-bottom: max(0px, env(safe-area-inset-bottom));
        --quick-mobile-height: clamp(56px, 14vw, 64px);
        --quick-mobile-handle: 40px;
        width: calc((100vw - 32px) / 3) !important;
        min-width: 0 !important;
        max-width: none !important;
        height: var(--quick-mobile-height) !important;
        right: auto !important;
        left: auto !important;
        bottom: calc(var(--quick-mobile-bottom) - (var(--quick-mobile-height) - var(--quick-mobile-handle))) !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: var(--quick-mobile-handle) 1fr !important;
        justify-items: center !important;
        align-items: center !important;
        gap: 0 !important;
        overflow: hidden !important;
        border: 1px solid rgba(147, 197, 253, .74) !important;
        border-bottom: 0 !important;
        border-radius: 8px 8px 0 0 !important;
        font-size: .78rem !important;
        line-height: 1.05 !important;
        box-shadow:
            0 -2px 0 rgba(147, 197, 253, .12),
            0 -10px 26px rgba(15, 23, 42, .26) !important;
    }

    .notify-float,
    body.is-checkpoint-active .notify-float,
    #visit:target~.notify-float {
        left: 8px !important;
    }

    .kk,
    body.is-checkpoint-active .kk,
    #visit:target~.kk {
        left: calc(16px + ((100vw - 32px) / 3)) !important;
    }

    .kakao-channel-float,
    body.is-checkpoint-active .kakao-channel-float,
    #visit:target~.kakao-channel-float {
        left: calc(24px + (((100vw - 32px) / 3) * 2)) !important;
    }

    body.is-checkpoint-active .kk,
    body.is-checkpoint-active .kakao-channel-float,
    body.is-checkpoint-active .ts-inspect-float,
    #visit:target~.kk,
    #visit:target~.kakao-channel-float,
    #visit:target~.ts-inspect-float {
        bottom: var(--quick-mobile-bottom) !important;
        display: grid !important;
    }

    body.is-checkpoint-active footer.site-footer,
    body.quick-actions-open footer.site-footer {
        margin-bottom: calc(var(--quick-mobile-height, 64px) + max(0px, env(safe-area-inset-bottom)));
    }

    .kk:hover,
    .kk:focus,
    .kk:focus-visible,
    .kk:active,
    .kakao-channel-float:hover,
    .kakao-channel-float:focus,
    .kakao-channel-float:focus-visible,
    .kakao-channel-float:active,
    .notify-float:hover,
    .notify-float:focus,
    .notify-float:focus-visible,
    .notify-float:active,
    body.quick-actions-open .kk,
    body.quick-actions-open .kakao-channel-float,
    body.quick-actions-open .ts-inspect-float {
        right: auto !important;
        bottom: var(--quick-mobile-bottom) !important;
        transform: none !important;
    }

    .floating-action-icon {
        --icon-sz: clamp(20px, 5.5vw, 25px);
        width: var(--icon-sz) !important;
        height: var(--icon-sz) !important;
        flex-basis: var(--icon-sz) !important;
        flex-shrink: 0 !important;
        grid-row: 1 !important;
        justify-self: center !important;
        align-self: center !important;
        object-fit: contain !important;
    }

    .ts-inspect-float .floating-action-icon {
        --icon-sz: clamp(22px, 6vw, 27px);
        width: var(--icon-sz) !important;
        height: var(--icon-sz) !important;
        flex-basis: var(--icon-sz) !important;
        flex-shrink: 0 !important;
    }

    .kk-label,
    .notify-label {
        grid-row: 2 !important;
        justify-content: center !important;
        padding-left: 0 !important;
        max-width: calc((100vw - 48px) / 3) !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-size: clamp(0.66rem, 2.5vw, 0.74rem) !important;
        line-height: 1.1 !important;
    }
}

/* === Inspection guide replacement from inspection-map.html === */
#guide.inspection-guide-page {
    background: #25509a !important;
    color: var(--tx);
}

#guide.inspection-guide-page .page-scroll {
    align-items: stretch;
    justify-content: flex-start;
}

#guide.inspection-guide-page .inspection-shell {
    width: min(100%, 1480px);
    margin: 0 auto;
    padding-bottom: 0;
}

#guide.inspection-guide-page .inspection-guide-title {
    width: 100%;
    margin: 0 0 clamp(18px, 3vw, 32px);
}

#guide.inspection-guide-page .inspection-guide-title .lab {
    color: #60a5fa;
    font-weight: 900;
    letter-spacing: clamp(3px, .75vw, 9px);
}

#guide.inspection-guide-page .inspection-guide-title h2 {
    font-size: clamp(1.05rem, 3.33vw + 0.4rem, 2.9rem);
    line-height: 1.05;
    letter-spacing: 0;
}

#guide.inspection-guide-page .visual-hero {
    margin-top: 0;
}

/* inspection-map-preview.html | 2026-05-09 complete rebuild */

.preview-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    min-height: 74px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px 5% 12px;
    background: rgba(15, 29, 61, .94);
    border-bottom: 1px solid rgba(148, 163, 184, .14);
    backdrop-filter: blur(20px);
}

.preview-nav .pill {
    justify-self: start;
}

.preview-nav img {
    height: clamp(34px, 4vw, 40px);
    filter: brightness(0) invert(1);
    opacity: .96;
}

.preview-nav .nav-note {
    justify-self: end;
    color: rgba(219, 234, 254, .72);
    font-size: clamp(.68rem, .36vw + .58rem, .82rem);
    font-weight: 800;
    white-space: nowrap;
}

.inspection-preview {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(104px, 10vw, 128px) clamp(22px, 4vw, 64px) clamp(48px, 6vw, 80px);
}

.inspection-shell {
    width: min(100%, 1480px);
    margin: 0 auto;
}

.section-label {
    display: block;
    color: var(--l);
    font-size: clamp(.62rem, .38vw + .57rem, .85rem);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.visual-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
    gap: clamp(16px, 2.5vw, 28px);
    align-items: stretch;
    margin-bottom: 16px;
}

.hero-copy,
.period-calculator,
.summary-card,
.inspection-axis,
.fail-card,
.check-panel,
.notice-card {
    border: 1px solid rgba(148, 163, 184, .16);
    background: rgba(255, 255, 255, .045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 14px 30px rgba(2, 6, 23, .16);
    border-radius: 14px;
}

.hero-copy {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: clamp(24px, 4vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-copy>* {
    position: relative;
    z-index: 1;
}

.hero-copy::after {
    content: "INSPECTION";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 100%;
    color: rgba(191, 219, 254, .055);
    font-size: clamp(2.2rem, 6.6vw, 6rem);
    font-weight: 1000;
    letter-spacing: 0;
    line-height: .8;
    text-align: center;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.hero-copy h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: clamp(2.15rem, 4.4vw, 4.85rem);
    font-weight: 1000;
    letter-spacing: -.055em;
    line-height: 1.03;
}

.hero-copy h1 span {
    display: block;
    background: linear-gradient(135deg, #60a5fa, #bfdbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-copy p {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 18px 0 0;
    color: rgba(226, 232, 240, .82);
    font-size: clamp(.92rem, .52vw + .82rem, 1.15rem);
    font-weight: 650;
    line-height: 1.72;
}

.hero-alert {
    position: relative;
    z-index: 1;
    margin-top: 26px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(37, 99, 235, .12);
    border: 1px solid rgba(147, 197, 253, .2);
    color: #dbeafe;
    font-size: clamp(.84rem, .36vw + .76rem, 1rem);
    font-weight: 850;
    line-height: 1.55;
}

.hero-alert strong {
    color: #fff;
    font-weight: 1000;
}

.number-board {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 14px;
}

.number-main {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 3.5vw, 34px);
    border-radius: 14px;
    border: 1px solid rgba(96, 165, 250, .34);
    background:
        radial-gradient(circle at 80% 0%, rgba(96, 165, 250, .24), transparent 36%),
        linear-gradient(135deg, rgba(30, 58, 138, .64), rgba(37, 99, 235, .22));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 38px rgba(2, 6, 23, .22);
    display: flex;
    flex-direction: column;
}

.number-main small {
    display: block;
    color: #bfdbfe;
    font-size: clamp(.72rem, .4vw + .62rem, .9rem);
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.number-main strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: clamp(5.4rem, 11vw, 10.2rem);
    font-weight: 1000;
    letter-spacing: -.09em;
    line-height: .86;
}

.number-main strong span {
    margin-left: 7px;
    font-size: .28em;
    letter-spacing: -.03em;
    color: #bfdbfe;
}

.number-main p {
    margin: auto 0 0;
    color: rgba(226, 232, 240, .86);
    font-size: clamp(.9rem, .46vw + .8rem, 1.08rem);
    font-weight: 800;
    line-height: 1.55;
}

.number-main mark {
    background: transparent;
    color: #fff;
    font-weight: 1000;
}

.number-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.summary-card {
    min-height: 112px;
    padding: 16px;
}

.summary-card b {
    display: block;
    color: #fff;
    font-size: clamp(1.65rem, 2.4vw, 2.45rem);
    font-weight: 1000;
    letter-spacing: -.06em;
    line-height: 1;
}

.summary-card span {
    display: block;
    margin-top: 8px;
    color: rgba(226, 232, 240, .8);
    font-size: clamp(.72rem, .28vw + .66rem, .86rem);
    font-weight: 850;
    line-height: 1.4;
}

.period-calculator {
    margin: 16px 0;
    padding: clamp(18px, 3vw, 28px);
}

.block-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.block-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.28rem, 1.4vw + 1rem, 2.15rem);
    font-weight: 1000;
    letter-spacing: -.04em;
}

.block-head p {
    margin: 7px 0 0;
    color: rgba(226, 232, 240, .76);
    font-size: clamp(.8rem, .36vw + .72rem, .96rem);
    font-weight: 650;
    line-height: 1.55;
}

.head-badge {
    flex: 0 0 auto;
    padding: 8px 11px;
    border-radius: 8px;
    background: rgba(96, 165, 250, .12);
    border: 1px solid rgba(147, 197, 253, .2);
    color: #bfdbfe;
    font-size: .76rem;
    font-weight: 950;
    white-space: nowrap;
}

.calculator-grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 16px;
    align-items: stretch;
}

.calc-input-card {
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(147, 197, 253, .16);
    background: rgba(15, 29, 61, .42);
}

.calc-input-card label {
    display: block;
    color: #dbeafe;
    font-size: .84rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.date-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.date-row input {
    min-height: 46px;
    width: 100%;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    padding: 0 12px;
    font: inherit;
    font-weight: 800;
    outline: none;
}

.date-row button,
.calc-action,
.calc-reset {
    min-height: 46px;
    border: 0;
    border-radius: 9px;
    padding: 0 14px;
    background: linear-gradient(135deg, var(--p), var(--s));
    color: #fff;
    font-family: inherit;
    font-weight: 950;
    cursor: pointer;
}

.calc-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.calc-action {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(148, 163, 184, .18);
    color: #dbeafe;
}

.calc-reset {
    width: 100%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(148, 163, 184, .18);
    color: #dbeafe;
}

.calc-status {
    margin-top: 14px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(148, 163, 184, .16);
}

.calc-status small {
    display: block;
    color: #93c5fd;
    font-size: .7rem;
    font-weight: 950;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.calc-status strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: clamp(1.12rem, .9vw + .9rem, 1.55rem);
    font-weight: 1000;
    letter-spacing: -.04em;
}

.calc-status p {
    margin: 7px 0 0;
    color: rgba(226, 232, 240, .8);
    font-size: .82rem;
    font-weight: 650;
    line-height: 1.5;
}

.calc-result-card {
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(147, 197, 253, .16);
    background:
        radial-gradient(circle at 100% 0%, rgba(96, 165, 250, .12), transparent 36%),
        rgba(15, 29, 61, .36);
}

.date-output-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.date-output {
    min-height: 96px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(148, 163, 184, .15);
}

.date-output span {
    display: block;
    color: rgba(226, 232, 240, .7);
    font-size: .7rem;
    font-weight: 950;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.date-output strong {
    display: block;
    margin-top: 9px;
    color: #fff;
    font-size: clamp(1.05rem, .82vw + .84rem, 1.48rem);
    font-weight: 1000;
    letter-spacing: -.04em;
    line-height: 1.15;
}

.date-output.expire {
    border-color: rgba(96, 165, 250, .38);
    background: rgba(37, 99, 235, .16);
}

.date-output.end {
    border-color: rgba(248, 113, 113, .34);
    background:
        radial-gradient(circle at 100% 0%, rgba(239, 68, 68, .18), transparent 34%),
        rgba(239, 68, 68, .1);
}

.date-output.end span,
.date-output.end strong {
    color: #fecaca;
}

.period-bar {
    position: relative;
    margin-top: 22px;
    padding-top: 26px;
    padding-bottom: 26px;
}

.period-track {
    height: 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .86);
    border: 1px solid rgba(148, 163, 184, .16);
    overflow: hidden;
}

.period-fill {
    height: 100%;
    width: var(--period-progress, 0%);
    border-radius: inherit;
    background: linear-gradient(90deg, #0E74E4 0%, #8CE347 25%, #FEF23C 50%, #FF8C02 75%, #F53F2E 100%);
    background-size: calc(100vw - 72px) 100%;
    background-position: left center;
    transition: width .5s ease;
}

.period-current {
    position: absolute;
    top: 42px;
    left: var(--period-progress, 0%);
    transform: translateX(-50%);
    display: none;
    gap: 5px;
    justify-items: center;
    color: var(--period-color, #60a5fa);
    font-size: .7rem;
    font-weight: 950;
    white-space: nowrap;
    transition: left .28s ease, color .28s ease;
}

.period-current.is-visible {
    display: grid;
}

.period-current::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 20%, transparent);
}

.period-pin {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    display: grid;
    gap: 8px;
    justify-items: center;
    color: #dbeafe;
    font-size: .7rem;
    font-weight: 950;
    white-space: nowrap;
}

.period-pin::after {
    content: "";
    width: 2px;
    height: 18px;
    border-radius: 999px;
    background: currentColor;
    opacity: .75;
}

.pin-start {
    left: 0%;
}

.pin-mid {
    left: 50%;
    color: #fff;
}

.pin-end {
    left: 100%;
}

.four-axis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.inspection-axis {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 18px 18px 20px;
}

.axis-art {
    position: relative;
    z-index: 1;
    height: 116px;
    margin: -2px -2px 14px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 18% 12%, rgba(191, 219, 254, .24), transparent 35%),
        linear-gradient(135deg, rgba(15, 29, 61, .54), rgba(37, 99, 235, .18));
    border: 1px solid rgba(191, 219, 254, .14);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.axis-art svg {
    width: min(96%, 210px);
    height: 104px;
    display: block;
}

.axis-art img {
    width: min(96%, 210px);
    height: 104px;
    display: block;
    object-fit: contain;
    border-radius: 10px;
}

.axis-art .paper,
.axis-art .plate,
.axis-art .bike-fill,
.axis-art .device,
.axis-art .gauge {
    fill: rgba(219, 234, 254, .94);
}

.axis-art .blue {
    fill: #60a5fa;
}

.axis-art .deep {
    fill: #1e3a8a;
}

.axis-art .dark {
    fill: #0f172a;
}

.axis-art .line {
    fill: none;
    stroke: #bfdbfe;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.axis-art .thin {
    fill: none;
    stroke: rgba(219, 234, 254, .86);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.axis-art .accent {
    fill: #fbbf24;
}

.axis-art .safe {
    fill: #4ade80;
}

.axis-art .warn {
    fill: #f87171;
}

.inspection-axis::before {
    content: attr(data-no);
    position: absolute;
    right: 14px;
    top: 8px;
    color: rgba(191, 219, 254, .075);
    font-size: 4.3rem;
    font-weight: 1000;
    letter-spacing: -.06em;
    line-height: 1;
}

.axis-label {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 4px 8px;
    border-radius: 7px;
    background: rgba(96, 165, 250, .12);
    color: #bfdbfe;
    font-size: .68rem;
    font-weight: 950;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.inspection-axis h3 {
    position: relative;
    z-index: 1;
    margin: 16px 0 8px;
    color: #fff;
    font-size: clamp(1.1rem, .86vw + .9rem, 1.55rem);
    font-weight: 1000;
    letter-spacing: -.035em;
    line-height: 1.25;
}

.inspection-axis p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(226, 232, 240, .78);
    font-size: clamp(.76rem, .24vw + .72rem, .9rem);
    font-weight: 650;
    line-height: 1.58;
}

.axis-points {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
    margin-top: 16px;
}

.axis-points span {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    color: rgba(226, 232, 240, .86);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1.35;
}

.axis-focus-card {
    border: 1px solid rgba(148, 163, 184, .16);
    background: rgba(255, 255, 255, .045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 14px 30px rgba(2, 6, 23, .16);
    border-radius: 14px;
    padding: clamp(14px, 2.2vw, 22px);
}

.axis-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.fail-tabs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.axis-tab {
    min-height: 56px;
    border: 1px solid rgba(147, 197, 253, .18);
    border-radius: 10px;
    background: rgba(255, 255, 255, .055);
    color: rgba(226, 232, 240, .84);
    font-family: inherit;
    font-size: clamp(.78rem, .32vw + .72rem, .95rem);
    font-weight: 950;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.axis-tab:hover,
.axis-tab[aria-selected="true"] {
    transform: translateY(-1px);
    color: #fff;
    border-color: rgba(96, 165, 250, .56);
    background: rgba(37, 99, 235, .22);
}

.axis-detail {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
    gap: clamp(16px, 2.2vw, 26px);
    align-items: stretch;
}

.axis-detail[hidden] {
    display: none;
}

.axis-detail-art {
    min-height: clamp(220px, 25vw, 360px);
    border-radius: 12px;
    border: 1px solid rgba(191, 219, 254, .14);
    background:
        radial-gradient(circle at 16% 10%, rgba(191, 219, 254, .22), transparent 35%),
        linear-gradient(135deg, rgba(15, 29, 61, .52), rgba(37, 99, 235, .2));
    display: grid;
    place-items: center;
    overflow: hidden;
}

.axis-detail-art img {
    width: min(100%, 620px);
    height: 100%;
    max-height: 360px;
    object-fit: contain;
    display: block;
}

.axis-detail-copy {
    padding: clamp(16px, 2.4vw, 26px);
    border-radius: 12px;
    background: rgba(15, 29, 61, .36);
    border: 1px solid rgba(147, 197, 253, .16);
}

.axis-detail-copy h3 {
    margin: 12px 0 10px;
    color: #fff;
    font-size: clamp(1.5rem, 1.7vw + 1rem, 2.45rem);
    font-weight: 1000;
    letter-spacing: -.04em;
}

.axis-detail-copy p {
    margin: 0;
    color: rgba(226, 232, 240, .82);
    font-size: clamp(.9rem, .36vw + .82rem, 1.05rem);
    font-weight: 550;
    line-height: 1.65;
}

.tone-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tone-tag,
.inline-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 8px;
    font-size: .76rem;
    font-weight: 950;
    line-height: 1.15;
}

.inline-tag {
    min-height: 0;
    margin: 0 2px;
    vertical-align: baseline;
}

.tag-info {
    color: #bfdbfe;
    background: rgba(96, 165, 250, .14);
    border: 1px solid rgba(147, 197, 253, .22);
}

.tag-ok {
    color: #bbf7d0;
    background: rgba(34, 197, 94, .14);
    border: 1px solid rgba(74, 222, 128, .22);
}

.tag-warn {
    color: #fde68a;
    background: rgba(251, 191, 36, .14);
    border: 1px solid rgba(251, 191, 36, .24);
}

.tag-danger {
    color: #fecaca;
    background: rgba(239, 68, 68, .14);
    border: 1px solid rgba(248, 113, 113, .24);
}

.axis-focus-list {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.axis-focus-list li {
    padding: 11px 12px;
    border-radius: 10px;
    color: rgba(226, 232, 240, .86);
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(148, 163, 184, .12);
    font-size: clamp(.82rem, .26vw + .76rem, .94rem);
    font-weight: 650;
    line-height: 1.45;
}

.risk-accordion {
    display: grid;
    gap: 10px;
}

.risk-item {
    border: 1px solid rgba(148, 163, 184, .16);
    background: rgba(255, 255, 255, .045);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .18s ease, background .18s ease;
}

.risk-item[open] {
    border-color: rgba(96, 165, 250, .34);
    background: rgba(255, 255, 255, .06);
}

.risk-item summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 16px 18px;
    color: #fff;
    cursor: pointer;
    list-style: none;
}

.risk-item summary::-webkit-details-marker {
    display: none;
}

.risk-rank {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(239, 246, 255, .92);
    color: #1e3a8a;
    font-weight: 1000;
    letter-spacing: -.04em;
}

.risk-title b {
    display: block;
    color: #fff;
    font-size: clamp(1rem, .54vw + .88rem, 1.22rem);
    font-weight: 1000;
    letter-spacing: -.02em;
}

.risk-title span {
    display: block;
    margin-top: 5px;
    color: rgba(226, 232, 240, .68);
    font-size: .8rem;
    font-weight: 700;
}

.risk-toggle {
    color: #bfdbfe;
    font-size: 0;
    font-weight: 950;
}

.risk-toggle::after {
    content: "보기";
    font-size: .82rem;
}

.risk-item[open] .risk-toggle {
    color: #fff;
}

.risk-item[open] .risk-toggle::after {
    content: "접기";
}

.risk-body {
    padding: 0 18px 18px 72px;
}

.risk-body ul {
    list-style: none;
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.risk-body li {
    position: relative;
    padding-left: 14px;
    color: rgba(226, 232, 240, .82);
    font-size: clamp(.82rem, .28vw + .76rem, .95rem);
    font-weight: 550;
    line-height: 1.55;
}

.risk-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fca5a5;
}

.content-section {
    margin-top: 24px;
}

.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.section-title-row h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.2rem, 1.2vw + .95rem, 2rem);
    font-weight: 1000;
    letter-spacing: -.04em;
}

.section-title-row p {
    max-width: 560px;
    margin: 0;
    color: rgba(226, 232, 240, .72);
    font-size: clamp(.78rem, .32vw + .7rem, .94rem);
    font-weight: 650;
    line-height: 1.55;
    text-align: right;
}

.fail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.fail-card {
    padding: 20px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.fail-key {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .92);
    color: #0f1d3d;
    text-align: center;
    box-shadow: 0 10px 22px rgba(2, 6, 23, .16);
}

.fail-key b {
    display: block;
    color: #1E3A8A;
    font-size: clamp(1.55rem, 1.8vw, 2.2rem);
    font-weight: 1000;
    letter-spacing: -.06em;
    line-height: 1;
}

.fail-key span {
    display: block;
    margin-top: 7px;
    color: #334155;
    font-size: .72rem;
    font-weight: 950;
    line-height: 1.25;
}

.fail-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(1rem, .7vw + .86rem, 1.34rem);
    font-weight: 1000;
    letter-spacing: -.03em;
}

.fail-card ul,
.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.fail-card li,
.check-list li {
    position: relative;
    padding-left: 14px;
    color: rgba(226, 232, 240, .82);
    font-size: clamp(.78rem, .26vw + .72rem, .92rem);
    font-weight: 650;
    line-height: 1.52;
}

.fail-card li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #93c5fd;
}

.highlight {
    color: #bfdbfe;
    font-weight: 950;
}

.danger {
    color: #fca5a5;
    font-weight: 950;
}

.check-panel {
    padding: clamp(18px, 3vw, 26px);
}

.check-layout {
    display: grid;
    grid-template-columns: minmax(230px, .42fr) minmax(0, .58fr);
    gap: 18px;
    align-items: stretch;
}

.check-lead {
    padding: 20px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 100% 0%, rgba(96, 165, 250, .18), transparent 38%),
        rgba(37, 99, 235, .13);
    border: 1px solid rgba(147, 197, 253, .22);
}

.check-lead b {
    display: block;
    color: #fff;
    font-size: clamp(3.6rem, 6.4vw, 6.5rem);
    font-weight: 1000;
    letter-spacing: -.08em;
    line-height: .88;
}

.check-lead span {
    display: block;
    margin-top: 12px;
    color: #dbeafe;
    font-size: clamp(.9rem, .52vw + .78rem, 1.1rem);
    font-weight: 900;
    line-height: 1.5;
}

.check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 14px;
}

.notice-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 12px;
    margin-top: 12px;
}

.notice-card {
    padding: 20px;
}

.notice-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(1rem, .72vw + .86rem, 1.4rem);
    font-weight: 1000;
    letter-spacing: -.03em;
}

.notice-card p {
    margin: 0;
    color: rgba(226, 232, 240, .78);
    font-size: clamp(.78rem, .3vw + .72rem, .94rem);
    font-weight: 650;
    line-height: 1.62;
}

.notice-card strong {
    color: #fff;
    font-weight: 1000;
}

.final-copy {
    margin-top: 24px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 14px;
    background: rgba(239, 246, 255, .92);
    color: #0f172a;
    box-shadow: 0 18px 38px rgba(2, 6, 23, .2);
}

.final-copy span {
    display: block;
    color: #2563eb;
    font-size: .76rem;
    font-weight: 1000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.final-copy p {
    margin: 0;
    font-size: clamp(.94rem, .5vw + .84rem, 1.15rem);
    font-weight: 750;
    line-height: 1.7;
}

.preview-footer {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, .14);
    color: rgba(226, 232, 240, .58);
    font-size: .74rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 980px) {
    .preview-nav {
        min-height: 66px;
        padding-top: 14px;
    }

    .preview-nav .nav-note {
        display: none;
    }

    .visual-hero,
    .axis-detail,
    .calculator-grid,
    .check-layout,
    .notice-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: auto;
    }

    .four-axis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fail-grid {
        grid-template-columns: 1fr;
    }

    .section-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-title-row p {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .preview-nav {
        grid-template-columns: 1fr auto 1fr;
    }

    .preview-nav .pill {
        max-width: 120px;
        white-space: normal;
        justify-content: center;
        text-align: center;
        padding: 6px 8px;
        font-size: .58rem;
        line-height: 1.15;
    }

    .inspection-preview {
        padding-left: 18px;
        padding-right: 18px;
    }

    .number-mini-grid,
    .axis-tabs,
    .fail-tabs,
    .date-output-grid,
    .check-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .date-output-grid,
    .check-list {
        grid-template-columns: 1fr;
    }

    .risk-item summary {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .risk-toggle {
        grid-column: 2;
    }

    .risk-body {
        padding-left: 18px;
    }

    .block-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .date-row {
        grid-template-columns: 1fr;
    }

    .fail-card {
        grid-template-columns: 1fr;
    }

    .fail-key {
        min-height: auto;
        align-items: flex-start;
        text-align: left;
    }
}


/* 2026-05-09 patch: keep previous layout, add TS lookup / fee & penalty / required docs */
.number-mini-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lookup-strip {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(147, 197, 253, .2);
    background: rgba(37, 99, 235, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.lookup-copy {
    flex: 1 1 360px;
}

.lookup-strip b {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.lookup-strip p {
    margin: 0;
    color: rgba(226, 232, 240, .82);
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.6;
}

.lookup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(2, 6, 23, .18);
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.lookup-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(2, 6, 23, .24);
}

.quick-info-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.fee-priority {
    margin: 16px 0;
    padding: clamp(18px, 3vw, 28px);
    border-color: rgba(251, 191, 36, .24);
    background:
        radial-gradient(circle at 100% 0%, rgba(251, 191, 36, .14), transparent 32%),
        rgba(255, 255, 255, .05);
}

.fee-priority .fee-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.fee-priority .fee-line {
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    border-color: rgba(251, 191, 36, .18);
}

.fee-line.penalty {
    border-color: rgba(248, 113, 113, .36);
    background:
        radial-gradient(circle at 100% 0%, rgba(239, 68, 68, .18), transparent 34%),
        rgba(239, 68, 68, .12);
}

.fee-line.penalty span,
.fee-line.penalty strong {
    color: #fecaca;
}

.quick-box {
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, .16);
    background: rgba(255, 255, 255, .04);
}

.quick-box h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.quick-box p,
.quick-box li,
.quick-box .fee-note {
    color: rgba(226, 232, 240, .8);
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.62;
}

.quick-box ul {
    margin: 0;
    padding-left: 18px;
}

.quick-box li+li {
    margin-top: 8px;
}

.fee-stack {
    display: grid;
    gap: 10px;
}

.fee-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(148, 163, 184, .14);
}

.fee-line span {
    color: rgba(226, 232, 240, .8);
    font-size: .92rem;
    font-weight: 600;
}

.fee-line strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 1000;
    white-space: nowrap;
}

.fee-note {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(248, 113, 113, .18);
}

.date-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(2, 6, 23, .62);
    backdrop-filter: blur(14px);
}

.date-modal[hidden] {
    display: none;
}

.date-picker {
    width: min(100%, 390px);
    border: 1px solid rgba(147, 197, 253, .24);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0%, rgba(96, 165, 250, .16), transparent 36%),
        #172a5a;
    box-shadow: 0 28px 70px rgba(2, 6, 23, .42);
    padding: 18px;
}

.date-picker-head {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
}

.date-picker-title {
    color: #fff;
    font-size: 1.12rem;
    font-weight: 1000;
    text-align: center;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}

.date-picker-selects {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
    gap: 8px;
}

.date-picker-selects select {
    min-height: 42px;
    width: 100%;
    border: 1px solid rgba(147, 197, 253, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 900;
    padding: 0 10px;
    outline: none;
}

.date-picker-nav,
.date-picker-close,
.date-picker-day {
    border: 0;
    font-family: inherit;
    cursor: pointer;
}

.date-picker-nav {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: #dbeafe;
    font-size: 1.35rem;
    font-weight: 900;
}

.date-picker-week,
.date-picker-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.date-picker-week {
    margin-bottom: 7px;
}

.date-picker-week span {
    color: rgba(219, 234, 254, .62);
    font-size: .72rem;
    font-weight: 900;
    text-align: center;
}

.date-picker-day {
    aspect-ratio: 1;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: rgba(239, 246, 255, .92);
    font-size: .9rem;
    font-weight: 900;
    transition: transform .16s ease, background .16s ease, color .16s ease;
}

.date-picker-day:hover,
.date-picker-day.is-selected {
    transform: translateY(-1px);
    background: #60a5fa;
    color: #0f172a;
}

.date-picker-day.is-today {
    box-shadow: inset 0 0 0 2px rgba(251, 191, 36, .78);
}

.date-picker-day.is-muted {
    opacity: .34;
}

.date-picker-foot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 14px;
}

.date-picker-close {
    min-height: 42px;
    border-radius: 10px;
    padding: 0 14px;
    background: rgba(255, 255, 255, .08);
    color: #dbeafe;
    font-weight: 950;
}

.hero-copy p,
.calc-input-card label,
.calc-status p,
.section-title-row p,
.inspection-axis p,
.axis-points span,
.fail-card li,
.check-list li,
.notice-card p,
.final-copy p {
    font-weight: 500;
}

@media (max-width: 980px) {
    .number-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .fee-priority .fee-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .number-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lookup-strip {
        align-items: stretch;
    }

    .lookup-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .preview-nav {
        min-height: 66px;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 8px;
        padding: 10px 12px;
    }

    .preview-nav a {
        min-width: 0;
        justify-self: center;
    }

    .preview-nav img {
        width: min(258px, 70vw);
        max-height: 34px;
        height: auto;
        object-fit: contain;
    }

    .inspection-preview {
        padding: 84px 12px 28px;
    }

    .visual-hero,
    .number-board,
    .calculator-grid,
    .check-layout,
    .notice-grid {
        gap: 12px;
    }

    .content-section,
    .period-calculator,
    .fee-priority {
        margin-top: 14px;
    }

    .quick-box,
    .period-calculator,
    .fee-priority,
    .axis-focus-card,
    .check-panel,
    .notice-card,
    .final-copy {
        padding: 14px;
        border-radius: 12px;
    }

    .hero-copy,
    .number-main {
        padding: 18px;
        border-radius: 14px;
    }

    .hero-copy h1 {
        font-size: clamp(2.1rem, 12vw, 3.25rem);
    }

    .hero-copy p,
    .hero-alert,
    .block-head p,
    .lookup-strip p,
    .calc-status p,
    .axis-detail-copy p,
    .axis-focus-list li,
    .check-list li,
    .notice-card p,
    .final-copy p {
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .number-main strong {
        font-size: clamp(4.2rem, 21vw, 6.3rem);
    }

    .number-main p {
        margin-top: 10px;
        font-size: .78rem;
        line-height: 1.45;
    }

    .number-mini-grid,
    .axis-tabs,
    .fail-tabs {
        gap: 8px;
    }

    .summary-card {
        min-height: 78px;
        padding: 10px 11px;
        border-radius: 10px;
    }

    .summary-card b {
        font-size: clamp(1.35rem, 8vw, 1.9rem);
        line-height: .95;
    }

    .summary-card span {
        margin-top: 5px;
        font-size: .68rem;
        line-height: 1.32;
    }

    .block-head {
        gap: 8px;
        margin-bottom: 12px;
    }

    .block-head h2 {
        font-size: 1.48rem;
        line-height: 1.08;
    }

    .block-head p {
        margin-top: 6px;
        font-size: .78rem;
        line-height: 1.48;
    }

    .section-label {
        margin-bottom: 8px;
        font-size: .62rem;
        letter-spacing: 2.8px;
    }

    .head-badge {
        padding: 6px 9px;
        border-radius: 8px;
        font-size: .66rem;
    }

    .lookup-strip {
        margin-bottom: 12px;
        padding: 12px;
        gap: 10px;
    }

    .lookup-strip b {
        font-size: .88rem;
    }

    .lookup-strip p {
        font-size: .76rem;
        line-height: 1.45;
    }

    .lookup-btn,
    .date-row button,
    .calc-action,
    .calc-reset {
        min-height: 40px;
        padding: 0 12px;
        border-radius: 9px;
        font-size: .82rem;
    }

    .date-row input {
        min-height: 40px;
        padding: 0 10px;
        font-size: .9rem;
    }

    .calc-input-card,
    .calc-result-card {
        padding: 12px;
        border-radius: 10px;
    }

    .calc-input-card label {
        margin-bottom: 8px;
        font-size: .76rem;
    }

    .calc-status {
        margin-top: 10px;
        padding: 12px;
    }

    .calc-status small,
    .date-output span {
        font-size: .64rem;
        letter-spacing: 1px;
    }

    .calc-status strong {
        font-size: 1.08rem;
        line-height: 1.2;
    }

    .date-output-grid {
        gap: 8px;
    }

    .date-output {
        min-height: 72px;
        padding: 11px 12px;
        border-radius: 10px;
    }

    .date-output strong {
        margin-top: 6px;
        font-size: 1.05rem;
    }

    .period-bar {
        margin-top: 14px;
        padding-top: 20px;
        padding-bottom: 24px;
    }

    .period-track {
        height: 8px;
    }

    .period-current {
        top: 35px;
        font-size: .64rem;
    }

    .period-labels {
        font-size: .62rem;
    }

    .fee-priority .fee-stack {
        gap: 8px;
    }

    .fee-priority .fee-line,
    .fee-line {
        min-height: auto;
        padding: 10px 12px;
        border-radius: 10px;
        gap: 5px;
    }

    .fee-line span {
        font-size: .78rem;
        line-height: 1.25;
    }

    .fee-line strong {
        font-size: .98rem;
    }

    .fee-note {
        margin-top: 10px;
        padding: 10px 12px;
        border-radius: 10px;
        font-size: .78rem;
        line-height: 1.45;
    }

    .axis-tabs,
    .fail-tabs {
        margin-bottom: 12px;
    }

    .axis-tab {
        min-height: 42px;
        border-radius: 9px;
        font-size: .78rem;
        line-height: 1.2;
    }

    .axis-detail {
        gap: 12px;
    }

    .axis-detail-art {
        min-height: 190px;
        border-radius: 10px;
    }

    .axis-detail-art img {
        max-height: 220px;
    }

    .axis-detail-copy {
        padding: 13px;
        border-radius: 10px;
    }

    .tone-row {
        gap: 6px;
        margin-top: 12px;
    }

    .tone-tag,
    .inline-tag {
        min-height: 24px;
        padding: 4px 7px;
        border-radius: 7px;
        font-size: .66rem;
    }

    .axis-detail-copy h3 {
        margin: 9px 0 7px;
        font-size: 1.34rem;
        line-height: 1.08;
    }

    .axis-detail-copy p {
        font-size: .82rem;
        line-height: 1.55;
    }

    .axis-focus-list {
        gap: 7px;
        margin-top: 12px;
    }

    .axis-focus-list li {
        padding: 9px 10px;
        border-radius: 8px;
        font-size: .76rem;
        line-height: 1.42;
    }

    .check-lead {
        padding: 14px;
        border-radius: 10px;
    }

    .check-lead b {
        font-size: 3rem;
    }

    .check-lead span {
        margin-top: 8px;
        font-size: .8rem;
        line-height: 1.42;
    }

    .check-list {
        gap: 7px;
    }

    .check-list li {
        padding-left: 12px;
        font-size: .78rem;
        line-height: 1.45;
    }

    .notice-grid {
        margin-top: 10px;
    }

    .notice-card h3 {
        margin-bottom: 7px;
        font-size: 1.02rem;
    }

    .notice-card p,
    .final-copy p {
        font-size: .8rem;
        line-height: 1.55;
    }

    .date-picker {
        width: min(100%, 350px);
        padding: 14px;
        border-radius: 14px;
    }

    .date-picker-head {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 8px;
    }

    .date-picker-nav,
    .date-picker-close {
        min-height: 38px;
        border-radius: 9px;
    }

    .date-picker-nav {
        width: 38px;
        height: 38px;
    }

    .date-picker-selects select {
        min-height: 38px;
        font-size: .86rem;
    }

    .date-picker-day {
        min-height: 34px;
        border-radius: 8px;
        font-size: .78rem;
    }
}

/* === End inspection guide replacement === */

/* Mobile fixed action clearance: reserve space so bottom floating buttons never cover the footer. */
@media (max-width: 900px) {
    :root {
        --quick-mobile-bottom: max(0px, env(safe-area-inset-bottom));
        --quick-mobile-height: clamp(56px, 14vw, 64px);
        --quick-mobile-handle: 40px;
        --quick-mobile-footer-gap: 0px;
        --quick-mobile-clearance: calc(var(--quick-mobile-handle) + var(--quick-mobile-footer-gap) + var(--quick-mobile-bottom));
        --quick-mobile-lift: calc(var(--quick-mobile-height) - var(--quick-mobile-handle));
        --quick-mobile-footer-pad: calc(10px + var(--quick-mobile-bottom));
    }

    #visit .page-scroll,
    body.standalone-page .page-scroll {
        padding-bottom: 0 !important;
    }

    body:not(.standalone-page) footer.site-footer,
    body.is-checkpoint-active footer.site-footer,
    body.quick-actions-open footer.site-footer {
        position: relative !important;
        bottom: auto !important;
        margin-bottom: 0 !important;
        padding-bottom: var(--quick-mobile-footer-pad) !important;
        transform: translateY(0);
        transition: transform .24s cubic-bezier(.22, .8, .22, 1), margin-bottom .24s cubic-bezier(.22, .8, .22, 1), padding-bottom .24s cubic-bezier(.22, .8, .22, 1) !important;
        will-change: transform;
    }

    body:not(.standalone-page).quick-actions-open footer.site-footer,
    body:not(.standalone-page):has(.kk:hover) footer.site-footer,
    body:not(.standalone-page):has(.kk:focus-visible) footer.site-footer,
    body:not(.standalone-page):has(.kakao-channel-float:hover) footer.site-footer,
    body:not(.standalone-page):has(.kakao-channel-float:focus-visible) footer.site-footer,
    body:not(.standalone-page):has(.ts-inspect-float:hover) footer.site-footer,
    body:not(.standalone-page):has(.ts-inspect-float:focus-visible) footer.site-footer {
        transform: translateY(calc(-1 * var(--quick-mobile-lift)));
    }

    body.standalone-page .page-scroll {
        padding-bottom: 0 !important;
    }

    body.standalone-page footer.site-footer {
        margin-bottom: 0 !important;
        padding-bottom: calc(18px + var(--quick-mobile-bottom)) !important;
        bottom: auto !important;
        transform: none !important;
    }

    #visit.visit-page .visit-shell {
        padding-bottom: 0 !important;
    }

    #visit.visit-page .visit-shell::after {
        content: "";
        display: block;
        flex: 0 0 var(--quick-mobile-clearance);
    }

    body:not(.standalone-page) #visit.visit-page footer.site-footer {
        border-radius: 14px !important;
    }

    body.standalone-page .visit-shell {
        padding-bottom: 0 !important;
    }
}
