/* 우주라이크솔루션 홈페이지 공통 스타일 */
:root {
  color-scheme: light;
  --navy: #003878; --navy-deep: #002656; --orange: #F89010; --orange-deep: #E07F08; --yellow: #FFB81F;
  --dark: #1E1E1E; --text: #333333; --mute: #777777; --line: #E4E4E4; --grey: #F4F4F4; --white: #FFFFFF;
  --wrap: 1200px; --gutter: clamp(20px, 4vw, 40px); --section: clamp(64px, 8vw, 110px);
  --radius: 12px; --shadow: 0 6px 24px rgba(0,32,72,.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--white); color: var(--text); font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, sans-serif; font-size: 16px; line-height: 1.7; word-break: keep-all; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
img { display: block; height: auto; }
.num { font-family: 'Roboto', 'Noto Sans KR', sans-serif; font-variant-numeric: tabular-nums; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; top: 0; background: var(--orange); color: #fff; padding: 8px 12px; z-index: 200; }
.skip:focus { left: 8px; top: 8px; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid #EEF1F5; }
.btn { display: inline-block; font-weight: 700; border-radius: 4px; padding: 15px 30px; font-size: 16px; border: 1px solid transparent; cursor: pointer; font-family: inherit; line-height: 1.3; text-align: center; }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; }
.btn-line { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-line:hover { background: rgba(255,255,255,.12); }
.btn-navy-line { color: var(--navy); border-color: var(--navy); }
.btn-navy-line:hover { background: var(--navy); color: #fff; }
.btn[disabled] { opacity: .6; cursor: default; }

/* ── 헤더 ─────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header-in { display: grid; grid-template-columns: auto 1fr auto; align-items: center; height: 76px; gap: 16px; }
.logo { display: block; }
.logo svg { height: 44px; width: auto; display: block; }
.gnb { display: flex; justify-content: center; gap: clamp(20px, 3vw, 44px); }
.gnb > li { position: relative; }
.gnb .top { display: block; padding: 0 6px; line-height: 76px; font-size: 17px; font-weight: 700; color: var(--dark); position: relative; white-space: nowrap; }
.gnb .top::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 3px; background: var(--orange); transform: translateX(-50%); transition: width .2s; }
.gnb > li:hover .top, .gnb > li:focus-within .top { color: var(--navy); }
.gnb > li:hover .top::after, .gnb > li:focus-within .top::after { width: 36px; }
.mega { display: none; position: absolute; left: 0; right: 0; top: 76px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px rgba(0,32,72,.12); }
.site-header:hover .mega, .site-header:focus-within .mega, .site-header.is-open .mega { display: block; }
.mega-in { display: flex; justify-content: center; gap: clamp(20px, 3vw, 44px); padding: 22px var(--gutter) 26px; }
.mega-col { min-width: 150px; display: flex; flex-direction: column; align-items: center; gap: 2px; border-left: 1px solid var(--line); }
.mega-col a { display: block; font-size: 14.5px; color: #555; padding: 8px 12px; text-align: center; }
.mega-col a:hover { color: var(--navy); font-weight: 700; }
.header-cta { justify-self: end; }
.menu-btn { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; padding: 10px; justify-self: end; }
.menu-btn span { display: block; height: 2px; background: var(--dark); margin: 5px 0; transition: transform .2s, opacity .2s; }
.mnav { display: none; }
@media (max-width: 960px) {
  .header-in { grid-template-columns: auto 1fr auto auto; height: 64px; }
  .logo svg { height: 36px; }
  .gnb, .mega { display: none !important; }
  .header-cta { font-size: 14px; padding: 10px 14px; }
  .menu-btn { display: block; }
  .mnav { position: fixed; inset: 64px 0 0 0; background: #fff; overflow-y: auto; z-index: 49; padding: 12px var(--gutter) 40px; }
  body.nav-open .mnav { display: block; }
  body.nav-open { overflow: hidden; }
  body.nav-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
  body.nav-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mnav > li { border-bottom: 1px solid var(--line); }
  .mnav .top { display: block; padding: 16px 4px; font-size: 18px; font-weight: 700; color: var(--dark); }
  .mnav ul { padding: 0 4px 12px 16px; }
  .mnav ul a { display: block; padding: 9px 0; font-size: 15px; color: #555; }
  .mnav .cta { margin-top: 20px; display: block; text-align: center; }
}

/* ── 히어로 슬라이드 ─────────────── */
.hero { position: relative; min-height: clamp(460px, 60vw, 640px); background: var(--navy); display: flex; align-items: center; justify-content: center; overflow: hidden; color: #fff; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: rgba(0,28,64,.62); pointer-events: none; }
.hero-in { position: relative; text-align: center; padding: 80px var(--gutter); max-width: 900px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero-eyebrow { font-size: clamp(14px, 1.4vw, 17px); font-weight: 500; color: var(--yellow); letter-spacing: .04em; }
.hero h1 { font-size: clamp(28px, 4.2vw, 54px); font-weight: 900; color: #fff; }
.hero-lede { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.8; color: rgba(255,255,255,.88); font-weight: 300; max-width: 34em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 26px; display: flex; justify-content: center; gap: 8px; }
.hero-dots button { width: 28px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.35); cursor: pointer; }
.hero-dots button.is-active { background: var(--orange); }
.hero-arrow { position: absolute; top: 50%; margin-top: -22px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); background: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.hero-arrow:hover { background: rgba(255,255,255,.12); }
.hero-prev { left: 24px; } .hero-next { right: 24px; }
@media (max-width: 720px) { .hero-arrow { display: none; } .hero-in { padding: 64px var(--gutter); } }

/* ERP 화면 슬라이드 */
.erp-slide { position: absolute; inset: 0; background: linear-gradient(120deg, #002656 0%, var(--navy) 55%, #0B4A93 100%); overflow: hidden; }
.erp-slide .grid-bg { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px); background-size: 48px 48px; }
.erp-window { position: absolute; right: 8%; top: 50%; transform: translateY(-50%); width: min(620px, 60vw); background: #fff; border-radius: 8px; box-shadow: 0 40px 80px rgba(0,0,0,.35); display: grid; grid-template-columns: 150px 1fr; overflow: hidden; font-size: 12.5px; color: var(--text); }
.erp-side { background: #F0F3F8; padding: 18px 0; display: flex; flex-direction: column; gap: 2px; color: #555; }
.erp-side b { padding: 0 18px 14px; color: var(--navy); font-size: 13px; font-weight: 900; }
.erp-side span { padding: 9px 18px; }
.erp-side span.on { background: #fff; color: var(--navy); font-weight: 700; }
.erp-main { padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.erp-main .head { display: flex; justify-content: space-between; align-items: center; }
.erp-main .head b { font-size: 14px; color: var(--dark); }
.erp-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.erp-stats div { background: #F6F7FA; border-radius: 6px; padding: 10px 12px; }
.erp-stats span { display: block; font-size: 11px; color: var(--mute); }
.erp-stats b { display: block; font-size: 18px; }
.erp-bar { position: relative; height: 10px; background: #EEF1F5; border-radius: 4px; }
.erp-bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 68.6%; background: var(--navy); border-radius: 4px; }
.erp-bar em { position: absolute; top: -3px; bottom: -3px; width: 1px; background: var(--mute); }
.erp-table { border: 1px solid #E8ECF2; border-radius: 6px; overflow: hidden; }
.erp-table div { display: grid; grid-template-columns: 80px 1fr 60px 80px; gap: 10px; padding: 7px 12px; border-top: 1px solid #EEF1F5; }
.erp-table div:first-child { background: #F6F7FA; font-size: 11px; color: var(--mute); border-top: 0; }
.erp-ai { display: flex; gap: 10px; align-items: center; background: #FFF6EA; border-radius: 6px; padding: 9px 12px; font-size: 11.5px; color: var(--dark); }
@media (max-width: 960px) { .erp-window { display: none; } }

/* ── 섹션 공통 ───────────────────── */
.section { padding: var(--section) 0; }
.section.grey { background: var(--grey); }
.section.navy { background: var(--navy); color: #fff; }
.sec-head { text-align: center; max-width: 46em; margin: 0 auto 48px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sec-head .label { font-size: 15px; font-weight: 700; color: var(--orange); letter-spacing: .04em; }
.section.navy .sec-head .label { color: var(--yellow); }
.sec-head h2 { font-size: clamp(24px, 3vw, 38px); color: var(--dark); }
.section.navy .sec-head h2 { color: #fff; }
.sec-head .bar { display: block; width: 40px; height: 3px; background: var(--orange); margin: 6px auto 4px; }
.sec-head .lede { font-size: clamp(15px, 1.2vw, 16.5px); line-height: 1.8; color: #555; }
.section.navy .sec-head .lede { color: rgba(255,255,255,.78); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.grid-mod { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 1100px) { .grid-mod { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 820px) { .grid-3, .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4, .grid-5, .grid-mod { grid-template-columns: 1fr; } }

/* 서비스 카드 */
.svc-card { padding: 40px 24px 34px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; color: inherit; transition: transform .2s, box-shadow .2s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,32,72,.14); }
.icon-circle { width: 92px; height: 92px; border-radius: 50%; background: #F0F4FA; display: flex; align-items: center; justify-content: center; flex: none; }
.svc-card h3 { font-size: 19px; color: var(--dark); }
.svc-card p { font-size: 14px; line-height: 1.7; color: var(--mute); }
.svc-card .more { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-top: 2px; }

/* 사진 카드 */
.photo-card { overflow: hidden; display: flex; flex-direction: column; }
.photo-card .ph { height: 200px; overflow: hidden; background: #E9EEF6; }
.photo-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.photo-card .body { padding: 28px 30px 32px; display: flex; flex-direction: column; gap: 12px; }
.photo-card .k { font-size: 13px; font-weight: 700; color: var(--orange); }
.photo-card h3 { font-size: 21px; color: var(--dark); }
.photo-card p { font-size: 15px; line-height: 1.75; color: #555; }

/* 현장과 시스템 */
.field-sys { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.phones { position: relative; height: 540px; }
.phones .plate { position: absolute; left: 30px; right: 30px; top: 50px; bottom: 0; background: var(--grey); border-radius: 16px; }
.phones .cap { position: absolute; left: 56px; bottom: 18px; font-size: 12px; color: var(--mute); }
.phone { position: absolute; width: 218px; height: 473px; overflow: hidden; border-radius: 28px; border: 5px solid #1B2A44; background: #F4F6FA; box-shadow: 0 30px 60px rgba(0,0,0,.28); }
.phone > div { width: 390px; height: 844px; transform: scale(.56); transform-origin: 0 0; background: #F4F6FA; }
.phone-1 { left: 90px; top: 0; } .phone-2 { right: 90px; top: 80px; }
.ph-head { background: var(--navy); color: #fff; padding: 54px 22px 22px; border-radius: 0 0 22px 22px; }
.ph-head small { display: block; font-size: 12px; color: rgba(255,255,255,.65); }
.ph-head b { display: block; font-size: 24px; font-weight: 900; margin-top: 4px; }
.ph-head span { display: block; font-size: 13px; color: rgba(255,255,255,.8); margin-top: 6px; }
.ph-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.ph-item { background: #fff; border: 1px solid #DCE3EE; border-radius: 14px; padding: 18px; display: flex; justify-content: space-between; align-items: center; font-size: 15px; color: var(--dark); }
.ph-item i { color: var(--orange); font-weight: 900; font-style: normal; }
.ph-card { background: #fff; border: 1px solid #DCE3EE; border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.ph-card .t { display: flex; justify-content: space-between; align-items: baseline; }
.ph-card .t b { font-size: 20px; color: var(--dark); }
.ph-card .t span { font-size: 11px; color: var(--navy); border: 1px solid var(--navy); border-radius: 999px; padding: 2px 8px; }
.ph-card .o { font-size: 13px; color: #555; }
.ph-card .n { font-size: 17px; color: var(--navy); font-weight: 700; }
.ph-card .r { font-size: 11.5px; color: #8A94A6; }
.ph-card .b { border: 1px solid #DCE3EE; border-radius: 8px; padding: 10px; text-align: center; font-size: 13px; color: var(--navy); }
.ph-chips { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.ph-chips span { display: inline-flex; align-items: center; justify-content: center; padding: 9px 0; border: 1.5px solid #C9D2DF; color: #3B4A63; background: #fff; border-radius: 8px; font-size: 14px; font-weight: 500; }
.ph-chips span.on { border-color: var(--orange); color: var(--orange); background: #FFF4E6; }
.ph-sign { background: #FFF4E6; border: 1px solid #F5D3A6; border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.ph-sign b { font-size: 13px; color: var(--dark); }
.ph-sign small { font-size: 12px; color: #6B7280; }
.ph-sign .two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.ph-sign .two span { border-radius: 8px; padding: 12px 6px; text-align: center; font-size: 13px; font-weight: 700; color: #fff; }
.ph-sign .two span:first-child { background: var(--navy); } .ph-sign .two span:last-child { background: var(--orange); }
.tool-list { display: flex; flex-direction: column; gap: 14px; }
.tool-list .card { padding: 22px 26px; display: grid; grid-template-columns: 150px 1fr; gap: 16px; align-items: start; }
.tool-list b { font-size: 16px; color: var(--navy); }
.tool-list span { font-size: 14.5px; line-height: 1.7; color: #555; }
@media (max-width: 960px) { .field-sys { grid-template-columns: 1fr; gap: 40px; } .phones { height: 520px; max-width: 520px; margin: 0 auto; width: 100%; } .phone-1 { left: 20px; } .phone-2 { right: 20px; } }
@media (max-width: 560px) { .phones { height: 420px; } .phone { width: 170px; height: 369px; border-radius: 22px; } .phone > div { transform: scale(.436); } .phone-1 { left: 8px; } .phone-2 { right: 8px; top: 50px; } .phones .cap { left: 20px; bottom: 8px; } .tool-list .card { grid-template-columns: 1fr; gap: 6px; } }

/* 진행 방식 */
.steps { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.steps::before { content: ""; position: absolute; left: 10%; right: 10%; top: 32px; height: 2px; background: #D5DCE6; }
.step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.step .n { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 22px; box-shadow: 0 0 0 8px var(--grey); }
.step:last-child .n { background: var(--orange); }
.section:not(.grey) .step .n { box-shadow: 0 0 0 8px #fff; }
.step b { font-size: 18px; color: var(--dark); }
.step p { font-size: 14px; line-height: 1.7; color: var(--mute); max-width: 15em; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 16px; } .steps::before { display: none; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .step { flex-direction: row; text-align: left; align-items: flex-start; } .step .n { flex: none; width: 48px; height: 48px; font-size: 18px; } .step .txt { display: flex; flex-direction: column; gap: 4px; } .step p { max-width: none; } }

/* 원칙 */
.principles { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.principles div { border: 1px solid rgba(255,255,255,.25); border-radius: 10px; padding: 26px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; color: #fff; font-size: 15.5px; line-height: 1.6; font-weight: 500; }
.principles-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.principles-2 div { align-items: flex-start; text-align: left; padding: 28px 30px; gap: 10px; font-weight: 400; }
.principles-2 .t { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: var(--yellow); }
.principles-2 p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.82); }
@media (max-width: 1100px) { .principles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .principles, .principles-2 { grid-template-columns: 1fr; } }

/* 소식 카드 */
.news-card { overflow: hidden; display: flex; flex-direction: column; }
.news-card .ph { height: 180px; overflow: hidden; background: #E9EEF6; }
.news-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.news-card .body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; }
.news-card .k { font-size: 12px; font-weight: 700; color: var(--orange); }
.news-card b { font-size: 17px; color: var(--dark); line-height: 1.45; }
.news-card p { font-size: 13.5px; line-height: 1.7; color: var(--mute); }
.news-card .d { font-size: 12px; color: #AAA; margin-top: 4px; }
.center { display: flex; justify-content: center; margin-top: 40px; }

/* 상담 */
.contact-band { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.contact-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-band .shade { position: absolute; inset: 0; background: rgba(20,20,20,.66); }
.contact-in { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: var(--section) 0; }
.contact-txt { display: flex; flex-direction: column; gap: 18px; }
.contact-txt .label { font-size: 15px; font-weight: 700; color: var(--yellow); letter-spacing: .04em; }
.contact-txt h2 { font-size: clamp(26px, 3vw, 40px); color: #fff; }
.contact-txt p { font-size: 16.5px; line-height: 1.8; color: rgba(255,255,255,.8); max-width: 24em; }
.contact-txt .mail { color: rgba(255,255,255,.6); font-size: 15px; }
@media (max-width: 900px) { .contact-in { grid-template-columns: 1fr; gap: 36px; } }

/* 폼 */
.form { padding: 36px; display: flex; flex-direction: column; gap: 14px; color: var(--text); }
.form .row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; color: var(--mute); }
.field label em { font-style: normal; color: var(--orange); }
.field input, .field select, .field textarea { font: inherit; font-size: 15px; color: var(--dark); background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 13px 14px; width: 100%; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange); }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--mute); line-height: 1.6; }
.consent input { margin-top: 3px; flex: none; width: 16px; height: 16px; }
.consent a { color: var(--navy); text-decoration: underline; }
.form-msg { font-size: 14px; min-height: 1.5em; }
.form-msg.ok { color: #1B7F4B; } .form-msg.err { color: #C0392B; }
@media (max-width: 560px) { .form { padding: 24px 20px; } .form .row { grid-template-columns: 1fr; } }

/* ── 하위 페이지 ─────────────────── */
.banner { position: relative; min-height: clamp(240px, 30vw, 380px); background: var(--navy); display: flex; align-items: center; justify-content: center; overflow: hidden; color: #fff; text-align: center; }
.banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner .shade { position: absolute; inset: 0; background: rgba(0,28,64,.6); }
.banner-in { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 56px var(--gutter); }
.banner h1 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 900; color: #fff; }
.banner .bar { width: 40px; height: 3px; background: var(--orange); }
.banner .lede { font-size: clamp(15px, 1.3vw, 17px); color: rgba(255,255,255,.88); font-weight: 300; max-width: 40em; line-height: 1.75; }
.banner.art { text-align: left; background: radial-gradient(ellipse at 80% 50%, #0B4A96 0%, var(--navy) 60%); }
.banner.art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 40px 40px; }
.banner-grid { position: relative; max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: center; gap: 24px; padding: 0 var(--gutter); }
.banner.art .banner-in { align-items: flex-start; padding: 48px 0; }
.banner.art .lede { text-align: left; }
.banner-fig { height: clamp(220px, 26vw, 340px); padding: 18px 0; }
.banner-fig svg { width: 100%; height: 100%; }
@media (max-width: 720px) { .banner-grid { grid-template-columns: 1fr; gap: 0; } .banner.art .banner-in { padding: 40px 0 8px; } .banner-fig { height: 210px; padding: 0 0 24px; } }
.crumb { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 8px; }
.cta-band { background: var(--grey); padding: clamp(56px, 7vw, 80px) 0; text-align: center; }
.cta-band h2 { font-size: clamp(22px, 2.6vw, 30px); color: var(--dark); }
.cta-band p { font-size: 16px; color: #555; margin: 12px 0 26px; }

.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.intro-txt { display: flex; flex-direction: column; gap: 18px; }
.intro-txt .label { font-size: 15px; font-weight: 700; color: var(--orange); }
.intro-txt h2 { font-size: clamp(24px, 2.8vw, 36px); color: var(--dark); }
.intro-txt .bar { width: 40px; height: 3px; background: var(--orange); }
.intro-txt p { font-size: 16px; line-height: 1.85; color: #444; }
.intro-ph { display: flex; flex-direction: column; gap: 10px; }
.intro-ph .card { overflow: hidden; height: clamp(240px, 32vw, 400px); }
.intro-ph img { width: 100%; height: 100%; object-fit: cover; }
.intro-ph .art-card { background: radial-gradient(ellipse at 70% 40%, #0B4A96 0%, var(--navy) 65%); display: flex; align-items: center; padding: 16px; }
.intro-ph .art-card svg { width: 100%; height: 100%; }
.intro-ph small { font-size: 12.5px; color: var(--mute); text-align: right; }
@media (max-width: 900px) { .intro { grid-template-columns: 1fr; gap: 32px; } }

.table-card { padding: 12px 36px 24px; overflow-x: auto; }
.trow { display: grid; grid-template-columns: 180px 1fr 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.7; align-items: start; min-width: 640px; }
.trow.head { padding: 14px 0 12px; border-bottom: 2px solid var(--dark); font-size: 12.5px; font-weight: 700; color: var(--mute); }
.trow b { color: var(--dark); } .trow .how { color: var(--navy); }
.note { font-size: 13px; color: var(--mute); margin-top: 14px; }
@media (max-width: 720px) {
  .table-card { padding: 8px 20px 20px; overflow: visible; }
  .trow { grid-template-columns: 1fr; min-width: 0; gap: 4px; padding: 14px 0; }
  .trow.head { display: none; }
  .trow b { font-size: 15.5px; }
  .trow .how::before { content: "처리 · "; color: var(--mute); }
}
.detail-2 { display: grid; grid-template-columns: 1fr 240px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .detail-2 { grid-template-columns: 1fr; } .detail-2 .phone-wrap { display: none; } }
.phone-wrap { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.phone-wrap .phone { position: static; width: 214px; height: 464px; border-radius: 28px; }
.phone-wrap .phone > div { transform: scale(.55); }
.phone-wrap small { font-size: 12px; color: var(--mute); text-align: center; }
.list-card { padding: 30px 32px; display: flex; flex-direction: column; gap: 12px; }
.list-card b { font-size: 17px; color: var(--dark); }
.list-card ul li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 14.5px; line-height: 1.65; color: #444; align-items: start; }
.module-card { padding: 26px 28px; display: flex; flex-direction: column; gap: 8px; }
.module-card b { font-size: 16px; color: var(--dark); }
.module-card span { font-size: 13.5px; line-height: 1.7; color: var(--mute); }
.outs { padding: 30px 36px; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.outs .label { font-size: 13px; font-weight: 700; color: var(--mute); letter-spacing: .06em; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { background: #F0F4FA; color: var(--navy); font-size: 13.5px; padding: 7px 14px; border-radius: 999px; }
.related { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.related a { padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 700; color: var(--dark); }
.related a i { color: var(--orange); font-style: normal; }
@media (max-width: 560px) { .related { grid-template-columns: 1fr; } }

.info-card { padding: 8px 32px; }
.info-row { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.info-row b { color: var(--mute); font-weight: 500; } .info-row span { color: var(--dark); line-height: 1.7; }
.info-row:last-child { border-bottom: 0; }
@media (max-width: 560px) { .info-row { grid-template-columns: 1fr; gap: 4px; } }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.map-box { background: var(--grey); border-radius: var(--radius); min-height: 320px; display: flex; align-items: center; justify-content: center; color: var(--mute); font-size: 14px; border: 1px dashed #C9CFD8; }
.prose { max-width: 46em; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 22px; font-size: 17px; line-height: 1.85; color: #444; }
.team-card { display: grid; grid-template-columns: 280px 1fr; gap: 40px; padding: 40px 44px; align-items: center; max-width: 1000px; margin: 0 auto; }
.team-card .ph { height: 360px; background: var(--grey); border-radius: var(--radius); overflow: hidden; }
.team-card h3 { font-size: 26px; color: var(--dark); }
.team-card h3 small { font-size: 15px; font-weight: 500; color: var(--mute); margin-left: 8px; }
@media (max-width: 760px) { .team-card { grid-template-columns: 1fr; padding: 28px 24px; } }
.role-card { padding: 40px 32px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.role-card h3 { font-size: 21px; color: var(--dark); }
.role-card p { font-size: 14.5px; line-height: 1.75; color: #555; }
.role-card small { font-size: 13px; color: var(--mute); }

/* 성공사례 */
.ledger { padding: 36px 40px 32px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.ledger .t { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.ledger .t b { font-size: 16px; color: var(--dark); } .ledger .t span { font-size: 13px; color: var(--mute); }
.ledger svg { width: 100%; height: auto; }
.legend { display: flex; gap: 24px; font-size: 13px; color: var(--mute); border-top: 1px solid var(--line); padding-top: 16px; flex-wrap: wrap; }
.legend span { display: flex; align-items: center; gap: 8px; }
.legend i { display: inline-block; width: 16px; height: 10px; }
.badge { position: absolute; right: 40px; top: -28px; background: var(--orange); color: #fff; padding: 16px 22px; border-radius: 10px; display: flex; flex-direction: column; gap: 2px; box-shadow: 0 12px 30px rgba(248,144,16,.35); }
.badge b { font-size: 40px; font-weight: 900; line-height: 1; } .badge span { font-size: 12px; font-weight: 500; }
@media (max-width: 560px) { .ledger { padding: 24px 20px; } .badge { right: 16px; top: -20px; padding: 10px 14px; } .badge b { font-size: 26px; } }
.case-table { padding: 8px 36px 28px; overflow-x: auto; }
.crow { display: grid; grid-template-columns: 1.6fr .8fr 1fr .6fr 1.4fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 15px; align-items: center; min-width: 760px; }
.crow.head { padding: 18px 0 12px; border-bottom: 2px solid var(--dark); font-size: 13px; font-weight: 700; color: var(--mute); }
.crow .name b { display: block; color: var(--dark); font-size: 17px; } .crow .name span { color: var(--mute); font-size: 13.5px; }
.crow .rate { font-weight: 900; color: var(--navy); font-size: 20px; white-space: nowrap; } .crow .memo { color: var(--mute); font-size: 13.5px; line-height: 1.6; }
@media (max-width: 560px) { .case-table { padding: 8px 20px 20px; } .crow { display: flex; flex-wrap: wrap; align-items: center; min-width: 0; gap: 6px 14px; padding: 18px 0; } .crow.head { display: none; } .crow .name, .crow .memo { flex-basis: 100%; } .crow .rate { margin-left: auto; font-size: 18px; } }

/* 활동 · FAQ */
.chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.chips a { font-size: 14px; font-weight: 500; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--text); }
.chips a.on { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 700; }
.featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; margin-bottom: 40px; }
.featured .txt { background: var(--navy); color: #fff; padding: 44px; border-radius: var(--radius); display: flex; flex-direction: column; justify-content: space-between; gap: 40px; min-height: 320px; }
.featured .txt small { font-size: 12px; font-weight: 700; color: var(--yellow); letter-spacing: .06em; }
.featured .txt h2 { font-size: clamp(22px, 2.4vw, 32px); margin: 14px 0; }
.featured .txt p { font-size: 15.5px; line-height: 1.75; color: rgba(255,255,255,.8); }
.featured .txt .d { font-size: 13px; color: rgba(255,255,255,.6); }
.featured .ph { overflow: hidden; min-height: 240px; } .featured .ph img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .featured { grid-template-columns: 1fr; } }
.post-list { padding: 8px 36px 12px; }
.post { display: grid; grid-template-columns: 110px 1fr 120px; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: start; }
.post .tag { font-size: 12px; font-weight: 700; color: var(--navy); background: #F0F4FA; border-radius: 999px; padding: 5px 12px; display: inline-block; }
.post a { font-size: 19px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 6px; }
.post p { font-size: 14.5px; line-height: 1.7; color: var(--mute); }
.post .d { font-size: 14px; color: var(--mute); text-align: right; }
@media (max-width: 640px) { .post-list { padding: 4px 20px; } .post { grid-template-columns: 1fr; gap: 8px; } .post .d { text-align: left; } }
.pager { display: flex; justify-content: center; gap: 6px; padding-top: 36px; }
.pager span { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; border: 1px solid var(--line); background: #fff; color: var(--text); }
.pager span.on { background: var(--navy); border-color: var(--navy); color: #fff; }
.faq { max-width: 960px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq details { padding: 0; }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 40px 1fr 24px; gap: 16px; align-items: center; padding: 22px 28px; font-size: 17px; font-weight: 700; color: var(--dark); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px; }
.faq summary .pm { font-size: 22px; color: var(--mute); text-align: center; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq .a { padding: 0 28px 24px 84px; font-size: 15px; line-height: 1.8; color: #555; }
@media (max-width: 560px) { .faq summary { padding: 18px 18px; font-size: 16px; } .faq .a { padding: 0 18px 20px 18px; } }

/* 법적 문서 */
.legal { max-width: 860px; margin: 0 auto; font-size: 15px; line-height: 1.85; color: #444; }
.legal h2 { font-size: 20px; color: var(--dark); margin: 40px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal p + p, .legal ul + p { margin-top: 10px; }
.legal ul { list-style: disc; padding-left: 22px; margin-top: 8px; }
.legal li { margin: 4px 0; }
.legal table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 14px; }
.legal th, .legal td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.legal th { background: var(--grey); font-weight: 700; }

/* ── 푸터 ─────────────────────────── */
.site-footer { background: #2C2C2C; color: #AAA; padding: 48px 0 36px; font-size: 13px; }
.foot-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid #444; }
.foot-top svg { height: 40px; width: auto; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; color: #DDD; font-weight: 500; }
.foot-info { line-height: 1.9; margin-top: 26px; }
.copy { font-size: 12px; color: #888; margin-top: 18px; }

/* ERP 서비스 페이지: 정적 ERP 창 */
.erp-static { border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,32,72,.22); }
.erp-static .erp-window { position: static; transform: none; width: 100%; box-shadow: none; }
@media (max-width: 560px) { .erp-static .erp-window { grid-template-columns: 1fr; } .erp-static .erp-side { display: none; } }
.map-card svg text { user-select: none; }
@media (max-width: 720px) { .map-card { padding: 8px !important; overflow-x: auto; } .map-card svg { min-width: 640px; } }

/* 세대 안내 페이지 소개 */
.guide { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.guide-txt { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.guide-txt .label { font-size: 15px; font-weight: 700; color: var(--orange); }
.guide-txt h2 { font-size: clamp(24px, 2.8vw, 36px); color: var(--dark); }
.guide-txt .bar { width: 40px; height: 3px; background: var(--orange); }
.guide-txt p { font-size: 16px; color: #444; line-height: 1.85; margin: 0; }
.guide-txt .checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.guide-txt .checks li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; }
.guide-txt .checks svg { flex: none; margin-top: 3px; }
.guide-btns { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.guide-btns small { font-size: 12.5px; color: var(--mute); }
.guide-phones { position: relative; height: 560px; }
.guide-phones::before { content: ""; position: absolute; left: 24px; right: 24px; top: 60px; bottom: 0; background: var(--grey); border-radius: 16px; }
.guide-phones .gp { position: absolute; width: 230px; aspect-ratio: 390 / 780; overflow: hidden; border-radius: 28px; border: 5px solid #1B2A44; background: #0F1115; box-shadow: 0 30px 60px rgba(0,0,0,.28); }
.guide-phones .gp img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.guide-phones .gp-1 { left: 40px; top: 0; }
.guide-phones .gp-2 { right: 40px; top: 70px; }
@media (max-width: 960px) { .guide { grid-template-columns: 1fr; gap: 32px; } .guide-phones { height: 520px; max-width: 520px; margin: 0 auto; width: 100%; } }
@media (max-width: 560px) { .guide-phones { height: 420px; } .guide-phones .gp { width: 170px; border-radius: 22px; } .guide-phones .gp-1 { left: 8px; } .guide-phones .gp-2 { right: 8px; top: 50px; } }

/* 성공사례 · 집회 카드 */
.meet-card .mc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.meet-card .mc-head b { font-size: 18px; }
.meet-card .mc-head span { color: var(--mute); font-size: 13.5px; }
.meet-card .label { font-size: 13px; font-weight: 700; color: var(--orange); margin: 10px 0 6px; }
.meet-card .mc-work { font-size: 14.5px; color: #555; line-height: 1.7; margin: 0; }

/* 성공사례 · 진행 중인 업무 */
.big-site { display: flex; flex-direction: column; gap: 6px; padding: 26px 28px; }
.big-site .k { font-size: 12.5px; font-weight: 700; color: var(--orange); letter-spacing: 1px; }
.big-site b { font-size: 19px; color: var(--dark); }
.big-site .sz { font-size: 30px; font-weight: 900; color: var(--navy); line-height: 1.2; }
.big-site .w { font-size: 13.5px; color: var(--mute); }
.prow { display: grid; grid-template-columns: .5fr 1.6fr 1.8fr .7fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; align-items: center; min-width: 640px; }
.prow.head { padding: 18px 0 12px; border-bottom: 2px solid var(--dark); font-size: 13px; font-weight: 700; color: var(--mute); }
.prow .rg { font-weight: 700; color: var(--navy); }
.prow .nm { color: var(--dark); font-weight: 700; }
.prow .st { font-style: normal; display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; background: var(--navy); color: #fff; white-space: nowrap; }
.prow .st.soon { background: var(--orange); }
.regions { margin-top: 40px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 32px 36px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 32px; align-items: center; }
.regions .label { font-size: 13px; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.regions h3 { font-size: 21px; color: var(--dark); line-height: 1.45; }
.rg-body p { font-size: 15px; color: #555; line-height: 1.8; margin: 0 0 14px; }
.rg-group b { display: block; font-size: 13px; color: var(--mute); margin-bottom: 8px; }
.chips-s { display: flex; flex-wrap: wrap; gap: 6px; }
.chips-s span { background: var(--grey); color: var(--navy); font-weight: 700; font-size: 13.5px; padding: 6px 12px; border-radius: 999px; }
@media (max-width: 960px) { .regions { grid-template-columns: 1fr; }  }
@media (max-width: 560px) { .regions { padding: 24px 20px; } .prow { grid-template-columns: 1fr auto; min-width: 0; gap: 4px 12px; padding: 14px 0; } .prow.head { display: none; } .prow .rg { grid-area: 1 / 1; font-size: 13px; } .prow > span:last-child { grid-area: 1 / 2; } .prow .nm { grid-area: 2 / 1 / 3 / 3; } .prow > span:nth-child(3) { grid-area: 3 / 1 / 4 / 3; font-size: 14px; color: #555; } }

/* 정보 게시판 */
.info-card { display: flex; flex-direction: column; gap: 10px; padding: 26px 28px; height: 100%; }
.info-card .meta, .article .meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--mute); }
.cat { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; color: #fff; background: var(--navy); }
.cat.c2 { background: #1F6F8B; } .cat.c3 { background: var(--orange); }
.info-card h3 { font-size: 18px; line-height: 1.45; color: var(--dark); }
.info-card h3 a { color: inherit; } .info-card h3 a:hover { color: var(--navy); }
.info-card p { font-size: 14.5px; color: #555; line-height: 1.7; flex: 1; }
.info-card .more { font-weight: 700; color: var(--navy); font-size: 14px; }
.info-grid > div { display: flex; } .info-grid > div[hidden] { display: none; }
.article-wrap { padding-top: 40px; }
.article { max-width: 780px; }
.article .crumb-dark { font-size: 13px; color: var(--mute); margin-bottom: 14px; } .article .crumb-dark a { color: var(--mute); }
.article h1 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.35; color: var(--dark); margin: 14px 0 16px; }
.article .lede { font-size: 17px; color: #555; line-height: 1.8; padding-left: 16px; border-left: 3px solid var(--orange); margin-bottom: 36px; }
.article .body { font-size: 16.5px; line-height: 1.9; color: var(--text); }
.article .body h2 { font-size: 22px; margin: 40px 0 12px; color: var(--dark); }
.article .body h3 { font-size: 18px; margin: 28px 0 8px; color: var(--dark); }
.article .body p { margin: 0 0 18px; }
.article .body ul, .article .body ol { margin: 0 0 18px; padding-left: 22px; }
.article .body li { margin-bottom: 8px; }
.article .body blockquote { margin: 0 0 18px; padding: 14px 18px; background: var(--grey); border-radius: 8px; color: #555; }
.article .body a { color: var(--navy); text-decoration: underline; }
.article .note { margin-top: 36px; }
.article .tags { margin-top: 20px; }
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-nav a { display: flex; flex-direction: column; gap: 4px; font-size: 15px; font-weight: 700; color: var(--dark); }
.article-nav a small { font-size: 12px; color: var(--mute); font-weight: 400; }
.article-nav a.r { text-align: right; }
@media (max-width: 560px) { .article-nav { grid-template-columns: 1fr; } .article-nav a.r { text-align: left; } }

/* FAQ 그룹 */
.faq-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.faq-nav a { font-size: 14px; font-weight: 700; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--navy); }
.faq-nav a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.faq-group { max-width: 960px; margin: 0 auto 48px; scroll-margin-top: 90px; }
.faq-group h2 { font-size: 22px; color: var(--dark); margin-bottom: 16px; padding-left: 14px; border-left: 4px solid var(--orange); }
/* 활동 개별 페이지 */
.article-photo { overflow: hidden; margin-bottom: 32px; max-height: 420px; }
.article-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card .ph { display: block; }
.news-card b a { color: inherit; }
.featured .txt h2 a { color: #fff; }
.post[hidden] { display: none; }

/* 현장접수 패드 · 현황판 목업 */
.guide.kit { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
.field-kit { position: relative; display: grid; grid-template-columns: 1fr 190px; gap: 20px; align-items: end; }
.tablet { border: 6px solid #1B2A44; border-radius: 18px; background: #F4F6FA; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.22); font-size: 12px; }
.tb-bar { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #fff; border-bottom: 1px solid var(--line); }
.tb-bar b { font-size: 15px; color: var(--navy); }
.tb-bar .pin { font-size: 11px; font-weight: 700; color: var(--navy); background: #E8EEF7; padding: 4px 10px; border-radius: 999px; }
.tb-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.tb-row { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px; }
.tb-row div { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; display: flex; flex-direction: column; gap: 2px; }
.tb-row small { font-size: 10px; color: var(--mute); } .tb-row span { font-size: 14px; font-weight: 700; color: var(--dark); }
.tb-id { display: grid; grid-template-columns: 1fr 76px; gap: 8px; }
.tb-id .ph { border: 1.5px dashed #B9C3D1; border-radius: 8px; background: #fff; min-height: 44px; display: flex; align-items: center; justify-content: center; color: var(--mute); font-weight: 700; }
.tb-id .mask { font-size: 11px; color: var(--navy); background: #E8EEF7; padding: 4px 10px; border-radius: 999px; }
.tb-id .btns { display: flex; flex-direction: column; gap: 6px; }
.tb-id .btns span { display: block; text-align: center; padding: 7px 0; border-radius: 6px; border: 1px solid var(--line); background: #fff; color: var(--mute); font-size: 11px; }
.tb-id .btns span.on { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 700; }
.tb-sign { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px 4px; }
.tb-sign small { font-size: 10px; color: var(--mute); } .tb-sign svg { width: 100%; height: 52px; display: block; }
.tb-submit { background: var(--orange); color: #fff; text-align: center; font-weight: 700; font-size: 13px; padding: 11px; border-radius: 8px; }
.status-ph { border: 5px solid #1B2A44; border-radius: 24px; background: #F5F7FB; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.22); font-size: 11px; }
.st-head { background: var(--navy); color: #fff; text-align: center; padding: 14px 10px 12px; display: flex; flex-direction: column; gap: 3px; }
.st-head b { font-size: 15px; color: var(--yellow); } .st-head small { font-size: 10px; opacity: .85; }
.st-head .live { align-self: center; margin-top: 6px; font-size: 9.5px; font-weight: 700; color: #1E1E1E; background: var(--yellow); padding: 3px 9px; border-radius: 999px; }
.ring { position: relative; width: 96px; margin: 14px auto 8px; } .ring svg { width: 100%; height: auto; display: block; }
.ring b { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; color: var(--navy); }
.st-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 10px; }
.st-nums div { background: #fff; border-radius: 8px; padding: 8px 6px; text-align: center; display: flex; flex-direction: column; gap: 2px; }
.st-nums div.a { background: #FFF3E3; } .st-nums small { font-size: 9.5px; color: var(--mute); } .st-nums b { font-size: 14px; color: var(--dark); } .st-nums div.a b { color: var(--orange); }
.st-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; padding: 10px; }
.st-grid div { background: #fff; border-radius: 6px; padding: 6px 2px; text-align: center; display: flex; flex-direction: column; gap: 1px; }
.st-grid small { font-size: 9px; color: var(--mute); } .st-grid b { font-size: 12.5px; color: var(--orange); }
@media (max-width: 960px) { .guide.kit { grid-template-columns: 1fr; } .field-kit { max-width: 560px; margin: 0 auto; width: 100%; } }
@media (max-width: 560px) { .field-kit { grid-template-columns: 1fr; } .status-ph { max-width: 220px; } }

.tb-doc { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px; font-family: 'Noto Serif KR', 'Batang', serif; color: #222; }
.tb-doc > b { display: block; text-align: center; font-size: 15px; letter-spacing: 3px; margin-bottom: 8px; }
.tb-tbl { display: grid; grid-template-columns: 1fr 1fr 2fr; border: 1px solid #333; margin-bottom: 8px; font-size: 10.5px; }
.tb-tbl span { padding: 3px 6px; border-right: 1px solid #333; border-bottom: 1px solid #333; text-align: center; }
.tb-tbl span:nth-child(3n) { border-right: 0; } .tb-tbl span:nth-child(n+4) { border-bottom: 0; font-weight: 700; }
.tb-doc p { font-size: 9.5px; line-height: 1.55; margin: 0 0 4px; }
.tb-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; font-size: 10.5px; }
.tb-foot .sig { width: 84px; height: 30px; border: 1px dashed #7A8BA8; border-radius: 4px; } .tb-foot .sig svg { width: 100%; height: 100%; display: block; }
.tb-check { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--dark); }
.tb-check i { width: 14px; height: 14px; border-radius: 3px; background: var(--navy); position: relative; flex: none; }
.tb-check i::after { content: ""; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.tb-actions { display: grid; grid-template-columns: auto auto 1fr; gap: 6px; }
.tb-actions span { text-align: center; padding: 9px 12px; border-radius: 6px; border: 1px solid var(--line); background: #fff; font-size: 12px; font-weight: 700; color: var(--dark); }
.tb-actions .go { background: var(--navy); color: #fff; border-color: var(--navy); }
