/* ============================================================
   about-location.css  |  오시는 길  |  prefix: lo-
   Colors: --lo-primary:#2979ff  --lo-cyan:#00e5ff
           --lo-amber:#ffab00    --lo-dark:#0a0f28
           --lo-subway:#F06A00   --lo-bus:#33A532
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --lo-primary: #2979ff;
  --lo-primary2: #1565c0;
  --lo-cyan:    #00e5ff;
  --lo-amber:   #ffab00;
  --lo-dark:    #0a0f28;
  --lo-dark2:   #0d1535;
  --lo-dark3:   #111c42;
  --lo-text:    #e3e8f0;
  --lo-muted:   #8899bb;
  --lo-border:  rgba(41,121,255,.2);
  --lo-glass:   rgba(13,21,53,.65);
  --lo-subway:  #F06A00;
  --lo-bus:     #33A532;
  --lo-car:     #2979ff;
}

.page-location * { box-sizing: border-box; }

/* ============================================================
   HERO
   ============================================================ */
.lo-hero {
  position: relative;
  min-height: 480px;
  background: var(--lo-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 80px;
}

/* 미니맵 그리드 패턴 */
.lo-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,121,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,121,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: loGridMove 20s linear infinite;
  pointer-events: none;
}
@keyframes loGridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 48px 48px; }
}

.lo-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.lo-hero-glow.a {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(41,121,255,.2) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.lo-hero-glow.b {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,229,255,.1) 0%, transparent 70%);
  bottom: -60px; right: 100px;
}

.lo-hero-content { position: relative; z-index: 2; }

.lo-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(41,121,255,.15);
  border: 1px solid rgba(41,121,255,.4);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--lo-cyan);
  font-family: 'Outfit', sans-serif;
  opacity: 0; animation: loFadeUp .6s .3s forwards;
}

