/* ==========================================================================
   노란마케팅 — 스타일시트 (토스 스타일 리디자인)
   화이트 베이스 + 옅은 웜그레이 교차 · 옐로는 주 CTA와 미세 액센트에만
   Pretendard · keep-all
   ========================================================================== */

:root {
  --yellow: #FFD400;
  --yellow-deep: #FFC800;  /* hover — 어두워지지 않게 밝은 톤 유지 */
  --yellow-soft: #FFF6CC;
  --yellow-tint: #FFF8DE;
  --amber: #6F757C;        /* 아이브로우 라벨 — 주황끼 없는 뉴트럴 그레이(노랑 대시가 브랜드 역할) */
  --bg: #ffffff;
  --bg-warm: #FAF9F7;        /* 교차 섹션 배경 */
  --card-bg: #F7F7F5;        /* 흰 배경 위 카드 */
  --card-bg-deep: #F1F1EE;
  --ink: #191919;
  --ink-70: #454c53;
  --ink-50: #6f757c;
  --ink-30: #a7adb3;
  --line: #efefed;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(25, 25, 25, .04);
  --shadow: 0 6px 20px rgba(25, 25, 25, .06);
  --shadow-lg: 0 16px 40px rgba(25, 25, 25, .10);
  --header-h: 64px;
  --font: 'Pretendard Variable', Pretendard, 'Noto Sans KR', -apple-system, BlinkMacSystemFont,
          system-ui, Roboto, 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color-scheme: light dark; /* 스크롤바·폼 네이티브 UI가 OS 모드를 따르게 */
}

/* ---------- 리셋 / 기본 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  word-break: keep-all;
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, p, ul, ol, figure, blockquote, fieldset { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
fieldset { border: 0; padding: 0; }

/* 고정 헤더 보정: 앵커 이동 시 헤더에 가리지 않게 */
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.container {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
}
.container-narrow { width: min(820px, 100% - 40px); }

/* 숫자+단위("300~2,000명", "79만원")가 줄 끝에서 갈라지지 않게 */
.nb { white-space: nowrap; }
.stat-value, .plan-price, .count { white-space: nowrap; }

/* ---------- 접근성 유틸 ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
  transform: translateY(-200%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--yellow-deep);
  outline-offset: 2px;
}

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 12px;
  padding: 13px 24px;
  line-height: 1.2;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}
.btn-primary:hover { background: var(--yellow-deep); }
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid #e0e0dc;
}
.btn-outline:hover { border-color: var(--ink); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #000; }
.btn-sm { padding: 9px 18px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 16px 30px; font-size: 17px; border-radius: 14px; }
.btn-block { width: 100%; }

/* 보조 CTA: 링크 스타일 ("자세히 알아보기 →") */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 2px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.link-arrow::after { content: "→"; transition: transform .15s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- 고정 헤더 ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-img { height: 40px; width: auto; display: block; }
.logo-img--footer { height: 34px; }
.gnb {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.gnb a {
  padding: 8px 13px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-70);
  border-radius: 10px;
  position: relative;
}
.gnb a:hover { color: var(--ink); background: var(--card-bg); }
.gnb a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.gnb a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}
.header-actions { display: flex; align-items: center; gap: 10px; }

/* 햄버거 (모바일) */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 모바일 드로어 ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 25, 25, .4);
  z-index: 110;
  opacity: 0;
  transition: opacity .25s ease;
}
.drawer-overlay.show { opacity: 1; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 82vw);
  background: #fff;
  z-index: 120;
  padding: 84px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(105%);
  transition: transform .28s ease;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  padding: 15px 10px;
  font-size: 17px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.drawer-nav a:hover { color: var(--ink); background: var(--card-bg); border-radius: 8px; }
.drawer-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--card-bg);
  border-radius: 8px;
  padding-left: 14px;
}

/* ---------- 히어로 (홈) ---------- */
.hero {
  padding: calc(var(--header-h) + 84px) 0 96px;
  /* 아주 옅은 노랑 라디얼 틴트 1개 (부드러운 빛) */
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(255, 212, 0, .14), rgba(255, 212, 0, 0) 70%),
    #fff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-70);
  background: var(--card-bg);
  border-radius: 999px;
  padding: 7px 14px;
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}
.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.03em;
}
/* 형광펜 하이라이트 — 홈 히어로 1곳에서만 사용 */
mark {
  background: linear-gradient(to top, var(--yellow) 40%, transparent 40%);
  color: inherit;
  padding: 0 2px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-50);
  max-width: 44ch;
}
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-points {
  display: flex;
  gap: 20px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-50);
}
.hero-points svg { color: var(--ink-30); flex: none; }

