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

: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;
  white-space: nowrap;
}
.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; }
}

/* ───────── 설치사례 갤러리 ───────── */
.ins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}
.ins-card {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ins-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ins-thumb { aspect-ratio: 4 / 3; background: var(--bg-soft); }
.ins-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ins-card figcaption {
  padding: 10px 14px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 640px) {
  .ins-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ins-card figcaption { font-size: 12px; padding: 8px 10px; }
}

/* 라이트박스 */
.ins-lightbox[hidden] { display: none; }
.ins-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(13,21,32,.92);
  display: flex; align-items: center; justify-content: center;
}
.ins-lightbox img {
  max-width: min(92vw, 1100px); max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.ins-lb-cap {
  position: absolute; left: 0; right: 0; bottom: 22px;
  text-align: center; color: #fff; font-weight: 600; font-size: 15px;
  text-shadow: 0 1px 4px rgba(0,0,0,.6); padding: 0 60px;
}
.ins-lb-close, .ins-lb-prev, .ins-lb-next {
  position: absolute; z-index: 1001;
  background: rgba(255,255,255,.12); color: #fff;
  border: 0; border-radius: 50%;
  width: 44px; height: 44px; font-size: 22px; line-height: 1;
  cursor: pointer;
}
.ins-lb-close { top: 18px; right: 18px; }
.ins-lb-prev  { left: 12px; top: 50%; transform: translateY(-50%); }
.ins-lb-next  { right: 12px; top: 50%; transform: translateY(-50%); }
.ins-lb-close:hover, .ins-lb-prev:hover, .ins-lb-next:hover { background: rgba(255,255,255,.25); }

/* ═══════════════════════════════════════════════════════════
   상품 선택형 UI (2026-09-14)
   - 카드 단순화 · 용도별 빠른 선택 · 제품 비교 · 맞춤 찾기
   ═══════════════════════════════════════════════════════════ */

/* ── 용도별 빠른 선택 ─────────────────────────────────── */
.quickpick-head {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
.quickpick-head h3 { font-size: 18px; }
.quickpick-head span { font-size: 14.5px; color: var(--ink-3); }

.quickpicks { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.qp {
  padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-size: 15px; font-weight: 600; color: var(--ink-2);
  cursor: pointer; transition: .14s; font-family: inherit; min-height: 44px;
}
.qp:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.qp.on { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ── 상품 카드 (단순화) ───────────────────────────────── */
.pc-use {
  display: inline-block; font-size: 13px; font-weight: 800; color: var(--accent);
  background: var(--accent-soft); padding: 4px 11px; border-radius: 999px; margin-bottom: 11px;
}
.pcard-body h3 { font-size: 17.5px; margin-bottom: 4px; }

.pc-fit { margin: 0 0 16px; padding: 14px 0 0; border-top: 1px solid var(--line-soft); }
.pc-fit-row {
  display: flex; gap: 12px; align-items: baseline;
  padding: 5px 0; font-size: 14.5px;
}
.pc-fit-row dt { flex: 0 0 78px; margin: 0; color: var(--ink-3); font-weight: 600; font-size: 13.5px; }
.pc-fit-row dd { margin: 0; color: var(--ink); font-weight: 600; }

.pc-price {
  margin-top: auto; padding: 15px 0 16px; border-top: 1px solid var(--line-soft);
}
.pc-price-label {
  display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-3);
  letter-spacing: .02em; margin-bottom: 1px;
}
.pc-price > b {
  display: block; font-size: 25px; line-height: 1.25; font-weight: 800;
  color: var(--brand); letter-spacing: -0.03em;
}
.pc-price-note { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: 3px; }

.pc-cta { display: flex; gap: 8px; }
.pc-btn {
  flex: 1 1 0; min-height: 46px; padding: 0 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; font-weight: 700; font-size: 14.5px; font-family: inherit;
  border: 1px solid transparent; transition: .14s; text-align: center;
  cursor: pointer; white-space: nowrap;
}
.pc-btn-line { background: #fff; color: var(--ink-2); border-color: var(--line); }
.pc-btn-line:hover { border-color: var(--brand); color: var(--brand); }
.pc-btn-line.on { background: var(--brand); border-color: var(--brand); color: #fff; }
.pc-btn-fill { background: var(--brand); color: #fff; }
.pc-btn-fill:hover { background: var(--brand-dark); }

.pcard-detail {
  margin-top: 16px; padding-top: 18px; border-top: 1px dashed var(--line);
}
.pcard.open { border-color: #c6d5e8; }
.pc-detail-cta { display: flex; gap: 8px; margin-top: 16px; }

/* ── 요금제 구간 카드 ─────────────────────────────────── */
.plans { display: grid; gap: 10px; }
.plan {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); padding: 13px 15px;
  display: grid; grid-template-columns: 1fr auto; gap: 4px 14px; align-items: baseline;
}
.plan-type { font-size: 13.5px; font-weight: 800; color: var(--brand); }
.plan-price { font-size: 13px; color: var(--ink-3); text-align: right; white-space: nowrap; }
.plan-price b { font-size: 19px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.plan-inc { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline; }
.plan-inc-h { font-size: 12px; font-weight: 700; color: var(--ink-3); }
.plan-inc-row { font-size: 14px; color: var(--ink-2); }
.plan-inc-row b { font-weight: 800; color: var(--ink); }
.plan-over { grid-column: 1 / -1; font-size: 12.5px; color: var(--ink-3); }
.plan-note { font-size: 12.5px; color: var(--ink-3); margin-top: 10px; line-height: 1.5; }
.plan-vat { font-size: 11.5px; color: var(--ink-3); margin-top: 6px; }

/* ── 제품 비교 — 하단 담은 목록 ───────────────────────── */
.cmp-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 68;
  background: var(--bg-deep); color: #fff;
  box-shadow: 0 -4px 18px rgba(13,21,32,.24);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.cmp-bar-in {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-top: 12px; padding-bottom: 12px;
}
.cmp-list { display: flex; flex-wrap: wrap; gap: 8px; flex: 1 1 auto; min-width: 0; }
.cmp-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); border-radius: 999px;
  padding: 7px 8px 7px 14px; font-size: 14px; font-weight: 600;
}
.cmp-x {
  border: 0; background: rgba(255,255,255,.18); color: #fff; cursor: pointer;
  width: 22px; height: 22px; border-radius: 50%; font-size: 11px; line-height: 1;
  display: grid; place-items: center; font-family: inherit;
}
.cmp-x:hover { background: var(--accent); }
.cmp-acts { display: flex; gap: 8px; flex-shrink: 0; }
.cmp-clear, .cmp-go {
  min-height: 44px; padding: 0 20px; border-radius: 10px; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 700; border: 1px solid transparent;
}
.cmp-clear { background: transparent; color: #b9c4d1; border-color: rgba(255,255,255,.25); }
.cmp-clear:hover { color: #fff; border-color: #fff; }
.cmp-go { background: var(--accent); color: #fff; }
.cmp-go:hover { filter: brightness(1.06); }
.cmp-go:disabled { background: rgba(255,255,255,.18); color: #8e9dae; cursor: not-allowed; }

body.has-cmpbar { padding-bottom: 82px; }

/* ── 모달 ─────────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; }
.modal[hidden], .cmp-bar[hidden] { display: none !important; }
.modal-bg { position: absolute; inset: 0; background: rgba(13,21,32,.62); }
.modal-box {
  position: relative; background: #fff; border-radius: 18px; width: min(980px, 100%);
  max-height: 86vh; display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 24px; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.modal-head h3 { font-size: 19px; }
.modal-x {
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  width: 40px; height: 40px; border-radius: 10px; font-size: 15px; color: var(--ink-2);
  font-family: inherit;
}
.modal-x:hover { border-color: var(--brand); color: var(--brand); }
.modal-body { padding: 24px; overflow: auto; }
body.modal-open { overflow: hidden; }

/* ── 비교표 ───────────────────────────────────────────── */
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 480px; }
.cmp-table th, .cmp-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--line-soft);
  text-align: left; vertical-align: top;
}
.cmp-table thead th {
  background: var(--brand-soft); color: var(--brand); font-size: 15px;
  border-bottom: 1px solid var(--line); position: sticky; top: 0;
}
.cmp-table tbody th {
  width: 104px; color: var(--ink-3); font-size: 13.5px; font-weight: 700;
  background: var(--bg-soft); white-space: nowrap;
}
.cmp-price { font-size: 17px; color: var(--brand); font-weight: 800; }
.cmp-plans { display: grid; gap: 7px; }
.cmp-plans > * { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.cmp-plans span { display: block; font-size: 12.5px; font-weight: 500; color: var(--ink-3); }

.cmp-advice {
  margin-top: 24px; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px;
}
.cmp-advice h4 { font-size: 16px; margin-bottom: 12px; }
.cmp-advice ul { margin: 0; padding-left: 20px; }
.cmp-advice li { font-size: 15px; color: var(--ink-2); margin-bottom: 7px; line-height: 1.6; }
.cmp-advice-note { margin-top: 12px; font-size: 14px; color: var(--ink-3); }
.cmp-cta { margin-top: 20px; }
.cmp-cta .btn { width: 100%; }

/* ── 맞춤 제품 찾기 ───────────────────────────────────── */
.fdr {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; max-width: 780px; margin: 0 auto; box-shadow: var(--shadow);
}
.fdr-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.fdr-count { font-size: 13px; font-weight: 800; color: var(--brand); flex-shrink: 0; }
.fdr-bar { flex: 1; height: 6px; border-radius: 999px; background: var(--line-soft); overflow: hidden; }
.fdr-bar i { display: block; height: 100%; background: var(--brand); transition: width .25s; }

.fdr-q { font-size: 22px; margin-bottom: 22px; letter-spacing: -0.02em; }
.fdr-opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.fdr-opt {
  min-height: 58px; padding: 0 18px; border-radius: 12px; cursor: pointer;
  border: 1.5px solid var(--line); background: #fff; font-family: inherit;
  font-size: 16px; font-weight: 700; color: var(--ink-2); transition: .14s;
}
.fdr-opt:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.fdr-opt.on { border-color: var(--brand); background: var(--brand); color: #fff; }

.fdr-nav { display: flex; gap: 10px; margin-top: 22px; }
.fdr-back, .fdr-reset {
  background: none; border: 0; cursor: pointer; font-family: inherit;
  font-size: 14.5px; font-weight: 700; color: var(--ink-3); padding: 8px 4px;
}
.fdr-back:hover, .fdr-reset:hover { color: var(--brand); }
.fdr-reset { margin-left: auto; }
.fdr-none { color: var(--ink-3); font-size: 15.5px; }

.fdr-sum {
  font-size: 14px; color: var(--ink-3); background: var(--bg-soft);
  border-radius: var(--radius-sm); padding: 12px 15px; margin-bottom: 22px; line-height: 1.6;
}
.fdr-best {
  border: 2px solid var(--brand); border-radius: var(--radius);
  padding: 26px 24px; background: linear-gradient(180deg, var(--brand-soft), #fff 60%);
}
.fdr-best-tag {
  display: inline-block; background: var(--brand); color: #fff; font-size: 12.5px;
  font-weight: 800; padding: 5px 13px; border-radius: 999px; margin-bottom: 14px;
}
.fdr-best h3 { font-size: 24px; margin-bottom: 10px; }
.fdr-best h3 em { font-style: normal; color: var(--brand); font-size: 19px; }
.fdr-best-price { font-size: 15px; color: var(--ink-3); font-weight: 700; }
.fdr-best-price b { font-size: 34px; color: var(--accent); font-weight: 800; letter-spacing: -0.03em; }
.fdr-best-inc { font-size: 16px; color: var(--ink); font-weight: 700; margin-top: 6px; }
.fdr-best-why { font-size: 14.5px; color: var(--ink-2); margin-top: 12px; line-height: 1.6; }
.fdr-best-cta { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.fdr-best-cta .btn { flex: 1 1 200px; }

.fdr-alts { margin-top: 26px; }
.fdr-alts h4 { font-size: 16px; margin-bottom: 12px; color: var(--ink-3); }
.fdr-alt {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; margin-bottom: 10px;
  display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; align-items: center;
}
.fdr-alt-main b { display: block; font-size: 16px; }
.fdr-alt-main span { font-size: 13.5px; color: var(--ink-3); }
.fdr-alt-right { text-align: right; }
.fdr-alt-price { display: block; font-size: 17px; font-weight: 800; color: var(--brand); }
.fdr-alt-right a { font-size: 13.5px; font-weight: 700; color: var(--accent); text-decoration: underline; }
.fdr-alt-why { grid-column: 1 / -1; font-size: 13.5px; color: var(--ink-3); }

/* ── 견적 문의 — 넘어온 조건 표시 ─────────────────────── */
.quote-ctx {
  border: 1px solid var(--brand); background: var(--brand-soft);
  border-radius: var(--radius); padding: 18px 20px; margin-bottom: 22px;
}
.quote-ctx h4 { font-size: 15px; color: var(--brand); margin-bottom: 10px; }
.quote-ctx ul { margin: 0; padding-left: 20px; }
.quote-ctx li { font-size: 14.5px; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.quote-ctx p { font-size: 13px; color: var(--ink-3); margin-top: 10px; }

/* ── 히어로 보조 문구 ─────────────────────────────────── */
.hero-sub {
  display: block; margin-top: 14px; font-size: 14.5px; color: var(--ink-3);
}

/* ── 모바일 ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .cmp-bar { bottom: 64px; }
  body.has-cmpbar { padding-bottom: 146px; }
}

@media (max-width: 768px) {
  .pgrid { grid-template-columns: 1fr; }
  .pcard-thumb { aspect-ratio: 16 / 9; }
  .pcard-body { padding: 20px 18px; }
  .pc-price > b { font-size: 27px; }
  .pc-btn { min-height: 50px; font-size: 15px; }
  .pc-cta { flex-wrap: wrap; }
  .pc-cta .pc-btn-fill { flex-basis: 100%; }

  .qp { font-size: 15px; min-height: 48px; padding: 12px 18px; }
  .quickpicks { gap: 8px; margin-bottom: 22px; }

  .fdr { padding: 24px 18px; border-radius: var(--radius); }
  .fdr-q { font-size: 19.5px; line-height: 1.4; }
  .fdr-opts { grid-template-columns: 1fr; }
  .fdr-opt { min-height: 56px; font-size: 16.5px; }
  .fdr-best { padding: 22px 18px; }
  .fdr-best h3 { font-size: 21px; }
  .fdr-best-price b { font-size: 30px; }
  .fdr-best-cta .btn { flex: 1 1 100%; }
  .fdr-alt { grid-template-columns: 1fr; }
  .fdr-alt-right { text-align: left; display: flex; align-items: baseline; gap: 12px; }

  .modal { padding: 0; place-items: end stretch; }
  .modal-box { border-radius: 18px 18px 0 0; max-height: 92vh; width: 100%; }
  .modal-body { padding: 18px 16px; }
  .cmp-table { font-size: 14px; min-width: 420px; }
  .cmp-table th, .cmp-table td { padding: 10px 11px; }
  .cmp-table tbody th { width: 84px; font-size: 12.5px; }

  .cmp-bar-in { padding-top: 10px; padding-bottom: 10px; gap: 10px; }
  .cmp-tag { font-size: 13px; padding: 6px 7px 6px 12px; }
  .cmp-acts { width: 100%; }
  .cmp-go { flex: 1; }
}

@media (max-width: 380px) {
  .pc-cta { flex-direction: column; }
  .pc-btn { width: 100%; }
}

/* ── 메뉴가 하나 늘어 좁은 화면에서 밀리는 것 방지 (2026-09-14) ── */
@media (max-width: 1240px) and (min-width: 901px) {
  .header .wrap { gap: 14px; }
  .nav a { padding: 9px 10px; font-size: 14.5px; }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .nav a { padding: 9px 8px; font-size: 14px; }
  .header-remote { display: none; }
}

/* ── 헤더 정렬 — 메뉴가 늘어 로고가 밀리던 문제 (2026-09-14) ── */
.header .logo { flex-shrink: 0; }
.header .logo-text { display: flex; flex-direction: column; }
.header .logo-sub { white-space: nowrap; }
.header .nav { flex-wrap: nowrap; }

@media (min-width: 901px) and (max-width: 1360px) {
  .header .wrap { gap: 12px; }
  .nav a { padding: 9px 9px; font-size: 14px; }
}
@media (min-width: 901px) and (max-width: 1160px) {
  .nav a { padding: 9px 7px; font-size: 13.5px; }
  .header-remote { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   히어로 축소 + 파인더 상단 배치 (2026-09-14 시안)
   2026-09-14 승인 후 style.css 로 병합
   ═══════════════════════════════════════════════════════════ */

/* ── 히어로 여백 · 타이포 축소 ────────────────────────── */
.hero-compact .wrap { padding-top: 40px; padding-bottom: 34px; }
.hero-compact::after {
  background:
    radial-gradient(520px 220px at 88% 0%, rgba(31,95,174,.10), transparent 62%),
    radial-gradient(380px 200px at 4% 100%, rgba(240,113,63,.08), transparent 60%);
}
.hero-compact .hero-eyebrow {
  font-size: 12.5px; padding: 5px 13px; margin-bottom: 14px;
}
.hero-compact h1 {
  font-size: clamp(24px, 3.4vw, 36px); line-height: 1.3;
  letter-spacing: -0.03em; margin-bottom: 10px;
}
.hero-compact .hero-lead {
  font-size: clamp(14px, 1.35vw, 16px); max-width: 760px; margin-bottom: 18px;
}
.hero-compact .hero-sub { display: none; }
.hero-compact .hero-actions { margin-top: 14px; gap: 10px; }
.hero-compact .hero-actions .btn { padding: 11px 22px; font-size: 15px; }

/* ── 파인더 진입 카드 ─────────────────────────────────── */
.hero-finder {
  display: flex; align-items: center; gap: 16px; max-width: 660px;
  background: #fff; border: 1px solid #cfdff4; border-radius: 14px;
  padding: 15px 18px; box-shadow: 0 2px 10px rgba(13,21,32,.06);
  transition: .15s;
}
.hero-finder:hover { border-color: var(--brand); box-shadow: 0 6px 18px rgba(28,79,143,.15); }
.hero-finder-ico {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center;
}
.hero-finder-txt { flex: 1 1 auto; min-width: 0; }
.hero-finder-txt b {
  display: block; font-size: 17px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-finder-txt > span {
  display: block; font-size: 13.5px; color: var(--ink-3); margin-top: 2px; line-height: 1.5;
}
.hero-finder-go { flex: 0 0 auto; font-size: 20px; color: var(--ink-3); line-height: 1; }
.hero-finder:hover .hero-finder-go { color: var(--brand); }

/* ── 신뢰 요소 — 히어로 바로 아래 ─────────────────────── */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px; border-left: 1px solid var(--line-soft);
}
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-ico {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 9px;
  background: var(--brand-soft); color: var(--brand); display: grid; place-items: center;
}
.trust-txt { min-width: 0; }
.trust-txt b {
  display: block; font-size: 17px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1.3;
}
.trust-txt > span { display: block; font-size: 12.5px; color: var(--ink-3); }

/* ── 모바일 ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-compact .wrap { padding-top: 26px; padding-bottom: 22px; }
  .hero-compact .hero-eyebrow { margin-bottom: 12px; }
  .hero-compact h1 { font-size: 25px; line-height: 1.34; margin-bottom: 8px; }
  .hero-compact .hero-lead { font-size: 15px; line-height: 1.55; margin-bottom: 16px; }

  .hero-finder { padding: 14px 15px; gap: 12px; }
  .hero-finder-ico { flex-basis: 40px; width: 40px; height: 40px; }
  .hero-finder-txt b { font-size: 15.5px; }
  .hero-finder-txt > span { font-size: 12.5px; }

  .hero-compact .hero-actions { flex-direction: row; gap: 8px; margin-top: 12px; }
  .hero-compact .hero-actions .btn {
    flex: 1 1 0; width: auto; min-height: 46px; font-size: 14.5px; padding: 0 10px;
  }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 13px 12px; border-top: 1px solid var(--line-soft); }
  .trust-item:nth-child(-n+2) { border-top: 0; }
  .trust-item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .trust-txt b { font-size: 15.5px; }
  .trust-txt > span { font-size: 11.5px; }
  .trust-ico { flex-basis: 30px; width: 30px; height: 30px; }
}

@media (max-width: 380px) {
  .hero-compact h1 { font-size: 22px; }
  .hero-compact .hero-actions { flex-direction: column; }
  .hero-compact .hero-actions .btn { width: 100%; }
}

/* ── 파인더 섹션도 위로 당깁니다 ──────────────────────── */
#finder-sec { padding-top: 44px; padding-bottom: 56px; }
#finder-sec .section-head { margin-bottom: 26px; }
#finder-sec .section-head h2 { font-size: clamp(22px, 2.6vw, 29px); }
#finder-sec .section-head p { font-size: 15.5px; }

@media (max-width: 768px) {
  #finder-sec { padding-top: 30px; padding-bottom: 38px; }
  #finder-sec .section-head { margin-bottom: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   파인더 로직 수정 (2026-09-14 승인 반영)
   ═══════════════════════════════════════════════════════════ */

/* 질문 보조 설명 */
.fdr-hint {
  font-size: 14.5px; color: var(--ink-3); margin: -14px 0 20px; line-height: 1.55;
}

/* 출력량 4개 버튼 — PC 는 4열, 모바일은 2 × 2 */
.fdr-opts-2 { grid-template-columns: repeat(4, 1fr); }

/* 추천 결과 버튼 3개 */
.fdr-best-cta .btn { flex: 1 1 170px; min-height: 48px; font-size: 15px; padding: 0 16px; }
.fdr-best-cta .btn-line { background: #fff; border-color: #cfdff4; color: var(--ink-2); }
.fdr-best-cta .btn-line:hover { border-color: var(--brand); color: var(--brand); }

/* 요금제 접어두기 */
.fdr-plans {
  margin-top: 18px; padding-top: 18px; border-top: 1px dashed #cfdff4;
}
.fdr-plans h4 { font-size: 15px; color: var(--ink-3); margin-bottom: 12px; }

/* 상세보기로 넘어온 카드 강조 */
.pcard-focus { border-color: var(--brand) !important; box-shadow: 0 0 0 3px var(--brand-soft); }

@media (max-width: 768px) {
  .fdr-hint { font-size: 13.5px; margin: -12px 0 16px; }
  .fdr-opts-2 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .fdr-opts-2 .fdr-opt { font-size: 15.5px; padding: 0 8px; }
  .fdr-best-cta .btn { flex: 1 1 100%; }
}

/* ═══════════════════════════════════════════════════════════
   푸터 최하단 — 오늘 방문자 + 업무관리 바로가기 (2026-09-14)
   ═══════════════════════════════════════════════════════════ */

.foot-meta {
  display: inline-flex; align-items: center; gap: 16px;
  margin-left: auto;            /* 푸터 하단 오른쪽 끝 */
}

/* 오늘 방문자 — 조용하게 */
.visit {
  font-size: 12.5px; letter-spacing: .06em;
  font-variant-numeric: tabular-nums; color: #5d6f86;
  white-space: nowrap;
}
.visit b { font-weight: 700; color: #8fa2b8; margin-left: 3px; }

/* 업무관리 바로가기 — 점 하나. 표시는 작게, 누르는 영역은 넉넉하게 */
.foot-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin: -10px -8px;   /* 줄 높이에 영향 주지 않도록 */
  border-radius: 50%;
  color: #5d6f86; opacity: .55;
  font-size: 17px; line-height: 1;
  transition: .15s;
  -webkit-tap-highlight-color: transparent;
}
.foot-dot:hover, .foot-dot:focus-visible { opacity: 1; color: #b9c6d6; }
.foot-dot:focus-visible { outline: 1px solid #5d6f86; outline-offset: 2px; }

@media (max-width: 900px) {
  .foot-meta { width: 100%; margin-left: 0; justify-content: space-between; }
  .foot-dot { width: 46px; height: 46px; margin: -12px -12px -12px 0; }   /* 터치 영역 확보 */
}

/* ═══════════════════════════════════════════════════════════
   히어로 2단 배치 + 업무관리 점 헤더 이동 (2026-09-14)
   ═══════════════════════════════════════════════════════════ */

/* ── 히어로 2단 ───────────────────────────────────────── */
.hero-split .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 44px;
  align-items: start;          /* 결과가 길어져도 왼쪽 문구는 위에 붙어 있습니다 */
  padding-top: 46px; padding-bottom: 44px;
}
.hero-split .hero-col { padding-top: 6px; }
.hero-split .hero-col { min-width: 0; }
.hero-split .hero-finder { max-width: none; }

/* 오른쪽 칸 */
.hero-finder-col { min-width: 0; padding: 0; }
.hero-finder-head { margin-bottom: 14px; }
.hero-finder-head .eyebrow { margin-bottom: 6px; }
.hero-finder-head h2 {
  font-size: 21px; font-weight: 800; letter-spacing: -0.025em;
}

/* 좁은 칸에 맞춘 파인더 */
.hero-split .fdr {
  max-width: none; margin: 0;
  padding: 24px 22px; border-radius: var(--radius);
}
.hero-split .fdr-top { margin-bottom: 18px; }
.hero-split .fdr-q { font-size: 19px; line-height: 1.4; margin-bottom: 8px; }
.hero-split .fdr-hint { font-size: 13.5px; margin: 0 0 16px; }
.hero-split .fdr-opts,
.hero-split .fdr-opts-2 { grid-template-columns: repeat(2, 1fr); gap: 9px; }
.hero-split .fdr-opt { min-height: 52px; font-size: 15.5px; padding: 0 10px; }
.hero-split .fdr-nav { margin-top: 18px; }

/* 결과 화면 */
.hero-split .fdr-sum { font-size: 13px; padding: 10px 13px; margin-bottom: 16px; }
.hero-split .fdr-best { padding: 20px 18px; }
.hero-split .fdr-best h3 { font-size: 20px; }
.hero-split .fdr-best h3 em { font-size: 17px; }
.hero-split .fdr-best-price b { font-size: 28px; }
.hero-split .fdr-best-inc { font-size: 15px; }
.hero-split .fdr-best-cta { gap: 8px; }
.hero-split .fdr-best-cta .btn {
  flex: 1 1 100%; min-height: 46px; font-size: 14.5px; padding: 0 12px;
}
.hero-split .fdr-alt { grid-template-columns: 1fr; gap: 4px; padding: 14px 15px; }
.hero-split .fdr-alt-right { text-align: left; display: flex; align-items: baseline; gap: 10px; }

/* ── 업무관리 점 — 헤더 (원격지원 ↔ 전화번호 사이) ───── */
.admin-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  color: var(--ink-3); opacity: .38;
  font-size: 18px; line-height: 1;
  transition: .15s;
  -webkit-tap-highlight-color: transparent;
}
.admin-dot:hover, .admin-dot:focus-visible {
  opacity: 1; color: var(--brand); background: var(--brand-soft);
}
.admin-dot:focus-visible { outline: 1px solid var(--brand); outline-offset: 1px; }

/* 푸터에서는 뺐습니다 — TODAY 만 남습니다 */
.foot-dot { display: none !important; }

/* ── 반응형 ───────────────────────────────────────────── */
@media (max-width: 1040px) {
  .hero-split .wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px; align-items: start;
  }
  .hero-split .hero-finder { display: none; }   /* 바로 아래 있으므로 안내 카드 생략 */
}

@media (max-width: 900px) {
  .admin-dot { width: 44px; height: 44px; }     /* 터치 영역 확보 */
}

@media (max-width: 768px) {
  .hero-split .wrap { padding-top: 26px; padding-bottom: 26px; }
  .hero-finder-head h2 { font-size: 19px; }
  .hero-split .fdr { padding: 20px 16px; }
  .hero-split .fdr-opts, .hero-split .fdr-opts-2 { grid-template-columns: repeat(2, 1fr); }
  .hero-split .fdr-opt { min-height: 54px; font-size: 15px; }
}