.lo-pin-wrap {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.lo-pin-icon {
  font-size: 2.4rem;
  color: var(--lo-primary);
  filter: drop-shadow(0 0 12px rgba(41,121,255,.6));
  opacity: 0; animation: loPinDrop .8s .5s cubic-bezier(.34,1.56,.64,1) forwards;
  flex-shrink: 0;
}
@keyframes loPinDrop {
  from { opacity: 0; transform: translateY(-40px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* 핀 착지 파문 */
.lo-pin-ripple {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--lo-primary);
  animation: loRipple 1.5s .9s ease-out forwards;
  pointer-events: none;
}
@keyframes loRipple {
  from { transform: scale(.3); opacity: .8; }
  to   { transform: scale(2.5); opacity: 0; }
}

.lo-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  opacity: 0; animation: loFadeUp .7s .55s forwards;
}
.lo-hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; color: var(--lo-muted);
  margin: 12px 0 0;
  opacity: 0; animation: loFadeUp .7s .7s forwards;
}
.lo-hero-address {
  font-family: 'JetBrains Mono', monospace;
  font-size: .82rem; color: rgba(255,255,255,.55);
  margin-top: 20px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: loFadeUp .7s .85s forwards;
}
.lo-hero-address-copy {
  background: rgba(41,121,255,.2);
  border: 1px solid rgba(41,121,255,.4);
  color: var(--lo-cyan); font-size: .7rem; font-weight: 600;
  padding: 3px 10px; border-radius: 100px; cursor: pointer;
  border: 1px solid rgba(0,229,255,.3);
  transition: background .2s;
  white-space: nowrap;
}
.lo-hero-address-copy:hover { background: rgba(0,229,255,.2); }

.lo-scroll-hint {
  margin-top: 36px;
  opacity: 0; animation: loFadeUp .6s 1s forwards;
  color: var(--lo-muted); font-size: .78rem;
  display: flex; align-items: center; gap: 8px;
}
.lo-scroll-hint i { animation: loBounce 1.5s infinite; }
@keyframes loBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes loFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SUB-NAV
   ============================================================ */
.lo-subnav {
  background: rgba(10,15,40,.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lo-border);
  position: sticky; top: 70px; z-index: 500;
}
.lo-subnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.lo-subnav-links { display: flex; list-style: none; margin: 0; padding: 0; }
.lo-subnav-links a {
  display: block; padding: 13px 18px;
  font-size: .82rem; font-weight: 600; color: var(--lo-muted);
  text-decoration: none; letter-spacing: .04em; text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color .25s, border-color .25s;
}
.lo-subnav-links a:hover,
.lo-subnav-links a.active { color: var(--lo-cyan); border-bottom-color: var(--lo-cyan); }
.lo-subnav-tag { font-size: .72rem; font-weight: 700; color: var(--lo-primary); letter-spacing: .06em; text-transform: uppercase; }

/* ============================================================
   MAP SECTION
   ============================================================ */
.lo-map-section { position: relative; }
.lo-map-wrap {
  position: relative;
  width: 100%; height: 500px;
  overflow: visible;
}
.lo-map-wrap iframe,
#loKakaoMap {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.lo-map-wrap::before,
.lo-map-wrap::after { display: none; }

/* 맵 플레이스홀더 (API 키 없을 때) */
.lo-map-placeholder {
  width: 100%; height: 100%;
  background: var(--lo-dark3);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  position: relative;
}
.lo-map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(41,121,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,121,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.lo-map-marker-demo {
  position: relative;
  width: 60px; height: 60px;
  z-index: 2;
}
.lo-map-marker-demo .pin {
  width: 48px; height: 48px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--lo-primary), var(--lo-cyan));
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(41,121,255,.6);
  display: flex; align-items: center; justify-content: center;
}
.lo-map-marker-demo .pin span {
  transform: rotate(45deg);
  color: #fff; font-size: .7rem; font-weight: 700;
}
.lo-map-marker-demo .pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 70px; height: 70px;
  margin: -35px 0 0 -35px;
  border-radius: 50%;
  border: 2px solid var(--lo-cyan);
  animation: loPulse 2s ease-out infinite;
}
.lo-map-marker-demo .pulse-ring2 { animation-delay: .6s; opacity: .6; }
@keyframes loPulse {
  0%   { transform: scale(.5); opacity: .8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.lo-map-placeholder-addr {
  position: relative; z-index: 2;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: .88rem; color: rgba(255,255,255,.7);
  line-height: 1.6;
}

/* 지도 액션 바 */
.lo-map-actions {
  background: var(--lo-dark);
  border-top: 1px solid var(--lo-border);
  padding: 18px 0;
}
.lo-map-action-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
}
.lo-map-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  font-size: .85rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .22s;
}
.lo-map-btn.kakao  { background: #FEE500; color: #3A1D1D; }
.lo-map-btn.naver  { background: #03C75A; color: #fff; }
.lo-map-btn.copy   { background: rgba(255,255,255,.1); color: var(--lo-text); border: 1px solid rgba(255,255,255,.2); }
.lo-map-btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

/* ============================================================
   INFO SECTION (위치정보 + 연락처 + 영업시간)
   ============================================================ */
.lo-info-section {
  background: var(--lo-dark);
  padding: 90px 0;
}
[data-lo-anim] {
  opacity: 0; transform: translateY(24px) translateX(0);
  transition: opacity .7s ease, transform .7s ease;
}
[data-lo-anim].lo-in { opacity: 1; transform: translateY(0) translateX(0); }
[data-lo-slide-left] {
  opacity: 0; transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-lo-slide-left].lo-in { opacity: 1; transform: translateX(0); }
[data-lo-slide-right] {
  opacity: 0; transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-lo-slide-right].lo-in { opacity: 1; transform: translateX(0); }

/* 글래스모피즘 패널 */
.lo-glass-panel {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px;
}

.lo-info-block { padding: 24px 0; }
.lo-info-block + .lo-info-block {
  border-top: 1px solid rgba(255,255,255,.07);
}
.lo-info-block-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.lo-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.lo-info-icon.blue  { background: rgba(41,121,255,.15); color: var(--lo-primary); box-shadow: 0 0 16px rgba(41,121,255,.2); }
.lo-info-icon.cyan  { background: rgba(0,229,255,.12); color: var(--lo-cyan); box-shadow: 0 0 16px rgba(0,229,255,.15); }
.lo-info-icon.amber { background: rgba(255,171,0,.12); color: var(--lo-amber); box-shadow: 0 0 16px rgba(255,171,0,.15); }
.lo-info-label-wrap { flex: 1; }
.lo-info-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lo-muted); margin-bottom: 2px;
}
.lo-info-title { font-size: .95rem; font-weight: 700; color: #fff; }

/* 주소 */
.lo-address-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: .9rem; color: #fff; line-height: 1.7;
}
.lo-address-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.lo-addr-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(41,121,255,.15);
  border: 1px solid rgba(41,121,255,.35);
  color: var(--lo-cyan); font-size: .78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  cursor: pointer; text-decoration: none;
  transition: all .2s;
}
.lo-addr-btn:hover { background: rgba(41,121,255,.3); color: var(--lo-cyan); }

