:root {
    --bg-primary: #f7f8fb;
    --bg-secondary: #eef2f7;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --text-primary: #111827;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --line: #e2e8f0;
    --line-strong: #cbd5e1;
    --accent: #2563eb;
    --accent-2: #38bdf8;
    --accent-3: #ec4899;
    --neon-blue: #00d4ff;
    --neon-blue-glow: rgba(0, 212, 255, 0.4);
    --neon-gold: #e8c547;
    --neon-gold-glow: rgba(232, 197, 71, 0.4);
    --dark: #0f172a;
    --dark-soft: #111827;
    --gradient-accent: linear-gradient(135deg, #111827 0%, #2563eb 100%);
    --gradient-neon: linear-gradient(90deg, #38bdf8 0%, #2563eb 48%, #ec4899 100%);
    --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
    --shadow-neon-blue:
        0 0 15px var(--neon-blue-glow), 0 0 30px rgba(0, 212, 255, 0.15);
    --radius: 8px;
    --container: 1520px;
    --container-pad: clamp(20px, 3vw, 40px);
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
    --font-kr: "Malgun Gothic", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ease: 0.24s ease;
    --transition-fast: var(--ease);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.mobile-nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button:not(.note-btn):not(.note-color-reset):not(.note-color-select):not(.note-color-select-btn):not(.filter-btn) {
    border: 0;
    background: none;
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p,
h1,
h2,
h3 {
    margin: 0;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bg-particles {
    display: none;
}

/* Header */
.top-bar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1001;
    height: 28px;
    transition: background var(--ease), box-shadow var(--ease), opacity var(--ease), transform var(--ease);
}

.top-bar-inner {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-info,
.top-bar-link {
    font-family: var(--font-kr);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0;
}

.top-bar-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-link {
    padding: 4px 10px;
    border-radius: 6px;
    transition: color var(--ease), background var(--ease);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.24);
    font-size: 0.78rem;
}

.header {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: background var(--ease), box-shadow var(--ease), transform var(--ease), padding var(--ease), top var(--ease);
}

.header>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    flex: 0 0 auto;
    min-width: 0;
}

.logo-text {
    font-family: var(--font-kr);
    font-size: 1.58rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: initial;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.header.scrolled .logo-text {
    color: var(--text-primary);
    text-shadow: none;
}


.footer-brand .logo-text {
    position: relative;
    z-index: 0;
    display: inline-block;
    isolation: isolate;
    font-family: var(--font-kr);
    font-size: 2.45rem;
    font-weight: 700;
    color: #12121a !important;
    -webkit-text-fill-color: #12121a !important;
    -webkit-text-stroke: 0;
    paint-order: normal;
    text-shadow:
        1.15px 0 0 #ffffff,
        -1.15px 0 0 #ffffff,
        0 1.15px 0 #ffffff,
        0 -1.15px 0 #ffffff,
        0.9px 0.9px 0 #ffffff,
        -0.9px 0.9px 0 #ffffff,
        0.9px -0.9px 0 #ffffff,
        -0.9px -0.9px 0 #ffffff;
    letter-spacing: 0.1em;
    line-height: 1.18;
    background: none !important;
}

.footer-brand .logo-text::before {
    content: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link,
.nav-cta {
    font-family: var(--font-kr);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
    transition: color var(--ease), background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: var(--radius);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: none;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.28);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-left: 8px;
    padding: 0 24px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--gradient-accent);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

.home-page .top-bar,
.home-page .header {
    background: transparent;
}

.home-page .header {
    top: 28px;
}

body:not(.custom-neon-page) .top-bar.scrolled {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

body:not(.custom-neon-page) .header.scrolled {
    top: 0;
}

.home-page .top-bar-info,
.home-page .top-bar-link,
.home-page .logo-text,
.home-page .nav-link {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
}

.home-page .footer-brand .logo-text {
    font-family: var(--font-kr);
    font-size: 2.45rem;
    font-weight: 700;
    color: #12121a !important;
    -webkit-text-stroke: 0;
    paint-order: normal;
    text-shadow:
        1.15px 0 0 #ffffff,
        -1.15px 0 0 #ffffff,
        0 1.15px 0 #ffffff,
        0 -1.15px 0 #ffffff,
        0.9px 0.9px 0 #ffffff,
        -0.9px 0.9px 0 #ffffff,
        0.9px -0.9px 0 #ffffff,
        -0.9px -0.9px 0 #ffffff;
    letter-spacing: 0.1em;
    line-height: 1.18;
    background: none;
    -webkit-text-fill-color: #12121a !important;
}

.home-page .top-bar-link:hover,
.home-page .nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.home-page .top-bar.scrolled,
.home-page .header.scrolled,
.gallery-page .top-bar,
.gallery-page .top-bar.scrolled,
.gallery-page .header,
.gallery-page .header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-page .header.scrolled,
.gallery-page .header {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.home-page .top-bar.scrolled .top-bar-info,
.home-page .top-bar.scrolled .top-bar-link,
.home-page .header.scrolled .logo-text,
.home-page .header.scrolled .nav-link,
.gallery-page .top-bar-info,
.gallery-page .top-bar-link,
.gallery-page .logo-text,
.gallery-page .nav-link {
    color: var(--text-primary);
    text-shadow: none;
}

.home-page .top-bar.scrolled .top-bar-divider,
.gallery-page .top-bar-divider {
    color: rgba(15, 23, 42, 0.18);
}

.home-page .top-bar.scrolled .top-bar-link:hover,
.home-page .header.scrolled .nav-link:hover,
.gallery-page .top-bar-link:hover,
.gallery-page .nav-link:hover {
    background: rgba(15, 23, 42, 0.045);
    color: var(--accent);
}

.nav-auth-mobile,
.nav-mobile-search-bar,
.menu-toggle,
.mobile-menu-bar {
    display: none;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.36);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ease), visibility var(--ease);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Desktop dropdown */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
}

.dropdown-icon {
    width: 13px;
    height: 13px;
    display: block;
    flex: 0 0 auto;
    opacity: 0.9;
    stroke-width: 2.4;
    transition: transform var(--ease);
}

.dropdown-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 14px;
    height: 18px;
    margin-left: 0;
    color: currentColor;
    cursor: pointer;
}

.nav-item-dropdown>.nav-link {
    gap: 2px;
}

@media (min-width: 769px) {
    .nav-item-dropdown>.nav-link .dropdown-toggle-btn {
        display: none;
    }

    .nav-item-dropdown>.nav-link {
        gap: 0;
    }
}

.portfolio-dropdown>.nav-link {
    display: inline-flex;
    align-items: center;
}

.mobile-glass-dropdown {
    display: none;
}

.nav-item-dropdown:hover .dropdown-icon,
.nav-item-dropdown:focus-within .dropdown-icon {
    transform: rotate(180deg);
}

.nav-item-dropdown:hover>.nav-link::after,
.nav-item-dropdown:focus-within>.nav-link::after,
.nav-item-dropdown.active>.nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: none;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.18);
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 224px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px) scale(0.98);
    transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
}

.submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

.nav-item-dropdown:hover .submenu,
.nav-item-dropdown:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.submenu-inner {
    position: relative;
    padding: 8px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 22px 60px rgba(15, 23, 42, 0.16),
        0 8px 18px rgba(15, 23, 42, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.95) inset;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.submenu-link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px 0 16px;
    border-bottom: 0;
    border-radius: 10px;
    color: #1f2937;
    font-family: var(--font-kr);
    font-size: 0.93rem;
    font-weight: 650;
    overflow: hidden;
    transition: color var(--ease), background var(--ease), transform var(--ease);
}

.submenu-link+.submenu-link {
    margin-top: 2px;
    border-top: 0;
}

.submenu-link:last-child {
    border-bottom: 0;
}

.submenu-link::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 3px;
    height: 0;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0;
    transform: translateY(-50%);
    transition: height var(--ease), opacity var(--ease);
}

.submenu-bg {
    display: none;
}

.submenu-text {
    position: relative;
    z-index: 1;
}

.submenu-link:hover,
.submenu-link.active {
    color: #0f172a;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), rgba(232, 197, 71, 0.08));
    transform: translateX(2px);
}

.submenu-link:hover::after,
.submenu-link.active::after {
    height: 18px;
    opacity: 1;
}

/* Buttons */
.btn:not(.note-btn):not(.note-color-reset):not(.note-color-select):not(.note-color-select-btn) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-kr);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-blue {
    background: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue-glow);
    text-shadow: 0 0 8px var(--neon-blue-glow);
}

.btn-outline-blue:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: var(--shadow-neon-blue);
    border-color: var(--neon-blue);
    transform: translateY(-3px);
}

.section-view-more .btn-outline-blue {
    color: #1d4ed8;
    border-color: #60a5fa;
    background: transparent;
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.22);
}

.section-view-more .btn-outline-blue:hover {
    color: #ffffff;
    border-color: #2563eb;
    background: #2563eb;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.btn-icon {
    font-size: 1.1rem;
}

body.quote-write-page .section-write .note-editor.note-frame {
    overflow: visible !important;
}

body.quote-write-page .note-editor .note-toolbar .note-color .note-dropdown-menu,
body.quote-write-page .note-editor .note-toolbar .note-color-all .note-dropdown-menu,
body.quote-write-page .note-popover .popover-content .note-color .note-dropdown-menu,
body.quote-write-page .note-popover .popover-content .note-color-all .note-dropdown-menu {
    width: 340px !important;
    min-width: 340px !important;
    max-width: none !important;
    white-space: normal !important;
}

body.quote-write-page .note-dropdown-menu:has(.note-palette) {
    width: 340px !important;
    min-width: 340px !important;
    max-width: none !important;
    white-space: normal !important;
}

body.quote-write-page .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette,
body.quote-write-page .note-editor .note-toolbar .note-color-all .note-dropdown-menu .note-palette,
body.quote-write-page .note-popover .popover-content .note-color .note-dropdown-menu .note-palette,
body.quote-write-page .note-popover .popover-content .note-color-all .note-dropdown-menu .note-palette,
body.quote-write-page .note-dropdown-menu .note-palette {
    display: inline-block !important;
    width: 160px !important;
    min-width: 160px !important;
    margin: 0 5px 0 0 !important;
    vertical-align: top !important;
    float: none !important;
}

body.quote-write-page .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette:last-child,
body.quote-write-page .note-editor .note-toolbar .note-color-all .note-dropdown-menu .note-palette:last-child,
body.quote-write-page .note-popover .popover-content .note-color .note-dropdown-menu .note-palette:last-child,
body.quote-write-page .note-popover .popover-content .note-color-all .note-dropdown-menu .note-palette:last-child,
body.quote-write-page .note-dropdown-menu .note-palette:last-child {
    margin-right: 0 !important;
}

/* Hero slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide picture {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.slide.active img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 10, 15, 0.3) 0%,
            rgba(10, 10, 15, 0.5) 50%,
            rgba(10, 10, 15, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ffffff;
}

.hero-title {
    font-family: var(--font-kr);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-kr);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 0.95rem;
}

.slide .hero-badge,
.slide .hero-title,
.slide .hero-subtitle,
.slide .hero-buttons {
    opacity: 1;
    transform: none;
    transition: none;
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-gold);
    color: var(--neon-gold);
}

#heroSlider .slider-dots {
    display: flex;
    align-items: center;
    gap: 0;
}

#heroSlider .slider-dot {
    width: 28px;
    height: 44px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

#heroSlider .slider-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: none;
    transform: translate(-50%, -50%);
    transition: var(--transition-fast);
}

#heroSlider .slider-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid transparent;
    transform: translate(-50%, -50%);
    transition: var(--transition-fast);
}

#heroSlider .slider-dot.active {
    background: transparent;
    box-shadow: none;
}

#heroSlider .slider-dot.active::before {
    background: var(--neon-gold);
    box-shadow: 0 0 12px var(--neon-gold-glow);
}

#heroSlider .slider-dot.active::after {
    border-color: rgba(232, 197, 71, 0.4);
}

#heroSlider .slider-dot:hover::before,
#heroSlider .slider-dot:focus-visible::before {
    background: rgba(255, 255, 255, 0.45);
}

#heroSlider .slider-dot:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    width: 100%;
    background: var(--neon-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s linear;
    will-change: transform;
}

.slider-progress-bar.animating {
    transition: transform linear;
}

/* Sections */
.section {
    position: relative;
    padding: clamp(72px, 8vw, 112px) 0;
}

