/* ==========================================================================
   닥터 픽셀 사이트 공통 스타일
   - 다크 + 네온 레트로 무드의 모던 기업 사이트
   - 채팅 위젯 스타일은 styles.css 참조
   ========================================================================== */

:root {
    --bg: #0a0a14;
    --bg-soft: #10101f;
    --bg-card: #14142a;
    --line: rgba(255, 255, 255, 0.08);
    --neon-cyan: #00e5ff;
    --neon-magenta: #ff2ea6;
    --neon-purple: #8b5cf6;
    --neon-yellow: #ffd60a;
    --text: #f1f5f9;
    --text-dim: #94a3b8;
    --radius: 18px;
    --font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', Roboto, sans-serif;
    --font-pixel: 'Press Start 2P', 'DungGeunMo', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

section { padding: 110px 0; }

/* ===== 스크롤 등장 애니메이션 ===== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== 헤더 ===== */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    background: rgba(10, 10, 20, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    height: 68px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    white-space: nowrap;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #05050f;
    font-family: var(--font-pixel);
    font-size: 10px;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
}
.brand-text small {
    display: block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.site-nav {
    display: flex;
    gap: 4px;
    margin-left: auto;
}
.nav-link {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dim);
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.nav-link.active {
    color: var(--neon-cyan);
    background: rgba(0, 229, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.25);
}

.auth-area {
    display: flex;
    align-items: center;
    gap: 8px;
}
.auth-user { font-size: 13.5px; color: var(--text-dim); white-space: nowrap; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
}
.nav-burger span {
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
}

@media (max-width: 960px) {
    .site-nav {
        display: none;
        position: fixed;
        top: 68px; left: 0; right: 0;
        flex-direction: column;
        background: rgba(10, 10, 20, 0.97);
        border-bottom: 1px solid var(--line);
        padding: 16px 24px 24px;
        gap: 6px;
    }
    .site-nav.open { display: flex; }
    .nav-link { padding: 12px 16px; font-size: 16px; }
    .nav-burger { display: flex; }
    .auth-area { margin-left: auto; }
}

/* ===== 버튼 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #05050f;
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(0, 229, 255, 0.5); }

.btn-neon {
    background: transparent;
    color: var(--neon-cyan);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: inset 0 0 0 0 rgba(0, 229, 255, 0.12);
}
.btn-neon:hover { background: rgba(0, 229, 255, 0.1); }

.btn-ghost {
    background: transparent;
    color: var(--text-dim);
    border-color: var(--line);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ===== 히어로 ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 120px;
    background:
        linear-gradient(180deg, rgba(10, 10, 20, 0.55) 0%, rgba(10, 10, 20, 0.82) 70%, var(--bg) 100%),
        url('assets/img/hero-arcade.jpg') center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 50% at 20% 30%, rgba(0, 229, 255, 0.14), transparent 70%),
        radial-gradient(50% 45% at 80% 65%, rgba(255, 46, 166, 0.12), transparent 70%);
    pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--neon-cyan);
    text-transform: uppercase;
    margin-bottom: 26px;
}
.hero-eyebrow::before {
    content: '';
    width: 34px; height: 2px;
    background: var(--neon-cyan);
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(44px, 8vw, 92px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.hero h1 .accent {
    background: linear-gradient(90deg, var(--neon-cyan) 10%, var(--neon-purple) 55%, var(--neon-magenta) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: clamp(17px, 2.4vw, 22px);
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 0 40px;
}
.hero-sub strong { color: var(--text); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-scroll {
    position: absolute;
    bottom: 34px; left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
    animation: floatY 2.2s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* ===== 대형 슬로건 섹션 ===== */
.slogan {
    padding: 130px 0;
    text-align: left;
}
.slogan h2 {
    margin: 0;
    font-size: clamp(34px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.slogan h2 .accent {
    color: var(--neon-cyan);
    text-shadow: 0 0 32px rgba(0, 229, 255, 0.45);
}
.slogan p {
    margin: 26px 0 0;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-dim);
    max-width: 720px;
}
.slogan.center { text-align: center; }
.slogan.center p { margin-left: auto; margin-right: auto; }

/* ===== 통계 블록 ===== */
.stats {
    background:
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 20%, var(--bg-soft) 80%, var(--bg) 100%);
    padding: 110px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-block {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 42px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.stat-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-magenta));
    opacity: 0.85;
}
.stat-num {
    font-size: clamp(38px, 4.6vw, 56px);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}
.stat-num .unit { font-size: 0.5em; font-weight: 700; }
.stat-label {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dim);
}