/* ---------- 홈 히어로: 네이버 검색결과 목업 ---------- */
.hero-visual { position: relative; padding: 20px 10px 26px; }
.search-mock {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px 18px 8px;
}
.sm-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #03C75A;
  border-radius: 12px;
  padding: 5px 5px 5px 14px;
}
.sm-query { flex: 1; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.sm-btn {
  flex: none;
  width: 40px;
  height: 34px;
  border-radius: 9px;
  background: #03C75A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sm-btn svg { width: 17px; height: 17px; }
.sm-tabs {
  display: flex;
  gap: 16px;
  margin: 14px 4px 0;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-30);
}
.sm-tabs .on { color: #03C75A; position: relative; }
.sm-tabs .on::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: #03C75A;
}
.sm-results { display: flex; flex-direction: column; }
.sm-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 4px;
  border-bottom: 1px solid #f6f6f4;
}
.sm-results .sm-item:last-child { border-bottom: 0; }
.sm-line { display: block; height: 9px; border-radius: 5px; background: #f0f0ee; }
.sm-line--title { height: 11px; width: 64%; background: #e6e6e3; }
.sm-line--w90 { width: 90%; }
.sm-line--w75 { width: 75%; }
.sm-line--meta { height: 8px; width: 30%; background: #f4f4f2; }
.sm-item--win {
  gap: 6px;
  margin: 6px 0;
  padding: 13px 14px;
  background: var(--yellow-soft);
  border: 1px solid #F0E2A6;
  border-radius: 12px;
}
.sm-win-head { display: flex; align-items: center; gap: 8px; }
.sm-rank {
  flex: none;
  background: var(--ink);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 4px 9px;
  border-radius: 999px;
}
.sm-title { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.4; }
.sm-snippet { font-size: 12.5px; color: var(--ink-70); line-height: 1.55; }
.sm-meta { font-size: 11.5px; font-weight: 700; color: #009d4c; }

/* 광고 슬롯 — 흐리게 처리해 '우리 자리는 광고가 아님'을 대비 */
.sm-item--ad { opacity: .5; }
.sm-ad-chip {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink-30);
  border: 1px solid #dcdcd8;
  border-radius: 4px;
  padding: 3px 6px;
}

/* 유기적 1위 포스팅 — 실제 네이버 결과 형태 */
.sm-item--win { position: relative; border: 1.5px solid var(--yellow); border-radius: 12px; }
.sm-win-flag {
  position: absolute;
  top: -11px;
  right: 12px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 999px;
}
.sm-blogger {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #454c53;
}
.sm-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #03C75A;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sm-time { color: #a7adb3; font-weight: 600; }
.sm-title b { background: linear-gradient(to top, rgba(255, 212, 0, .5) 38%, transparent 38%); }
.sm-caption {
  margin-top: 10px;
  padding: 12px 4px 2px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-50);
}
.sm-caption strong { color: var(--ink); font-weight: 800; }

/* 성과 배지 — 정적 배치, 미세 그림자만 */
.float-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 3px 10px rgba(25, 25, 25, .07);
  white-space: nowrap;
}
.float-badge svg { width: 15px; height: 15px; color: var(--ink-50); flex: none; }
.fb-1 { top: 2px; left: -6px; }
.fb-2 { top: 66%; right: -10px; }
.fb-3 { bottom: -18px; left: 6%; }

/* 신뢰 지표 스트립 */
.trust-strip {
  margin-top: 72px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 12px;
  gap: 8px;
}
.trust-item {
  text-align: center;
  padding: 4px 12px;
}
.trust-item + .trust-item { border-left: 1px solid #e8e8e4; }
.trust-item strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.trust-label {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--ink-50);
  font-weight: 500;
}

/* ---------- 섹션 공통 ---------- */
.section { padding: 112px 0; }
.section-warm { background: var(--bg-warm); }
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--amber);
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
}
.section-title {
  margin: 12px 0 14px;
  font-size: clamp(27px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.28;
}
/* 섹션 제목 아래 노랑 액센트 바 — 전 섹션 일관 */
.section-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--yellow);
  margin-top: 16px;
}
.section-desc {
  color: var(--ink-50);
  font-size: 17px;
  line-height: 1.75;
  max-width: 56ch;
  margin-bottom: 8px;
}

/* ---------- 그리드 / 카드 ---------- */
.grid { display: grid; gap: 16px; margin-top: 48px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card-bg);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: none;
  transition: background-color .2s ease, box-shadow .2s ease;
}
.card:hover { background: var(--card-bg-deep); }
.section-warm .card { background: #fff; box-shadow: var(--shadow-sm); }
.section-warm .card:hover { background: #fff; box-shadow: var(--shadow); }
.card h3 { font-size: 18.5px; font-weight: 800; letter-spacing: -0.02em; }

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--card-bg-deep);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card .icon-badge { background: #fff; }
.section-warm .card .icon-badge { background: var(--card-bg); }
.icon-badge svg { width: 24px; height: 24px; }

.about-card p { margin-top: 8px; font-size: 15px; line-height: 1.7; color: var(--ink-50); }

/* ---------- 홈: 서비스 티저 카드 ---------- */
.teaser-card {
  display: flex;
  flex-direction: column;
  color: inherit;
}
.teaser-card > p {
  margin: 8px 0 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-50);
  flex: 1;
}
.card-badge {
  display: inline-block;
  margin-left: 8px;
  vertical-align: 2px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 999px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.card-link::after { content: "→"; transition: transform .15s ease; }
.teaser-card:hover .card-link::after { transform: translateX(4px); }

/* ---------- 홈: 성과 비주얼 카드 ---------- */
.result-card { display: flex; flex-direction: column; }
.result-label { font-size: 15px; font-weight: 700; color: var(--ink-70); }
.result-num {
  margin-top: 4px;
  align-self: flex-start;
  font-size: clamp(30px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--yellow);
}
.result-num small { font-size: .48em; font-weight: 700; color: var(--ink-50); margin-left: 3px; }
.result-figure { margin-top: 16px; flex: 1; }
.result-figure svg { width: 100%; height: auto; display: block; }
.demo-cap { margin-top: 12px; font-size: 12px; color: var(--ink-30); }

/* 순위 상승 계단 */
.rank-figure { padding: 4px 4px 0; }
.rank-steps {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 168px;
}
.rank-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.rank-step .rk { font-size: 14px; font-weight: 800; color: var(--ink-50); }
.rank-step .bar { width: 100%; border-radius: 10px 10px 5px 5px; background: #efefec; }
.rank-step:nth-child(1) .bar { height: 46px; }
.rank-step:nth-child(2) .bar { height: 88px; background: #FFE873; }
.rank-step:nth-child(3) .bar { height: 132px; background: var(--yellow); }
.rank-step:nth-child(3) .rk { font-size: 17px; color: var(--ink); }

/* 체류시간 도넛 */
.donut-figure { display: flex; justify-content: center; padding: 6px 0 2px; }
.donut-figure svg { width: 160px; height: 160px; }

/* ---------- 채널 배지 (정적 한 줄) ---------- */
.channel-strip { padding: 64px 0 0; background: #fff; }
.channel-label {
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-30);
}
.channel-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.channel-badge {
  display: inline-flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-70);
  white-space: nowrap;
  transition: border-color .15s ease, background-color .15s ease;
}
.channel-badge:hover { border-color: var(--yellow); background: #FFFDF2; }

/* ---------- 프로세스 (flow) ---------- */
.blog-flow { margin-top: 48px; padding: 30px 28px; }
.blog-flow h3 { font-size: 17px; margin-bottom: 18px; }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.flow-steps li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-70);
  position: relative;
  padding-right: 10px;
}
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.flow-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 44px;
  right: 4px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #e3e3df 0 6px, transparent 6px 12px);
}

/* ---------- 홈: 고객 후기 ---------- */
.review-card { display: flex; flex-direction: column; gap: 13px; }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.review-avatar--b { background: #fff; }
.review-avatar--c { background: #fff; }
.review-who { min-width: 0; }
.review-name { font-size: 14.5px; font-weight: 800; letter-spacing: -0.01em; }
.review-plan { font-size: 12.5px; font-weight: 600; color: var(--ink-50); }
.review-tag {
  margin-left: auto;
  flex: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-50);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
}
.review-stars { display: flex; gap: 3px; }
.review-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--yellow);
  stroke: none;
}
.review-quote { font-size: 15px; line-height: 1.75; color: var(--ink-70); flex: 1; }
.review-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-50);
}