.portfolio-premium-section,
.product-grid-section,
.faq-premium-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.process-premium-section {
    background: #f8fafc;
}

.section-header {
    max-width: 820px;
    margin: 0 auto clamp(30px, 4vw, 48px);
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 5px 14px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 999px;
    color: var(--accent);
    background: rgba(37, 99, 235, 0.08);
    font-family: var(--font-kr);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    color: var(--text-primary);
    font-family: var(--font-kr);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.section-desc {
    margin-top: 16px;
    color: var(--text-secondary);
    font-family: var(--font-kr);
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
    font-weight: 400;
    line-height: 1.75;
    word-break: keep-all;
}

/* Cards and grids */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 26px);
}

.portfolio-card,
.product-card,
.glass-neon-card,
.process-card,
.faq-item {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.portfolio-card,
.product-card,
.glass-neon-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    color: var(--text-primary);
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.portfolio-card:hover,
.product-card:hover,
.glass-neon-card:hover,
.portfolio-card:focus-visible,
.product-card:focus-visible,
.glass-neon-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
}

.portfolio-card:focus-visible,
.product-card:focus-visible,
.glass-neon-card:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.22);
    outline-offset: 4px;
}

.portfolio-img-wrap,
.product-img-wrap,
.glass-neon-img-wrap,
.item_photo_box {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e5e7eb;
}

.portfolio-img-wrap img,
.product-img-wrap img,
.glass-neon-card img,
.glass-neon-img-wrap img,
.item_photo_box img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #e5e7eb;
    transition: transform 0.35s ease, opacity var(--ease);
}

.portfolio-img-wrap picture,
.glass-neon-img-wrap picture {
    display: block;
    width: 100%;
    height: 100%;
}

.portfolio-card:hover img,
.product-card:hover img {
    transform: scale(1.04);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.56) 100%);
}

.portfolio-info,
.product-info {
    padding: 16px;
    background: #ffffff;
}

.portfolio-info {
    text-align: center;
}

#about .portfolio-info {
    min-height: 110px;
    padding: 18px 20px 20px;
}

.portfolio-title,
.product-title {
    color: var(--text-primary);
    font-family: var(--font-kr);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.42;
    word-break: keep-all;
}

.portfolio-card:hover .portfolio-title {
    color: #1d4ed8;
}

.portfolio-category {
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 0.86rem;
    font-weight: 600;
}

#about .portfolio-title {
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.36;
}

#about .portfolio-category {
    max-width: 35em;
    margin: 9px auto 0;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.58;
}

.product-grid,
.glass-neon-goods {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 1.8vw, 24px);
    margin-top: clamp(30px, 4vw, 44px);
}

.item_gallery_type {
    --item-gap: clamp(18px, 1.8vw, 24px);
    margin-top: clamp(30px, 4vw, 44px);
}

.item_gallery_type>ul {
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--item-gap) / -2);
}

.item_gallery_type>ul>li {
    min-width: 0;
    padding: calc(var(--item-gap) / 2);
    box-sizing: border-box;
}

#led-neon .item_gallery_type>ul>li {
    width: 25% !important;
}

.item_cont {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-md);
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.item_cont:hover,
.item_cont:focus-within {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
}

.item_photo_box a {
    display: block;
    width: 100%;
    height: 100%;
}

.item_photo_box picture {
    display: block;
    width: 100%;
    height: 100%;
}

.item_cont:hover .item_photo_box img,
.item_cont:focus-within .item_photo_box img {
    transform: scale(1.04);
}

.item_info_cont {
    flex: 1;
    display: flex;
    align-items: flex-start;
    min-height: 132px;
    padding: 16px;
    background: #ffffff;
}

.item_tit_box,
.item_tit_box a {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.item_name_explain {
    display: block;
    margin: 8px 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.65;
    word-break: keep-all;
}

.item_name {
    display: block;
    color: var(--text-primary);
    font-family: var(--font-kr);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.45;
    word-break: keep-all;
    transition: color var(--ease);
}

.item_cont:hover .item_name,
.item_cont:focus-within .item_name {
    color: #1d4ed8;
}

.product-card {
    min-height: 100%;
}

.glass-neon-figure {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}

.glass-neon-caption {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 132px;
    padding: 16px;
    background: #ffffff;
}

.work-photo-grid .product-img-wrap,
.led-neon-grid .product-img-wrap {
    aspect-ratio: 1 / 1;
}

.product-info {
    flex: 1;
    display: flex;
    align-items: center;
}

.led-neon-grid .product-info {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.led-neon-meta {
    display: block;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.item_photo_box img {
    object-fit: cover;
}

.glass-neon-card:hover img {
    opacity: 0.94;
}

.glass-neon-meta {
    display: block;
    margin-top: 8px;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.65;
    word-break: keep-all;
}

.glass-neon-title {
    display: block;
    padding: 0;
    color: var(--text-primary);
    font-family: var(--font-kr);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.45;
    word-break: keep-all;
}

.section-view-more {
    margin-top: clamp(28px, 4vw, 44px);
    text-align: center;
}

/* Color slider */
.sign-gallery-section {
    background: var(--dark-soft);
    overflow: hidden;
}

.sign-gallery-section .section-tag {
    color: #93c5fd;
    border-color: rgba(147, 197, 253, 0.18);
    background: rgba(59, 130, 246, 0.1);
}

.sign-gallery-section .section-title {
    color: #ffffff;
}

.sign-gallery-section .section-desc {
    color: rgba(226, 232, 240, 0.74);
}

.sign-gallery-slider {
    position: relative;
    margin-top: clamp(30px, 4vw, 44px);
    padding-inline: 0;
}

.sign-gallery-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 0 28px;
}

.sign-gallery-viewport::-webkit-scrollbar {
    display: none;
}

.sign-gallery-track {
    display: flex;
    gap: 22px;
}

.sign-gallery-slide {
    flex: 0 0 calc((100% - 66px) / 4);
    min-width: 0;
    scroll-snap-align: start;
}

.sign-gallery-card {
    position: relative;
    display: block;
    height: 342px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #1d2330;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.sign-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.sign-gallery-card picture {
    display: block;
    width: 100%;
    height: 100%;
}

.sign-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 19, 25, 0.02) 20%, rgba(18, 19, 25, 0.82) 100%);
}

.sign-gallery-card:hover img,
.sign-gallery-card:focus-visible img {
    transform: scale(1.04);
}

@media (min-width: 769px) {
    .sign-gallery-card {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .sign-gallery-card img {
        object-fit: cover;
        transition: filter 0.35s ease;
    }

    .sign-gallery-card:hover img,
    .sign-gallery-card:focus-visible img {
        transform: none;
        filter: brightness(1.05);
    }
}

.sign-gallery-card:focus-visible {
    outline: 3px solid rgba(96, 165, 250, 0.42);
    outline-offset: 4px;
}

.sign-gallery-info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
}

.sign-gallery-info h3 {
    color: #ffffff;
    font-family: var(--font-kr);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.35;
}

.sign-color-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.76rem;
    font-weight: 800;
}

.sign-color-chip {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 16px currentColor;
}

.color-warm {
    color: #ffd98a;
    background: #ffd98a;
}

.color-red {
    color: #ff3b30;
    background: #ff3b30;
}

.color-blue {
    color: #4dd7ff;
    background: #4dd7ff;
}

.color-deep-blue {
    color: #2563eb;
    background: #2563eb;
}

.color-sky {
    color: #7dd3fc;
    background: #7dd3fc;
}

.color-pink {
    color: #ff4fab;
    background: #ff4fab;
}

.color-green {
    color: #52f28a;
    background: #52f28a;
}

.color-purple {
    color: #a76cff;
    background: #a76cff;
}

.color-amber {
    color: #ffb02e;
    background: #ffb02e;
}

.color-cool {
    color: #e9f7ff;
    background: #e9f7ff;
}

.color-white {
    color: #ffffff;
    background: #ffffff;
}

.color-yellow {
    color: #ffe066;
    background: #ffe066;
}

.color-mix {
    color: #ff4fab;
    background: linear-gradient(135deg, #ff4fab, #4dd7ff 48%, #52f28a);
}

.sign-slider-nav {
    position: absolute;
    top: 177px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1.5px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    color: #ffffff;
    transform: translateY(-50%);
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.sign-slider-nav:hover,
.sign-slider-nav:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
    transform: translateY(-50%) scale(1.04);
}

.sign-slider-prev {
    left: 14px;
}

.sign-slider-next {
    right: 14px;
}

.sign-slider-nav svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sign-slider-progress {
    width: 170px;
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: auto minmax(70px, 1fr);
    align-items: center;
    gap: 12px;
}

.sign-slider-count {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 800;
}

.sign-slider-count strong {
    color: #ffffff;
    font-size: 1rem;
}

.sign-slider-count span::before {
    content: "/";
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.32);
}

.sign-progress-track {
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.sign-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #ffffff;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.42);
}

/* Process */
.process-premium-section {
    position: relative;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 58%, #ffffff 100%);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 24px);
    max-width: 1360px;
    margin: 0 auto;
}

.process-grid::before {
    display: none;
}

.process-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    min-height: 100%;
    padding: 30px 24px 26px;
    overflow: hidden;
    isolation: isolate;
    text-align: left;
    border: 1px solid rgba(181, 200, 226, 0.78);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
    box-shadow:
        0 22px 52px rgba(15, 23, 42, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    z-index: 2;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0), rgba(37, 99, 235, 0.72), rgba(56, 189, 248, 0.62), rgba(30, 64, 175, 0));
    opacity: 0.9;
}