@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 섹션 공통 ===== */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-magenta);
    margin-bottom: 14px;
}
.section-head h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4.4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-head p { margin: 0; color: var(--text-dim); font-size: 17px; }

/* ===== 서비스 카드 ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards-grid { grid-template-columns: 1fr; } }

.card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.35s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 24px 60px rgba(0, 229, 255, 0.12);
}
.card-img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
    filter: saturate(0.9);
    transition: transform 0.5s, filter 0.4s;
}
.card:hover .card-img { transform: scale(1.04); filter: saturate(1.1); }
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { margin: 0; font-size: 20px; font-weight: 800; }
.card-body p { margin: 0; font-size: 14.5px; color: var(--text-dim); }
.card-link {
    margin-top: auto;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--neon-cyan);
}
.card-link::after { content: ' →'; }

/* ===== 페이지 히어로 (서브페이지 공통) ===== */
.page-hero {
    padding: 170px 0 80px;
    text-align: center;
    background:
        radial-gradient(55% 65% at 50% 0%, rgba(139, 92, 246, 0.16), transparent 70%),
        radial-gradient(40% 45% at 80% 20%, rgba(0, 229, 255, 0.1), transparent 70%);
    border-bottom: 1px solid var(--line);
}
.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: -0.02em;
}
.page-hero p { margin: 0 auto; color: var(--text-dim); font-size: 17px; max-width: 640px; }

/* ===== 서비스 상세 (수리분야) ===== */
.svc-section {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
    padding: 72px 0;
}
.svc-section + .svc-section { border-top: 1px solid var(--line); }
.svc-section:nth-child(even) .svc-img { order: 2; }
.svc-img {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
.svc-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.svc-num {
    font-family: var(--font-pixel);
    font-size: 13px;
    color: var(--neon-magenta);
    margin-bottom: 14px;
}
.svc-content h2 { margin: 0 0 16px; font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; }
.svc-content p { color: var(--text-dim); margin: 0 0 20px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.07);
    border: 1px solid rgba(0, 229, 255, 0.22);
    color: var(--neon-cyan);
}
@media (max-width: 900px) {
    .svc-section { grid-template-columns: 1fr; gap: 28px; }
    .svc-section:nth-child(even) .svc-img { order: 0; }
}

/* 접수 flow */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    counter-reset: flow;
}
@media (max-width: 1024px) { .flow-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .flow-grid { grid-template-columns: repeat(2, 1fr); } }
.flow-step {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 18px;
    counter-increment: flow;
}
.flow-step::before {
    content: '0' counter(flow);
    font-family: var(--font-pixel);
    font-size: 11px;
    color: var(--neon-cyan);
    display: block;
    margin-bottom: 10px;
}
.flow-step strong { display: block; font-size: 15.5px; margin-bottom: 6px; }
.flow-step span { font-size: 13px; color: var(--text-dim); }

/* 부품 조달 배지 */
.supply-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 760px) { .supply-badges { grid-template-columns: 1fr; } }
.supply-badge {
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid var(--line);
    background: var(--bg-card);
}
.supply-badge .dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}
.supply-badge h4 { margin: 0 0 6px; font-size: 16px; }
.supply-badge p { margin: 0; font-size: 13.5px; color: var(--text-dim); }
.supply-ok .dot { background: #22c55e; box-shadow: 0 0 12px rgba(34, 197, 94, 0.8); }
.supply-order .dot { background: var(--neon-yellow); box-shadow: 0 0 12px rgba(255, 214, 10, 0.8); }
.supply-dead .dot { background: #ef4444; box-shadow: 0 0 12px rgba(239, 68, 68, 0.8); }

/* ===== 가격표 ===== */
.price-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}
.price-banner .notice-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255, 214, 10, 0.08);
    border: 1px solid rgba(255, 214, 10, 0.35);
    color: var(--neon-yellow);
}
.price-tables { display: grid; gap: 44px; }
.price-table h3 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-table h3::before {
    content: '';
    width: 8px; height: 22px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
}
.table-scroll { overflow-x: auto; }
table.price {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    font-size: 14.5px;
}
table.price th, table.price td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
table.price th {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    color: var(--neon-cyan);
    font-size: 13px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
table.price td:last-child { white-space: nowrap; font-weight: 700; text-align: right; }
table.price tr:last-child td { border-bottom: 0; }
table.price tr:hover td { background: rgba(0, 229, 255, 0.03); }

/* FAQ */
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-card);
    padding: 22px 26px;
    margin-bottom: 14px;
}
.faq-item h4 { margin: 0 0 8px; font-size: 16px; color: var(--neon-cyan); }
.faq-item p { margin: 0; color: var(--text-dim); font-size: 14.5px; }

