/* ============================================================
   VITAMIN SIGN — Design System v1
   소프트 블랙 + 웜그레이 + 라임 옐로(제한 사용)
   ============================================================ */
:root {
  --bg: #0C0E11;
  --bg2: #101318;          /* tint 섹션 */
  --deep: #08090C;         /* 방송/견적 딥 섹션 */
  --surface: #14171D;
  --surface2: #1B1F26;
  --line: #262B33;
  --line2: #333A44;
  --ink: #F2F4F6;
  --ink2: #AEB6C0;
  --ink3: #7C8590;
  --accent: #D6F32F;
  --accent-ink: #0C0E11;
  --r: 4px;
  --r-lg: 8px;
  --wrap: 1200px;
  --hd-h: 68px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--hd-h) + 12px); }
body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, "Malgun Gothic", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.acc { color: var(--accent); }
.pc { display: inline; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- 타이포 공통 ---------- */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.22; word-break: keep-all; }
h1 { font-size: clamp(38px, 5vw, 62px); }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: 20px; }

.spec-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--ink3); text-transform: uppercase;
  margin-bottom: 18px;
}
.spec-tag::before { content: ""; width: 26px; height: 1px; background: var(--accent); }

.sec { padding: 110px 0; }
.sec-tint { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-deep { background: var(--deep); }
.sec-h { max-width: 760px; margin-bottom: 56px; }
.sec-lead { margin-top: 20px; color: var(--ink2); font-size: 17px; word-break: keep-all; }
.hero-lead, p { word-break: keep-all; }
.sec-note { margin-top: 28px; color: var(--ink3); font-size: 14px; }

/* hidden 속성은 어떤 display 규칙보다 우선 */
[hidden] { display: none !important; }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-weight: 700; font-size: 15px; line-height: 1;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background .18s, border-color .18s, color .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }
.btn-acc { background: var(--accent); color: var(--accent-ink); }
.btn-acc:hover { background: #E4FD55; }
.btn-line { border-color: var(--line2); color: var(--ink); background: rgba(255,255,255,.02); }
.btn-line:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-row.center { justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.hd {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--hd-h);
  background: rgba(12,14,17,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.hd.on { border-color: var(--line); background: rgba(12,14,17,.9); }
.hd-in { display: flex; align-items: center; gap: 28px; height: var(--hd-h); }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { display: block; width: 32px; height: 32px; object-fit: contain; }
.logo-t { display: flex; flex-direction: column; font-weight: 800; font-size: 17px; letter-spacing: -0.01em; line-height: 1.1; }
.logo-t em { font-style: normal; font-weight: 600; font-size: 9.5px; letter-spacing: 0.3em; color: var(--ink3); }
.logo-t.big { font-size: 22px; gap: 4px; }

.gnb { display: flex; gap: 4px; margin-left: auto; }
.gnb a {
  padding: 9px 13px; font-size: 14.5px; font-weight: 600; color: var(--ink2);
  border-radius: var(--r); transition: color .15s, background .15s;
}
.gnb a:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.gnb a.on { color: var(--accent); }

.hd-act { display: flex; align-items: center; gap: 14px; }
.hd-tel { font-weight: 700; font-size: 15px; color: var(--ink2); letter-spacing: 0.02em; }
.hd-tel:hover { color: var(--accent); }

.ham { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.ham i { width: 22px; height: 2px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.ham.x i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.x i:nth-child(2) { opacity: 0; }
.ham.x i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 드로어 */
.drawer { position: fixed; inset: 0; z-index: 99; }
.drawer-bg { position: absolute; inset: 0; background: rgba(0,0,0,.6); opacity: 0; transition: opacity .25s; }
.drawer-p {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
  background: var(--surface); border-left: 1px solid var(--line);
  padding: calc(var(--hd-h) + 24px) 28px 32px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .3s var(--ease);
}
.drawer.open .drawer-bg { opacity: 1; }
.drawer.open .drawer-p { transform: none; }
.drawer-p a[data-nav] { padding: 13px 6px; font-size: 17px; font-weight: 700; border-bottom: 1px solid var(--line); }
.drawer-cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.drawer-cta .btn { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--hd-h) + 36px) 0 34px;
}
.hero > .wrap { width: 100%; max-width: 1440px; }
/* 배경 깊이: 차콜→딥네이비 그라데이션 + 간판 주변 웜 라이트 + 은은한 라임 앰비언트 */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(820px 540px at 74% 34%, rgba(255,236,210,.04), transparent 65%),
    radial-gradient(640px 480px at 6% 92%, rgba(214,243,47,.045), transparent 62%),
    linear-gradient(168deg, #0C0E11 30%, #0C111C 100%);
}
.hero.lit::before {
  background:
    radial-gradient(820px 540px at 74% 34%, rgba(255,236,210,.085), transparent 65%),
    radial-gradient(640px 480px at 6% 92%, rgba(214,243,47,.05), transparent 62%),
    linear-gradient(168deg, #0C0E11 30%, #0C111C 100%);
}
/* 희미한 제작 도면 그리드 */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.016) 0 1px, transparent 1px 88px);
  mask-image: radial-gradient(80% 90% at 60% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 90% at 60% 40%, #000 30%, transparent 100%);
}
.hero-in { display: grid; grid-template-columns: 0.72fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(42px, 4.7vw, 74px); line-height: 1.13; }
.hero-lead { margin-top: 28px; font-size: 19px; color: var(--ink2); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero-cta .btn-lg { padding: 18px 34px; font-size: 17px; }
@media (min-width: 1280px) {
  .hero-fig { margin-right: -36px; } /* 비주얼이 기준선을 살짝 넘어 확장 */
}

/* 히어로 하단 풀폭 제작 흐름 */
.hero-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(42px, 6.5vh, 78px);
  border-top: 1px solid var(--line);
  position: relative; z-index: 1;
}
.hero-steps li {
  padding: 22px 10px 4px 18px; position: relative;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-steps li::before {
  content: ""; position: absolute; left: 0; top: 24px; bottom: 8px; width: 2px;
  background: var(--line2); transition: background .2s;
}
.hero-steps li:first-child::before { background: var(--accent); }
.hero-steps em {
  font-style: normal; font-size: 11.5px; letter-spacing: .2em;
  color: var(--ink3); font-weight: 700; transition: color .2s;
}
.hero-steps b { font-size: 17px; font-weight: 800; margin-top: 2px; transition: color .2s; }
.hero-steps span { font-size: 12.5px; color: var(--ink3); }
.hero-steps li:hover::before { background: var(--accent); }
.hero-steps li:hover em, .hero-steps li:hover b { color: var(--accent); }

/* 제작 소품 방영 채널 (히어로 하단) */
.hero-chan {
  margin-top: clamp(42px, 6.5vh, 78px);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  position: relative; z-index: 1;
}
.hc-label {
  font-size: 11.5px; letter-spacing: .18em; font-weight: 700; color: var(--ink3);
}
.hc-list {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 14px clamp(28px, 5vw, 64px);
  margin-top: 14px;
}
.hc-list li {
  list-style: none;
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 800; letter-spacing: .04em;
  color: var(--ink2); opacity: .82; transition: color .2s, opacity .2s;
  cursor: default;
}
.hc-list li:hover { color: var(--ink); opacity: 1; }
.hc-note { margin-top: 12px; font-size: 11.5px; color: var(--ink3); opacity: .75; }

/* 스크롤 유도 */
.hero-scroll {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  width: 24px; height: 36px; z-index: 1; opacity: .55;
}
.hero-scroll i {
  position: absolute; left: 50%; top: 0; width: 1.5px; height: 26px;
  background: linear-gradient(var(--ink2), transparent);
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* 실제 간판 점등 스테이지 */
.hero-fig { position: relative; }
.sign-stage {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07); background: #0B0D10;
  box-shadow: inset 0 0 44px rgba(0,0,0,.3);
  transition: border-color .8s;
  --gx: 55%; --gy: 40%;
}
.sign-stage.lit { border-color: rgba(255,238,216,.13); }
.sign-stage img { width: 100%; height: auto; display: block; }
.sign-on {
  position: absolute; inset: 0; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .7s var(--ease);
}
.sign-stage.lit .sign-on { opacity: 1; }
/* 소등 이미지 미등록 시: 점등 이미지를 어둡게 처리해 소등 상태 생성 */
.derive-off .sign-off { filter: brightness(.34) saturate(.65) contrast(1.04); }
/* 점등 시 간판 주변의 은은한 반사광만 표현 (벽 전체 발광 금지) */
.sign-glow {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  transition: opacity .8s var(--ease);
  background: radial-gradient(42% 34% at var(--gx) var(--gy), rgba(255,238,216,.13), transparent 72%);
  mix-blend-mode: screen;
}
.sign-stage.lit .sign-glow { opacity: 1; }
/* 진입 시 점등: 실제 LED 켜질 때처럼 깜빡이다 안정 */
.sign-stage.ignite .sign-on,
.sign-stage.ignite .sign-glow { animation: signIgnite 1.25s linear both; }
@keyframes signIgnite {
  0% { opacity: 0; }
  10% { opacity: .85; }
  18% { opacity: .1; }
  28% { opacity: .92; }
  36% { opacity: .28; }
  46% { opacity: 1; }
  58% { opacity: .78; }
  70% { opacity: 1; }
  100% { opacity: 1; }
}

/* 초소형 전원 컨트롤 — 호버 시에만 라벨 표시 */
.pw-toggle {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  display: inline-flex; align-items: center;
  padding: 7px 9px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(9,11,14,.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  color: rgba(255,255,255,.65);
  transition: border-color .2s, color .2s;
}
.pw-toggle:hover, .pw-toggle:focus-visible { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.9); }
.pw-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #59626E;
  margin-left: 7px; flex: 0 0 auto;
  transition: background .5s, box-shadow .5s;
}
.lit .pw-dot { background: var(--accent); box-shadow: 0 0 6px rgba(214,243,47,.7); }
.pw-txt {
  max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0;
  transition: max-width .3s var(--ease), opacity .25s, margin-left .3s var(--ease);
}
.pw-toggle:hover .pw-txt, .pw-toggle:focus-visible .pw-txt { max-width: 84px; opacity: 1; margin-left: 8px; }

.sign-cap { margin-top: 10px; font-size: 12px; color: var(--ink3); letter-spacing: .04em; }

/* ---------- 회사소개: 비대칭 2열 + 제작 라인 ---------- */
.sec#portfolio { padding-top: 88px; } /* 히어로와 자연스럽게 연결 */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.about-txt { padding-top: 10px; } /* 패널 상단 테두리와 기준선 정렬 */
.about-vis-panel {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, #10131A, #0B0D11);
  padding: 34px 36px 24px;
}
.about-line { width: 100%; height: auto; display: block; }
.about-line .st circle { fill: var(--surface); stroke: var(--line2); stroke-width: 1.6; transition: stroke .2s; }
.about-line .st text { font-size: 13px; font-weight: 700; fill: var(--ink2); transition: fill .2s; }
.about-line .st-ic { stroke: var(--ink3); stroke-width: 1.4; transition: stroke .2s; }
.about-line .st:hover circle { stroke: var(--accent); }
.about-line .st:hover text { fill: var(--accent); }
.about-line .st:hover .st-ic { stroke: var(--accent); }
.about-line .fin-label { font-size: 12px; font-weight: 700; fill: var(--ink3); letter-spacing: .1em; }
.about-line .fin-sign {
  font-size: 27px; font-weight: 800; letter-spacing: .14em; fill: var(--accent);
  filter: drop-shadow(0 0 10px rgba(214,243,47,.35));
}
.about-line .fin-sub { font-size: 11px; fill: var(--ink3); letter-spacing: .28em; }
.about-vflow { display: none; }

/* ============================================================
   정체성 · 플로우
   ============================================================ */
.flow { display: flex; flex-wrap: wrap; align-items: center; margin-top: 26px; }
.flow li {
  position: relative; padding: 11px 20px; margin: 6px 34px 6px 0;
  border: 1px solid var(--line2); border-radius: var(--r);
  font-weight: 700; font-size: 15px; background: var(--surface);
  white-space: nowrap;
}
.flow li:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -34px; width: 34px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line2) 0 5px, transparent 5px 9px);
}
.flow li:last-child { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   서비스 탭
   ============================================================ */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.tabs [role="tab"] {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 13px 22px; border: 1px solid var(--line2); border-radius: var(--r);
  font-weight: 700; font-size: 15.5px; color: var(--ink2);
  transition: border-color .2s, color .2s, background .2s;
}
.tabs [role="tab"] em { font-style: normal; font-size: 10.5px; letter-spacing: 0.16em; color: var(--ink3); font-weight: 700; }
.tabs [role="tab"]:hover { color: var(--ink); border-color: var(--ink3); }
.tabs [role="tab"][aria-selected="true"] { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.tabs [role="tab"][aria-selected="true"] em { color: rgba(12,14,17,.6); }

.tab-body {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden;
}
.tab-p { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding: 44px 48px; align-items: center; }
.tab-p[hidden] { display: none; }
.tab-txt h3 { font-size: 24px; margin-bottom: 14px; }
.tab-txt > p { color: var(--ink2); }
.chip-l { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 16px; }
.chip-l li {
  padding: 7px 14px; font-size: 13.5px; font-weight: 600;
  border: 1px solid var(--line2); border-radius: 100px; color: var(--ink2);
}
.tab-meta { font-size: 13.5px; color: var(--ink3); }
.a-more { display: inline-block; margin-top: 20px; font-weight: 700; color: var(--accent); font-size: 15px; }
.a-more:hover { text-decoration: underline; }
.tab-fig { width: 100%; max-width: 300px; justify-self: center; }

/* ============================================================
   방송용 번호판
   ============================================================ */
/* 번호판 메인 섹션 — 실제 사진 쇼케이스 */
.bp-main { max-width: 860px; }
.bp-main.has-photos { max-width: none; display: grid; grid-template-columns: 1.15fr 1fr; gap: 52px; align-items: start; }
.bp-photo[hidden] { display: none; }
.bp-feat {
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: #0B0D10;
}
.bp-feat img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.bp-feat figcaption { padding: 12px 16px; font-size: 13.5px; color: var(--ink2); border-top: 1px solid var(--line); }
.bp-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.bp-thumbs button {
  flex: 0 0 auto; width: 92px; height: 68px; border-radius: var(--r);
  border: 2px solid var(--line2); overflow: hidden; padding: 0; background: #0B0D10;
  transition: border-color .2s;
}
.bp-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.bp-thumbs button.is-on, .bp-thumbs button:hover { border-color: var(--accent); }

.check-l li {
  position: relative; padding: 10px 0 10px 30px; font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.check-l li::before {
  content: ""; position: absolute; left: 2px; top: 17px;
  width: 12px; height: 7px; border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}
.notice {
  margin-top: 28px; padding: 18px 20px;
  border: 1px solid rgba(214,243,47,.35); border-left: 3px solid var(--accent);
  border-radius: var(--r); font-size: 14.5px; color: var(--ink2); line-height: 1.7;
  background: rgba(214,243,47,.04);
}
.notice strong { display: block; color: var(--ink); margin-bottom: 4px; }

/* ============================================================
   제작 시스템 10단계
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.steps li {
  background: var(--surface); padding: 26px 22px 30px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .2s;
}
.steps li:hover { background: var(--surface2); }
.steps b { font-size: 13px; font-weight: 800; color: var(--accent); letter-spacing: 0.1em; }
.steps span { font-weight: 700; font-size: 15.5px; }

/* ============================================================
   탐색기
   ============================================================ */
.finder-q { display: flex; flex-wrap: wrap; gap: 10px; }
.finder-q button {
  padding: 13px 22px; border: 1px solid var(--line2); border-radius: 100px;
  font-size: 15px; font-weight: 700; color: var(--ink2);
  transition: border-color .2s, color .2s, background .2s, transform .18s var(--ease);
}
.finder-q button:hover { color: var(--ink); border-color: var(--ink3); transform: translateY(-2px); }
.finder-q button.is-on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.finder-a {
  margin-top: 24px; padding: 32px 36px;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: var(--r-lg); background: var(--surface);
}
.finder-a h3 { margin-bottom: 8px; }
.finder-a p { color: var(--ink2); }
.finder-a .btn-row { margin-top: 20px; }

/* ============================================================
   소재
   ============================================================ */
.mat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mat-grid li {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); padding: 22px; position: relative;
  transition: border-color .2s, transform .2s var(--ease);
}
.mat-grid li:hover { border-color: var(--line2); transform: translateY(-3px); }
.mat-grid h3 { font-size: 17px; margin-top: 16px; }
.mat-grid em { font-style: normal; font-size: 10.5px; letter-spacing: 0.14em; color: var(--ink3); font-weight: 700; }
.mat-grid p { font-size: 13.5px; color: var(--ink2); margin-top: 8px; line-height: 1.6; }
.mat-env {
  display: inline-block; margin-top: 12px; padding: 4px 10px;
  font-size: 11.5px; font-weight: 700; color: var(--accent);
  border: 1px solid rgba(214,243,47,.35); border-radius: 100px;
}
.sw { display: block; width: 100%; height: 84px; border-radius: var(--r); border: 1px solid var(--line2); }
.sw-acryl { background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.03) 45%, rgba(255,255,255,.12) 50%, rgba(255,255,255,.02)); }
.sw-galva { background: repeating-linear-gradient(90deg, #3B424C 0 3px, #333A44 3px 6px); }
.sw-alu { background: repeating-linear-gradient(90deg, #565E69 0 1px, #4A525D 1px 3px), linear-gradient(180deg, #59616C, #454D58); }
.sw-fomex { background: #E8EAED; }
.sw-sheet { background: linear-gradient(135deg, #C0392B 0 50%, #2471A3 50%); }
.sw-print { background: linear-gradient(90deg, #D6F32F 0 25%, #2ECC71 25% 50%, #3498DB 50% 75%, #E74C3C 75%); opacity: .75; }
.sw-led { background: radial-gradient(circle at 20% 50%, var(--accent) 0 7%, transparent 8%), radial-gradient(circle at 50% 50%, var(--accent) 0 7%, transparent 8%), radial-gradient(circle at 80% 50%, var(--accent) 0 7%, transparent 8%), #171B21; }
.sw-etc { background: repeating-linear-gradient(45deg, #2B313B 0 10px, #232830 10px 20px); }

/* ============================================================
   기업·대량주문
   ============================================================ */
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.biz-grid > div {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); padding: 30px 28px;
}
.biz-grid h3 { margin-bottom: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.biz-grid p { color: var(--ink2); font-size: 15px; }

/* ============================================================
   포트폴리오
   ============================================================ */
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pf-grid > li { position: relative; }
.pf-fig {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, #101318, #0C0E12);
  overflow: hidden; transition: border-color .2s, transform .25s var(--ease);
}
.pf-grid > li:hover .pf-fig { border-color: var(--line2); transform: translateY(-4px); }
.badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 11px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.04em;
  border-radius: 100px;
}
.b-sim { background: rgba(214,243,47,.14); color: var(--accent); border: 1px solid rgba(214,243,47,.4); }
.b-info { background: rgba(255,255,255,.08); color: var(--ink2); border: 1px solid var(--line2); }
.b-real { background: var(--accent); color: var(--accent-ink); }
.pf-grid h3 { font-size: 17px; margin-top: 14px; }
.pf-grid p { font-size: 13.5px; color: var(--ink3); margin-top: 3px; }

/* ============================================================
   이유 리스트
   ============================================================ */
.why-l { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; counter-reset: why; }
.why-l li {
  counter-increment: why; position: relative;
  padding: 20px 0 20px 58px; border-bottom: 1px solid var(--line);
  font-size: 16.5px; font-weight: 600;
}
.why-l li::before {
  content: counter(why, decimal-leading-zero);
  position: absolute; left: 0; top: 20px;
  font-size: 15px; font-weight: 800; color: var(--accent); letter-spacing: 0.06em;
}

/* ============================================================
   견적 유도
   ============================================================ */
.quote-in { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-in .sec-lead { max-width: 620px; margin-left: auto; margin-right: auto; }
.quote-in .spec-tag { justify-content: center; }

.files-box {
  margin-top: 52px; text-align: left;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); padding: 32px 36px;
}
.files-box h3 { margin-bottom: 18px; }
.files-box ul { display: flex; flex-direction: column; gap: 14px; }
.files-box li { display: grid; grid-template-columns: 96px 1fr; gap: 14px; font-size: 15px; color: var(--ink2); }
.files-box b { color: var(--accent); font-size: 14px; padding-top: 1px; }
.files-box .sec-note { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }

/* ============================================================
   FOOTER
   ============================================================ */
.ft { border-top: 1px solid var(--line); background: var(--deep); padding: 70px 0 0; }
.ft-in { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.ft-logo-img { display: block; height: 46px; width: auto; max-width: 100%; }
.ft-desc { margin-top: 16px; color: var(--ink3); font-size: 14.5px; }
.ft-col h4 { font-size: 13px; letter-spacing: 0.14em; color: var(--ink3); margin-bottom: 16px; }
.ft-col a { display: block; padding: 5px 0; font-size: 14.5px; color: var(--ink2); }
.ft-col a:hover { color: var(--accent); }
.ft-col p { display: flex; gap: 12px; padding: 5px 0; font-size: 14.5px; color: var(--ink2); }
.ft-col p b { color: var(--ink3); font-weight: 700; min-width: 58px; }
.ft-area { font-size: 13px !important; color: var(--ink3) !important; margin-top: 8px; }
.ft-btm {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 26px;
  font-size: 13px; color: var(--ink3);
}
.ft-links { display: flex; gap: 20px; }
.ft-links a { color: var(--ink3); }
.ft-links a:hover { color: var(--ink2); }

/* ============================================================
   모바일 고정 바
   ============================================================ */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: 1fr 1fr 1.2fr;
  background: rgba(16,19,24,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mbar a {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 15px 6px; font-size: 14px; font-weight: 700; color: var(--ink2);
}
.mbar .mbar-acc { background: var(--accent); color: var(--accent-ink); }

/* ============================================================
   리빌 애니메이션
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sign-on, .sign-glow { transition: none !important; animation: none !important; }
  .hero-scroll i { animation: none; }
  .btn:hover, .finder-q button:hover, .mat-grid li:hover, .pf-grid > li:hover .pf-fig { transform: none; }
}

/* ============================================================
   반응형
   ============================================================ */
@media (max-width: 1080px) {
  .hero { min-height: auto; }
  .hero-in { grid-template-columns: 1fr; gap: 44px; }
  .hero-fig { max-width: 720px; margin-right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(5, 1fr); }
  .mat-grid { grid-template-columns: repeat(3, 1fr); }
  .bp-main.has-photos { grid-template-columns: 1fr; gap: 36px; }
  .ft-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .gnb { display: none; }
  .hd-tel { display: none; }
  .ham { display: flex; }
  .tab-p { grid-template-columns: 1fr; padding: 32px 26px; gap: 28px; }
  .tab-fig { max-width: 260px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-l { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .biz-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   서브 페이지 공통
   ============================================================ */
.page-hero {
  padding: calc(var(--hd-h) + 64px) 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(214,243,47,.05), transparent 65%),
    var(--bg);
}
.page-hero .sec-lead { max-width: 680px; }
.crumb { display: flex; gap: 8px; font-size: 13px; color: var(--ink3); margin-bottom: 22px; flex-wrap: wrap; }
.crumb a { color: var(--ink3); }
.crumb a:hover { color: var(--accent); }
.crumb span::before { content: "/"; margin-right: 8px; color: var(--line2); }
.sec-sub { padding: 84px 0; }

/* 갤러리 (번호판 상세) */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filters button {
  padding: 9px 18px; border: 1px solid var(--line2); border-radius: 100px;
  font-size: 14px; font-weight: 700; color: var(--ink2);
  transition: border-color .2s, color .2s, background .2s;
}
.filters button:hover { color: var(--ink); }
.filters button.is-on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gal-grid figure {
  position: relative; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: #0B0D10; cursor: zoom-in;
  transition: border-color .2s, transform .2s var(--ease);
}
.gal-grid figure:hover { border-color: var(--line2); transform: translateY(-3px); }
.gal-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gal-grid figcaption { padding: 12px 14px; font-size: 13.5px; color: var(--ink2); }
.gal-grid .badge { top: 10px; left: 10px; }
.gal-empty { display: none; }

/* 라이트박스 */
.lb { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 4vh 4vw; }
.lb.open { display: flex; }
.lb-bg { position: absolute; inset: 0; background: rgba(5,6,8,.92); }
.lb-body { position: relative; max-width: min(1100px, 92vw); max-height: 90vh; display: flex; flex-direction: column; }
.lb-body img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--r); }
.lb-cap { margin-top: 12px; font-size: 14px; color: var(--ink2); text-align: center; }
.lb-x {
  position: absolute; top: -44px; right: 0; width: 36px; height: 36px;
  border: 1px solid var(--line2); border-radius: 50%; color: var(--ink);
  font-size: 17px; line-height: 1; background: rgba(20,23,29,.8);
}
.lb-x:hover { border-color: var(--accent); color: var(--accent); }

/* 유형 그리드 (번호판 상세) */
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.type-grid li {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
  padding: 22px 20px;
}
.type-grid h3 { font-size: 16.5px; }
.type-grid p { margin-top: 7px; font-size: 13.5px; color: var(--ink2); line-height: 1.6; }

/* FAQ 아코디언 */
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 34px 20px 0;
  font-weight: 700; font-size: 16.5px; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 20px; font-weight: 600; transition: transform .2s;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 22px; color: var(--ink2); max-width: 760px; }
.faq-note { margin-top: 20px; font-size: 13px; color: var(--ink3); }

/* 포트폴리오 텍스트 안내형 카드 */
.pf-guide {
  height: 100%; min-height: 240px; display: flex; flex-direction: column; justify-content: center;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: var(--r-lg); background: var(--surface); padding: 28px 26px;
}
.pf-guide h3 { margin: 0 0 10px; }
.pf-guide p { font-size: 14px !important; color: var(--ink2) !important; }
.pf-guide .a-more { margin-top: 16px; }

/* 2단 체크리스트 */
.check-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }

@media (max-width: 900px) {
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .check-2col { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .sec { padding: 76px 0; }
  .sec-sub { padding: 60px 0; }
  .page-hero { padding: calc(var(--hd-h) + 40px) 0 44px; }
  .gal-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; gap: 10px; }
  .bp-thumbs button { width: 84px; height: 62px; }
  .pc { display: none; }
  body { padding-bottom: 56px; } /* 고정 바 공간 */
  .mbar { display: grid; }
  .hd .btn { display: none; }
  .hero { min-height: auto; padding-top: calc(var(--hd-h) + 36px); padding-bottom: 48px; }
  .hero h1 { font-size: clamp(38px, 11vw, 46px); }
  .hero-lead { font-size: 16.5px; }
  .hero-cta .btn-lg { padding: 16px 28px; font-size: 16px; }
  /* 모바일 순서: 라벨 → 제목 → 설명 → CTA → 간판 이미지 (제작 흐름은 그리드 밖 형제 요소) */
  .hero-in { display: flex; flex-direction: column; gap: 0; align-items: stretch; }
  .hero-copy { display: contents; }
  .hero-copy .spec-tag { order: 1; }
  .hero-copy h1 { order: 2; margin-top: 14px; }
  .hero-lead { order: 3; margin-top: 18px; }
  .hero-cta { order: 4; margin-top: 26px; }
  .hero-fig { order: 5; margin-top: 34px; margin-right: 0; }
  .hero-steps { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
  .hero-steps li:last-child { grid-column: span 2; }
  .hero-steps b { font-size: 15.5px; }
  .hero-chan { margin-top: 40px; }
  .hc-list { gap: 10px 26px; }
  .hc-list li { font-size: 19px; }
  .hero-scroll { display: none; }
  .sec#portfolio { padding-top: 68px; }
  .mat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mat-grid li { padding: 16px; }
  .pf-grid { grid-template-columns: 1fr; }
  .flow li { margin-right: 24px; }
  .flow li:not(:last-child)::after { right: -24px; width: 24px; }
  .files-box { padding: 24px 20px; }
  .files-box li { grid-template-columns: 1fr; gap: 3px; }
  .about-line { display: none; }
  .about-vflow { display: flex; }
  .about-vis-panel { padding: 22px 22px 16px; }
  .ft-in { grid-template-columns: 1fr; gap: 32px; }
  .ft-btm { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; }
  .quote-in .btn-row { flex-direction: column; }
}

/* ============================================================
   V2 — 페이지별 전용 컴포넌트 (서브 페이지 시각 개편)
   ============================================================ */

/* 섹션 배경 리듬 */
.sec-navy { background: #0A0E16; }
.sec-raise { background: #171A21; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-light { background: #EAE8E3; color: #16181C; }
.sec-light h1, .sec-light h2, .sec-light h3 { color: #16181C; }
.sec-light .acc { color: #7A8C00; }
.sec-light .sec-lead { color: #4A4E55; }
.sec-light .spec-tag { color: #7A7E86; }
.sec-light .spec-tag::before { background: #A9BC10; }
.sec-light .btn-line { border-color: #C5C2BA; color: #16181C; background: transparent; }
.sec-light .btn-line:hover { border-color: #7A8C00; color: #7A8C00; }

/* 분할 히어로 (페이지별) */
.hero2 { padding: calc(var(--hd-h) + 56px) 0 76px; position: relative; overflow: hidden; }
.hero2::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(640px 320px at 82% 18%, rgba(214,243,47,.06), transparent 65%); }
.hero2 .wrap { position: relative; }
.hero2 h1 { font-size: clamp(32px, 4vw, 52px); }
.hero2-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero2-grid.narrow-r { grid-template-columns: 1.35fr 1fr; }
.hero2 .crumb { margin-bottom: 26px; }
.hero2-fig { min-width: 0; }
.hero2-fig svg { width: 100%; height: auto; }

/* 대형 인용 타이포 */
.bigsay { font-size: clamp(24px, 3.2vw, 42px); font-weight: 800; line-height: 1.35; letter-spacing: -0.02em; max-width: 900px; }
.bigsay .acc { color: var(--accent); }

/* 세로 공정 다이어그램 (회사소개 히어로/기업 흐름도) */
.vflow { display: flex; flex-direction: column; gap: 0; }
.vflow li { display: flex; align-items: center; gap: 16px; position: relative; padding: 13px 0; }
.vflow li::before { content: ""; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--line2); background: var(--surface); flex: 0 0 auto; z-index: 1; }
.vflow li.on::before { border-color: var(--accent); background: var(--accent); }
.vflow li:not(:last-child)::after { content: ""; position: absolute; left: 7px; top: 34px; bottom: -14px; width: 2px;
  background: repeating-linear-gradient(180deg, var(--line2) 0 5px, transparent 5px 9px); }
.vflow .vf-t { font-weight: 700; font-size: 15.5px; }
.vflow .vf-d { font-size: 13px; color: var(--ink3); margin-left: auto; text-align: right; }
.vflow-panel { border: 1px solid var(--line); border-radius: var(--r-lg); background: linear-gradient(180deg, #10131A, #0C0E13); padding: 30px 34px; }
.vflow-panel .spec-tag { margin-bottom: 12px; }

/* 소재 스트립 (풀폭) */
.mat-strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: 2px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.mat-strip li { position: relative; min-height: 120px; }
.mat-strip .sw { height: 100%; border: 0; border-radius: 0; position: absolute; inset: 0; }
.mat-strip b { position: absolute; left: 12px; bottom: 10px; z-index: 1; font-size: 12.5px; font-weight: 700;
  color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.8); }

/* 사업 분야 패널 그리드 (비대칭) */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.area-grid > li { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 24px; position: relative; overflow: hidden; transition: border-color .2s, transform .2s var(--ease); }
.area-grid > li:hover { border-color: var(--line2); transform: translateY(-3px); }
.area-grid > li.wide { grid-column: span 2; }
.area-grid h3 { font-size: 18px; }
.area-grid p { margin-top: 8px; font-size: 14px; color: var(--ink2); max-width: 400px; }
.area-grid .ag-fig { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 92px; opacity: .9; }
.area-grid > li.wide .ag-fig { width: 130px; }
.area-grid .a-more { margin-top: 14px; font-size: 14px; }

/* 위치 패널 */
.loc-panel { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.loc-map { background: #10131A; padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; gap: 6px;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.5px); background-size: 26px 26px; }
.loc-map .lm-city { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
.loc-map .lm-dong { color: var(--accent); font-weight: 800; font-size: clamp(20px, 2.2vw, 28px); }
.loc-map .lm-en { font-size: 11.5px; letter-spacing: .22em; color: var(--ink3); margin-top: 10px; }
.loc-info { background: var(--surface); padding: 34px 36px; }
.loc-info .check-l li { font-size: 15px; }
/* 지도 임베드형 */
.loc-map-embed { padding: 0; display: flex; flex-direction: column; background: #10131A; }
.loc-map-embed iframe {
  width: 100%; flex: 1; min-height: 340px; border: 0; display: block;
  filter: saturate(.9) contrast(1.02);
}
.loc-map-cap {
  padding: 12px 18px; font-size: 13.5px; color: var(--ink2);
  border-top: 1px solid var(--line); letter-spacing: .02em;
}
@media (max-width: 640px) {
  .loc-map-embed iframe { min-height: 260px; }
}

/* 서비스 탐색 히어로 */
.svc-explorer { border: 1px solid var(--line); border-radius: var(--r-lg); background: linear-gradient(180deg, #10131A, #0B0D11); padding: 26px; }
.svc-explorer .tab-fig { max-width: 100%; }
.svc-exp-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.svc-exp-btns button { padding: 10px 16px; border: 1px solid var(--line2); border-radius: var(--r); font-size: 14px; font-weight: 700; color: var(--ink2); transition: all .2s; }
.svc-exp-btns button.is-on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.svc-exp-stage { min-height: 240px; display: flex; align-items: center; justify-content: center; }
.svc-exp-stage > div { width: 100%; max-width: 320px; }
.svc-exp-stage svg, .ag-fig svg { width: 100%; height: auto; display: block; }
.svc-exp-cap { text-align: center; font-size: 13.5px; color: var(--ink2); margin-top: 12px; }

/* 교차형 서비스 블록 */
.svc-row { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.svc-row.rev { grid-template-columns: 1fr 1.15fr; }
.svc-row.rev .svc-txt { order: 2; }
.svc-row.rev .svc-vis { order: 1; }
.svc-vis { border: 1px solid var(--line); border-radius: var(--r-lg); background: linear-gradient(180deg, #10131A, #0B0D11); padding: 34px; }
.svc-vis svg { width: 100%; height: auto; max-height: 320px; }
.svc-txt h2 { margin-bottom: 14px; }
.svc-txt > p { color: var(--ink2); }

/* 번호판 유형 — 비정형 그리드 */
.pt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pt-card { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 24px; }
.pt-card h3 { font-size: 17px; }
.pt-card p { margin-top: 7px; font-size: 13.5px; color: var(--ink2); }
.pt-card .pt-spec { margin-top: 14px; font-size: 12px; color: var(--ink3); letter-spacing: .04em; }
.pt-card.span2 { grid-column: span 2; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.pt-card.tall { grid-row: span 2; display: flex; flex-direction: column; }
.pt-card.tall svg { margin-top: auto; }
.pt-card.hl { border-color: rgba(214,243,47,.5); background: linear-gradient(160deg, rgba(214,243,47,.06), transparent 55%), var(--surface); grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.pt-cmp { grid-column: span 2; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.pt-cmp > div { padding: 22px 24px; }
.pt-cmp > div + div { border-left: 1px solid var(--line); }
.pt-cmp .cmp-chip { display: inline-block; width: 44px; height: 22px; border-radius: 3px; margin-bottom: 10px; border: 1px solid rgba(255,255,255,.2); }
.pt-cmp h3 { font-size: 15.5px; }
.pt-cmp p { margin-top: 6px; font-size: 13px; color: var(--ink2); }

/* 모자이크 갤러리 (포트폴리오) */
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mosaic > li { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(180deg, #10131A, #0C0E12); transition: border-color .2s, transform .25s var(--ease); }
.mosaic > li:hover { border-color: var(--line2); transform: translateY(-4px); }
.mosaic > li.span2 { grid-column: span 2; }
.mosaic figure { margin: 0; }
.mosaic svg, .mosaic img { width: 100%; display: block; }
.mosaic .mz-cap { padding: 14px 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.mosaic .mz-cap h3 { font-size: 15.5px; }
.mosaic .mz-cap span { font-size: 12.5px; color: var(--ink3); white-space: nowrap; }
.mosaic .badge { top: 12px; left: 12px; }
.mosaic .mz-hover { position: absolute; inset: auto 0 0 0; transform: translateY(100%); transition: transform .25s var(--ease);
  background: rgba(10,12,16,.92); padding: 12px 18px; font-size: 13px; color: var(--ink2); }
.mosaic > li:hover .mz-hover { transform: none; }

/* 언더라인 탭 */
.tabs2 { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 34px; flex-wrap: wrap; }
.tabs2 button { padding: 12px 18px; font-size: 15.5px; font-weight: 700; color: var(--ink3); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.tabs2 button:hover { color: var(--ink); }
.tabs2 button.is-on { color: var(--accent); border-color: var(--accent); }

/* 제작과정 sticky */
.proc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.proc-vis { position: sticky; top: calc(var(--hd-h) + 32px); border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, #10131A, #0B0D11); min-height: 420px; display: flex; align-items: center; justify-content: center; padding: 30px; }
.proc-vis .pv { width: 100%; max-width: 380px; display: none; }
.proc-vis .pv.on { display: block; }
.proc-vis svg.pv { height: auto; }
.proc-vis figure.pv { margin: 0; }
.proc-vis figure.pv img { width: 100%; height: auto; border-radius: var(--r); border: 1px solid var(--line); display: block; }
.proc-vis figure.pv figcaption { margin-top: 10px; font-size: 12.5px; color: var(--accent); text-align: center; letter-spacing: .04em; }
.proc-group { padding: 34px 0 44px; border-bottom: 1px solid var(--line); }
.proc-group:first-child { padding-top: 0; }
.proc-group .pg-no { font-size: 13px; font-weight: 800; color: var(--accent); letter-spacing: .12em; }
.proc-group h3 { font-size: 22px; margin: 8px 0 12px; }
.proc-group p { color: var(--ink2); font-size: 15px; }
.proc-group ul { margin-top: 14px; }
.proc-group ul li { position: relative; padding: 6px 0 6px 22px; font-size: 14px; color: var(--ink2); }
.proc-group ul li::before { content: ""; position: absolute; left: 2px; top: 13px; width: 9px; height: 5px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.proc-group.on h3 { color: var(--accent); }

/* 비교표 */
.cmp-table { width: 100%; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; border-collapse: separate; border-spacing: 0; }
.cmp-table th, .cmp-table td { padding: 16px 20px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.cmp-table th { background: var(--surface2); font-size: 13px; letter-spacing: .06em; color: var(--ink2); }
.cmp-table th.hl, .cmp-table td.hl { background: rgba(214,243,47,.05); }
.cmp-table th.hl { color: var(--accent); }
.cmp-table tr:last-child td { border-bottom: 0; }
.cmp-table td:first-child { color: var(--ink3); font-size: 13.5px; width: 22%; }
.cmp-table td { color: var(--ink); }

/* 고객군 패널 (기업) */
.cli-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cli-grid > li { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 24px; }
.cli-grid > li.wide { grid-column: span 2; background: linear-gradient(150deg, rgba(214,243,47,.05), transparent 50%), var(--surface); border-color: rgba(214,243,47,.3); }
.cli-grid h3 { font-size: 17px; }
.cli-grid .cli-ex { margin-top: 10px; font-size: 13.5px; color: var(--ink2); }
.cli-grid .cli-how { margin-top: 12px; font-size: 12.5px; color: var(--ink3); padding-top: 12px; border-top: 1px solid var(--line); }

/* 고객지원 검색 + 바로가기 */
.sp-search { max-width: 640px; margin: 30px auto 0; position: relative; }
.sp-search input { width: 100%; font: inherit; font-size: 16.5px; padding: 17px 54px 17px 22px; border-radius: 100px;
  border: 1px solid var(--line2); background: var(--surface); color: var(--ink); }
.sp-search input:focus { outline: none; border-color: var(--accent); }
.sp-search svg { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--ink3); }
.sp-quick { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 40px; }
.sp-quick a { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 20px 14px;
  text-align: center; font-size: 14px; font-weight: 700; transition: border-color .2s, transform .2s var(--ease); }
.sp-quick a:hover { border-color: var(--accent); transform: translateY(-3px); }
.sp-quick svg { width: 26px; height: 26px; margin: 0 auto 10px; display: block; color: var(--accent); }
.faq-hidden { display: none !important; }

/* 파일 형식 카드 */
.file-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.file-card { width: 108px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 16px 12px 12px; text-align: center; position: relative; overflow: hidden; }
.file-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--line2); }
.file-card.vec::before { background: var(--accent); }
.file-card b { display: block; font-size: 19px; font-weight: 800; letter-spacing: .04em; }
.file-card span { display: block; margin-top: 4px; font-size: 11px; color: var(--ink3); }

/* ============================================================
   실제 작업사진 컴포넌트
   ============================================================ */
/* 포트폴리오 갤러리 — 비율 통제 에디토리얼 그리드 */
.wrap-wide { max-width: 1360px; }
.ed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ed-grid figure {
  position: relative; margin: 0; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: #0B0D10; cursor: zoom-in;
  transition: border-color .2s, transform .2s var(--ease);
}
.ed-grid figure:hover { border-color: var(--line2); transform: translateY(-3px); }
.ed-grid img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4 / 3; }
.ed-grid .r-34 img { aspect-ratio: 3 / 4; }
.ed-grid .r-11 img { aspect-ratio: 1 / 1; }
.ed-grid .ed-hero { grid-column: span 2; }
.ed-grid .ed-hero img { aspect-ratio: 16 / 10; }
.ed-grid figcaption {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 11px 14px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink2); min-height: 44px;
}
.ed-grid figcaption b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ed-grid figcaption span { color: var(--ink3); font-size: 11.5px; white-space: nowrap; flex: 0 0 auto; }
.ed-grid .badge { top: 10px; left: 10px; }
@media (max-width: 900px) {
  .ed-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ed-grid .ed-hero { grid-column: span 2; }
}
@media (max-width: 640px) {
  .ed-grid { grid-template-columns: 1fr; gap: 14px; }
  .ed-grid .ed-hero { grid-column: auto; }
  .ed-grid .r-34 img { aspect-ratio: 4 / 5; }
}

/* (구) 컬럼형 — 다른 용도 대비 유지 */
.masonry { columns: 3; column-gap: 18px; }
.masonry > figure {
  break-inside: avoid; margin: 0 0 18px; position: relative;
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  background: #0B0D10; cursor: zoom-in;
  transition: border-color .2s, transform .2s var(--ease);
}
.masonry > figure:hover { border-color: var(--line2); transform: translateY(-3px); }
.masonry img { width: 100%; display: block; }
.masonry figcaption {
  padding: 11px 14px; font-size: 13px; color: var(--ink2);
  display: flex; justify-content: space-between; gap: 10px; align-items: baseline;
  border-top: 1px solid var(--line);
}
.masonry figcaption span { color: var(--ink3); font-size: 11.5px; white-space: nowrap; }
.masonry .badge { top: 10px; left: 10px; }

/* 서비스 페이지 사례 스트립 */
.svc-gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.svc-gal figure { position: relative; margin: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #0B0D10; }
.svc-gal img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.svc-gal figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 10px;
  font-size: 12.5px; color: var(--ink);
  background: linear-gradient(transparent, rgba(8,9,12,.88));
}
.svc-gal.single { grid-template-columns: 1fr; }
.svc-gal.single img { aspect-ratio: 21 / 9; }
.svc-gal .badge { top: 10px; left: 10px; }

/* 메인 전용 포트폴리오 미리보기 — 12열 에디토리얼 그리드 */
.hw-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
  align-items: start; /* 형제 카드 높이에 맞춰 강제로 늘어나지 않음 */
}
.hw-grid > li {
  grid-column: span 4; align-self: start; position: relative;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(180deg, #10131A, #0C0E12);
  transition: border-color .2s, transform .25s var(--ease);
}
.hw-grid > li:hover { border-color: var(--line2); transform: translateY(-4px); }
.hw-grid > li.hw-8 { grid-column: span 8; }
.hw-grid > li > a { display: block; color: inherit; }
.hw-grid figure { margin: 0; }
.hw-grid img {
  width: 100%; height: auto; display: block;
  object-fit: cover; aspect-ratio: 4 / 3; /* 목록은 비율 고정 크롭, 원본은 포트폴리오에서 */
}
.hw-8 img { aspect-ratio: 16 / 10; }
.hw-45 img { aspect-ratio: 4 / 5; } /* 세로 사진용 — 대표 카드와 행 높이 균형 */
.hw-grid .badge { top: 12px; left: 12px; }
.hw-cap {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 12px 16px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink);
}
.hw-cap h3 { font-size: 15px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hw-cap span { font-size: 12px; color: var(--ink3); white-space: nowrap; flex: 0 0 auto; }
.hw-hover {
  position: absolute; inset: auto 0 0 0; transform: translateY(100%);
  transition: transform .25s var(--ease);
  background: rgba(10,12,16,.92); padding: 12px 16px; font-size: 13px; color: var(--ink2);
}
.hw-grid > li:hover .hw-hover { transform: none; }
/* 번호판 CTA 카드 — 같은 행 사진 카드와 동일 높이의 컴팩트 카드 */
.hw-grid > li.hw-cta { align-self: stretch; }
.hw-grid .pf-guide { min-height: 0; height: 100%; border: 0; border-left: 3px solid var(--accent); border-radius: 0; }
@media (max-width: 900px) {
  .hw-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hw-grid > li, .hw-grid > li.hw-8 { grid-column: auto; }
  .hw-grid > li.hw-8 { grid-column: span 2; }
  .hw-45 img { aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
  .hw-grid { grid-template-columns: 1fr; }
  .hw-grid > li.hw-8 { grid-column: auto; }
}

/* ============================================================
   커스텀 커서 — PC 정밀 포인터 전용 (JS 성공 시에만 활성)
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  /* 입력 요소는 시스템 텍스트 커서 유지 */
  html.cur-on *:not(input):not(textarea):not(select) { cursor: none; }
}
.cur-dot, .cur-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000;
  will-change: transform; opacity: 0;
}
.cur-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #EDEFF2; margin: -2.5px 0 0 -2.5px;
  transition: opacity .15s;
}
.cur-ring {
  width: 36px; height: 36px; margin: -18px 0 0 -18px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .15s;
  --s: 1; --d: 1;
}
.cur-rc {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  transform: scale(calc(var(--s) * var(--d)));
  transition: transform .28s var(--ease), border-color .2s, background-color .2s;
}
.cur-label {
  position: relative; font-size: 9px; font-weight: 800; letter-spacing: .18em;
  color: var(--accent); opacity: 0; transition: opacity .18s;
  white-space: nowrap; transform: translateX(.09em); /* letter-spacing 시각 보정 */
}
.cur-ring.is-link { --s: 1.35; }
.cur-ring.is-link .cur-rc { border-color: var(--accent); }
.cur-ring.is-view { --s: 1.8; }
.cur-ring.is-view .cur-rc { border-color: var(--accent); background: rgba(214,243,47,.07); }
.cur-ring.is-light { --s: 1.7; }
.cur-ring.is-light .cur-rc { border-color: var(--accent); background: rgba(255,236,210,.05); }
.cur-ring.is-drag { --s: 1.6; }
.cur-ring.is-drag .cur-rc { border-color: var(--accent); }
.cur-ring.is-view .cur-label, .cur-ring.is-light .cur-label, .cur-ring.is-drag .cur-label { opacity: 1; }
.cur-ring.is-dis .cur-rc { border-color: rgba(255,255,255,.22); }

/* ============================================================
   온라인 견적 폼
   ============================================================ */
.q-steps { display: flex; gap: 6px; margin-bottom: 34px; }
.q-steps li {
  flex: 1; display: flex; align-items: center; gap: 8px;
  padding: 10px 6px 12px; font-size: 13px; font-weight: 700; color: var(--ink3);
  border-bottom: 2px solid var(--line); transition: color .2s, border-color .2s;
}
.q-steps li b {
  width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface2); font-size: 12px; color: var(--ink3);
}
.q-steps li.on { color: var(--ink); border-color: var(--accent); }
.q-steps li.on b { background: var(--accent); color: var(--accent-ink); }

.q-title { font-size: 21px; margin-bottom: 20px; }
.q-types { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.q-types button {
  padding: 16px 12px; border: 1px solid var(--line2); border-radius: var(--r);
  font-size: 15.5px; font-weight: 700; color: var(--ink2);
  transition: all .15s;
}
.q-types button:hover { color: var(--ink); border-color: var(--ink3); }
.q-types button.is-on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.q-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.q-panel label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink2); }
.q-panel label em { color: var(--accent); font-style: normal; }
.q-panel label span { color: var(--ink3); font-weight: 500; font-size: 12px; }
.q-panel input[type="text"], .q-panel input[type="tel"], .q-panel select, .q-panel textarea {
  width: 100%; margin-top: 7px; font: inherit; font-size: 16px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line2); border-radius: var(--r);
  padding: 13px 14px;
}
.q-panel input:focus, .q-panel select:focus, .q-panel textarea:focus {
  outline: none; border-color: var(--accent);
}
.q-panel textarea { resize: vertical; min-height: 100px; }
.q-full { margin-top: 16px; display: block; }

.q-drop {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border: 2px dashed var(--line2); border-radius: var(--r-lg);
  padding: 30px 16px; cursor: pointer; text-align: center;
  transition: border-color .2s;
}
.q-drop:hover { border-color: var(--accent); }
.q-drop-big { font-weight: 800; font-size: 16px; color: var(--accent); }
.q-drop-sub { font-size: 12.5px; color: var(--ink3); }
.q-filelist { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.q-filelist li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 10px 14px; font-size: 14px; color: var(--ink2);
}
.q-filelist button { font-size: 12.5px; font-weight: 700; color: var(--ink3); padding: 4px 8px; }
.q-filelist button:hover { color: #E05252; }

.q-agree { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; cursor: pointer; }
.q-agree input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--accent); flex: 0 0 auto; }
.q-agree span { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.q-agree a { color: var(--accent); text-decoration: underline; }
.q-agree small { display: block; margin-top: 4px; font-size: 12.5px; color: var(--ink3); font-weight: 500; }

.q-nav { display: flex; gap: 12px; margin-top: 32px; }
.q-nav .btn-lg { flex: 1; }
.q-err { margin-top: 14px; font-size: 14px; color: #F09595; }
.q-sending { margin-top: 14px; font-size: 14px; color: var(--accent); }

.q-done {
  text-align: center; padding: 48px 24px;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: var(--r-lg); background: var(--surface);
}
.q-done .spec-tag { justify-content: center; }
.q-ref { margin: 14px 0 18px; font-size: 15px; color: var(--ink2); }
.q-ref b { color: var(--accent); font-size: 19px; letter-spacing: .04em; margin-left: 8px; }
.q-done .btn-row { justify-content: center; }

.q-alt { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.q-alt p { font-size: 14px; color: var(--ink3); }
.q-alt .btn-row { margin-top: 12px; }

@media (max-width: 640px) {
  .q-grid { grid-template-columns: 1fr; }
  .q-steps li { font-size: 0; gap: 0; justify-content: center; }
  .q-steps li b { width: 26px; height: 26px; font-size: 13px; }
  .q-nav { flex-direction: column; }
}

/* V2 반응형 */
@media (max-width: 1080px) {
  .hero2-grid, .hero2-grid.narrow-r { grid-template-columns: 1fr; gap: 40px; }
  .svc-row, .svc-row.rev { grid-template-columns: 1fr; gap: 30px; }
  .svc-row.rev .svc-txt { order: 1; }
  .svc-row.rev .svc-vis { order: 2; }
  .proc-wrap { grid-template-columns: 1fr; gap: 36px; }
  .proc-vis { position: static; min-height: 300px; }
  .loc-panel { grid-template-columns: 1fr; }
  .mat-strip { grid-template-columns: repeat(4, 1fr); }
  .sp-quick { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .area-grid { grid-template-columns: 1fr 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .cli-grid { grid-template-columns: 1fr 1fr; }
  .pt-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; column-gap: 14px; }
  .svc-gal { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .area-grid, .cli-grid, .pt-grid, .mosaic { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .svc-gal, .svc-gal.single { grid-template-columns: 1fr; }
  .svc-gal img { aspect-ratio: 4 / 3; }
  .area-grid > li.wide, .cli-grid > li.wide, .mosaic > li.span2, .pt-card.span2, .pt-cmp { grid-column: auto; }
  .pt-card.hl { grid-template-columns: 1fr; }
  .pt-cmp { grid-template-columns: 1fr; }
  .pt-cmp > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .mat-strip { grid-template-columns: repeat(2, 1fr); }
  .sp-quick { grid-template-columns: repeat(2, 1fr); }
  .hero2 { padding: calc(var(--hd-h) + 36px) 0 52px; }
  .cmp-table th, .cmp-table td { padding: 12px 12px; font-size: 13px; }
  .pt-card.span2 { grid-template-columns: 1fr; }
}


/* ---------- 방송 참여작 롤링 — 화면 하단 고정 티커 ---------- */
.credits-strip {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 88;
  display: flex; align-items: center; gap: 14px;
  background: rgba(13,15,19,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 0 10px 0 20px; height: 56px;
}
body.cs-on { padding-bottom: 56px; }
.cs-head {
  display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--ink2); white-space: nowrap;
}
.cs-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent); animation: csBlink 1.8s ease-in-out infinite;
}
@keyframes csBlink { 50% { opacity: .3; } }
.cs-viewport {
  flex: 1 1 auto; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.cs-track {
  display: inline-flex; align-items: baseline; white-space: nowrap; will-change: transform;
  animation: csScroll var(--cs-dur, 40s) linear infinite;
}
@keyframes csScroll { to { transform: translateX(-50%); } }
.credits-strip:hover .cs-track { animation-play-state: paused; }
.cs-item { display: inline-flex; align-items: baseline; gap: 11px; padding: 0 26px; }
.cs-title { font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -.01em; }
.cs-meta { font-size: 13.5px; color: var(--ink3); }
.cs-what { font-size: 14px; font-weight: 600; color: var(--accent); }
.cs-item::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--line2, #3a3f49); align-self: center; margin-left: 26px; margin-right: -28.5px; }
.cs-close {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 8px;
  font-size: 20px; line-height: 1; color: var(--ink3); background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
}
.cs-close:hover { color: var(--ink); background: rgba(255,255,255,.06); }
@media (prefers-reduced-motion: reduce) {
  .cs-track { animation: none; }
  .cs-dot { animation: none; }
}
@media (max-width: 640px) {
  /* 모바일 하단 빠른문의 바 위에 얹기 */
  .credits-strip { bottom: calc(51px + env(safe-area-inset-bottom)); height: 46px; gap: 10px; padding-left: 14px; }
  body.cs-on { padding-bottom: 46px; }
  .cs-head { display: none; }
  .cs-item { padding: 0 16px; }
  .cs-item::after { margin-left: 16px; margin-right: -18px; }
  .cs-title { font-size: 15.5px; }
}

/* ---------- 전화 안내 팝업 (PC 전용) ---------- */
.tel-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.tm-bg { position: absolute; inset: 0; background: rgba(5,6,8,.72); backdrop-filter: blur(4px); }
.tm-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg, 16px); padding: 40px 48px; text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.5); animation: tmPop .22s var(--ease, ease) both;
}
@keyframes tmPop { from { opacity: 0; transform: translateY(14px) scale(.97); } }
.tm-label { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; color: var(--accent); }
.tm-num { margin-top: 10px; font-size: clamp(30px, 4.5vw, 44px); font-weight: 900; letter-spacing: .01em; color: var(--ink); }
.tm-hours { margin-top: 8px; font-size: 13.5px; color: var(--ink3); }
.tm-btns { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }
.tm-copied { margin-top: 14px; font-size: 13.5px; color: var(--accent); }

/* ---------- 웹하드 팝업 확장 ---------- */
.tm-wh { max-width: 480px; text-align: left; }
.tm-wh .tm-label { text-align: center; }
.tm-acc { margin-top: 18px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.tm-acc-row { display: flex; align-items: center; gap: 12px; padding: 13px 16px; }
.tm-acc-row + .tm-acc-row { border-top: 1px solid var(--line); }
.tm-acc-row span { font-size: 12.5px; color: var(--ink3); width: 56px; flex: 0 0 auto; }
.tm-acc-row b { font-size: 19px; font-weight: 800; letter-spacing: .04em; color: var(--ink); flex: 1; }
.tm-mini { font-size: 12px; font-weight: 700; color: var(--accent); border: 1px solid var(--line2, #3a3f49); border-radius: 7px; padding: 5px 11px; background: transparent; }
.tm-mini:hover { border-color: var(--accent); }
.tm-steps { margin: 18px 0 0; padding-left: 20px; }
.tm-steps li { font-size: 13.5px; color: var(--ink2); line-height: 1.6; margin: 6px 0; }
.tm-steps b { color: var(--ink); }
.tm-wh .tm-btns { margin-top: 22px; }