.process-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 42%);
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.7);
    box-shadow:
        0 28px 64px rgba(15, 23, 42, 0.11),
        0 0 0 1px rgba(191, 219, 254, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.process-step {
    position: absolute;
    top: -18px;
    right: 16px;
    padding: 0;
    border: 0;
    z-index: 0;
    pointer-events: none;
    color: rgba(15, 23, 42, 0.045);
    background: transparent;
    font-size: 3.45rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.process-step::before {
    content: none;
}

.process-card:hover .process-step {
    color: rgba(37, 99, 235, 0.085);
}

.process-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    margin: 24px 0 20px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(147, 197, 253, 0.64);
    border-radius: 18px;
    color: #1d4ed8;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.9));
    box-shadow:
        0 12px 26px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.process-icon svg {
    width: 29px;
    height: 29px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-card:hover .process-icon {
    color: #ffffff;
    border-color: rgba(37, 99, 235, 0.34);
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 58%, #38bdf8 100%);
    box-shadow:
        0 16px 34px rgba(37, 99, 235, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
}

.process-title {
    position: relative;
    z-index: 1;
    color: var(--text-primary);
    font-family: var(--font-kr);
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.4;
}

.process-desc {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    word-break: keep-all;
}

/* FAQ */
.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    transition: border-color var(--ease), box-shadow var(--ease);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(37, 99, 235, 0.18);
}

.faq-item.active {
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.faq-question {
    width: 100%;
    min-height: 68px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-primary);
    text-align: left;
}

.faq-question span {
    font-family: var(--font-kr);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.45;
}

.faq-toggle-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: transform var(--ease);
}

.faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

.faq-item.active .faq-answer {
    max-height: 240px;
}

.faq-answer-inner {
    padding: 0 22px 22px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    word-break: keep-all;
}

.faq-answer strong {
    color: var(--text-primary);
}

/* ============================================
   견적문의 & 가?�견???�션 ??Premium Design
   ============================================ */

/* --- Section backgrounds --- */
.qs-inquiry-section {
    position: relative;
    background: linear-gradient(165deg, #0a0e1a 0%, #0f172a 40%, #111d35 100%);
    overflow: hidden;
}

.qs-virtual-section {
    position: relative;
    background: linear-gradient(165deg, #110a1e 0%, #150d26 40%, #1a0f2e 100%);
    overflow: hidden;
}

/* --- Floating particles --- */
.qs-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.qs-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.16;
}

.qs-particle--a1 {
    width: 380px;
    height: 380px;
    top: -60px;
    right: -40px;
    background: radial-gradient(circle, #3b82f6, transparent 70%);
    animation: qsFloat 12s ease-in-out infinite;
}

.qs-particle--a2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -60px;
    background: radial-gradient(circle, #38bdf8, transparent 70%);
    animation: qsFloat 14s ease-in-out infinite reverse;
}

.qs-particle--b1 {
    width: 380px;
    height: 380px;
    top: -60px;
    left: -40px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    animation: qsFloat 13s ease-in-out infinite;
}

.qs-particle--b2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -60px;
    background: radial-gradient(circle, #ec4899, transparent 70%);
    animation: qsFloat 11s ease-in-out infinite reverse;
}

@keyframes qsFloat {

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

    50% {
        transform: translate(-20px, 15px) scale(1.1);
    }
}

/* --- Layout (2-col) --- */
.qs-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
}

.qs-layout--reverse {
    direction: rtl;
}

.qs-layout--reverse>* {
    direction: ltr;
}

/* --- Tag --- */
.qs-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 5px 14px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 999px;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.1);
    font-family: var(--font-kr);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.qs-tag--purple {
    color: #d8b4fe;
    border-color: rgba(192, 132, 252, 0.22);
    background: rgba(147, 51, 234, 0.1);
}

/* --- Title --- */
.qs-title {
    color: #ffffff;
    font-family: var(--font-kr);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

/* --- Subtitle --- */
.qs-subtitle {
    color: rgba(203, 213, 225, 0.78);
    font-family: var(--font-kr);
    font-size: clamp(0.95rem, 1.3vw, 1.06rem);
    line-height: 1.75;
    margin-bottom: 32px;
    word-break: keep-all;
}

/* --- Features list --- */
.qs-features {
    display: grid;
    gap: 18px;
    margin-bottom: 36px;
}

.qs-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.qs-check {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-top: 2px;
}

.qs-check svg {
    width: 14px;
    height: 14px;
}

.qs-check--blue {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

.qs-check--purple {
    background: rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(192, 132, 252, 0.2);
    color: #c084fc;
}

.qs-feat-text {
    display: grid;
    gap: 3px;
}

.qs-feat-text strong {
    color: #f1f5f9;
    font-family: var(--font-kr);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.4;
}

.qs-feat-text span {
    color: rgba(148, 163, 184, 0.72);
    font-size: 0.84rem;
    line-height: 1.55;
    word-break: keep-all;
}

/* --- CTA group --- */
.qs-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.qs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 32px;
    border-radius: 12px;
    font-family: var(--font-kr);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease;
}

.qs-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.qs-btn:hover svg {
    transform: translateX(5px);
}

.qs-btn--blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
}

.qs-btn--blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.qs-btn--purple {
    background: linear-gradient(135deg, #9333ea, #c084fc);
    box-shadow: 0 8px 28px rgba(147, 51, 234, 0.35);
}

.qs-btn--purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(147, 51, 234, 0.5);
    background: linear-gradient(135deg, #7e22ce, #a855f7);
}

/* --- Trust badge --- */
.qs-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(148, 163, 184, 0.6);
    font-size: 0.82rem;
    font-weight: 600;
}

.qs-trust-badge svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    stroke: rgba(148, 163, 184, 0.45);
}

.qs-trust-badge strong {
    color: rgba(203, 213, 225, 0.82);
}

.qs-trust-badge--purple svg {
    stroke: rgba(192, 132, 252, 0.45);
}

/* --- Visual (image) area --- */
.qs-visual {
    min-width: 0;
}

.qs-img-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.qs-img-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.4);
}

.qs-img-frame--blue {
    border-color: rgba(96, 165, 250, 0.12);
}

.qs-img-frame--purple {
    border-color: rgba(192, 132, 252, 0.12);
}

.qs-img-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.qs-img-frame:hover img {
    transform: scale(1.04);
}

.qs-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.5) 100%);
    pointer-events: none;
}

/* --- Image badge --- */
.qs-img-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #ffffff;
    font-family: var(--font-kr);
    font-size: 0.82rem;
    font-weight: 800;
    z-index: 2;
}

.qs-img-badge svg {
    width: 18px;
    height: 18px;
    stroke: #60a5fa;
}

.qs-img-badge--purple {
    border-color: rgba(192, 132, 252, 0.2);
}

.qs-img-badge--purple svg {
    stroke: #c084fc;
}

/* --- Stat row --- */
.qs-stat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
    padding: 18px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.qs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.qs-stat strong {
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.2;
}

.qs-stat span {
    color: rgba(148, 163, 184, 0.6);
    font-family: var(--font-kr);
    font-size: 0.76rem;
    font-weight: 700;
}

.qs-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    flex: 0 0 1px;
}

.qs-stat-row--purple {
    border-color: rgba(192, 132, 252, 0.08);
}

/* Quote sections refresh */
.qs-inquiry-section {
    position: relative;
    min-height: clamp(620px, 72vh, 820px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.qs-virtual-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e6edf7;
}

.qs-particles {
    display: none;
}

.qs-layout {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: clamp(42px, 6vw, 84px);
}

.qs-inquiry-section .qs-layout {
    display: block;
    max-width: min(1120px, 100%);
}

.qs-inquiry-section .qs-content {
    max-width: 1120px;
}

.qs-layout--reverse {
    direction: ltr;
}

.qs-layout--reverse > * {
    direction: ltr;
}

.qs-content {
    max-width: 650px;
}

.qs-copy-stack,
.qs-panel-stack {
    min-width: 0;
}

.qs-inquiry-section .container {
    position: relative;
    z-index: 2;
}

.qs-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.qs-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.qs-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 7, 12, 0.9) 0%, rgba(8, 10, 16, 0.72) 46%, rgba(8, 10, 16, 0.42) 100%),
        linear-gradient(180deg, rgba(5, 7, 12, 0.14) 0%, rgba(5, 7, 12, 0.62) 100%);
}

.qs-tag,
.qs-tag--purple,
.qs-tag--teal {
    min-height: 28px;
    margin-bottom: 18px;
    padding: 4px 12px;
    border: 1px solid #c7d7ef;
    border-radius: 999px;
    color: #1d4ed8;
    background: #f8fbff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.qs-inquiry-section .qs-tag {
    color: #e5e7eb;
    border-color: rgba(229, 231, 235, 0.26);
    background: rgba(255, 255, 255, 0.08);
}

.qs-tag--teal {
    color: #0f766e;
    border-color: #b8ddd8;
    background: #f6fbfa;
}

.qs-title {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.14;
    letter-spacing: 0;
    word-break: keep-all;
}

.qs-inquiry-section .qs-title {
    color: #ffffff;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.qs-subtitle {
    margin-bottom: 30px;
    color: #475569;
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.78;
}

.qs-inquiry-section .qs-subtitle {
    color: rgba(226, 232, 240, 0.86);
}

.qs-features {
    gap: 0;
    margin-bottom: 32px;
    border-top: 1px solid #e2e8f0;
}

.qs-inquiry-section .qs-features {
    max-width: 660px;
    border-top-color: rgba(226, 232, 240, 0.22);
}

.qs-features li {
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.qs-inquiry-section .qs-features li {
    border-bottom-color: rgba(226, 232, 240, 0.22);
}

.qs-check {
    border-radius: 8px;
    background: #ffffff;
}

.qs-check--blue {
    color: #2563eb;
    border-color: #bfdbfe;
    background: #eff6ff;
}

.qs-inquiry-section .qs-check--blue {
    color: #f8fafc;
    border-color: rgba(229, 231, 235, 0.28);
    background: rgba(255, 255, 255, 0.1);
}

.qs-check--purple,
.qs-check--teal {
    color: #0f766e;
    border-color: #99f6e4;
    background: #f0fdfa;
}

.qs-feat-text strong {
    color: #0f172a;
    font-size: 0.96rem;
}

.qs-inquiry-section .qs-feat-text strong {
    color: #ffffff;
}

.qs-feat-text span {
    color: #64748b;
    font-size: 0.86rem;
}

.qs-inquiry-section .qs-feat-text span {
    color: rgba(203, 213, 225, 0.78);
}

.qs-cta-group {
    gap: 16px;
}

.qs-btn {
    min-height: 56px;
    padding: 0 30px;
    border-radius: 999px;
    letter-spacing: 0;
}

.qs-btn--blue {
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.88);
    background: transparent;
    box-shadow: none;
}

.qs-btn--blue:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.qs-btn-icon {
    color: currentColor;
    font-size: 0.88rem;
    line-height: 1;
}

