/* ===========================================================
   노잼컴퍼니 홈페이지 스타일
   =========================================================== */

:root {
  --ink:        #0d1520;
  --ink-2:      #33414f;
  --ink-3:      #64748b;
  --line:       #e3e8ee;
  --line-soft:  #eef2f6;
  --bg:         #ffffff;
  --bg-soft:    #f6f8fa;
  --bg-deep:    #0d1520;

  --brand:      #1c4f8f;
  --brand-dark: #143a6b;
  --brand-soft: #eaf1fa;
  --accent:     #e2683c;
  --accent-soft:#fdf0ea;

  --radius:     14px;
  --radius-sm:  9px;
  --shadow:     0 1px 2px rgba(13,21,32,.05), 0 8px 24px rgba(13,21,32,.06);
  --shadow-lg:  0 2px 4px rgba(13,21,32,.05), 0 18px 48px rgba(13,21,32,.10);

  --maxw:       1160px;
  --font: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard",
          "Noto Sans KR", "Malgun Gothic", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

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

h1, h2, h3, h4 { line-height: 1.32; margin: 0; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- 상단 알림 바 ---------- */
.topbar {
  background: var(--bg-deep);
  color: #b9c4d1;
  font-size: 13px;
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; height: 38px;
}
.topbar strong { color: #fff; font-weight: 600; }
.topbar .topbar-right { display: flex; gap: 18px; }
.topbar a:hover { color: #fff; }

/* ---------- 헤더 ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 24px;
}
.logo { display: flex; align-items: baseline; gap: 9px; }
.logo-mark {
  font-size: 21px; font-weight: 800; letter-spacing: -0.04em; color: var(--brand);
}
.logo-sub { font-size: 11px; color: var(--ink-3); letter-spacing: .14em; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 15px; border-radius: 8px; font-size: 15px; font-weight: 500;
  color: var(--ink-2); transition: .15s;
}
.nav a:hover { background: var(--bg-soft); color: var(--ink); }
.nav a.active { color: var(--brand); font-weight: 700; }

.header-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 15px;
  padding: 10px 19px; border-radius: 999px; transition: .15s; white-space: nowrap;
}
.header-cta:hover { background: var(--brand-dark); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; width: 42px; height: 40px; cursor: pointer;
  font-size: 18px; color: var(--ink);
}

/* ---------- 히어로 ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0d1520 0%, #16304f 55%, #1c4f8f 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 340px at 82% 8%, rgba(226,104,60,.24), transparent 62%),
    radial-gradient(560px 300px at 8% 92%, rgba(96,165,250,.20), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; padding-top: 92px; padding-bottom: 92px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(32px, 5.2vw, 54px); font-weight: 800; letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: #ffb692; }
.hero-lead {
  font-size: clamp(16px, 2vw, 19px); color: #c6d3e2; max-width: 620px; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 27px; border-radius: 999px; font-weight: 700; font-size: 16px;
  border: 1px solid transparent; cursor: pointer; transition: .15s;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #cf5a30; }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dark); }
.btn-line { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--ink-3); }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: 62px; background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); overflow: hidden;
}
.hero-stat { background: rgba(13,21,32,.34); padding: 22px 20px; }
.hero-stat > b { display: block; font-size: 27px; font-weight: 800; letter-spacing: -0.03em; }
.hero-stat > span { font-size: 13px; color: #a9bacd; }

/* ---------- 섹션 공통 ---------- */
.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 660px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  color: var(--brand); text-transform: uppercase; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(25px, 3.4vw, 36px); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--ink-3); font-size: 17px; }

/* ---------- 서비스 카드 ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: .18s;
}
.svc:hover { border-color: #c6d5e8; box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft);
  display: grid; place-items: center; margin-bottom: 18px; font-size: 22px;
}
.svc h3 { font-size: 18px; margin-bottom: 9px; }
.svc p { color: var(--ink-3); font-size: 15px; }

/* ---------- 상품 카드 ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 9px; align-items: center;
  margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line);
}
.chip {
  padding: 9px 17px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  cursor: pointer; transition: .14s; font-family: inherit;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.on { background: var(--brand); border-color: var(--brand); color: #fff; }

.search-box { margin-left: auto; position: relative; }
.search-box input {
  width: 250px; padding: 10px 15px 10px 38px; border-radius: 999px;
  border: 1px solid var(--line); font-size: 14.5px; font-family: inherit;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E") no-repeat 14px center;
}
.search-box input:focus { outline: 2px solid var(--brand-soft); border-color: var(--brand); }

.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.pcard {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: .18s;
}
.pcard:hover { border-color: #c6d5e8; box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.pcard-thumb {
  position: relative; aspect-ratio: 16 / 10; background: var(--bg-soft);
  display: grid; place-items: center; border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.pcard-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pcard-thumb .ph {
  font-size: 13px; color: #9aa8b8; font-weight: 600; letter-spacing: .04em;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.pcard-thumb .ph svg { opacity: .45; }

.pcard-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 11px; border-radius: 999px;
}
.pcard-cat {
  position: absolute; top: 12px; right: 12px;
  background: rgba(13,21,32,.72); color: #fff; font-size: 12px; font-weight: 600;
  padding: 4px 11px; border-radius: 999px;
}

.pcard-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pcard-body h3 { font-size: 18px; margin-bottom: 5px; }
.pcard-model { font-size: 13px; color: var(--ink-3); margin-bottom: 12px; }
.pcard-summary { font-size: 15px; color: var(--ink-2); margin-bottom: 16px; }

.pcard-specs { list-style: none; padding: 0; margin: 0 0 20px; }
.pcard-specs li {
  position: relative; padding-left: 20px; font-size: 14px; color: var(--ink-2);
  margin-bottom: 6px; line-height: 1.55;
}
.pcard-specs li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand); opacity: .55;
}

.pcard-foot {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.pcard-price > b { display: block; font-size: 18px; color: var(--brand); font-weight: 800; }
.pcard-price > span { font-size: 12.5px; color: var(--ink-3); line-height: 1.45; display: block; }
.pcard-ask {
  flex-shrink: 0; padding: 9px 17px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand); font-weight: 700; font-size: 14px;
  transition: .14s;
}
.pcard-ask:hover { background: var(--brand); color: #fff; }

.empty {
  grid-column: 1 / -1; text-align: center; padding: 70px 20px; color: var(--ink-3);
  border: 1px dashed var(--line); border-radius: var(--radius);
}

/* ---------- 신뢰 / 고객사 ---------- */
.clients { display: flex; flex-wrap: wrap; gap: 12px; }
.client-tag {
  padding: 11px 22px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; font-weight: 600; color: var(--ink-2); font-size: 15px;
}

.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-item { padding-left: 20px; border-left: 3px solid var(--brand); }
.why-item h3 { font-size: 18px; margin-bottom: 8px; }
.why-item p { color: var(--ink-3); font-size: 15px; }

/* ---------- 프로세스 ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px;
}
.step::before {
  counter-increment: s; content: "0" counter(s);
  display: block; font-size: 13px; font-weight: 800; color: var(--accent);
  letter-spacing: .08em; margin-bottom: 12px;
}
.step h3 { font-size: 17px; margin-bottom: 7px; }
.step p { font-size: 14.5px; color: var(--ink-3); }

/* ---------- CTA 밴드 ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff; border-radius: 20px; padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 34px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(23px, 3vw, 31px); margin-bottom: 10px; }
.cta-band p { color: #c9dbf2; font-size: 16.5px; }
.cta-band .hero-actions { flex-shrink: 0; }

/* ---------- 문의 폼 ---------- */
.form-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.field label .req { color: var(--accent); margin-left: 3px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 15.5px; font-family: inherit; color: var(--ink); background: #fff;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.65; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--brand-soft); border-color: var(--brand);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 13.5px; color: var(--ink-3); margin-top: 14px; }

.info-card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
}
.info-card h3 { font-size: 18px; margin-bottom: 20px; }
.info-row { display: flex; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line); }
.info-row:first-of-type { border-top: 0; padding-top: 0; }
.info-row dt { flex: 0 0 62px; font-size: 14px; font-weight: 700; color: var(--ink-3); margin: 0; }
.info-row dd { margin: 0; font-size: 15px; }
.info-row dd a { color: var(--brand); font-weight: 600; }

/* ---------- 회사소개 ---------- */
.prose { max-width: 760px; }
.prose h3 { font-size: 21px; margin: 42px 0 14px; }
.prose p { color: var(--ink-2); font-size: 16.5px; margin-bottom: 16px; }
.prose ul { color: var(--ink-2); font-size: 16.5px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }

.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li {
  position: relative; padding: 0 0 26px 30px; border-left: 2px solid var(--line);
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -7px; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--brand); border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}
.timeline b { display: block; font-size: 15px; color: var(--brand); font-weight: 800; }
.timeline span { color: var(--ink-2); font-size: 15.5px; }