/* ---------- 블로그: 관리 수치 카드 ---------- */
.stat-card { text-align: left; }
.stat-value {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--yellow);
}
.stat-card h3 { font-size: 16.5px; }
.stat-desc { margin-top: 6px; font-size: 14px; line-height: 1.7; color: var(--ink-50); }

/* ---------- 서비스 카드 ---------- */
.service-def {
  margin: 8px 0 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-50);
  min-height: 3em;
}
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--ink-70);
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #e8e8e4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23191919' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ---------- 서비스 상세 섹션 (services.html) ---------- */
.service-detail-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.service-detail-head .icon-badge { margin-bottom: 0; flex: none; }
.service-detail-head h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.service-detail-def {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-50);
  max-width: 62ch;
}
.service-detail .grid { margin-top: 32px; }
.service-detail .card h3 { font-size: 16px; margin-bottom: 14px; }

/* ---------- 상세 프로세스 (about.html) ---------- */
.steps-detail {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}
.steps-detail li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
}
.steps-detail li:first-child { border-top: 1px solid var(--line); }
.steps-detail h3 { font-size: 17.5px; font-weight: 800; letter-spacing: -0.02em; }
.steps-detail p { margin-top: 7px; font-size: 15px; line-height: 1.75; color: var(--ink-50); max-width: 68ch; }

/* ---------- 안내 박스 (단기 테스트 등) ---------- */
.notice-box {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 0;
  border-radius: var(--radius);
  padding: 22px 24px;
}
.notice-box svg { flex: none; margin-top: 2px; color: var(--ink-50); }
.notice-box strong { display: block; margin-bottom: 4px; font-size: 15.5px; }
.notice-box p { font-size: 14.5px; line-height: 1.7; color: var(--ink-70); }

/* ---------- 상품 안내 (가격) ---------- */
.pricing-grid { align-items: stretch; }
.price-card {
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  position: relative;
}
.price-card .check-list { flex: 1; margin-bottom: 26px; }
.plan-name { font-size: 20px; }
.plan-for { margin-top: 6px; font-size: 14px; color: var(--ink-50); }
.plan-price {
  margin: 18px 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8e8e4;
}
.plan-price strong { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.price-card.featured {
  background: #fff;
  box-shadow: 0 12px 32px rgba(242, 201, 0, .18);
  border: 2px solid var(--yellow);
}
.price-card.featured:hover { background: #fff; }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(25, 25, 25, .1);
}
.plan-total {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-50);
}

/* ---------- 단품 상품 리스트 (pricing.html #alacarte) ---------- */
.buy-list { display: grid; gap: 12px; margin-top: 48px; }
.buy-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
}
.buy-info h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.buy-spec { margin-top: 5px; font-size: 13.5px; color: var(--ink-50); }
.buy-cta { display: flex; align-items: center; gap: 18px; flex: none; }
.buy-price { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }
.buy-price small { margin-left: 5px; font-size: 12px; font-weight: 600; color: var(--ink-30); }
@media (max-width: 640px) {
  .buy-item { flex-direction: column; align-items: flex-start; gap: 14px; }
  .buy-cta { width: 100%; justify-content: space-between; }
}