.qs-btn--purple,
.qs-btn--teal {
    background: linear-gradient(135deg, #0f172a 0%, #0f766e 100%);
    box-shadow: 0 16px 34px rgba(15, 118, 110, 0.22);
}

.qs-btn--purple:hover,
.qs-btn--teal:hover {
    background: linear-gradient(135deg, #111827 0%, #0d9488 100%);
    box-shadow: 0 20px 42px rgba(15, 118, 110, 0.3);
}

.qs-trust-badge {
    max-width: 280px;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.55;
}

.qs-inquiry-section .qs-trust-badge {
    color: rgba(226, 232, 240, 0.76);
}

.qs-visual {
    position: relative;
}

.qs-img-frame {
    border-radius: 8px;
    border: 1px solid #d9e3f0;
    background: #ffffff;
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.qs-img-frame:hover {
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.qs-img-frame--blue,
.qs-img-frame--purple,
.qs-img-frame--teal {
    border-color: #cbd8ea;
}

.qs-img-frame img {
    aspect-ratio: 16 / 10;
}

.qs-img-frame--full {
    height: 100%;
    min-height: 560px;
}

.qs-img-frame--full img {
    height: 100%;
    min-height: inherit;
    aspect-ratio: auto;
    object-position: center;
}

.qs-img-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 42%, rgba(15, 23, 42, 0.34) 100%);
}

.qs-info-panel,
.qs-estimate-panel {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid #dbe5f1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.qs-info-panel--overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.qs-info-panel--inline {
    max-width: 660px;
    margin: -8px 0 30px;
    border-color: rgba(229, 231, 235, 0.18);
    background: rgba(15, 18, 25, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.qs-info-panel strong,
.qs-estimate-panel > span {
    display: block;
    margin-bottom: 12px;
    color: #0f172a;
    font-family: var(--font-kr);
    font-size: 0.92rem;
    font-weight: 900;
}

.qs-inquiry-section .qs-info-panel strong {
    color: #ffffff;
}

.qs-info-grid,
.qs-estimate-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.qs-info-panel--overlay .qs-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qs-info-panel--inline .qs-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qs-info-grid span,
.qs-estimate-steps b {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    background: #f8fafc;
    font-family: var(--font-kr);
    font-size: 0.82rem;
    font-weight: 800;
}

.qs-inquiry-section .qs-info-grid span {
    color: #e2e8f0;
    border-color: rgba(229, 231, 235, 0.16);
    background: rgba(255, 255, 255, 0.09);
}

@media (min-width: 1101px) {
    .qs-inquiry-section {
        min-height: clamp(600px, 66vh, 720px);
    }

    .qs-inquiry-section .container {
        max-width: 1260px;
    }

    .qs-inquiry-section .qs-layout {
        max-width: none;
    }

    .qs-inquiry-section .qs-content {
        display: grid;
        grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.72fr);
        grid-template-areas:
            "copy panel"
            "cta panel";
        column-gap: clamp(64px, 8vw, 118px);
        row-gap: 28px;
        align-items: center;
        max-width: none;
    }

    .qs-inquiry-section .qs-copy-stack {
        grid-area: copy;
        max-width: 690px;
    }

    .qs-inquiry-section .qs-panel-stack {
        grid-area: panel;
        display: grid;
        gap: 12px;
        width: min(100%, 470px);
        justify-self: end;
        align-self: center;
    }

    .qs-inquiry-section .qs-tag {
        margin-bottom: 26px;
    }

    .qs-inquiry-section .qs-title {
        max-width: 720px;
        margin-bottom: 24px;
        font-size: clamp(2.65rem, 3.25vw, 3.45rem);
        white-space: nowrap;
    }

    .qs-inquiry-section .qs-subtitle {
        max-width: 620px;
        margin-bottom: 0;
        font-size: 1.02rem;
        line-height: 1.82;
    }

    .qs-inquiry-section .qs-features {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 10px 0;
        border-top: 0;
        border-radius: 14px;
        background: rgba(8, 12, 20, 0.5);
        box-shadow:
            0 24px 70px rgba(0, 0, 0, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .qs-inquiry-section .qs-features li {
        padding: 18px 22px;
        border-bottom-color: rgba(226, 232, 240, 0.14);
    }

    .qs-inquiry-section .qs-features li:last-child {
        border-bottom: 0;
    }

    .qs-info-panel--inline {
        max-width: none;
        margin: 0;
        border-radius: 14px;
        background: rgba(8, 12, 20, 0.5);
        box-shadow:
            0 24px 70px rgba(0, 0, 0, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .qs-inquiry-section .qs-cta-group {
        grid-area: cta;
        margin-top: 0;
        align-self: start;
    }

    .qs-inquiry-section .qs-btn--blue {
        min-width: 210px;
        min-height: 54px;
        border-color: rgba(255, 255, 255, 0.88);
        box-shadow: none;
    }
}

.qs-estimate-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qs-estimate-steps b {
    justify-content: center;
    color: #0f766e;
    background: #f0fdfa;
    border-color: #ccfbf1;
}

/* Virtual quote builder */
.virtual-builder {
    display: grid;
    grid-template-columns: minmax(420px, 1.06fr) minmax(360px, 0.94fr);
    gap: clamp(42px, 6vw, 76px);
    align-items: center;
}

.virtual-preview {
    padding: 20px;
    border: 1px solid #cbd8ea;
    border-radius: 8px;
    background: #0b1020;
    box-shadow:
        0 26px 70px rgba(15, 23, 42, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.virtual-preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    color: #94a3b8;
    font-family: var(--font-kr);
    font-size: 0.78rem;
    font-weight: 800;
}

.virtual-neon-stage {
    aspect-ratio: 16 / 9;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 44%, rgba(45, 212, 191, 0.18), transparent 42%),
        linear-gradient(135deg, #080c16 0%, #101827 100%);
}

.virtual-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.virtual-neon-text {
    color: #ccfbf1;
    font-family: var(--font-kr);
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-shadow:
        0 0 8px rgba(45, 212, 191, 0.95),
        0 0 22px rgba(45, 212, 191, 0.72),
        0 0 46px rgba(20, 184, 166, 0.42);
}

.virtual-neon-caption {
    color: rgba(226, 232, 240, 0.72);
    font-family: var(--font-kr);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.virtual-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.virtual-option {
    min-height: 72px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.virtual-option span {
    display: block;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.virtual-option strong {
    display: block;
    margin-top: 6px;
    color: #f8fafc;
    font-family: var(--font-kr);
    font-size: 0.88rem;
    font-weight: 900;
}

.qs-virtual-section .qs-title {
    font-size: clamp(2.05rem, 3.4vw, 3.05rem);
}

.qs-virtual-section .qs-features {
    margin-bottom: 28px;
}

.virtual-preview-cta {
    display: none;
}

/* Gallery page */
.gallery-page {
    background: #f8fafc;
}

.gallery-page-header {
    padding-top: 160px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 54%, #f8fafc 100%);
}

.gallery-page .section-header {
    margin-bottom: 36px;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.filter-btn {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: #334155;
    background: #ffffff;
    font-family: var(--font-kr);
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: color var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.filter-btn.active {
    border-color: var(--accent);
    color: #ffffff;
    background: var(--accent);
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.22);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.js-progressive-gallery {
    min-height: 1px;
}

.gallery-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.gallery-item.is-gallery-visible {
    animation: galleryFadeIn 0.32s ease both;
}

.gallery-figure {
    height: 100%;
    margin: 0;
}

.gallery-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--dark);
}

.gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
    transform: scale(1.06);
    filter: brightness(0.72);
}

.gallery-card:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
    padding: 18px;
    opacity: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.72) 100%);
    transition: opacity var(--ease);
}

.gallery-card:hover .gallery-overlay,
.gallery-card:focus-visible .gallery-overlay {
    opacity: 1;
}

.gallery-overlay::before {
    content: attr(data-title);
    color: #ffffff;
    font-family: var(--font-kr);
    font-size: 1rem;
    font-weight: 800;
}

.gallery-overlay::after {
    content: attr(data-tag);
    color: #bfdbfe;
    font-size: 0.75rem;
    font-weight: 700;
}

.gallery-caption {
    min-height: 112px;
    padding: 0;
    background: #ffffff;
}

.gallery-caption-link {
    display: block;
    min-height: 112px;
    padding: 16px 16px 18px;
    color: inherit;
}

.gallery-caption-link:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 4px;
    border-radius: 6px;
}

.gallery-caption strong {
    display: block;
    color: var(--text-primary);
    font-family: var(--font-kr);
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 7px;
    word-break: keep-all;
}

.gallery-caption p {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.58;
    word-break: keep-all;
}

.gallery-scroll-sentinel {
    width: 100%;
    height: 1px;
}

.gallery-noscript {
    margin-top: 24px;
    color: var(--text-secondary);
    text-align: center;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* Footer */
.footer {
    padding: 70px 0 28px;
    background: #12121a;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.3fr) minmax(130px, 0.85fr) minmax(140px, 0.85fr) minmax(260px, 1.05fr);
    column-gap: clamp(36px, 5vw, 82px);
    row-gap: 42px;
    align-items: start;
    padding-bottom: 10px;
}

.footer-brand-desc {
    max-width: 360px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
    line-height: 1.78;
    word-break: keep-all;
}

.footer-heading {
    position: relative;
    margin-bottom: 18px;
    color: #ffffff;
    font-family: var(--font-kr);
    font-size: 1rem;
    font-weight: 900;
}

.footer-heading::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    margin-top: 9px;
    border-radius: 999px;
    background: rgba(232, 197, 71, 0.64);
}

.footer-links {
    display: grid;
    gap: 12px;
}

.footer-link,
.footer-contact-link,
.footer-service-text,
.footer-legal a,
.footer-copyright {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 600;
}

.footer-service-text,
.footer-link {
    display: inline-flex;
    align-items: center;
}

.footer-link {
    transition: color var(--ease), opacity var(--ease), transform var(--ease);
}

.footer-link:hover,
.footer-legal a:hover {
    color: #ffffff;
    opacity: 0.78;
}

.footer-links .footer-link:hover {
    transform: translateX(3px);
}

.footer .ico,
.footer svg,
.footer [stroke],
.footer [fill] {
    color: #ffffff;
    stroke: #ffffff;
}

.footer-contact-label {
    display: none;
}

.footer-contact-link,
.footer-grid>div:last-child .footer-links li:nth-child(3) .footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-height: 34px;
    color: #ffffff;
}

.footer-contact-link::before,
.footer-grid>div:last-child .footer-links li:nth-child(3) .footer-link::before {
    content: "";
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    margin-right: 14px;
    background-color: #ffffff;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transform: translateY(1px);
}

.footer-grid>div:last-child .footer-links li:nth-child(1) .footer-contact-link::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M8.2 5.4l1.3-.4 2 4.1-1.5 1c.8 1.7 2.1 3 3.8 3.8l1-1.5 4.1 2-.4 1.3c-.2.7-.9 1.1-1.6 1C11.8 16.2 7.8 12.2 7.3 7.1c-.1-.8.3-1.5.9-1.7z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M8.2 5.4l1.3-.4 2 4.1-1.5 1c.8 1.7 2.1 3 3.8 3.8l1-1.5 4.1 2-.4 1.3c-.2.7-.9 1.1-1.6 1C11.8 16.2 7.8 12.2 7.3 7.1c-.1-.8.3-1.5.9-1.7z'/%3E%3C/svg%3E");
}

.footer-grid>div:last-child .footer-links li:nth-child(2) .footer-contact-link::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='7' width='14' height='10' rx='2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M6.2 8.8l5.8 4.4 5.8-4.4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='7' width='14' height='10' rx='2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M6.2 8.8l5.8 4.4 5.8-4.4'/%3E%3C/svg%3E");
}

.footer-grid>div:last-child .footer-links li:nth-child(3) .footer-link::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round' d='M12 19s5.4-5 5.4-9.2a5.4 5.4 0 0 0-10.8 0C6.6 14 12 19 12 19z'/%3E%3Ccircle cx='12' cy='9.8' r='1.8' fill='none' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round' d='M12 19s5.4-5 5.4-9.2a5.4 5.4 0 0 0-10.8 0C6.6 14 12 19 12 19z'/%3E%3Ccircle cx='12' cy='9.8' r='1.8' fill='none' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
}

.footer-grid>div:last-child .footer-links li:nth-child(3) .footer-link {
    font-size: 0;
}

.footer-grid>div:last-child .footer-links li:nth-child(3) .footer-link::after {
    content: "대전광역시 중구 오류로 49";
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    line-height: 1;
    word-break: keep-all;
}

.footer-contact-value,
.footer-grid>div:last-child .footer-link {
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    line-height: 1;
    word-break: keep-all;
}

.footer-grid>div:last-child .ico {
    display: none;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 20px;
    line-height: 1.35;
}

.footer-hours .footer-link+br {
    display: none;
}

.footer-hours>.footer-hours-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.35;
}

.footer-hours>.footer-hours-row .ico {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 0;
    color: #e8c547;
    stroke: #e8c547;
}

.footer-hours>.footer-hours-row .ico [stroke] {
    stroke: #e8c547;
}

.footer-hours>.footer-link:first-child::after {
    content: none;
}

.footer-hours>.footer-link[style] {
    margin-top: 0;
    padding-left: 0;
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
}

.footer-hours>.footer-link[style]::before {
    content: none;
}

.footer-hours>.footer-link[style]::after {
    content: none;
}

.footer-hours::after {
    content: none;
}

.footer-hours-note {
    color: rgba(148, 163, 184, 0.82);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-legal {
    display: flex;
    gap: 18px;
}

.footer-mobile {
    display: none;
    text-align: center;
    padding: 0;
    color: #ffffff;
}

.footer-mobile-title {
    position: relative;
    z-index: 0;
    display: inline-block;
    isolation: isolate;
    font-family: var(--font-kr);
    font-size: 2.45rem;
    font-weight: 700;
    color: #12121a;
    -webkit-text-fill-color: #12121a;
    -webkit-text-stroke: 0;
    paint-order: normal;
    text-shadow:
        1.15px 0 0 #ffffff,
        -1.15px 0 0 #ffffff,
        0 1.15px 0 #ffffff,
        0 -1.15px 0 #ffffff,
        0.9px 0.9px 0 #ffffff,
        -0.9px 0.9px 0 #ffffff,
        0.9px -0.9px 0 #ffffff,
        -0.9px -0.9px 0 #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
    line-height: 1.18;
}

.footer-mobile-title::before {
    content: none;
}

.footer-mobile-divider {
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.42), transparent);
    margin: 0 auto 22px;
}