/* ===== 후기 카드 ===== */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1024px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.stars { color: var(--neon-yellow); letter-spacing: 3px; font-size: 15px; }
.review-card h3 { margin: 0; font-size: 17px; font-weight: 800; }
.review-card p { margin: 0; font-size: 14.5px; color: var(--text-dim); flex: 1; }
.review-meta { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-dim); }
.review-badge {
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.35);
    color: #c4b5fd;
}

/* 공지 */
.notice-item {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 24px 8px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: background 0.2s;
}
.notice-item:hover { background: rgba(255, 255, 255, 0.025); }
.notice-date {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--text-dim);
    min-width: 96px;
}
.notice-title { font-size: 16.5px; font-weight: 700; flex: 1; }
.notice-pin {
    font-size: 11px;
    font-weight: 800;
    color: var(--neon-magenta);
    border: 1px solid rgba(255, 46, 166, 0.4);
    border-radius: 999px;
    padding: 2px 10px;
    margin-right: 10px;
}
.notice-detail {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 12px;
    white-space: pre-wrap;
    color: var(--text-dim);
}
.notice-detail.open { display: block; }

/* ===== 폼 ===== */
.form-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--text-dim); }
.field input, .field select, .field textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--text);
    font-size: 14.5px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select option { background: var(--bg-card); }
.form-hint { font-size: 12.5px; color: var(--text-dim); }
.form-error {
    display: none;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13.5px;
    margin-bottom: 16px;
}
.form-error.show { display: block; }
.form-success {
    display: none;
    text-align: center;
    padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .big-emoji { font-size: 44px; }
.form-success h3 { margin: 14px 0 8px; font-size: 22px; }
.receipt-no {
    font-family: var(--font-pixel);
    font-size: 15px;
    color: var(--neon-cyan);
    background: rgba(0, 229, 255, 0.07);
    border: 1px dashed rgba(0, 229, 255, 0.4);
    border-radius: 12px;
    padding: 14px 20px;
    display: inline-block;
    margin: 10px 0 16px;
}

/* ===== 수리상태 타임라인 ===== */
.status-lookup { max-width: 560px; margin: 0 auto 60px; display: flex; gap: 10px; }
.status-lookup input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text);
    font-size: 15px;
    font-family: var(--font-pixel);
    letter-spacing: 1px;
    outline: none;
}
.status-lookup input:focus { border-color: var(--neon-cyan); }

.timeline { max-width: 680px; margin: 0 auto; position: relative; }
.timeline::before {
    content: '';
    position: absolute;
    top: 8px; bottom: 8px; left: 15px;
    width: 2px;
    background: var(--line);
}
.tl-step {
    position: relative;
    padding: 0 0 34px 56px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-dot {
    position: absolute;
    left: 6px; top: 2px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--line);
    z-index: 1;
}
.tl-step.done .tl-dot {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.6);
}
.tl-step.current .tl-dot {
    background: var(--neon-yellow);
    border-color: var(--neon-yellow);
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.8);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}
.tl-step h4 { margin: 0 0 4px; font-size: 17px; font-weight: 800; color: var(--text-dim); }
.tl-step.done h4, .tl-step.current h4 { color: var(--text); }
.tl-step p { margin: 0; font-size: 13.5px; color: var(--text-dim); }
.tl-step .tl-time { font-size: 12px; color: var(--text-dim); opacity: 0.7; }

/* ===== CTA 밴드 ===== */
.cta-band {
    position: relative;
    padding: 130px 0;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(10, 10, 20, 0.86), rgba(10, 10, 20, 0.94)),
        url('assets/img/cta-workbench.jpg') center / cover no-repeat fixed;
}
.cta-band h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 5.4vw, 60px);
    font-weight: 900;
    letter-spacing: -0.02em;
}
.cta-band p { color: var(--text-dim); font-size: 18px; margin: 0 0 36px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ===== 컨택 / 오시는 길 ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: stretch;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-info h3 { margin: 0; font-size: 22px; font-weight: 900; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.contact-row strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.contact-row span { font-size: 14px; color: var(--text-dim); }
.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 380px;
    filter: grayscale(0.4) invert(0.92) hue-rotate(180deg) contrast(0.9);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ===== 푸터 ===== */
#site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg-soft);
    margin-top: 40px;
}
.footer-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 64px 0 48px;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-col h4 {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text);
}
.footer-col p { margin: 0; font-size: 13.5px; color: var(--text-dim); }
.footer-brand p { margin-top: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--neon-cyan); }
.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-dim);
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

/* ===== 유틸 ===== */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.dim { color: var(--text-dim); }
.loading { text-align: center; color: var(--text-dim); padding: 60px 0; }