/* ---------- 올인원 부스터 패키지 (pricing.html #package) ---------- */
.package-card {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 40px 44px;
  background: #191919; /* 다크모드에서도 고정 (var(--ink)는 반전됨) */
  color: #F4F2EC;
}
.package-card:hover { background: #191919; }
.package-flag {
  display: inline-block;
  background: var(--yellow);
  color: #191919;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.package-card h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.package-info .check-list { margin-top: 20px; }
.package-card .check-list li { color: #D8D5CC; }
.package-card .check-list li::before {
  background: rgba(255, 212, 0, .18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD400' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center/11px no-repeat;
}
.package-price {
  align-self: center;
  text-align: center;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.pkg-was { font-size: 14px; color: #9B978C; }
.pkg-was s { text-decoration-thickness: 2px; }
.pkg-off {
  display: inline-block;
  margin-top: 8px;
  background: var(--yellow);
  color: #191919;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
}
.pkg-now { margin-top: 10px; font-size: 22px; font-weight: 800; color: #fff; }
.pkg-now strong { font-size: 56px; letter-spacing: -0.03em; color: var(--yellow); }
.pkg-total { margin: 6px 0 18px; font-size: 13.5px; color: #B8B4A9; }
@media (max-width: 920px) {
  .package-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 26px; }
}

.pricing-note {
  margin-top: 32px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-50);
}
.pricing-note a { font-weight: 700; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 노란굿즈 (pricing.html 내 섹션) — 컴팩트 상품 카드 ---------- */
.goods-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.goods-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.goods-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f3f2ef;
  overflow: hidden;
}
.goods-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.goods-card:hover .goods-thumb img { transform: scale(1.05); }
.goods-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: #191919;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(25, 25, 25, .12);
}
.goods-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
}
.goods-body h3 { font-size: 15.5px; line-height: 1.4; }
.goods-price {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.goods-price small { margin-left: 3px; font-size: 12px; font-weight: 600; color: var(--ink-30); }
.goods-body .btn { margin-top: 12px; }
@media (max-width: 1024px) {
  .goods-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .goods-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .goods-body { padding: 13px 14px 15px; }
  .goods-body h3 { font-size: 14px; }
  .goods-price { font-size: 15.5px; }
}

/* ---------- 고객사 로고 스트립 (index.html) — 2줄 교차 무한 마퀴 ---------- */
.clients-marquee {
  margin-top: 48px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.clients-marquee + .clients-marquee { margin-top: 14px; }
.clients-track {
  display: flex;
  width: max-content;
  animation: clients-scroll 55s linear infinite;
}
.clients-marquee--rev .clients-track { animation-direction: reverse; }
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.clients-row { display: flex; flex: none; }
.client-chip {
  flex: none;
  width: 156px;
  height: 76px;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 22px;
}
.client-chip img {
  max-height: 42px;
  max-width: 112px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes clients-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; width: auto; }
  .clients-row { flex-wrap: wrap; justify-content: center; row-gap: 14px; }
  .clients-row[aria-hidden="true"] { display: none; }
  .clients-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ---------- 성공 사례 카드 (blog.html) ---------- */
.case-card { display: flex; flex-direction: column; }
.case-tag {
  align-self: flex-start;
  background: var(--yellow-soft);
  color: #191919;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 999px;
}
.case-card h3 { margin-top: 14px; font-size: 19px; }
.case-problem {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-50);
  flex: 1;
}
.case-keywords { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.case-keywords span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-70);
  background: var(--card-bg-deep);
  padding: 5px 10px;
  border-radius: 8px;
}
.case-result {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.55;
}
.case-result svg { flex: none; margin-top: 2px; }
/* 실제 검색 캡처 (메인 성공사례 카드) — 클릭하면 라이트박스 */
.case-shot {
  display: block;
  margin-top: 16px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: zoom-in;
}
.case-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.case-shot-cap { margin-top: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink-50); }

/* ---------- 홈페이지형 블로그 템플릿 갤러리 (blog.html) ---------- */
.tpl-card { padding: 0; overflow: hidden; }
.tpl-thumb {
  display: block;
  aspect-ratio: 1571 / 1016; /* 시안 원본 비율 — 잘림 없이 표시 */
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
}
.tpl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.tpl-card:hover .tpl-thumb img { transform: scale(1.03); }
.tpl-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 20px 17px;
}
.tpl-body h3 { font-size: 15.5px; }
.tpl-feat { font-size: 12.5px; color: var(--ink-50); white-space: nowrap; }


/* ---------- 결제 페이지 (checkout.html) ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
.order-card h3 { font-size: 15px; font-weight: 700; color: var(--ink-50); }
.order-name { margin-top: 10px; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.order-desc { margin-top: 8px; font-size: 14.5px; line-height: 1.7; color: var(--ink-50); }
.order-card .check-list { margin-top: 18px; }
.order-total {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.order-total .label { font-size: 14.5px; font-weight: 700; color: var(--ink-70); }
.order-total .amount { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.order-vat { margin-top: 6px; text-align: right; font-size: 12.5px; color: var(--ink-30); }
.agree-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-70); }
.agree-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--yellow); }
.agree-row a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.checkout-note { margin-top: 14px; font-size: 13px; line-height: 1.7; color: var(--ink-30); }
@media (max-width: 920px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

/* ---------- 결제 결과 페이지 (payment/success·fail) ---------- */
.pay-result {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 34px;
}
.pay-result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--yellow);
  color: #191919;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-result-icon svg { width: 30px; height: 30px; }
.pay-result h1 { font-size: 25px; font-weight: 800; letter-spacing: -0.02em; }
.pay-result .pay-msg { margin-top: 10px; font-size: 15px; line-height: 1.75; color: var(--ink-50); }
.pay-detail {
  margin: 24px 0;
  text-align: left;
  font-size: 14px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.pay-detail p { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.pay-detail .k { color: var(--ink-50); flex: none; }
.pay-detail .v { font-weight: 700; word-break: break-all; text-align: right; }
.pay-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---------- 템플릿 업종 필터 (portfolio.html) ---------- */
.tpl-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.tpl-filter-btn {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--card-bg);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-70);
  transition: background-color .15s ease, color .15s ease;
}
.tpl-filter-btn:hover { background: var(--card-bg-deep); color: var(--ink); }
.tpl-filter-btn.on { background: var(--yellow); color: #191919; font-weight: 800; }

/* ---------- 시안 미리보기 라이트박스 (blog.html) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(15, 14, 10, .84);
  opacity: 0;
  transition: opacity .2s ease;
}
.lightbox.show { opacity: 1; }
.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 100%;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: rgba(255, 255, 255, .26); }
body.lightbox-open { overflow: hidden; }

/* ---------- 비교 표 (pricing.html) — 가로 스크롤 반응형 ---------- */
.table-hint {
  display: none;
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--ink-30);
}
.table-scroll {
  margin-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(90deg, #fff 30%, rgba(255, 255, 255, 0)) left/48px 100%,
    linear-gradient(270deg, #fff 30%, rgba(255, 255, 255, 0)) right/48px 100%,
    linear-gradient(90deg, rgba(25, 25, 25, .09), rgba(25, 25, 25, 0)) left/16px 100%,
    linear-gradient(270deg, rgba(25, 25, 25, .09), rgba(25, 25, 25, 0)) right/16px 100%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-attachment: local, local, scroll, scroll;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare-table caption {
  padding: 18px 20px 4px;
  text-align: left;
  font-weight: 800;
  font-size: 16px;
}
.compare-table th, .compare-table td {
  padding: 15px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  font-weight: 800;
  font-size: 15px;
  border-bottom: 2px solid var(--line);
}
.compare-table tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--ink-70);
  white-space: nowrap;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .col-featured { background: #FFFBEB; font-weight: 700; }
.compare-table thead .col-featured { background: var(--yellow-soft); }
.compare-table .muted { color: #bfbfba; }

/* 비교표 SVG 체크 */
.tick {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.tick svg { width: 12px; height: 12px; display: block; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: background-color .2s ease;
}
.faq-item[open] { background: var(--card-bg-deep); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 21px 22px;
  font-size: 16.5px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  transition: transform .25s ease, background-color .25s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: background-color .25s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--ink); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: #fff; }
.faq-body { padding: 0 22px 22px; }
.faq-body p { font-size: 15px; line-height: 1.75; color: var(--ink-70); }

/* ---------- FAQ 카테고리 소제목 (faq.html) ---------- */
.faq-group-title {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.faq-group-title::before {
  content: "";
  width: 5px;
  height: 22px;
  border-radius: 3px;
  background: var(--yellow);
}
.faq-group-title + .faq-list { margin-top: 18px; }

/* ---------- 상담 신청 ---------- */
.contact-section { background: var(--bg-warm); }
.contact-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 21px; height: 21px; }
.contact-info-list strong {
  display: block;
  font-size: 13px;
  color: var(--ink-50);
  font-weight: 600;
}
.contact-info-list a, .contact-info-list div > span {
  font-size: 16px;
  font-weight: 700;
}
.contact-info-list a:hover { text-decoration: underline; text-underline-offset: 3px; }

.contact-form-wrap {
  background: #fff;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 32px;
}
.lead-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row label, .form-row legend {
  font-size: 14.5px;
  font-weight: 700;
}
.form-row label em, .form-row legend em { color: #d92c2c; font-style: normal; }
.legend-sub { font-weight: 500; color: var(--ink-50); font-size: 13px; }
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1.5px solid #e0e0dc;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 15.5px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form textarea { resize: vertical; min-height: 96px; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(25, 25, 25, .07);
}
.lead-form .invalid {
  border-color: #d92c2c;
  box-shadow: 0 0 0 3px rgba(217, 44, 44, .1);
}
.field-error { font-size: 13px; color: #d92c2c; font-weight: 500; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* 체크박스 칩 */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid #e0e0dc;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-70);
  transition: all .15s ease;
  user-select: none;
}
.chip:hover span { border-color: var(--ink); }
.chip input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  font-weight: 700;
}
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(25, 25, 25, .12); }

.form-privacy { font-size: 12.5px; color: var(--ink-50); text-align: center; }
.form-privacy a {
  font-weight: 700;
  color: var(--ink-70);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-privacy a:hover { color: var(--ink); }

/* 제출 성공 화면 */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 36px 10px;
}
.form-success h3 { font-size: 22px; }
.form-success p { color: var(--ink-50); }

/* ---------- 페이지 히어로 (하위 페이지 상단) ---------- */
.page-hero {
  padding: calc(var(--header-h) + 76px) 0 40px;
  /* 옅은 노랑 틴트 → 흰색 수직 그라데이션 */
  background: linear-gradient(180deg, var(--yellow-tint) 0%, #fff 100%);
}
.page-hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.page-hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-50);
  max-width: 56ch;
}

/* 페이지 내 빠른 이동 칩 (서비스 페이지 등) */
.jump-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.jump-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--card-bg);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-70);
  transition: background-color .15s ease, color .15s ease;
}
.jump-nav a:hover { background: var(--card-bg-deep); color: var(--ink); }