.footer-mobile-info {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.footer-mobile-info p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(1.05rem, 3.7vw, 1.16rem);
    font-weight: 650;
    line-height: 1.58;
    letter-spacing: 0;
}

.footer-mobile-info p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 3.4vw, 1.08rem);
    font-weight: 650;
}

.footer-mobile-info p:first-child {
    color: #ffffff;
    font-size: clamp(1.16rem, 4.3vw, 1.28rem);
    font-weight: 700;
    line-height: 1.55;
}

.footer-mobile-info a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(1.11rem, 4.1vw, 1.25rem);
    font-weight: 800;
    border-bottom: 0;
    padding-bottom: 0;
    transition: var(--transition-fast);
}

.footer-mobile-info p:first-child a {
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
    vertical-align: baseline;
    border-bottom: 0;
    padding-bottom: 0;
    text-decoration: underline;
    text-decoration-color: rgba(250, 204, 21, 0.72);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.footer-mobile-info a:hover {
    color: #ffffff;
    opacity: 0.78;
}

.footer-mobile-hours {
    margin: 16px auto 0;
    padding: 16px 0 0;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    border-bottom: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.91rem;
    font-weight: 600;
    line-height: 1.8;
}

.footer-mobile-copy {
    margin-top: 22px;
    padding-top: 0;
    color: rgba(148, 163, 184, 0.82);
    font-size: 0.78rem;
    letter-spacing: 0;
    opacity: 1;
}

/* Lightbox and misc */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.86);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ease), visibility var(--ease);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.58);
}


.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 1100px) {

    .product-grid,
    .glass-neon-goods,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .item_gallery_type>ul>li {
        width: 50% !important;
    }

    #led-neon .item_gallery_type>ul>li {
        width: 50% !important;
    }

    .process-grid::before {
        display: none;
    }

    .sign-gallery-slide {
        flex-basis: calc((100% - 22px) / 2);
    }

    .qs-layout,
    .qs-layout--reverse {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .qs-layout--reverse {
        direction: ltr;
    }

    .qs-visual {
        max-width: 560px;
    }

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

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .top-bar {
        display: none;
    }

    .header {
        top: 0;
        padding: 20px 0;
        background: transparent;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background var(--ease), box-shadow var(--ease), padding var(--ease);
    }

    .header>.container {
        min-height: auto;
    }

    .home-page .header {
        position: absolute;
        top: 0;
        background: transparent;
    }

    .gallery-page .header {
        background: #ffffff;
    }

    .home-page .header .logo-text,
    .home-page .header .menu-toggle span {
        color: #ffffff;
    }

    .gallery-page .header .logo-text {
        color: var(--text-primary);
    }

    .home-page .header.scrolled {
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 14px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .home-page .header.scrolled .logo-text {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .header.mobile-hidden {
        transform: translateY(-110%);
    }

    body.mobile-nav-open .header {
        z-index: 1200;
        transform: none;
    }

    body.mobile-nav-open .header.mobile-hidden {
        transform: none;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1004;
        width: auto;
        height: auto;
        padding: 8px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .gallery-page .menu-toggle,
    .home-page .header.scrolled .menu-toggle {
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        border-radius: 2px;
        background: #ffffff;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        transition: transform var(--ease), opacity var(--ease), background var(--ease);
    }

    .gallery-page .menu-toggle span {
        background: var(--text-primary);
    }

    .home-page .header.scrolled .menu-toggle span {
        background: #ffffff;
    }

    .menu-toggle.active {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 12px);
        right: 14px;
        z-index: 1204;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .menu-toggle.active span {
        background: var(--text-primary);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: auto;
        z-index: 1202;
        width: min(340px, 88vw);
        height: 100vh;
        height: 100dvh;
        padding: calc(env(safe-area-inset-top, 0px) + 66px) 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        overflow-y: auto;
        background: #ffffff;
        border-left: 1px solid #e5e7eb;
        box-shadow: -24px 0 50px rgba(15, 23, 42, 0.18);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity var(--ease), visibility var(--ease), transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nav-auth-mobile {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 6px;
        padding-bottom: 14px;
        border-bottom: 1px solid #eef0f4;
    }

    .nav-auth-link {
        display: inline-flex;
        min-height: 40px;
        align-items: center;
        justify-content: center;
        border: 1px solid #dfe3ea;
        border-radius: var(--radius);
        color: var(--text-primary);
        background: #ffffff;
        font-size: 0.92rem;
        font-weight: 800;
    }

    .nav-auth-link:last-child {
        color: var(--text-primary);
        border-color: #dfe3ea;
        background: #ffffff;
    }

    .nav-mobile-search-bar {
        position: relative;
        display: flex !important;
        width: 100%;
        margin-bottom: 6px;
        border: 1px solid #dfe3ea;
        border-radius: var(--radius);
        background: #f8fafc;
    }

    .mobile-search-input {
        width: 100%;
        height: 44px;
        padding: 0 46px 0 14px;
        border: 0;
        border-radius: var(--radius);
        background: transparent;
        color: var(--text-primary);
    }

    .mobile-search-btn {
        position: absolute;
        top: 50%;
        right: 6px;
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        border-radius: 6px;
        color: var(--accent);
        background: #ffffff;
        transform: translateY(-50%);
    }

    .nav>.nav-link,
    .nav-item-dropdown>.nav-link {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: 0 12px;
        border: 1px solid #e5e7eb;
        border-radius: var(--radius);
        color: var(--text-primary) !important;
        background: #ffffff;
        text-shadow: none !important;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    }

    .nav>.nav-link:hover,
    .nav-item-dropdown>.nav-link:hover {
        color: var(--accent) !important;
        background: #eff6ff;
        border-color: rgba(37, 99, 235, 0.28);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-item-dropdown {
        width: 100%;
    }

    .submenu {
        position: static;
        width: 100%;
        max-height: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        overflow: hidden;
        transition: max-height 0.28s ease;
    }

    .nav-item-dropdown.active .submenu {
        max-height: 180px;
    }

    .submenu-inner {
        margin-top: 6px;
        box-shadow: none;
        background: #f8fafc;
    }

    .nav-cta {
        width: 100%;
        min-height: 50px;
        margin: auto 0 0;
        border-radius: var(--radius);
    }

    .mobile-menu-bar {
        display: flex;
        justify-content: center;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 999;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        gap: 6px;
        padding: 4px 16px;
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    .mobile-menu-bar.scrolled {
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.1));
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-bar::-webkit-scrollbar {
        display: none;
    }

    .mobile-menu-item {
        font-family: var(--font-kr);
        font-size: 1rem;
        font-weight: 500;
        color: #ffffff;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
        padding: 6px 14px;
        background: transparent;
        transition: color 0.3s ease, text-shadow 0.3s ease;
        flex-shrink: 0;
        letter-spacing: 0.03em;
        position: relative;
        border: none;
    }

    .mobile-menu-item:hover {
        color: #ffffff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 1px 5px rgba(0, 0, 0, 0.8);
    }

    .mobile-menu-item.active {
        color: var(--neon-gold);
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9), 0 0 12px rgba(232, 197, 71, 0.6);
    }

    .mobile-menu-item.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--neon-gold);
        border-radius: 2px;
        box-shadow: 0 0 8px var(--neon-gold), 0 0 12px rgba(232, 197, 71, 0.6);
    }

    .slide-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .slider-controls {
        bottom: 30px;
    }

    .section {
        padding: 58px 0;
    }

    .portfolio-grid,
    .product-grid,
    .glass-neon-goods,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .item_gallery_type {
        --item-gap: 12px;
    }

    .portfolio-info,
    .product-info,
    .item_info_cont,
    .glass-neon-caption {
        min-height: 126px;
        padding: 12px;
    }

    #about .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    #about .portfolio-card:first-child {
        grid-column: 1 / -1;
    }

    #about .portfolio-card:first-child .portfolio-img-wrap {
        aspect-ratio: 16 / 9;
    }

    #glass-neon .glass-neon-goods {
        gap: 8px;
    }

    #led-neon .item_gallery_type {
        --item-gap: 8px;
    }

    #about .portfolio-info {
        min-height: 74px;
        padding: 12px 8px;
    }

    .portfolio-title,
    .product-title,
    .glass-neon-title,
    .item_name {
        font-size: 0.9rem;
    }

    #about .portfolio-title {
        font-size: 0.86rem;
        line-height: 1.35;
    }

    #about .portfolio-category {
        margin-top: 6px;
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .glass-neon-meta,
    .led-neon-meta,
    .item_name_explain {
        padding: 0;
        font-size: 0.76rem;
        line-height: 1.55;
    }

    .item_name_explain,
    .glass-neon-meta,
    .led-neon-meta {
        margin-top: 7px;
        padding: 0;
    }

    .glass-neon-title {
        padding: 0;
        line-height: 1.35;
    }

    .gallery-page-header {
        padding-top: 92px;
    }

    .gallery-caption {
        min-height: 126px;
        padding: 0;
    }

    .gallery-caption-link {
        min-height: 126px;
        padding: 13px;
    }

    .gallery-caption strong {
        font-size: 0.9rem;
    }

    .gallery-caption p {
        font-size: 0.78rem;
    }

    .sign-gallery-slider {
        margin-top: 24px;
        padding-inline: 0;
    }

    .sign-gallery-viewport {
        padding: 4px 4px 14px;
    }

    .sign-gallery-track {
        gap: 12px;
    }

    .sign-gallery-slide {
        flex-basis: 88%;
    }

    .sign-gallery-card {
        height: 260px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    }

    .sign-gallery-card img {
        object-fit: cover;
        transition: none;
    }

    .sign-gallery-card:hover img,
    .sign-gallery-card:focus-visible img {
        transform: none;
        filter: none;
    }

    .sign-gallery-info {
        left: 16px;
        right: 16px;
        bottom: 15px;
    }

    .sign-gallery-info h3 {
        font-size: 1.04rem;
    }

    .sign-color-label {
        gap: 6px;
        margin-bottom: 6px;
        font-size: 0.72rem;
    }

    .sign-slider-nav {
        top: 134px;
        width: 36px;
        height: 36px;
        border-width: 1px;
        border-color: rgba(255, 255, 255, 0.72);
        background: rgba(15, 23, 42, 0.66);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        opacity: 1;
    }

    .sign-slider-nav svg {
        width: 19px;
        height: 19px;
    }

    .sign-slider-prev {
        left: 12px;
    }

    .sign-slider-next {
        right: 12px;
    }

    .sign-slider-progress {
        width: min(170px, 50vw);
        margin: 10px auto 0;
        gap: 10px;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .process-card {
        padding: 24px 18px 22px;
    }

    .process-step {
        top: -10px;
        right: 10px;
        font-size: 2.35rem;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin: 20px 0 16px;
        border-radius: 16px;
    }

    .process-title {
        font-size: 0.94rem;
    }

    .process-desc {
        font-size: 0.78rem;
        line-height: 1.55;
    }

    .faq-question {
        min-height: 62px;
        padding: 0 16px;
    }

    .faq-answer-inner {
        padding: 0 16px 18px;
    }

    .qs-layout,
    .qs-layout--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .virtual-builder {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .qs-layout--reverse {
        direction: ltr;
    }

    .qs-visual {
        max-width: 100%;
    }

    .qs-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .qs-inquiry-section .qs-title {
        font-size: clamp(1.65rem, 5.7vw, 2.05rem);
        line-height: 1.22;
    }

    .qs-inquiry-section {
        min-height: auto;
    }

    .qs-bg-overlay {
        background:
            linear-gradient(90deg, rgba(5, 7, 12, 0.92) 0%, rgba(5, 7, 12, 0.82) 100%),
            linear-gradient(180deg, rgba(5, 7, 12, 0.24) 0%, rgba(5, 7, 12, 0.72) 100%);
    }

    .qs-info-panel--inline {
        margin-bottom: 26px;
        padding: 16px;
    }

    .qs-img-frame {
        border-radius: 8px;
    }

    .qs-img-frame--full {
        height: auto;
        min-height: 0;
    }

    .qs-img-frame--full img {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .qs-info-panel--overlay {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 0;
        border-width: 1px 0 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .qs-layout--reverse .qs-content {
        order: -1;
    }

    .virtual-copy {
        display: contents;
    }

    .virtual-copy .qs-tag {
        order: -4;
        justify-self: center;
    }

    .virtual-copy .qs-title {
        order: -3;
        width: 100%;
    }

    .virtual-preview {
        order: -2;
        padding: 16px;
    }

    .virtual-copy .qs-features {
        order: -1;
        width: 100%;
        margin-bottom: 0;
    }

    .virtual-copy .qs-cta-group {
        display: none;
    }

    .virtual-preview-cta {
        display: flex;
        order: 0;
        width: 100%;
        margin-top: -10px;
    }

    .virtual-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qs-info-grid,
    .qs-estimate-steps {
        grid-template-columns: 1fr;
    }

    .qs-stat-row {
        gap: 16px;
        padding: 14px 16px;
    }

    .qs-stat strong {
        font-size: 1rem;
    }

    .qs-btn {
        width: 100%;
    }

    .qs-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer {
        padding: 40px 0 24px;
    }

    .footer-grid,
    .footer-bottom {
        display: none;
    }

    .footer-mobile {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline: 16px;
    }

    #about .container {
        padding-inline: 6px;
    }

    #glass-neon .container,
    #led-neon .container {
        padding-inline: 6px;
    }

    #about .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    #glass-neon .glass-neon-goods {
        gap: 6px;
    }

    #led-neon .item_gallery_type {
        --item-gap: 6px;
    }

    #about .portfolio-info {
        min-height: 70px;
        padding: 10px 6px;
    }

    #about .portfolio-title {
        font-size: 0.82rem;
    }

    #about .portfolio-category {
        font-size: 0.72rem;
    }

    .qs-inquiry-section .qs-title {
        font-size: clamp(1.48rem, 7vw, 1.78rem);
        line-height: 1.24;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px;
        width: 100%;
        padding: 0 10px;
    }

    .hero-buttons .btn {
        padding: 14px 16px;
        font-size: 0.85rem;
        flex: 1;
        white-space: nowrap;
        min-width: 0;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
    }

    .section-title {
        font-size: clamp(1.75rem, 10vw, 2.45rem);
    }

    .filter-btn {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.82rem;
    }
}