/* 연락처 */
.lo-contact-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.lo-contact-row:last-child { border-bottom: none; }
.lo-contact-label { font-size: .78rem; color: var(--lo-muted); min-width: 40px; }
.lo-contact-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: .9rem; color: #fff; font-weight: 500;
}
.lo-contact-action {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,229,255,.1);
  border: 1px solid rgba(0,229,255,.25);
  color: var(--lo-cyan); font-size: .72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
  text-decoration: none; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.lo-contact-action:hover { background: rgba(0,229,255,.2); color: var(--lo-cyan); }

/* 영업시간 라이브 상태 */
.lo-biz-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 12px;
}
.lo-biz-status.open  { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.35); }
.lo-biz-status.lunch { background: rgba(255,171,0,.15);  color: var(--lo-amber); border: 1px solid rgba(255,171,0,.35); }
.lo-biz-status.closed{ background: rgba(255,255,255,.07); color: var(--lo-muted); border: 1px solid rgba(255,255,255,.12); }
.lo-biz-dot { width: 8px; height: 8px; border-radius: 50%; }
.lo-biz-status.open  .lo-biz-dot { background: #34d399; animation: loDotPulse 1.5s infinite; }
.lo-biz-status.lunch .lo-biz-dot { background: var(--lo-amber); animation: loDotPulse 1.5s infinite; }
.lo-biz-status.closed .lo-biz-dot { background: var(--lo-muted); }
@keyframes loDotPulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.3); }
}

.lo-biz-row {
  display: flex; justify-content: space-between;
  font-size: .82rem; padding: 5px 0;
  color: var(--lo-text);
}
.lo-biz-row-label { color: var(--lo-muted); }

/* 타임라인 바 */
.lo-biz-timeline {
  margin-top: 16px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 12px 14px;
}
.lo-biz-tl-labels {
  display: flex; justify-content: space-between;
  font-size: .65rem; color: var(--lo-muted);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 6px;
}
.lo-biz-tl-bar-wrap {
  position: relative; height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 4px; overflow: hidden;
}
.lo-biz-tl-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--lo-primary), var(--lo-cyan));
  border-radius: 4px;
  width: 0; /* JS로 설정 */
  transition: width 1.5s ease;
}
.lo-biz-tl-lunch {
  position: absolute; top: 0; bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,.3) 2px, rgba(0,0,0,.3) 4px);
  background-color: rgba(255,171,0,.2);
}
.lo-biz-tl-now {
  position: absolute; top: -4px; bottom: -4px;
  width: 2px; background: #fff;
  box-shadow: 0 0 6px rgba(255,255,255,.8);
  border-radius: 2px;
  display: none; /* JS로 표시 */
}
.lo-biz-tl-now::after {
  content: '▲';
  position: absolute; bottom: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: .5rem; color: #fff;
}
.lo-biz-tl-note {
  font-size: .7rem; color: var(--lo-muted); margin-top: 8px;
}