/* ---------- 블로그: 월간 리포트 대시보드 목업 ---------- */
.report-mock {
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.report-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fbfbfa;
  border-bottom: 1px solid var(--line);
}
.rm-dot { flex: none; width: 10px; height: 10px; border-radius: 50%; }
.rm-dot--r { background: #ff5f57; }
.rm-dot--y { background: #febc2e; }
.rm-dot--g { background: #28c840; }
.rm-url {
  margin-left: 8px;
  flex: 1;
  max-width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-50);
  padding: 4px 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
}
.report-widget {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.rw-label { font-size: 12.5px; font-weight: 700; color: var(--ink-50); }
.rw-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 3px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.rw-value small { font-size: 14px; font-weight: 700; color: var(--ink-50); }
.rw-delta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow-soft);
  border-radius: 999px;
  padding: 3px 9px;
  transform: translateY(-2px);
}
.rw-delta svg { width: 11px; height: 11px; flex: none; }
.rw-figure { margin-top: 10px; }
.rw-figure svg { width: 100%; height: auto; display: block; }
.rw-bar {
  height: 8px;
  border-radius: 5px;
  background: #f0f0ee;
  margin-top: 14px;
  overflow: hidden;
}
.rw-bar span { display: block; height: 100%; background: var(--yellow); border-radius: 5px; }
.rw-bar--dwell span { width: 84%; }
.rw-bar--buddy span { width: 72%; }
.cal-dots {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 14px;
}
.cal-dots span {
  aspect-ratio: 1 / 1;
  min-height: 10px;
  border-radius: 4px;
  background: #f0f0ee;
}
.cal-dots span.on { background: var(--yellow); }
.report-cap {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-50);
}