/* Mobile drawer polish */
@media (max-width: 768px) {
    body.mobile-nav-open .nav-overlay {
        background: rgba(15, 23, 42, 0.42);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .menu-toggle,
    .gallery-page .menu-toggle,
    .home-page .header .menu-toggle,
    .home-page .header.scrolled .menu-toggle,
    .menu-toggle.active {
        width: auto;
        height: auto;
        padding: 8px;
        border: 0 !important;
        border-radius: 0;
        background: transparent !important;
        box-shadow: none !important;
        outline: 0;
    }

    .menu-toggle:focus,
    .menu-toggle:focus-visible {
        outline: 0;
        box-shadow: none !important;
    }

    .menu-toggle.active span {
        width: 24px;
        background: #0f172a;
        box-shadow: none;
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: min(360px, 92vw);
        padding: calc(env(safe-area-inset-top, 0px) + 70px) 18px calc(env(safe-area-inset-bottom, 0px) + 20px);
        gap: 0;
        background:
            linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        border-left: 1px solid rgba(203, 213, 225, 0.85);
        box-shadow: -28px 0 70px rgba(15, 23, 42, 0.22);
        overscroll-behavior: contain;
    }

    .nav>.nav-link,
    .nav-item-dropdown,
    .nav-cta {
        flex: 0 0 auto;
    }

    .nav-auth-mobile {
        gap: 10px;
        margin: 0 0 14px;
        padding: 0 0 16px;
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .nav-auth-link {
        min-height: 42px;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 800;
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    }

    .nav-auth-link:first-child {
        color: #0f172a;
        border-color: #dbe3ef;
        background: #ffffff;
    }

    .nav-auth-link:last-child {
        color: #0f172a;
        border-color: #dbe3ef;
        background: #ffffff;
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    }

    .nav-mobile-search-bar {
        min-height: 46px;
        margin: 0 0 14px;
        border-color: #dbe3ef;
        border-radius: 8px;
        background: #f8fafc;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
        overflow: hidden;
    }

    .mobile-search-input {
        height: 46px;
        padding: 0 14px;
        color: #0f172a;
        font-size: 0.94rem;
        font-weight: 600;
    }

    .mobile-search-input::placeholder {
        color: #94a3b8;
    }

    .mobile-search-btn {
        right: 5px;
        width: 36px;
        height: 36px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        color: #2563eb;
        background: #ffffff;
        box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
    }

    .nav>.nav-link,
    .nav-item-dropdown>.nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 54px;
        margin-bottom: 0;
        padding: 0;
        border: 0;
        border-bottom: 1px solid #e5eaf3;
        border-radius: 0;
        color: #0f172a !important;
        background: transparent;
        font-size: 1rem;
        font-weight: 800;
        box-shadow: none;
    }

    .nav-item-dropdown>.nav-link {
        justify-content: space-between;
        gap: 16px;
    }

    .nav>.nav-link:hover,
    .nav-item-dropdown>.nav-link:hover,
    .nav-item-dropdown.active>.nav-link {
        color: #1d4ed8 !important;
        border-bottom-color: #bfdbfe;
        background: transparent;
        box-shadow: none;
    }

    .nav-item-dropdown {
        display: block;
        width: 100%;
        border-bottom: 0;
        margin: 0;
    }

    .portfolio-dropdown {
        display: none;
    }

    .desktop-glass-link {
        display: none !important;
    }

    .mobile-glass-dropdown {
        display: block;
    }

    .nav-item-dropdown::after,
    .nav-item-dropdown:hover>.nav-link::after,
    .nav-item-dropdown:focus-within>.nav-link::after,
    .nav-item-dropdown.active>.nav-link::after {
        content: none;
    }

    .nav-item-dropdown .dropdown-toggle-btn {
        width: 24px;
        height: 24px;
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 0 !important;
        border-radius: 50%;
        color: currentColor;
        justify-content: center;
    }

    .dropdown-icon {
        width: 17px;
        height: 17px;
    }

    .nav-item-dropdown:hover .dropdown-icon,
    .nav-item-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .submenu {
        position: static !important;
        width: 100% !important;
        max-height: 0;
        margin: 0;
        padding: 0;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        transform: none !important;
        overflow: hidden;
        transition: max-height 0.28s ease;
    }

    .submenu::before {
        content: none;
    }

    .nav-item-dropdown.active .submenu {
        max-height: 230px;
    }

    .submenu-inner {
        display: flex;
        flex-direction: column;
        gap: 3px;
        width: 100%;
        margin: 0;
        padding: 0 0 10px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .submenu-link {
        display: block;
        align-items: center;
        min-height: 42px;
        width: 100%;
        margin: 0;
        padding: 12px 20px 12px 34px;
        border: 0;
        border-left: 2px solid #dbe7f6;
        border-radius: 0;
        color: #334155;
        background: #f8fafc;
        font-size: 0.92rem;
        font-weight: 750;
        overflow: visible;
        box-sizing: border-box;
        transition: color var(--ease), background var(--ease), border-color var(--ease);
    }

    .submenu-link:last-child {
        margin-bottom: 0;
    }

    .submenu-link::before {
        content: none;
    }

    .submenu-link::after {
        content: none;
    }

    .submenu-link:hover {
        color: #1d4ed8;
        border-left-color: #2563eb;
        background: #eff6ff;
    }

    .submenu-bg {
        display: none;
    }

    .nav-cta {
        min-height: 52px;
        margin: auto 0 0;
        border-radius: 8px;
        color: #ffffff;
        background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
        box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
        font-size: 0.95rem;
        font-weight: 900;
    }
}

@media (max-width: 768px) {
    .home-page .mobile-menu-bar {
        display: flex;
        background: #ffffff;
        border-bottom-color: #d1d5db;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .home-page .mobile-menu-item {
        color: #0f172a;
        text-shadow: none;
    }

    .home-page .mobile-menu-item:hover,
    .home-page .mobile-menu-item.active {
        color: #0f172a;
        text-shadow: none;
    }

    .home-page .mobile-menu-item.active {
        font-weight: 700;
    }

    .home-page .mobile-menu-item.active::after {
        background: #0f172a;
        box-shadow: none;
    }

    .home-page .mobile-menu-bar.scrolled {
        background: rgba(10, 10, 15, 0.95);
        border-bottom-color: rgba(255, 255, 255, 0.12);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .home-page .mobile-menu-bar.scrolled .mobile-menu-item {
        color: #ffffff;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    }

    .home-page .mobile-menu-bar.scrolled .mobile-menu-item.active {
        color: var(--neon-gold);
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
    }

    .home-page .mobile-menu-bar.scrolled .mobile-menu-item.active::after {
        background: var(--neon-gold);
        box-shadow: 0 0 8px var(--neon-gold);
    }

    body:not(.home-page) .header {
        background: #ffffff !important;
        border-bottom: 1px solid #d1d5db !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    body:not(.home-page) .mobile-menu-bar {
        display: flex;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 999;
        justify-content: center;
        gap: 6px;
        padding: 4px 16px;
        background: #ffffff;
        border-top: 0;
        border-bottom: 1px solid #d1d5db;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body:not(.home-page) .mobile-menu-bar.scrolled {
        top: 0;
        background: rgba(10, 10, 15, 0.95);
        border-top: 0;
        border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.1));
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    body:not(.home-page) .mobile-menu-item {
        flex: 0 0 auto;
        padding: 6px 14px;
        color: #0f172a;
        text-shadow: none;
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.03em;
    }

    body:not(.home-page) .mobile-menu-item:hover {
        color: #0f172a;
        text-shadow: none;
    }

    body:not(.home-page) .mobile-menu-item.active {
        color: #0f172a;
        font-weight: 700;
        text-shadow: none;
    }

    body:not(.home-page) .mobile-menu-bar.scrolled .mobile-menu-item {
        color: #ffffff;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    }

    body:not(.home-page) .mobile-menu-bar.scrolled .mobile-menu-item.active {
        color: var(--neon-gold);
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9), 0 0 12px rgba(232, 197, 71, 0.6);
    }

    body:not(.home-page) .mobile-menu-item.active::after {
        left: 14px;
        right: 14px;
        background: #0f172a;
        box-shadow: none;
    }

    body.gallery-page:not(.home-page) .mobile-menu-bar:not(.scrolled) .mobile-menu-item.active {
        color: #1e3a8a;
    }

    body.gallery-page:not(.home-page) .mobile-menu-bar:not(.scrolled) .mobile-menu-item.active::after {
        background: #1e3a8a;
    }

    body:not(.home-page) .mobile-menu-bar.scrolled .mobile-menu-item.active::after {
        background: var(--neon-gold);
        box-shadow: 0 0 8px var(--neon-gold), 0 0 12px rgba(232, 197, 71, 0.6);
    }

    body.gallery-page:not(.home-page) .gallery-page-header {
        padding-top: 136px !important;
    }
}

/* Quote board page */
body.quote-page {
    background: #f7f8fb;
    color: #0f172a;
}

body.quote-page .bg-particles {
    display: none;
}

body.quote-page .top-bar,
body.quote-page .header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.quote-page .top-bar {
    border-bottom: 0;
    box-shadow: none;
}

body.quote-page .header {
    box-shadow: none;
}

body.quote-page .top-bar-info,
body.quote-page .top-bar-link,
body.quote-page .logo-text,
body.quote-page .nav-link {
    color: #0f172a;
    text-shadow: none;
}

body.quote-page .top-bar-divider {
    color: #d5deea;
}

body.quote-page .top-bar-link:hover,
body.quote-page .nav-link:hover,
body.quote-page .nav-link.active {
    color: #1d4ed8;
}

body.quote-page .nav-link:hover {
    background: #eff6ff;
}

body.quote-page .nav-cta {
    color: #ffffff;
    background: linear-gradient(135deg, #111827 0%, #2563eb 100%);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

body.quote-page .mobile-menu-bar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e2e8f0;
}

body.quote-page .mobile-menu-item {
    color: #334155;
}

body.quote-page .quote-section {
    min-height: calc(100vh - 1px);
    padding: 150px 0 86px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef5ff 46%, #ffffff 100%);
}

body.quote-page .quote-section .container {
    max-width: 1120px;
}

body.quote-page .section-header {
    max-width: 760px;
    margin: 0 auto 34px;
}

body.quote-page .section-tag {
    margin-bottom: 14px;
}

body.quote-page .section-title {
    font-size: clamp(1.65rem, 2.4vw, 2.1rem);
    line-height: 1.25;
}

body.quote-page .quote-list {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

body.quote-page .quote-list::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8 0%, #2563eb 48%, #ec4899 100%);
}

body.quote-page .quote-list-header,
body.quote-page .quote-list-item {
    display: grid;
    grid-template-columns: 64px minmax(190px, 1fr) minmax(180px, 240px) 132px 76px;
    align-items: center;
}

body.quote-page .quote-list-header {
    padding-top: 4px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

body.quote-page .quote-list-header span {
    padding: 19px 16px 17px;
    color: #475569;
    font-family: var(--font-kr);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
}

body.quote-page .quote-list-header .ql-date,
body.quote-page .quote-list-header .ql-views {
    white-space: nowrap;
}

body.quote-page .quote-list-item {
    min-height: 70px;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border-bottom: 1px solid #eef2f7;
    transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

body.quote-page .quote-list-item:last-child {
    border-bottom: 0;
}

body.quote-page .quote-list-item:hover {
    background: #f8fbff;
    box-shadow: inset 4px 0 0 #2563eb;
}

body.quote-page .quote-list-item .ql-num,
body.quote-page .quote-list-item .ql-title,
body.quote-page .quote-list-item .ql-writer,
body.quote-page .quote-list-item .ql-date,
body.quote-page .quote-list-item .ql-views {
    padding: 20px 16px;
}

body.quote-page .quote-list-item .ql-num,
body.quote-page .quote-list-item .ql-writer,
body.quote-page .quote-list-item .ql-date,
body.quote-page .quote-list-item .ql-views {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

body.quote-page .quote-list-item .ql-num {
    color: #94a3b8;
    font-weight: 700;
}

body.quote-page .quote-list-item .ql-title {
    min-width: 0;
    padding-left: 20px;
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.5;
}

body.quote-page .quote-list-item .ql-writer {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.quote-page .quote-list-item .ql-date {
    color: #64748b;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

body.quote-page .quote-list-item:hover .ql-title {
    color: #1d4ed8;
}

body.quote-page .wb-lock-icon {
    color: #64748b;
    opacity: 0.72;
}

body.quote-page .wb-status {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-right: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

body.quote-page .wb-status.notice {
    color: #b91c1c;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

body.quote-page .wb-status.completed {
    color: #0f766e;
    background: #ccfbf1;
    border: 1px solid #99f6e4;
}

body.quote-page .wb-status.in-progress {
    color: #1d4ed8;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
}

body.quote-page .board-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

body.quote-page .btn-write {
    min-height: 50px;
    padding: 0 28px;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #111827 0%, #2563eb 100%);
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

body.quote-page .btn-write:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.28);
}

body.quote-page .pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

body.quote-page .page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    color: #475569;
    background: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    transition: color var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

body.quote-page .page-btn:hover {
    color: #1d4ed8;
    border-color: #93c5fd;
    background: #eff6ff;
}

body.quote-page .page-btn.active {
    color: #ffffff;
    border-color: #2563eb;
    background: #2563eb;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

/* Gallery detail */
body.gallery-detail-page {
    background: #f6f8fb;
}

body.gallery-detail-page .gallery-detail-section {
    padding: 146px 0 76px;
    background: #f6f8fb;
}

body.gallery-detail-page .gallery-detail-container {
    max-width: 1040px;
}

body.gallery-detail-page .gallery-detail-article {
    border-top: 2px solid #111827;
    border-bottom: 1px solid #d9e1ec;
    background: #ffffff;
}

body.gallery-detail-page .gallery-detail-header {
    padding: 36px 34px 0;
}

body.gallery-detail-page .gallery-detail-title {
    color: #0f172a;
    font-family: var(--font-kr);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.36;
    letter-spacing: 0;
    word-break: keep-all;
}

body.gallery-detail-page .gallery-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 24px;
    padding: 17px 0 19px;
    border-top: 1px solid #e5eaf1;
    border-bottom: 1px solid #e5eaf1;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.4;
}

body.gallery-detail-page .gallery-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

body.gallery-detail-page .gallery-detail-meta > span:last-child {
    margin-left: auto;
}

body.gallery-detail-page .gallery-detail-meta-label {
    color: #64748b;
    font-weight: 800;
}

body.gallery-detail-page .gallery-detail-meta strong,
body.gallery-detail-page .gallery-detail-meta time {
    color: #0f172a;
    font-family: var(--font-kr);
    font-size: 0.94rem;
    font-weight: 800;
}

body.gallery-detail-page .gallery-detail-hero {
    margin: 0;
    padding: 34px 34px 0;
    background: #ffffff;
}

body.gallery-detail-page .gallery-detail-hero img {
    display: block;
    width: 100%;
    max-height: 620px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid #e5eaf1;
}

body.gallery-detail-page .gallery-detail-caption {
    max-width: 760px;
    margin: 12px auto 0;
    padding: 0 18px;
    color: #8a94a6;
    font-size: 0.86rem;
    line-height: 1.6;
    text-align: center;
    word-break: keep-all;
}

body.gallery-detail-page .gallery-detail-body {
    min-height: 240px;
    padding: 40px 34px 48px;
}

body.gallery-detail-page .gallery-detail-body p {
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.9;
    word-break: keep-all;
}

body.gallery-detail-page .gallery-detail-body p + p {
    margin-top: 18px;
}

body.gallery-detail-page .gallery-detail-body .post-image {
    margin: 30px 0;
}

body.gallery-detail-page .gallery-detail-body .post-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border: 1px solid #e5eaf1;
    background: #f8fafc;
}

body.gallery-detail-page .gallery-detail-body .post-image figcaption {
    margin-top: 8px;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    body.quote-page .top-bar {
        display: none;
    }

    body.quote-page .header {
        top: 0;
    }

    body.quote-page .menu-toggle span {
        background: #0f172a;
        box-shadow: none;
    }

    body.quote-page .mobile-menu-bar {
        display: flex;
    }

    body.quote-page .mobile-menu-bar,
    body.quote-page .mobile-menu-bar:not(.scrolled) {
        background: #ffffff;
        border-top: 0;
        border-bottom: 1px solid #d1d5db;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.quote-page .mobile-menu-item {
        color: #0f172a;
        text-shadow: none;
    }

    body.quote-page .mobile-menu-item.active {
        color: #0f172a;
        font-weight: 700;
        text-shadow: none;
    }

    body.quote-page .mobile-menu-bar.scrolled {
        background: rgba(10, 10, 15, 0.95);
        border-top: 0;
        border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.1));
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    body.quote-page .mobile-menu-bar.scrolled .mobile-menu-item {
        color: #ffffff;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    }

    body.quote-page .mobile-menu-bar.scrolled .mobile-menu-item.active {
        color: var(--neon-gold);
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9), 0 0 12px rgba(232, 197, 71, 0.6);
    }

    body.quote-page .quote-section {
        padding: 136px 0 58px;
        background: #0a0a0f;
    }

    body.quote-page .quote-section .section-header {
        position: static;
        order: 1;
        width: auto;
        height: auto;
        margin: 0 0 24px;
        padding: 0;
        overflow: visible;
        clip-path: none;
        white-space: normal;
        border: 0;
        text-align: center;
    }

    body.quote-page .quote-section .section-tag,
    body.quote-page .quote-section .section-desc {
        display: block;
    }

    body.quote-page .quote-section .section-tag {
        display: inline-block;
        min-height: 0;
        margin-bottom: 16px;
        padding: 0;
        border: 0;
        border-radius: 0;
        color: var(--neon-gold);
        background: transparent;
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }

    body.quote-page .quote-section .section-tag::before,
    body.quote-page .quote-section .section-tag::after {
        content: "\2014";
        margin: 0 12px;
        color: rgba(255, 255, 255, 0.34);
    }

    body.quote-page .quote-section .section-desc {
        max-width: 600px;
        margin: 0 auto;
        color: #a0a0b8;
        font-size: 1.05rem;
        line-height: 1.8;
    }

    body.quote-page .quote-section .section-title {
        margin: 0 0 16px;
        color: #f0f0f5;
        font-size: clamp(1.5rem, 5vw, 1.8rem);
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 0;
    }

    body.quote-page .quote-section .container {
        display: flex;
        flex-direction: column;
        padding-left: 16px;
        padding-right: 16px;
    }

    body.quote-page .board-toolbar {
        order: 2;
        width: 100%;
        margin: 0 0 20px;
        justify-content: center !important;
    }

    body.quote-page .board-toolbar .btn.btn-primary.btn-write {
        width: 100%;
        height: auto;
        min-height: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px;
        border: 1px solid #ffffff !important;
        border-radius: 6px;
        box-sizing: border-box;
        color: #ffffff !important;
        background: transparent !important;
        background-image: none !important;
        box-shadow: none !important;
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: 0;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    body.quote-page .board-toolbar .btn.btn-primary.btn-write:hover,
    body.quote-page .board-toolbar .btn.btn-primary.btn-write:active {
        color: #000000 !important;
        background: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15) !important;
    }

    body.quote-page .board-toolbar .btn.btn-primary.btn-write .btn-icon {
        display: none;
    }

    body.quote-page .quote-list {
        order: 3;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    body.quote-page .quote-list::before,
    body.quote-page .quote-list-header {
        display: none;
    }

    body.quote-page .quote-list-item {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        min-height: 0;
        margin-bottom: 10px;
        padding: 20px 20px 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-left: 3px solid var(--neon-gold);
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(18, 18, 32, 0.95) 100%);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    body.quote-page .quote-list-item:hover,
    body.quote-page .quote-list-item:active {
        transform: translateY(-2px);
        border-color: rgba(232, 197, 71, 0.3);
        border-left-color: var(--neon-gold);
        background: linear-gradient(135deg, rgba(30, 30, 52, 0.9) 0%, rgba(22, 22, 38, 0.98) 100%);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 20px rgba(232, 197, 71, 0.06);
    }

    body.quote-page .quote-list-item:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 0;
    }

    body.quote-page .quote-list-item .ql-num {
        display: none;
    }

    body.quote-page .quote-list-item .ql-title,
    body.quote-page .quote-list-item .ql-writer,
    body.quote-page .quote-list-item .ql-date,
    body.quote-page .quote-list-item .ql-views {
        padding: 0;
        text-align: left;
    }

    body.quote-page .quote-list-item .ql-title {
        display: block;
        width: 100%;
        margin-bottom: 12px;
        padding-left: 0;
        order: 1;
        color: #f0f0f5;
        font-size: 0.98rem;
        font-weight: 600;
        line-height: 1.6;
        letter-spacing: -0.01em;
    }

    body.quote-page .quote-list-item .ql-writer,
    body.quote-page .quote-list-item .ql-date,
    body.quote-page .quote-list-item .ql-views {
        display: inline;
        order: 2;
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.78rem;
        font-weight: 400;
        line-height: 1;
    }

    body.quote-page .quote-list-item .ql-writer {
        color: rgba(255, 255, 255, 0.55);
        font-weight: 500;
    }

    body.quote-page .quote-list-item .ql-views {
        white-space: nowrap;
    }

    body.quote-page .wb-status {
        min-height: 32px;
        margin-right: 10px;
        padding: 4px 12px;
        border: 2px solid currentColor;
        background: #ffffff;
        font-size: 0.86rem;
    }

    body.quote-page .wb-status.notice {
        color: #d35653;
        background: #ffffff;
        border-color: currentColor;
    }

    body.quote-page .wb-status.completed {
        color: #238564;
        background: #ffffff;
        border-color: currentColor;
    }

    body.quote-page .pagination {
        order: 4;
    }

    body.quote-page .pagination .page-btn.active {
        color: #ffffff;
        border-color: #2563eb;
        background: #2563eb;
        box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
    }

    body.quote-page .section-title {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }

    body.quote-page .quote-section {
        background: #ffffff;
    }

    body.quote-page .quote-section .section-header {
        margin-bottom: 24px;
        text-align: center;
    }

    body.quote-page .quote-section .section-tag {
        display: inline-block;
        margin-bottom: 16px;
        color: var(--neon-gold);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }

    body.quote-page .quote-section .section-tag::before,
    body.quote-page .quote-section .section-tag::after {
        content: "\2014";
        margin: 0 12px;
        color: #94a3b8;
    }

    body.quote-page .quote-section .section-title {
        margin: 0 0 16px;
        color: #111827;
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 0;
    }

    body.quote-page .quote-section .section-desc {
        display: block;
        max-width: 600px;
        margin: 0 auto;
        color: #475569;
        font-size: 1.05rem;
        line-height: 1.8;
    }

    body.quote-page .board-toolbar {
        margin: 0 0 20px;
        justify-content: center !important;
    }

    body.quote-page .board-toolbar .btn.btn-primary.btn-write {
        width: 100%;
        padding: 14px;
        border: 1px solid #111111 !important;
        border-radius: 6px;
        color: #111111 !important;
        background: transparent !important;
        background-image: none !important;
        box-shadow: none !important;
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: 0;
    }

    body.quote-page .board-toolbar .btn.btn-primary.btn-write:hover,
    body.quote-page .board-toolbar .btn.btn-primary.btn-write:active {
        color: #ffffff !important;
        background: #111111 !important;
        box-shadow: 0 6px 20px rgba(17, 17, 17, 0.12) !important;
    }

    body.quote-page .quote-list-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        min-height: 0;
        margin-bottom: 14px;
        padding: 24px 18px 22px;
        border: 0;
        border-radius: 0;
        background: #ffffff;
        box-shadow: 0 5px 14px rgba(15, 23, 42, 0.05);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.quote-page .quote-list-item:hover,
    body.quote-page .quote-list-item:active {
        transform: none;
        border: 0;
        background: #ffffff;
        box-shadow: 0 5px 14px rgba(15, 23, 42, 0.05);
    }

    body.quote-page .quote-list-item:last-child {
        border-bottom: 0;
        margin-bottom: 0;
    }

    body.quote-page .quote-list-item .ql-title {
        order: 0;
        display: block;
        width: 100%;
        margin-bottom: 18px;
        padding-left: 0;
        color: #303030;
        font-size: 1.13rem;
        font-weight: 900;
        line-height: 1.55;
        letter-spacing: 0;
    }

    body.quote-page .quote-list-item .ql-writer,
    body.quote-page .quote-list-item .ql-date,
    body.quote-page .quote-list-item .ql-views {
        order: 0;
        display: inline;
        color: #777777;
        font-size: 0.92rem;
        font-weight: 800;
        line-height: 1.45;
    }

    body.quote-page .quote-list-item .ql-writer::after,
    body.quote-page .quote-list-item .ql-date::after {
        content: " | ";
        margin: 0 5px;
        color: #777777;
        font-weight: 400;
    }

    body.quote-page .wb-lock-icon {
        margin: 0 6px 0 4px;
        color: #303030;
        font-size: 1rem;
        opacity: 1;
    }

    body.quote-page .quote-list-item .ql-views::before {
        content: "\00C870\00D68C\00C218 : ";
        color: #777777;
    }

    body.gallery-detail-page .gallery-detail-section {
        padding: 136px 0 48px;
    }

    body.gallery-detail-page .gallery-detail-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    body.gallery-detail-page .gallery-detail-header {
        padding: 26px 18px 0;
    }

    body.gallery-detail-page .gallery-detail-title {
        font-size: 1.48rem;
        line-height: 1.34;
    }

    body.gallery-detail-page .gallery-detail-meta {
        gap: 8px 16px;
        margin-top: 18px;
        padding: 14px 0 16px;
        font-size: 0.82rem;
    }

    body.gallery-detail-page .gallery-detail-meta strong,
    body.gallery-detail-page .gallery-detail-meta time {
        font-size: 0.84rem;
    }

    body.gallery-detail-page .gallery-detail-hero {
        padding: 24px 18px 0;
    }

    body.gallery-detail-page .gallery-detail-caption {
        margin-top: 10px;
        padding: 0 10px;
        font-size: 0.78rem;
        line-height: 1.62;
    }

    body.gallery-detail-page .gallery-detail-body {
        padding: 30px 18px 34px;
    }

    body.gallery-detail-page .gallery-detail-body p {
        font-size: 0.92rem;
        line-height: 1.82;
    }

}

/* Premium process cards on the home intro section */
#about.portfolio-premium-section {
    background:
        radial-gradient(circle at 15% 18%, rgba(37, 99, 235, 0.08), transparent 32%),
        radial-gradient(circle at 86% 12%, rgba(232, 197, 71, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

#about .portfolio-grid {
    counter-reset: portfolio-step;
    gap: clamp(20px, 2.2vw, 32px);
}

#about .portfolio-card {
    position: relative;
    isolation: isolate;
    min-height: 0;
    aspect-ratio: 4 / 3;
    counter-increment: portfolio-step;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    background: #0f172a;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.13);
}

#about .portfolio-card::before {
    content: counter(portfolio-step, decimal-leading-zero);
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.46);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#about .portfolio-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    pointer-events: none;
}

#about .portfolio-card:hover,
#about .portfolio-card:focus-visible {
    transform: translateY(-8px);
    border-color: rgba(232, 197, 71, 0.34);
    box-shadow: 0 30px 72px rgba(15, 23, 42, 0.18);
}

#about .portfolio-img-wrap {
    aspect-ratio: 4 / 3;
    min-height: 0;
    background: #0f172a;
}

#about .portfolio-img-wrap img {
    object-fit: fill;
    filter: saturate(0.96) contrast(1.04);
    transition: transform 0.55s ease, filter 0.55s ease;
}

#about .portfolio-card:hover img,
#about .portfolio-card:focus-visible img {
    transform: none;
    filter: saturate(1.05) contrast(1.06);
}

#about .portfolio-overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 13, 24, 0.04) 0%, rgba(8, 13, 24, 0.08) 38%, rgba(8, 13, 24, 0.88) 100%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.22), transparent 48%, rgba(15, 23, 42, 0.16));
}

#about .portfolio-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    min-height: 0;
    padding: 0 28px 30px;
    text-align: left;
    background: transparent;
}