/* 우측 건물 이미지 */
.lo-building-img {
  border-radius: 20px; overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .4s ease;
}
.lo-building-img:hover { transform: perspective(800px) rotateY(-4deg) rotateX(2deg); }
.lo-building-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.lo-building-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  padding: 30px 20px 16px;
  font-size: .8rem; color: rgba(255,255,255,.65);
  font-family: 'Outfit', sans-serif;
}
.lo-building-tag {
  display: inline-block;
  background: rgba(41,121,255,.8);
  color: #fff; font-size: .7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 6px;
}

/* ============================================================
   TRANSPORT SECTION
   ============================================================ */
.lo-transport-section {
  padding: 90px 0;
  background: #f8fafe;
}
.lo-section-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lo-primary);
  background: rgba(41,121,255,.1);
  border: 1px solid rgba(41,121,255,.25);
  border-radius: 100px; padding: 5px 16px; margin-bottom: 14px;
}
.lo-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; color: #0d1a3a;
  margin-bottom: 10px;
}
.lo-section-desc { font-size: .95rem; color: #667; line-height: 1.7; }

/* 탭 바 */
.lo-tab-bar {
  display: flex; gap: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 6px;
  margin-bottom: 28px;
  width: fit-content;
}
.lo-tab-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 12px;
  font-size: .88rem; font-weight: 700;
  cursor: pointer; border: none; background: transparent;
  color: #667; transition: all .22s;
}
.lo-tab-btn i { font-size: 1.1rem; }
.lo-tab-btn.subway.active { background: var(--lo-subway); color: #fff; box-shadow: 0 4px 14px rgba(240,106,0,.35); }
.lo-tab-btn.bus.active    { background: var(--lo-bus);    color: #fff; box-shadow: 0 4px 14px rgba(51,165,50,.35); }
.lo-tab-btn.car.active    { background: var(--lo-car);    color: #fff; box-shadow: 0 4px 14px rgba(41,121,255,.35); }
.lo-tab-btn:hover:not(.active) { background: rgba(0,0,0,.05); color: #333; }

/* 탭 패널 */
.lo-tab-panel { display: none; }
.lo-tab-panel.active { display: block; }

.lo-transport-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* 지하철 노선도 미니 */
.lo-subway-line {
  display: flex; align-items: center; gap: 0;
  margin: 20px 0 28px;
  position: relative;
}
.lo-subway-station {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative; z-index: 2;
}
.lo-subway-station + .lo-subway-station::before {
  content: '';
  position: absolute; right: 100%; top: 12px;
  width: calc(100% + 0px); height: 4px;
  background: var(--lo-subway);
}
.lo-subway-line-connector {
  flex: 1; height: 4px; background: var(--lo-subway); position: relative; z-index: 1;
}
.lo-station-dot {
  width: 20px; height: 20px; border-radius: 50%;
  border: 3px solid var(--lo-subway);
  background: #fff;
}
.lo-station-dot.current {
  width: 28px; height: 28px;
  background: var(--lo-subway);
  border-color: var(--lo-subway);
  box-shadow: 0 0 0 6px rgba(240,106,0,.2);
  animation: loPulseOrange 2s ease-out infinite;
}
@keyframes loPulseOrange {
  0%, 100% { box-shadow: 0 0 0 4px rgba(240,106,0,.2); }
  50%       { box-shadow: 0 0 0 8px rgba(240,106,0,.1); }
}
.lo-station-name { font-size: .72rem; font-weight: 600; color: #445; white-space: nowrap; }
.lo-station-exit { font-size: .65rem; color: var(--lo-subway); font-weight: 700; }

/* 도보 경로 */
.lo-walk-steps { list-style: none; padding: 0; margin: 16px 0; }
.lo-walk-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 0; border-bottom: 1px solid #f0f3f8;
  opacity: 0; transform: translateX(-10px);
  transition: opacity .4s ease, transform .4s ease;
}
.lo-walk-step.lo-in { opacity: 1; transform: translateX(0); }
.lo-walk-step:last-child { border-bottom: none; }
.lo-step-num {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lo-subway), #ff8f00);
  color: #fff; font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.lo-step-text { font-size: .85rem; color: #445; line-height: 1.5; }

/* 버스 노선 pill */
.lo-bus-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.lo-bus-pill {
  background: var(--lo-bus); color: #fff;
  font-size: .82rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.lo-bus-pill.lo-in { opacity: 1; transform: translateY(0); }

/* 주차장 카드 */
.lo-parking-card {
  display: flex; align-items: center; gap: 14px;
  background: #f8faff; border-radius: 12px;
  padding: 14px 18px; margin-bottom: 10px;
  border: 1px solid #e3eaff;
}
.lo-parking-icon { font-size: 1.4rem; color: var(--lo-car); }
.lo-parking-info { flex: 1; }
.lo-parking-name { font-size: .88rem; font-weight: 600; color: #0d1a3a; }
.lo-parking-detail { font-size: .75rem; color: #778; margin-top: 2px; }
.lo-parking-dist {
  font-size: .75rem; font-weight: 700;
  color: var(--lo-car);
  background: rgba(41,121,255,.1);
  padding: 2px 8px; border-radius: 100px;
}

/* 교통 메타 바 */
.lo-transport-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #f0f3f8;
  margin-top: 16px;
  font-size: .82rem;
}
.lo-transport-meta span { display: flex; align-items: center; gap: 5px; color: #667; }
.lo-transport-meta strong { color: #0d1a3a; }
.lo-transport-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--lo-primary);
  color: #fff; font-size: .82rem; font-weight: 600;
  padding: 8px 18px; border-radius: 100px;
  text-decoration: none; transition: all .2s;
  margin-top: 4px;
}
.lo-transport-link:hover { background: var(--lo-primary2); color: #fff; transform: translateY(-2px); }
.lo-transport-link.bus-link   { background: var(--lo-bus); }
.lo-transport-link.bus-link:hover { background: #2a8a27; }

/* 검색어 복사 박스 */
.lo-nav-keyword {
  background: #f0f7ff; border: 1px dashed var(--lo-primary);
  border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  margin: 16px 0;
  gap: 10px;
}
.lo-nav-keyword-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem; font-weight: 600; color: var(--lo-primary2);
}
.lo-nav-copy-btn {
  background: var(--lo-primary); color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  cursor: pointer; border: none; white-space: nowrap;
  transition: background .2s;
}
.lo-nav-copy-btn:hover { background: var(--lo-primary2); }

.lo-nav-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.lo-nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 100px;
  font-size: .82rem; font-weight: 600; text-decoration: none;
  transition: all .2s;
}
.lo-nav-link.kakao-navi { background: #FEE500; color: #3A1D1D; }
.lo-nav-link.tmap       { background: #FF4040; color: #fff; }
.lo-nav-link:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.15); }

/* ============================================================
   ACTION BAND
   ============================================================ */
.lo-action-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f0f7ff, #e8f0fe);
}
.lo-action-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.lo-action-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  cursor: pointer; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all .22s;
  border: 1px solid rgba(0,0,0,.04);
  opacity: 0; transform: translateY(16px);
}
.lo-action-card.lo-in { opacity: 1; transform: translateY(0); }
.lo-action-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 32px rgba(41,121,255,.15);
}
.lo-action-card:active { transform: scale(.96); }
.lo-action-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: rgba(41,121,255,.1); color: var(--lo-primary);
  transition: background .22s;
}
.lo-action-card:hover .lo-action-icon { background: var(--lo-primary); color: #fff; }
.lo-action-label { font-size: .78rem; font-weight: 700; color: #334; line-height: 1.2; }
.lo-action-badge {
  font-size: .6rem; font-weight: 700;
  background: rgba(255,171,0,.2); color: #b37800;
  padding: 2px 6px; border-radius: 100px; border: 1px solid rgba(255,171,0,.35);
}

/* ============================================================
   NEIGHBORHOOD
   ============================================================ */
.lo-neighbor-section {
  padding: 80px 0;
  background: #fff;
}
.lo-neighbor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lo-neighbor-card {
  background: #fff;
  border: 1px solid #e8edf8;
  border-radius: 18px;
  padding: 28px 24px;
  transition: all .25s;
  opacity: 0; transform: translateY(20px);
}
.lo-neighbor-card.lo-in { opacity: 1; transform: translateY(0); }
.lo-neighbor-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(41,121,255,.1); border-color: rgba(41,121,255,.3); }
.lo-neighbor-emoji { font-size: 2rem; margin-bottom: 14px; display: block; }
.lo-neighbor-title { font-size: 1rem; font-weight: 700; color: #0d1a3a; margin-bottom: 8px; }
.lo-neighbor-text { font-size: .83rem; color: #667; line-height: 1.65; }

/* ============================================================
   CTA
   ============================================================ */
.lo-cta-section {
  position: relative;
  padding: 90px 0;
  background: var(--lo-dark);
  overflow: hidden;
  text-align: center;
}
.lo-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(41,121,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,121,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.lo-cta-watermark {
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%);
  font-size: 20rem; color: rgba(41,121,255,.025);
  pointer-events: none; line-height: 1;
}
.lo-cta-content { position: relative; z-index: 2; }
.lo-cta-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800; color: #fff;
  margin-bottom: 14px; line-height: 1.25;
}
.lo-cta-desc { font-size: .95rem; color: var(--lo-muted); max-width: 520px; margin: 0 auto 16px; line-height: 1.75; }
.lo-cta-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center;
  font-size: .8rem; color: rgba(255,255,255,.5);
  margin-bottom: 32px;
}
.lo-cta-meta span { display: flex; align-items: center; gap: 5px; }
.lo-cta-meta i { color: var(--lo-cyan); }
.lo-cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 20px; }
.lo-cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--lo-primary), #42a5f5);
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: 14px 32px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(41,121,255,.45);
  transition: all .22s;
}
.lo-cta-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(41,121,255,.55); color: #fff; }
.lo-cta-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid rgba(41,121,255,.5);
  color: var(--lo-primary); font-weight: 700; font-size: .9rem;
  padding: 14px 32px; border-radius: 50px; text-decoration: none;
  transition: all .22s;
}
.lo-cta-btn-outline:hover { background: rgba(41,121,255,.1); color: var(--lo-primary); transform: translateY(-2px); }
.lo-cta-phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: .88rem; color: rgba(255,255,255,.4);
}
.lo-cta-phone a { color: rgba(255,255,255,.6); text-decoration: none; }
.lo-cta-phone a:hover { color: #fff; }

/* ============================================================
   TOAST
   ============================================================ */
.lo-toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(30px);
  background: rgba(16,185,129,.95);
  color: #fff; font-size: .88rem; font-weight: 600;
  padding: 12px 24px; border-radius: 100px;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  display: flex; align-items: center; gap: 8px;
}
.lo-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) { .lo-action-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px)  {
  .lo-neighbor-grid { grid-template-columns: repeat(2, 1fr); }
  .lo-tab-bar { width: 100%; }
  .lo-tab-btn { flex: 1; justify-content: center; padding: 10px 12px; }
}
@media (max-width: 767px) {
  .lo-glass-panel { padding: 24px; }
  .lo-subnav-links a { padding: 12px 10px; font-size: .72rem; }
  .lo-action-grid { grid-template-columns: repeat(3, 1fr); }
  .lo-neighbor-grid { grid-template-columns: 1fr 1fr; }
  .lo-map-action-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .lo-action-grid { grid-template-columns: repeat(2, 1fr); }
  .lo-neighbor-grid { grid-template-columns: 1fr; }
}