/* ---------- 공통 CTA 스트립 (전 페이지 하단) — 브랜드 옐로 블록 ---------- */
.cta-strip {
  background: var(--yellow);
  padding: 88px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--ink);
}
.cta-strip p {
  margin-top: 10px;
  font-size: 15.5px;
  font-weight: 500;
  color: rgba(25, 25, 25, .75);
}
.cta-strip .btn-dark:hover { background: #000; color: #fff; }
.cta-strip a:focus-visible { outline-color: var(--ink); }
.cta-strip-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.cta-phone svg { flex: none; }
.cta-phone:hover { border-bottom-color: var(--ink); }

/* ---------- 가운데 정렬 버튼 행 ---------- */
.btn-row-center {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* ---------- 법적 문서 페이지 (terms.html / privacy.html) ---------- */
.legal-hero-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-70);
  box-shadow: var(--shadow-sm);
}
.legal-hero-date::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}
.legal-body { padding: 56px 0 112px; }
.container-doc { width: min(720px, 100% - 40px); margin-inline: auto; }
.legal-intro { font-size: 15.5px; line-height: 1.8; color: var(--ink-70); }

/* 문서 목차 */
.legal-toc {
  margin-top: 32px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.legal-toc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--amber);
}
.legal-toc-title::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
}
.legal-toc ol {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 24px;
}
.legal-toc a {
  display: block;
  padding: 6px 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-70);
  border-radius: 8px;
  transition: background-color .15s ease, color .15s ease;
}
.legal-toc a:hover { color: var(--ink); background: var(--yellow-soft); }

/* 조항 */
.legal-article { margin-top: 52px; }
.legal-article h2 {
  position: relative;
  padding-left: 17px;
  font-size: 19.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.legal-article h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--yellow);
}
.legal-article > p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-70);
}

/* 항(원형 번호) 목록 */
.clause-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: clause;
}
.clause-list > li {
  counter-increment: clause;
  position: relative;
  padding-left: 31px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-70);
}
.clause-list > li::before {
  content: counter(clause);
  position: absolute;
  left: 0;
  top: 3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--card-bg-deep);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 호(1. 2. 3.) 목록 */
.item-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: item;
}
.item-list > li {
  counter-increment: item;
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-70);
}
.item-list > li::before {
  content: counter(item) ".";
  position: absolute;
  left: 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-50);
}

/* 문서 내 표 — 모바일 가로 스크롤 */
.legal-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.legal-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.legal-table th, .legal-table td {
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
}
.legal-table thead th {
  background: var(--card-bg);
  font-size: 13.5px;
  font-weight: 800;
  white-space: nowrap;
}
.legal-table tbody th {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.legal-table tbody td { color: var(--ink-70); }
.legal-table tbody tr:last-child th,
.legal-table tbody tr:last-child td { border-bottom: 0; }

/* 강조 안내 박스 */
.legal-note {
  margin-top: 14px;
  background: var(--yellow-tint);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-70);
}
.legal-note strong { color: var(--ink); }

/* 부칙 */
.legal-addendum { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }

/* 하단 문의 안내 */
.legal-contact {
  margin-top: 64px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-70);
}
.legal-contact strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15.5px;
  color: var(--ink);
}
.legal-contact a {
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .legal-body { padding: 40px 0 80px; }
  .legal-toc ol { grid-template-columns: 1fr; }
  .legal-toc { padding: 20px 18px; }
  .legal-article { margin-top: 44px; }
  .legal-article h2 { font-size: 18px; }
}