#about .portfolio-title {
    position: relative;
    display: inline-block;
    padding-top: 18px;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.35;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

#about .portfolio-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--neon-gold);
    box-shadow: 0 0 12px rgba(232, 197, 71, 0.42);
}

#about .portfolio-card:hover .portfolio-title {
    color: #ffffff;
}

#about .portfolio-category {
    max-width: 30em;
    margin: 10px 0 0;
    color: rgba(241, 245, 249, 0.82);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.68;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

@media (max-width: 768px) {
    #about .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #about .portfolio-card:first-child {
        grid-column: auto;
    }

    #about .portfolio-card,
    #about .portfolio-img-wrap,
    #about .portfolio-card:first-child .portfolio-img-wrap {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    #about .portfolio-card::before {
        top: 12px;
        left: 12px;
        width: 34px;
        height: 34px;
        font-size: 0.68rem;
    }

    #about .portfolio-info {
        min-height: 0;
        padding: 0 16px 18px;
    }

    #about .portfolio-title {
        font-size: 0.92rem;
        line-height: 1.34;
    }

    #about .portfolio-category {
        margin-top: 7px;
        font-size: 0.74rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    #about .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    #about .portfolio-card,
    #about .portfolio-img-wrap,
    #about .portfolio-card:first-child .portfolio-img-wrap {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
}