/* ---------- 푸터 ---------- */
.footer { background: var(--bg-deep); color: #93a3b6; padding: 62px 0 34px; font-size: 14.5px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 38px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer .logo-mark { color: #fff; }
.footer .logo-sub { color: #6f8299; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13.5px; color: #6f8299;
}
.footer-info { margin-top: 16px; line-height: 1.9; }

/* ---------- 페이지 헤더 ---------- */
.page-head {
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
  padding: 58px 0;
}
.page-head h1 { font-size: clamp(27px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.page-head p { color: var(--ink-3); font-size: 17px; }
.crumb { font-size: 13.5px; color: var(--ink-3); margin-bottom: 14px; }
.crumb a:hover { color: var(--brand); }

/* ---------- 플로팅 문의 ---------- */
.float-call {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 15.5px;
  padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow-lg);
  transition: .16s;
}
.float-call:hover { background: #cf5a30; transform: translateY(-2px); }

/* ---------- 반응형 ---------- */
@media (max-width: 1000px) {
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .topbar .topbar-right span { display: none; }
  .nav {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 18px 18px; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; font-size: 16px; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .section { padding: 58px 0; }
  .hero .wrap { padding-top: 62px; padding-bottom: 62px; }
  .grid-4, .grid-3, .grid-2, .steps, .pgrid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 26px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .search-box { margin-left: 0; width: 100%; }
  .search-box input { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  /* 모바일에서는 하단 고정 버튼이 내용을 가리지 않도록 여백 확보 */
  body { padding-bottom: 70px; }
  .float-call { right: 14px; bottom: 14px; padding: 12px 18px; font-size: 14.5px; }
}

@media print {
  .header, .topbar, .footer, .float-call, .filters { display: none; }
}

/* ===========================================================
   자료실
   =========================================================== */
.dl-group { margin-bottom: 44px; }
.dl-group h3 {
  font-size: 20px; margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.dl-num {
  font-size: 13px; font-weight: 700; color: var(--brand);
  background: var(--brand-soft); padding: 2px 10px; border-radius: 999px;
}
.dl-cat-desc { color: var(--ink-3); font-size: 15px; margin-bottom: 16px; }

.dl-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.dl-table thead th {
  text-align: left; font-size: 13px; font-weight: 700; color: var(--ink-3);
  padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line);
}
.dl-table td { padding: 15px 16px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.dl-table tbody tr:last-child td { border-bottom: 0; }
.dl-table tbody tr:hover { background: #fafbfc; }

.dl-name { display: flex; align-items: flex-start; gap: 12px; }
.dl-icon { font-size: 22px; line-height: 1.2; flex-shrink: 0; }
.dl-name b { display: block; font-size: 15.5px; font-weight: 700; word-break: break-all; }
.dl-desc { display: block; font-size: 14px; color: var(--ink-3); margin-top: 3px; }
.dl-target { display: block; font-size: 13px; color: var(--brand); margin-top: 3px; font-weight: 600; }

th.dl-size, td.dl-size { width: 92px; white-space: nowrap; font-size: 14px; color: var(--ink-3); }
th.dl-date, td.dl-date { width: 108px; white-space: nowrap; font-size: 14px; color: var(--ink-3); }
th.dl-act,  td.dl-act  { width: 86px; text-align: right; }

.dl-btn {
  display: inline-block; padding: 9px 17px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand); font-weight: 700; font-size: 14px;
  transition: .14s; white-space: nowrap;
}
.dl-btn:hover { background: var(--brand); color: #fff; }

.dl-notice {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 34px; font-size: 15px; color: var(--ink-2);
}
.dl-notice b { color: var(--ink); }

@media (max-width: 720px) {
  th.dl-size, td.dl-size, th.dl-date, td.dl-date { display: none; }
  .dl-table td { padding: 13px 12px; }
  th.dl-act, td.dl-act { width: 72px; }
}

/* ---------- 원격지원 버튼 · 크기 딱지 ---------- */
.header-remote {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 999px; white-space: nowrap;
  border: 1px solid var(--line); background: #fff;
  font-size: 14.5px; font-weight: 700; color: var(--ink-2); transition: .15s;
}
.header-remote:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.nav-remote { display: none; }

.svc { position: relative; }
.size-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--brand-soft); color: var(--brand);
  font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 999px;
}

@media (max-width: 720px) {
  .header-remote { display: none; }
  .nav-remote {
    display: block; margin-top: 6px; text-align: center;
    background: var(--brand-soft); color: var(--brand); font-weight: 700;
    border-radius: 8px;
  }
}

/* ---------- 개인정보 수집 동의 ---------- */
.consent {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-soft); padding: 18px 20px; margin-bottom: 20px;
}
.consent-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-bottom: 14px; }
.consent-check input { width: 18px; height: 18px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--brand); }
.consent-check span { font-size: 15px; line-height: 1.5; }
.consent-table { width: 100%; border-collapse: collapse; font-size: 13.5px; background: #fff; border-radius: var(--radius-sm); overflow: hidden; }
.consent-table th, .consent-table td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.consent-table tr:last-child th, .consent-table tr:last-child td { border-bottom: 0; }
.consent-table th { width: 88px; color: var(--ink-3); font-weight: 700; white-space: nowrap; background: var(--bg-soft); }
.consent-note { font-size: 13px; color: var(--ink-3); margin-top: 12px; line-height: 1.6; }
.consent-note a { color: var(--brand); font-weight: 700; text-decoration: underline; }

/* ---------- 요금제 표 (상품 카드 안) ---------- */
.tier { margin: 0 0 18px; }
.tier-note { font-size: 12.5px; color: var(--ink-3); margin-bottom: 9px; line-height: 1.5; }
.tier-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.tier-table th {
  text-align: left; font-weight: 700; color: var(--ink-3); font-size: 12px;
  padding: 6px 6px; border-bottom: 1px solid var(--line); white-space: nowrap;
}
.tier-table td { padding: 7px 6px; border-bottom: 1px solid var(--line-soft); color: var(--ink-2); }
.tier-table tbody tr:last-child td { border-bottom: 0; }
.tt-type { font-weight: 800; color: var(--brand); }
th.tt-price, td.tt-price { text-align: right; }
td.tt-price { font-weight: 800; color: var(--accent); white-space: nowrap; }
.tier-vat { font-size: 11.5px; color: var(--ink-3); margin-top: 8px; }

/* ---------- 모델명 강조 · 기능 표기 ---------- */
.pcard-model {
  font-size: 14.5px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.pcard-funcs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.pcard-funcs span {
  font-size: 12px; font-weight: 700; color: var(--brand);
  background: var(--brand-soft); padding: 4px 10px; border-radius: 999px;
}

/* ---------- 원격지원 페이지 ---------- */
.remote-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
.remote-box {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft);
  padding: 22px; min-height: 240px; display: flex; align-items: center; justify-content: center;
}
.remote-box #ezHelpActivex { width: 100%; }
.remote-fallback { font-size: 14px; color: var(--ink-3); margin-top: 14px; line-height: 1.6; }
.remote-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.remote-steps { margin: 0; padding-left: 20px; color: var(--ink-2); font-size: 15px; }
.remote-steps li { margin-bottom: 14px; line-height: 1.6; }
.remote-steps li:last-child { margin-bottom: 0; }
.remote-steps strong { color: var(--ink); }

@media (max-width: 1000px) { .remote-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ── 로고 마크(돛) ───────────────────────────────── */
.logo { align-items: center; }
.logo-img {
  height: 44px; width: auto; flex: 0 0 auto; display: block;
}
.logo-text {
  display: flex; flex-direction: column; gap: 2px;
  padding-left: 13px; border-left: 1px solid #dde3ea;
}
.footer .logo-img { height: 46px; }
.footer .logo-text { border-left-color: rgba(255,255,255,.18); }
@media (max-width: 720px) {
  .logo-img { height: 36px; }
  .logo-text { padding-left: 10px; }
}


/* ═══ 로고 크기 ═══════════════════════════════════════ */
.header .logo-img { height: 46px; }
.footer .logo-img { height: 48px; }
@media (max-width: 720px) {
  .header .logo-img { height: 38px; }
}


/* ═══════════════════════════════════════════════════════════
   모바일 UI 개선 (2026-08-20)
   - 하단 고정 3분할 바 · 터치영역 확대 · 카드 정리 · 타이포
   ═══════════════════════════════════════════════════════════ */

/* ── 서비스 카드의 '서비스 보기 →' 링크 ───────────────── */
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 15px; font-weight: 700; color: var(--brand);
}
.svc-link::after { content: "→"; transition: transform .15s; }
a.svc:hover .svc-link::after { transform: translateX(4px); }

/* ── 상품 카드 하단 CTA ───────────────────────────────── */
.pcard-foot { flex-direction: column; align-items: stretch; gap: 14px; }
.pcard-price-label {
  display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-3);
  letter-spacing: .02em; margin-bottom: 2px;
}
.pcard-cta { display: flex; gap: 9px; }
.pcard-btn {
  flex: 1 1 0; min-height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; transition: .14s; text-align: center;
}
.pcard-btn-line { background: #fff; color: var(--ink-2); border-color: var(--line); }
.pcard-btn-line:hover { border-color: var(--brand); color: var(--brand); }
.pcard-btn-fill { background: var(--brand); color: #fff; }
.pcard-btn-fill:hover { background: var(--brand-dark); }

/* ── 히어로 흰색 버튼 ─────────────────────────────────── */
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: #eaf1fa; }

/* ── FAQ 아코디언 ─────────────────────────────────────── */
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 22px;
}
.faq-item > summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-size: 17px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--ink-3);
  flex: 0 0 auto; line-height: 1;
}
.faq-item[open] > summary::after { content: "−"; }
.faq-item > p { padding-bottom: 20px; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }

/* ── 모바일 하단 고정 바 ──────────────────────────────── */
.mobile-bar { display: none; }

@media (max-width: 900px) {
  body { padding-bottom: 64px; }

  .mobile-bar {
    display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 -2px 14px rgba(13,21,32,.10);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mobile-bar a {
    min-height: 60px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 3px;
    font-size: 13px; font-weight: 700; color: var(--ink-2);
    border-right: 1px solid var(--line-soft);
  }
  .mobile-bar a:last-child { border-right: 0; }
  .mobile-bar a:active { background: var(--bg-soft); }
  .mobile-bar .mb-ico { font-size: 19px; line-height: 1; }
  .mobile-bar .mb-call  { color: var(--accent); }
  .mobile-bar .mb-kakao { color: #8a6d00; }

  .float-call { display: none; }          /* 하단 바가 대신합니다 */
}

/* ── 모바일 전반 (768px 이하) ─────────────────────────── */
@media (max-width: 768px) {

  /* 햄버거 메뉴 터치영역 */
  .header .nav a {
    min-height: 52px; display: flex; align-items: center;
    padding: 0 14px; font-size: 16.5px; margin-bottom: 2px;
  }
  .nav-toggle { width: 48px; height: 46px; font-size: 20px; }

  /* 타이포 */
  .hero h1 { font-size: 33px; line-height: 1.28; margin-bottom: 16px; }
  .hero-lead { font-size: 16.5px; line-height: 1.62; margin-bottom: 26px; }
  .hero-eyebrow { font-size: 12.5px; margin-bottom: 20px; }
  .section-head h2 { font-size: 25px; line-height: 1.35; }
  .section-head p { font-size: 15.5px; line-height: 1.6; }
  .svc h3 { font-size: 19px; }
  .svc p  { font-size: 15.5px; line-height: 1.6; }
  .pcard-body h3 { font-size: 19px; }
  .pcard-summary { font-size: 15.5px; line-height: 1.6; }
  .prose p, .prose li { font-size: 16px; line-height: 1.7; }

  /* 버튼 터치영역 */
  .btn { min-height: 52px; font-size: 16px; padding: 0 22px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .cta-band { flex-direction: column; align-items: stretch; gap: 22px; }
  .cta-band .hero-actions { width: 100%; }
  .cta-band .hero-actions .btn { width: 100%; }

  /* 카드 정리 — 테두리·그림자 줄이고 간격 확보 */
  .svc {
    padding: 22px 20px; box-shadow: none;
    border-color: var(--line-soft);
  }
  .svc:hover { transform: none; box-shadow: none; }
  .grid-3, .grid-2 { gap: 14px; }
  .pgrid { gap: 16px; }
  .pcard:hover { transform: none; box-shadow: none; }
  .section { padding: 46px 0; }

  /* 진행 과정 — 카드 대신 간단한 목록으로 */
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step {
    background: none; border: 0; border-radius: 0;
    border-bottom: 1px solid var(--line-soft);
    padding: 16px 0 16px 42px; box-shadow: none;
  }
  .steps .step:last-child { border-bottom: 0; }
  .step::before { top: 16px; left: 0; }
  .step h3 { font-size: 16.5px; margin-bottom: 3px; }
  .step p  { font-size: 14.5px; }

  /* 상품 카드 CTA */
  .pcard-btn { min-height: 50px; font-size: 15.5px; }
  .pcard-cta { gap: 8px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 29px; }
  .pcard-cta { flex-direction: column; }
  .mobile-bar a { font-size: 12px; }
}


/* ── 태블릿(≤900px)에서도 헤더를 햄버거로 ─────────────────
   768px 폭에서 원격지원·전화번호 버튼이 화면 밖으로 밀려나던 문제 해결 */
@media (max-width: 900px) {
  .header .nav {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 18px 18px; display: none;
  }
  .header .nav.open { display: flex; }
  .header .nav a {
    min-height: 52px; display: flex; align-items: center;
    padding: 0 14px; font-size: 16.5px; margin-bottom: 2px;
  }
  .header-cta, .header-remote { display: none; }
  .nav-toggle { display: block; width: 48px; height: 46px; font-size: 20px; }
  .nav-remote {
    justify-content: center; margin-top: 6px;
    background: var(--brand-soft); color: var(--brand); font-weight: 700; border-radius: 8px;
  }
}

/* ── 모바일 상단 띠 축약 (글자 잘림 방지) ─────────────── */
@media (max-width: 900px) {
  .topbar .tb-sub { display: none; }
  .topbar .topbar-right > span { display: none; }
  .topbar { font-size: 12.5px; }
  .topbar .wrap { height: 36px; }
}


/* ── 카카오톡 상담 CTA ────────────────────────────────────
   company.json 의 kakaoUrl 값이 비어 있으면 JS가 통째로 감춥니다. */
.kakao-cta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 12px 16px; margin-top: 22px;
}
.kakao-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  background: #FEE500; color: #191600;
  border: 1px solid #efd400;
  font-size: 16px; font-weight: 800; line-height: 1;
  transition: .15s;
}
.kakao-btn:hover { background: #f7dd00; transform: translateY(-1px); }
.kakao-btn-ico { font-size: 18px; }
.kakao-cta-note { color: var(--ink-3); font-size: 14.5px; font-weight: 600; }

@media (max-width: 640px) {
  .kakao-cta { gap: 10px; margin-top: 18px; }
  .kakao-btn { width: 100%; justify-content: center; min-height: 52px; font-size: 16.5px; }
  .kakao-cta-note { font-size: 13.5px; }
}


/* ═══════════════════════════════════════════════════════════
   2026-08-24 · PC + 모바일 UI 개선
   ※ 이 블록은 파일 맨 끝에 두십시오. 앞쪽 규칙보다 우선합니다.
   ═══════════════════════════════════════════════════════════ */

/* ── 햄버거 메뉴 안 카테고리 바로가기 (모바일 전용) ────── */
.nav-cat, .nav-sec { display: none; }

/* ── 서비스 카드: 클릭 가능한 링크임을 명확히 ─────────── */
a.svc { display: flex; flex-direction: column; }
a.svc .svc-link { margin-top: auto; padding-top: 14px; }

/* ── 상품 요금표: 좁은 화면에서 표만 가로 스크롤 ──────── */
.tier { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── 태블릿 이하 (≤900px) ─────────────────────────────── */
@media (max-width: 900px) {
  /* 하단 고정바가 본문·푸터를 가리지 않도록 (iPhone Safe Area 포함) */
  body    { padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }
  .footer { padding-bottom: 30px; }

  /* 하단 고정바 규격 — 3등분 · 최소 58px */
  .mobile-bar a       { min-height: 58px; font-size: 13.5px; gap: 4px; }
  .mobile-bar .mb-ico { font-size: 20px; }

  /* 햄버거 버튼 터치 영역 48px 확보 */
  .nav-toggle { width: 48px; height: 48px; font-size: 21px; }

  /* 햄버거 메뉴: 항목 간격 확대 + 카테고리 노출 */
  .header .nav   { padding: 10px 16px 24px; }
  .header .nav a { min-height: 54px; margin-bottom: 4px; }
  .nav-cat { display: flex; }
  .nav-sec {
    display: block; padding: 16px 14px 6px; font-size: 12px; font-weight: 800;
    letter-spacing: .12em; color: var(--ink-3);
  }

  /* 상품 카드 버튼 터치 높이 */
  .pcard-btn { min-height: 48px; font-size: 15.5px; }

  /* 진행 과정은 세로로 길어지지 않게 2열로 축약 */
  .steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ── 모바일 (≤640px) ──────────────────────────────────── */
@media (max-width: 640px) {
  /* Hero · CTA 버튼은 한 손으로 누르기 쉽게 */
  .hero-actions            { width: 100%; gap: 10px; }
  .hero-actions .btn       { width: 100%; min-height: 52px; font-size: 16.5px; }
  .btn                     { min-height: 50px; }

  /* 상품 카드 버튼은 세로로 (글자 눌림·줄바꿈 방지) */
  .pcard-cta { flex-direction: column; gap: 8px; }
  .pcard-btn { width: 100%; }

  /* 카톡 CTA 안내 문구는 억지로 한 줄에 넣지 않음 */
  .kakao-cta      { flex-direction: column; align-items: stretch; }
  .kakao-cta-note { line-height: 1.55; }
}

/* ── 소형 단말 (≤380px) ───────────────────────────────── */
@media (max-width: 380px) {
  .mobile-bar a       { font-size: 12px; }
  .mobile-bar .mb-ico { font-size: 18px; }
  .steps              { grid-template-columns: 1fr; }
}

/* ── A안: 서비스 카드는 태블릿 2열 / 휴대폰 1열 ────────── */
@media (max-width: 1000px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .grid-3 { grid-template-columns: 1fr; } }

/* ── 원격지원: ezHelp 모듈이 좁은 화면에서 가로 스크롤을 만들지 않도록 ── */
@media (max-width: 1000px) { .remote-grid { grid-template-columns: minmax(0, 1fr); } }
.remote-box { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.remote-box #ezHelpActivex { min-width: 0; }
@media (max-width: 430px) { .remote-box { padding-left: 14px; padding-right: 14px; } }

/* ── 햄버거 버튼은 좁은 화면에서도 48px 유지 ───────────── */
.nav-toggle { flex: 0 0 auto; }
@media (max-width: 900px) { .nav-toggle { min-width: 48px; min-height: 48px; } }
   색 정리 (2026-08-25) — 밝은 히어로·맑은 블루 톤
   =========================================================== */
:root {
  --ink:        #101a28;
  --ink-2:      #3b4a5c;
  --ink-3:      #6b7a8c;
  --bg-soft:    #f4f7fb;
  --bg-deep:    #10233d;
  --brand:      #1f5fae;
  --brand-dark: #174a8a;
  --brand-soft: #e8f0fb;
  --accent:     #f0713f;
  --accent-soft:#fff0e8;
}
.topbar { background: #142e52; color: #c9d7e8; }
.header { border-bottom-color: #e6edf5; }
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  color: var(--ink);
  border-bottom: 1px solid #e3ebf5;
}
.hero::after {
  background:
    radial-gradient(720px 360px at 88% 10%, rgba(31,95,174,.13), transparent 62%),
    radial-gradient(520px 300px at 6% 95%, rgba(240,113,63,.10), transparent 60%);
}
.hero-eyebrow { background: var(--brand-soft); border-color: #cfdff4; color: var(--brand); }
.hero h1 { color: var(--ink); }
.hero h1 em { color: var(--brand); }
.hero-lead { color: var(--ink-2); }
.btn-white { background: #fff; color: var(--ink); border-color: #d6dfea; }
.btn-white:hover { border-color: var(--brand); color: var(--brand); background: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: #d6dfea; }
.hero-stats { background: #dfe7f1; border-color: #dfe7f1; box-shadow: var(--shadow); }
.hero-stat { background: #fff; }
.hero-stat > b { color: var(--brand); }
.hero-stat > span { color: var(--ink-3); }
.svc:hover, .pcard:hover { border-color: #b9cdea; }
.cta-band { background: linear-gradient(135deg, #174a8a, #2469c4); }
.cta-band p { color: #dbe8fa; }
.footer { background: #10233d; color: #a4b5c9; }
.footer .logo-sub, .footer-bottom { color: #7f92a8; }

/* ===========================================================
   기술노트 게시판 (2026-08-25)
   =========================================================== */
.nt-tools { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.nt-tools .search-box { margin-left: 0; }
.nt-tools .nt-write { margin-left: auto; }
.nt-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line);
}
.nt-table th {
  font-size: 13.5px; font-weight: 700; color: var(--ink-2); text-align: center;
  padding: 12px 10px; border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.nt-table td { padding: 13px 10px; border-bottom: 1px solid var(--line-soft); font-size: 15px; vertical-align: middle; }
.nt-table tbody tr:hover { background: #f8fafd; }
.nt-table .c { text-align: center; color: var(--ink-3); font-size: 14px; white-space: nowrap; }
.nt-table .num { text-align: center; color: var(--ink-3); font-size: 14px; }
.nt-table td.t a { color: var(--ink); font-weight: 500; }
.nt-table td.t a:hover { color: var(--brand); text-decoration: underline; }
.nt-table tr.pin { background: #fbfcfe; }
.nt-table tr.pin td.t a { font-weight: 800; }
.nt-table tr.re td.t { padding-left: 34px; }
.nt-table tr.re td.t a::before { content: "↳ "; color: var(--ink-3); }
.nt-pin { display: inline-block; font-size: 12px; font-weight: 800; color: var(--accent); background: var(--accent-soft); padding: 3px 9px; border-radius: 999px; }
.nt-ico { font-size: 13px; margin-left: 5px; opacity: .8; }
.nt-empty { text-align: center; padding: 60px 20px; color: var(--ink-3); }

.nt-pager { display: flex; gap: 6px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.nt-pager a, .nt-pager span {
  min-width: 38px; padding: 8px 12px; text-align: center; border-radius: 8px;
  border: 1px solid var(--line); background: #fff; font-size: 14px; font-weight: 600; color: var(--ink-2);
}
.nt-pager a:hover { border-color: var(--brand); color: var(--brand); }
.nt-pager .on { background: var(--brand); color: #fff; border-color: var(--brand); }

/* 글 보기 */
.nt-view { max-width: 900px; }
.nt-view .nt-head { border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); padding: 22px 6px 18px; }
.nt-view h2 { font-size: clamp(20px, 2.6vw, 26px); font-weight: 800; margin-bottom: 10px; }
.nt-view .nt-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-3); }
.nt-view .nt-parent { font-size: 14px; color: var(--ink-3); margin-bottom: 8px; }
.nt-view .nt-parent a { color: var(--brand); font-weight: 600; }
.nt-body { padding: 30px 6px; font-size: 16px; line-height: 1.85; color: var(--ink); word-break: break-word; }
.nt-body a { color: var(--brand); text-decoration: underline; word-break: break-all; }
.nt-link { margin: 0 6px 22px; padding: 14px 18px; background: var(--brand-soft); border-radius: var(--radius-sm); font-size: 15px; }
.nt-link a { color: var(--brand); font-weight: 700; word-break: break-all; }
.nt-files { margin: 0 6px 26px; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.nt-files .h { padding: 10px 16px; background: var(--bg-soft); font-size: 13px; font-weight: 700; color: var(--ink-3); border-bottom: 1px solid var(--line); }
.nt-files a { display: flex; justify-content: space-between; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line-soft); font-weight: 600; }
.nt-files a:last-child { border-bottom: 0; }
.nt-files a:hover { background: #f8fafd; color: var(--brand); }
.nt-files a span { color: var(--ink-3); font-size: 13px; font-weight: 500; white-space: nowrap; }
.nt-replies { margin: 0 6px 26px; }
.nt-replies .h { font-size: 14px; font-weight: 700; color: var(--ink-2); margin-bottom: 8px; }
.nt-replies a { display: block; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 6px; font-weight: 600; }
.nt-replies a:hover { border-color: var(--brand); color: var(--brand); }
.nt-replies a span { float: right; color: var(--ink-3); font-size: 13px; font-weight: 500; }
.nt-nav { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.nt-nav a { display: flex; gap: 14px; padding: 13px 6px; font-size: 14.5px; border-bottom: 1px solid var(--line-soft); }
.nt-nav a:last-child { border-bottom: 0; }
.nt-nav a b { flex: 0 0 56px; color: var(--ink-3); font-weight: 700; }
.nt-nav a:hover { color: var(--brand); }
.nt-actions { display: flex; gap: 10px; margin-top: 24px; }

@media (max-width: 720px) {
  .nt-table th.c-author, .nt-table td.c-author, .nt-table th.c-views, .nt-table td.c-views { display: none; }
  .nt-table td { padding: 12px 8px; font-size: 14.5px; }
  .nt-table tr.re td.t { padding-left: 22px; }
  .nt-tools .nt-write { margin-left: 0; }
  .nt-body { font-size: 15.5px; }
}