/* ---------- 푸터 ---------- */
.site-footer {
  background: var(--ink);
  color: #cfcfcf;
  padding: 56px 0 0;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr .7fr;
  gap: 36px;
  padding-bottom: 36px;
}
.logo-invert { color: #fff; }
.footer-brand p { margin-top: 12px; color: #9b9b9b; }
.footer-info p { margin-bottom: 6px; line-height: 1.7; }
.footer-info a { color: #efefef; font-weight: 600; }
.footer-info a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-col-label { font-size: 13px; font-weight: 700; color: #8a8a8a; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}
.footer-nav a { color: #cfcfcf; font-weight: 600; font-size: 14px; width: fit-content; padding: 4px 0; }
.footer-nav a:hover { color: #fff; }
.footer-copy {
  border-top: 1px solid #2a2a2a;
  padding: 18px 20px;
  color: #8a8a8a;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: #8a8a8a; font-weight: 600; }
.footer-legal a:hover { color: #fff; }
.footer-legal b { font-weight: 700; }

/* ---------- 토스트 ---------- */
.toast-root {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}
.toast {
  background: var(--ink);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  max-width: min(92vw, 480px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

/* ---------- 스크롤 리빌: 은은한 페이드만 ---------- */
.reveal { opacity: 0; }
.reveal.is-visible { opacity: 1; animation: fadeReveal .6s ease backwards; }
.grid > .reveal.is-visible:nth-child(2),
.faq-list > .reveal.is-visible:nth-child(2) { animation-delay: .06s; }
.grid > .reveal.is-visible:nth-child(3),
.faq-list > .reveal.is-visible:nth-child(3) { animation-delay: .12s; }
.grid > .reveal.is-visible:nth-child(4),
.faq-list > .reveal.is-visible:nth-child(4) { animation-delay: .18s; }
.grid > .reveal.is-visible:nth-child(5) { animation-delay: .24s; }
.grid > .reveal.is-visible:nth-child(6) { animation-delay: .3s; }
@keyframes fadeReveal {
  from { opacity: 0; }
}
/* JS 미동작 시에도 콘텐츠가 보이도록 */
.no-js .reveal, .no-observer .reveal { opacity: 1; }

/* ---------- 반응형 ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 36px; }
}

/* 네비 7항목: 데스크톱 폭이 좁아지면 드로어로 전환 */
@media (max-width: 1080px) {
  .gnb { display: none; }
  .hamburger { display: flex; }
  .header-actions { margin-left: auto; } /* gnb가 숨으면 오른쪽 정렬을 이어받음 */
}

@media (max-width: 920px) {
  .hero { padding: calc(var(--header-h) + 52px) 0 72px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 460px; margin-inline: auto; }
  .trust-strip { margin-top: 52px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  .flow-steps { grid-template-columns: 1fr; gap: 16px; }
  .flow-steps li { flex-direction: row; align-items: center; padding-right: 0; }
  .flow-steps li:not(:last-child)::after { display: none; }

  .section { padding: 88px 0; }
  .page-hero { padding: calc(var(--header-h) + 52px) 0 16px; }
}

@media (max-width: 640px) {
  .header-cta { display: none; }
  .section { padding: 72px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }

  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero-sub { font-size: 16.5px; }
  .hero-cta .btn { flex: 1; }

  /* 히어로 목업: 폭 100% 카드, 배지는 목업 아래 정적 칩 행으로 */
  .hero-visual { padding: 0; }
  .search-mock { padding: 14px 14px 6px; }
  .sm-title { font-size: 13px; }
  .sm-snippet { font-size: 12px; }
  .sm-tabs { gap: 12px; }
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .float-badge {
    position: static;
    font-size: 12.5px;
    padding: 8px 13px;
    gap: 5px;
    box-shadow: var(--shadow-sm);
  }
  .float-badge svg { width: 13px; height: 13px; }

  .trust-strip { grid-template-columns: 1fr; padding: 8px 20px; margin-top: 40px; }
  .trust-item { padding: 16px 4px; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid #e8e8e4; }

  .rank-steps { height: 148px; gap: 10px; }
  .donut-figure svg { width: 140px; height: 140px; }
  .channel-strip { padding-top: 48px; }
  .channel-badge { padding: 8px 14px; font-size: 13px; }

  .card { padding: 26px 22px; }
  .blog-flow { padding: 24px 20px; }
  .contact-form-wrap { padding: 26px 20px; }

  .cta-strip { padding: 64px 0; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-strip-actions { width: 100%; flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-strip-actions .btn { width: 100%; }

  .service-detail-head { flex-direction: column; gap: 14px; }
  .steps-detail li { grid-template-columns: 30px 1fr; gap: 14px; }

  .table-hint { display: block; }
  .table-hint + .table-scroll { margin-top: 12px; }
}
@media (max-width: 560px) {
  .report-grid { grid-template-columns: 1fr; padding: 14px; }
  .logo-img { height: 34px; }
}

/* ---------- 모션 최소화 존중 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; animation: none !important; }
}

/* ==========================================================================
   시스템 다크모드 — prefers-color-scheme: dark (토글 없음, OS 설정 자동 감지)
   라이트 모드 불변: 모든 오버라이드는 이 미디어쿼리 안에만 존재
   노랑(#FFD400)은 라이트와 동일하게 유지 — CTA·액센트·차트 데이터
   ========================================================================== */
@media (prefers-color-scheme: dark) {

  /* ---- 다크 팔레트 토큰 ---- */
  :root {
    --bg: #191813;             /* 딥 웜 차콜 */
    --bg-warm: #211F1A;        /* 교차 섹션: 살짝 밝게 */
    --card-bg: #232119;        /* 카드면 */
    --card-bg-deep: #2B2920;
    --amber: #9BA1A8;          /* 아이브로우 라벨 */
    --ink: #ECEAE4;            /* 본문: 밝은 회백 */
    --ink-70: #CFCBC1;
    --ink-50: #B4B0A6;         /* 보조 */
    --ink-30: #7E7A70;
    --line: #34322B;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .35);
    --shadow: 0 6px 20px rgba(0, 0, 0, .4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, .55);
  }

  /* ---- 기본 UI: --ink 가 밝게 뒤집히며 어긋나는 지점 보정 ---- */
  .skip-link { color: #191813; }                 /* 배경 var(--ink)=크림 → 잉크 텍스트 */
  .btn-primary { color: #191919; }               /* 노랑 위 텍스트는 항상 잉크 */
  .btn-outline { background: transparent; border-color: #45423A; }
  .btn-outline:hover { border-color: var(--ink); }
  .btn-dark { background: #191919; color: #fff; } /* 노랑 CTA 블록 위 검정 버튼 유지 */
  .btn-dark:hover { background: #000; }

  /* ---- 헤더 / 드로어 ---- */
  .site-header { background: rgba(25, 24, 19, .88); }
  .drawer { background: #211F1A; }
  .drawer-overlay { background: rgba(0, 0, 0, .55); }

  /* ---- 히어로 / 페이지 히어로 ---- */
  .hero {
    background:
      radial-gradient(900px 480px at 85% -10%, rgba(255, 212, 0, .08), rgba(255, 212, 0, 0) 70%),
      var(--bg);
  }
  mark { background: linear-gradient(to top, rgba(255, 212, 0, .32) 40%, transparent 40%); }
  .page-hero { background: linear-gradient(180deg, #262213 0%, var(--bg) 100%); }
  .trust-item + .trust-item { border-color: #34322B; }

  /* ---- 채널 배지 ---- */
  .channel-strip { background: var(--bg); }
  .channel-badge:hover { background: #2A2716; }

  /* ---- 카드: 카드면 + 미세 보더(인셋 링, 레이아웃 불변) ---- */
  .card { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05); }
  .section-warm .card { background: var(--card-bg); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05); }
  .section-warm .card:hover { background: var(--card-bg-deep); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07); }
  .card .icon-badge,
  .section-warm .card .icon-badge { background: var(--card-bg-deep); }
  .card-badge { background: var(--yellow); color: #191919; }
  .step-num { color: #191813; }                  /* 배경 var(--ink)=크림 → 잉크 숫자 */
  .flow-steps li:not(:last-child)::after {
    background: repeating-linear-gradient(90deg, #3B3931 0 6px, transparent 6px 12px);
  }
  .review-avatar { background: var(--card-bg-deep); }
  .review-tag { background: transparent; }
  .check-list li::before {
    background: #3A382E url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F2F0E9' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center/11px no-repeat;
  }

  /* ---- 가격 카드 / 비교표 ---- */
  .plan-price { border-bottom-color: #34322B; }
  .plan-badge { color: #191919; }
  .price-card.featured { background: #272419; box-shadow: 0 12px 32px rgba(0, 0, 0, .45); }
  .price-card.featured:hover { background: #272419; }
  .table-scroll {
    background:
      linear-gradient(90deg, #26241D 30%, rgba(38, 36, 29, 0)) left/48px 100%,
      linear-gradient(270deg, #26241D 30%, rgba(38, 36, 29, 0)) right/48px 100%,
      linear-gradient(90deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, 0)) left/16px 100%,
      linear-gradient(270deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, 0)) right/16px 100%;
    background-color: #26241D;
    background-repeat: no-repeat;
    background-attachment: local, local, scroll, scroll;
  }
  .compare-table .col-featured { background: #2E2A16; }
  .compare-table thead .col-featured { background: #383310; }
  .compare-table .muted { color: #6E6A5F; }

  /* ---- 노란굿즈 ---- */
  .goods-thumb { background: #26241D; }

  /* ---- 고객사 로고 / 성공 사례 / 템플릿 갤러리 / 브랜드 배너 ---- */
  .client-chip { background: #fff; border-color: transparent; } /* 로고 가독성 위해 흰 칩 유지 */
  .case-tag { background: rgba(255, 212, 0, .16); color: var(--ink); }
  .tpl-thumb { background: #26241D; border-bottom-color: var(--line); }

  /* ---- FAQ ---- */
  .faq-icon { background: #35332A; }
  .faq-item[open] .faq-icon::before,
  .faq-item[open] .faq-icon::after { background: #191813; } /* 열림: 크림 원 안 잉크 십자 */

  /* ---- 상담 폼 ---- */
  .info-icon { background: var(--card-bg-deep); }
  .contact-form-wrap {
    background: var(--card-bg);
    box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, .05);
  }
  .lead-form input[type="text"],
  .lead-form input[type="tel"],
  .lead-form input[type="email"],
  .lead-form select,
  .lead-form textarea {
    background: #1B1A14;
    border-color: #45423A;
  }
  .lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(236, 234, 228, .12);
  }
  .lead-form .invalid {
    border-color: #E05B5B;
    box-shadow: 0 0 0 3px rgba(224, 91, 91, .16);
  }
  .form-row label em, .form-row legend em { color: #F27979; }
  .field-error { color: #F27979; }
  .chip span { border-color: #45423A; }
  .chip input:checked + span { color: #191813; } /* 배경 var(--ink)=크림 → 잉크 텍스트 */
  .chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(236, 234, 228, .18); }

  /* ---- CTA 스트립: 노랑 블록 유지 → 내부는 라이트와 동일한 잉크 ---- */
  .cta-strip { color: #191919; }
  .cta-strip h2 { color: #191919; }
  .cta-phone:hover { border-bottom-color: #191919; }
  .cta-strip a:focus-visible { outline-color: #191919; }

  /* ---- 법적 문서 ---- */
  .legal-hero-date { background: var(--card-bg); }
  .legal-toc a:hover { background: #2E2A18; }
  .legal-table-wrap { background: #201E18; }
  .legal-note { background: #2A2614; }

  /* ---- 푸터 / 토스트 ---- */
  .site-footer { background: #141311; box-shadow: inset 0 1px 0 #26241E; }
  .toast { color: #191813; }                     /* 배경 var(--ink)=크림 → 잉크 텍스트 */

  /* ================================================================
     라이트 서피스 예외 — 실제 화면 캡처처럼 다크에서도 흰 배경 유지
     (네이버 검색결과 목업 · 월간 리포트 대시보드 목업 · 성과 차트 카드)
     내부 색은 라이트 모드 값으로 고정, 테두리·그림자만 다크에 맞게 조정
     ================================================================ */

  /* 네이버 검색결과 목업 */
  .search-mock {
    background: #fff;
    border-color: #e6e4dc;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .5);
    color: #191919;
  }
  .search-mock .sm-tabs { color: #a7adb3; border-bottom-color: #efefed; }
  .search-mock .sm-rank { background: #191919; color: #FFD400; }
  .search-mock .sm-blogger { color: #454c53; }
  .search-mock .sm-ad-chip { color: #a7adb3; border-color: #e0e0dc; }
  .search-mock .sm-caption { color: #6f757c; border-top-color: #efefed; }
  .search-mock .sm-caption strong { color: #191919; }
  .search-mock .sm-snippet { color: #454c53; }

  /* 성과 배지(목업 위에 뜨는 흰 칩) */
  .float-badge {
    background: #fff;
    border-color: #e6e4dc;
    color: #191919;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .45);
  }
  .float-badge svg { color: #6f757c; }

  /* 성과 차트 카드 (라인차트 · 순위 계단 · 도넛) */
  .section-warm .card.result-card {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .45);
    color: #191919;
  }
  .section-warm .card.result-card:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .45);
  }
  .result-label { color: #454c53; }
  .result-num small { color: #6f757c; }
  .rank-step .rk { color: #6f757c; }
  .rank-step:nth-child(3) .rk { color: #191919; }
  .demo-cap { color: #a7adb3; }

  /* 월간 리포트 대시보드 목업 */
  .report-mock {
    background: #fff;
    border-color: #e6e4dc;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .5);
    color: #191919;
  }
  .report-mock .report-mock-bar { background: #fbfbfa; border-bottom-color: #efefed; }
  .report-mock .rm-url { background: #fff; border-color: #efefed; color: #6f757c; }
  .report-mock .report-widget { border-color: #efefed; }
  .report-mock .rw-label, .report-mock .rw-value small { color: #6f757c; }
  .report-mock .rw-delta { color: #191919; }
}