/* Keep footer logo visible on pages that restyle the header logo. */
.footer .footer-brand .logo-text,
.footer .footer-mobile-title {
    position: relative !important;
    z-index: 0 !important;
    display: inline-block !important;
    isolation: isolate !important;
    font-family: var(--font-kr) !important;
    font-weight: 700 !important;
    color: #12121a !important;
    -webkit-text-fill-color: #12121a !important;
    -webkit-text-stroke: 0 !important;
    paint-order: normal !important;
    text-shadow:
        1.15px 0 0 #ffffff,
        -1.15px 0 0 #ffffff,
        0 1.15px 0 #ffffff,
        0 -1.15px 0 #ffffff,
        0.9px 0.9px 0 #ffffff,
        -0.9px 0.9px 0 #ffffff,
        0.9px -0.9px 0 #ffffff,
        -0.9px -0.9px 0 #ffffff !important;
    letter-spacing: 0.1em !important;
    line-height: 1.18 !important;
    background: none !important;
}

.footer .footer-brand .logo-text {
    font-size: 2.45rem !important;
}

.footer .footer-mobile-title {
    font-size: 2.45rem !important;
}

.footer .footer-brand .logo-text::before,
.footer .footer-mobile-title::before {
    content: none !important;
}

/* Glass neon and LED neon frame comparison */
.frame-comparison-section {
    border-top: 1px solid #e7e9ee;
    border-bottom: 1px solid #e7e9ee;
    background: #ffffff;
}

.frame-comparison-section .section-header {
    max-width: 760px;
}

.frame-comparison-section .section-title {
    word-break: keep-all;
}

.frame-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 42px);
}

.frame-comparison-figure {
    min-width: 0;
    margin: 0;
}

.frame-comparison-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 8px;
    background: #0c0f16;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.frame-comparison-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: inherit;
    pointer-events: none;
}

.frame-comparison-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.frame-comparison-caption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 2px 0;
}

.frame-comparison-caption h3 {
    color: var(--text-primary);
    font-family: var(--font-kr);
    font-size: clamp(1.08rem, 1.7vw, 1.32rem);
    font-weight: 900;
    line-height: 1.35;
}

.frame-comparison-caption p {
    position: relative;
    flex: 0 0 auto;
    padding-left: 16px;
    color: var(--text-secondary);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.4;
}

.frame-comparison-caption p::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--neon-gold);
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .frame-comparison-section .section-desc br {
        display: none;
    }

    .frame-comparison-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .frame-comparison-caption {
        gap: 12px;
        padding-top: 14px;
    }

    .frame-comparison-caption h3 {
        font-size: 1.04rem;
    }

    .frame-comparison-caption p {
        font-size: 0.84rem;
    }
}

@media (max-width: 380px) {
    .frame-comparison-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

@media (min-width: 769px) {
    .nav-link.active,
    .nav-item-dropdown.active>.nav-link {
        color: #0f172a !important;
        background: transparent !important;
    }

    .nav-link.active::after,
    .nav-item-dropdown.active>.nav-link::after {
        content: "";
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 3px;
        height: 2px;
        border-radius: 999px;
        background: #0f172a;
        box-shadow: none;
        transform: none;
    }
}
