:root {
  --amber: #D97706;
  --amber-hover: #B45309;
  --amber-light: #FEF3C7;
  --amber-bg: #FFFBEB;
  --amber-strong: #92400E;
  --dark: #1a1207;
  --dark-sub: #2d2012;
  --dark-line: rgba(255,255,255,0.08);
  --kakao: #FEE500;
  --green: #059669;
  --green-light: #d1fae5;
  --red: #dc2626;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #999;
  --bg-page: #f7f5f0;
  --bg-card: #fff;
  --bg-input: #f9f7f3;
  --bg-section: #FAFAF7;
  --bg-hero-card: #fff;
  --border: #e8e4dc;
  --border-light: #f0ece4;
  --border-focus: #D97706;
  --radius-card: 16px;
  --radius-input: 10px;
  --radius-btn: 10px;
  --radius-badge: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
  --transition-fast: 0.15s ease;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Noto Sans KR', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--bg-page);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ─── Floating CTA (우측 하단 고정 · 전환용) ─── */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--amber);
  color: #fff;
  padding: 13px 20px 13px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 8px 24px rgba(217,119,6,0.25);
  text-decoration: none;
  transition: background var(--transition-fast);
  font-weight: 700;
  letter-spacing: -0.2px;
}
.floating-cta:hover { background: var(--amber-hover); }
.floating-cta-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.floating-cta-text { display: flex; flex-direction: column; line-height: 1.2; }
.floating-cta-title { font-size: 13px; font-weight: 700; }
.floating-cta-sub { font-size: 10px; color: rgba(255,255,255,0.85); font-weight: 500; margin-top: 2px; }
/* 펄스 제거 (대기업 톤) */
.floating-cta-pulse { display: none; }

@media (max-width: 768px) {
  .floating-cta { right: 14px; bottom: 14px; padding: 12px 18px 12px 14px; gap: 10px; }
  .floating-cta-icon { width: 30px; height: 30px; font-size: 13px; }
  .floating-cta-pulse { width: 30px; height: 30px; left: 28px; }
  .floating-cta-title { font-size: 13px; }
  .floating-cta-sub { font-size: 10px; }
}
@media (max-width: 480px) {
  .floating-cta-sub { display: none; }
  .floating-cta-title { font-size: 13px; }
}

/* ─── 스크롤 페이드인 애니메이션 ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Site Header (top-bar + top-nav 통합 sticky) ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ─── Top Bar (판매·문의 빠른 링크) ─── */
.top-bar {
  background: #0c0a06;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.top-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 0;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}
.top-bar a i { font-size: 10px; opacity: 0.85; }
.top-bar a:hover { color: #fff; }
.top-bar a.top-bar-highlight {
  color: var(--kakao);
  font-weight: 700;
}
.top-bar a.top-bar-highlight:hover { color: #fde047; }

/* ─── Top Nav (v2: 브랜드 강화 + active 명확) ─── */
.top-nav {
  background: linear-gradient(180deg, var(--dark) 0%, #13100a 100%);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--dark-line);
  min-height: 56px;
}
.top-nav a {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}
.top-nav a:hover { color: #fff; }

/* 브랜드 영역 */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #fff !important;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--amber) 0%, #f59e0b 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(217,119,6,0.4);
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.3px;
}
.nav-brand-text b { color: var(--amber); font-weight: 800; }
.nav-brand-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--kakao);
  letter-spacing: 1px;
  margin-top: 2px;
  opacity: 0.75;
}

/* 링크 영역 */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
}
.nav-links a.active {
  color: #fff;
  background: rgba(217,119,6,0.18);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px 2px 0 0;
}

/* CTA 버튼 */
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: var(--kakao);
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 9px 16px !important;
  border-radius: 8px;
  font-size: 13px !important;
  transition: transform var(--transition-fast), background var(--transition-fast) !important;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(254,229,0,0.25);
}
.nav-cta i { font-size: 11px; }
.nav-cta:hover {
  background: #fde047;
  color: var(--dark) !important;
}

/* ─── Hero ─── */
.hero {
  background: var(--dark);
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(217,119,6,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(254,229,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,119,6,0.18);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 22px;
}

/* 히어로 — 대기업 톤 미니멀 배지 */
.hero-badges-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  align-items: center;
}
.hero-rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,119,6,0.14);
  color: var(--amber);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.1px;
  border: 1px solid rgba(217,119,6,0.25);
}
.hero-rank-badge i { font-size: 11px; }
.hero-rank-badge b { font-size: 13px; font-weight: 800; color: var(--kakao); }
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.hero-live-badge b { color: #fff; font-weight: 700; }

/* 가격 디스플레이 — 정돈된 대기업 톤 */
.hero-price-display {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 28px 0 24px;
}
.hero-price-main {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-price-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  font-weight: 500;
}
.hero-price-label strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.hero-price-big {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -3px;
}
.hero-price-unit {
  font-size: 28px;
  letter-spacing: -1px;
  margin-left: 2px;
  color: rgba(255,255,255,0.75);
}
.hero-price-from {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-left: 10px;
  letter-spacing: 0;
}
.hero-price-compare {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.compare-label { color: rgba(255,255,255,0.45); font-weight: 500; }
.compare-value s { color: rgba(255,255,255,0.3); }
.compare-vs {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}
.compare-value.win b { color: var(--amber); font-weight: 700; font-size: 14px; }

/* 신뢰 지표 그리드 (4개) */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-trust-item:nth-child(-n+2) { border-top: 1px solid rgba(255,255,255,0.06); }
.hero-trust-item i {
  font-size: 16px;
  color: var(--amber);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,119,6,0.1);
  border-radius: 10px;
}
.hero-trust-item div { line-height: 1.2; min-width: 0; }
.hero-trust-item b { display: block; font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.4px; }
.hero-trust-item span { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 3px; font-weight: 500; }
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}
.hero h1 .point { color: var(--kakao); font-style: normal; }
.hero h1 .under { text-decoration: underline; text-decoration-color: var(--amber); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
  line-height: 1.75;
}
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500;
}
.hero-trust i { color: var(--amber); font-size: 12px; }

.live-bar {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.live-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 0 rgba(34,197,94,0.6); animation: livePulse 1.8s infinite; }
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.live-bar b { color: #fff; font-weight: 700; }

/* ─── Order Form Card ─── */
.order-card {
  background: var(--bg-hero-card);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
  position: relative;
}
.order-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--kakao) 100%);
  border-radius: calc(var(--radius-card) + 2px);
  z-index: -1;
  opacity: 0.4;
}
.order-card-header { text-align: center; margin-bottom: 22px; }
.order-card-badge {
  display: inline-block;
  background: var(--amber-bg);
  color: var(--amber-strong);
  font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 8px;
}
.order-card-title { font-size: 20px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.3px; }
.order-card-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-group { margin-bottom: 13px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 5px; }
.form-label .req { color: var(--red); margin-left: 2px; }
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  font-size: 14px; font-family: inherit;
  background: var(--bg-input);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.form-input:focus { border-color: var(--border-focus); background: #fff; }
.form-input::placeholder { color: var(--text-muted); }
.form-hint { margin-top: 6px; font-size: 13px; color: var(--text-muted); }
.price-info {
  margin-top: 6px; padding: 10px 12px;
  background: var(--amber-bg);
  border-radius: var(--radius-input);
  font-size: 14px; color: var(--text-primary); font-weight: 600; line-height: 1.5;
}
.price-info strong { color: var(--amber); }
.form-error {
  display: none;
  background: #fef2f2; color: var(--red);
  padding: 10px 14px; border-radius: var(--radius-input);
  font-size: 13px; margin-bottom: 12px;
}
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--amber); color: #fff;
  border: none; border-radius: var(--radius-btn);
  font-size: 16px; font-weight: 700; font-family: inherit;
  cursor: pointer;
  transition: background var(--transition-fast);
  letter-spacing: -0.2px;
}
.btn-submit:hover { background: var(--amber-hover); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-footer { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 10px; line-height: 1.7; }
.form-footer a { color: var(--text-secondary); text-decoration: underline; }

.order-success { display: none; }
.order-success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: #f0fdf4;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px; color: #22c55e;
}
.order-success h4 { text-align: center; font-size: 17px; font-weight: 800; margin-bottom: 16px; }
.order-result { background: var(--bg-section); border-radius: var(--radius-input); padding: 16px; font-size: 14px; line-height: 1.8; }
.order-result-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.order-result-row.total { border-top: 1px solid var(--border); padding-top: 8px; margin-top: 8px; }
.bank-notice {
  background: var(--amber-bg); border-radius: var(--radius-input);
  padding: 14px; margin-top: 14px;
  font-size: 13px; color: var(--amber-strong); line-height: 1.7;
}
.bank-notice strong { display: block; margin-bottom: 4px; }
.bank-detail {
  margin-top: 8px; background: #fff; border-radius: 8px; padding: 12px;
  font-size: 14px; font-weight: 600; color: var(--text-primary); line-height: 1.8;
}

/* ─── Section ─── */
.section { padding: 100px 0; background: var(--bg-card); }
.section.alt { background: var(--bg-section); }
.section.dark { background: var(--dark); color: #fff; }
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--amber); background: var(--amber-light);
  padding: 4px 14px; border-radius: 100px;
  margin-bottom: 12px; letter-spacing: 0.8px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; color: var(--text-primary);
  margin-bottom: 14px; letter-spacing: -0.8px; line-height: 1.25;
}
.section-title .point {
  color: var(--amber);
  font-style: normal;
}
.section.dark .section-title { color: #fff; }
.section-desc { font-size: 15px; color: var(--text-secondary); max-width: 680px; line-height: 1.75; }
.section.dark .section-desc { color: rgba(255,255,255,0.6); }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

/* ─── Live Stats Strip ─── */
.stats-strip { background: var(--dark-sub); padding: 32px 0; border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.stats-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-item .stats-num { display: block; font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--kakao); letter-spacing: -1px; margin-bottom: 4px; }
.stats-item .stats-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; letter-spacing: 0.4px; }

/* ─── Features Grid ─── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 14px; padding: 32px 28px; transition: border-color var(--transition-fast), box-shadow var(--transition-fast); }
.feature-card:hover { border-color: var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.feature-icon { width: 48px; height: 48px; background: var(--amber-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 20px; color: var(--amber); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); letter-spacing: -0.3px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* ─── Steps ─── */
.steps { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 700px; }
.steps::before { content: ''; position: absolute; left: 26px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(to bottom, var(--amber-light), var(--amber), var(--amber-light)); }
.step { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; position: relative; }
.step-num { width: 52px; height: 52px; background: var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 800; color: #fff; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 4px 12px rgba(217,119,6,0.3); }
.step-content h3 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; letter-spacing: -0.3px; }
.step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
.step-content a { color: var(--amber); font-weight: 600; }
.step-time { display: inline-block; font-size: 11px; font-weight: 700; color: var(--amber); background: var(--amber-light); padding: 2px 8px; border-radius: 6px; margin-left: 8px; vertical-align: middle; }

/* ─── Targets ─── */
.targets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.target-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-card); padding: 28px 24px; position: relative; transition: border-color var(--transition-fast); }
.target-card:hover { border-color: var(--amber); }
.target-emoji { font-size: 36px; margin-bottom: 12px; display: block; }
.target-card h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.target-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 10px; }
.target-quote { font-size: 13px; color: var(--amber-strong); background: var(--amber-bg); padding: 10px 12px; border-radius: 10px; border-left: 3px solid var(--amber); line-height: 1.6; }

/* ─── Compare Table ─── */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-md); background: #fff; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: center; font-size: 14px; }
.compare-table thead th { background: var(--dark); color: rgba(255,255,255,0.85); font-weight: 600; padding: 16px 18px; }
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th:last-child { background: var(--amber); color: #fff; font-weight: 800; }
.compare-table tbody td { border-bottom: 1px solid var(--border-light); color: var(--text-secondary); }
.compare-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--text-primary); }
.compare-table tbody td:last-child { color: var(--amber-strong); font-weight: 700; background: var(--amber-bg); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--green); }
.compare-table .xmark { color: var(--red); }

/* ─── Pricing ─── */
.pricing-wrapper { max-width: 720px; margin: 0 auto; }
.pricing-card { background: var(--bg-card); border: 2px solid var(--amber); border-radius: var(--radius-card); padding: 44px 36px; text-align: center; box-shadow: var(--shadow-md); }
.pricing-amount { margin: 20px 0; }
.pricing-amount strong { font-size: 52px; font-weight: 900; color: var(--amber); letter-spacing: -2px; }
.pricing-amount span { font-size: 16px; color: var(--text-muted); font-weight: 500; }
.pricing-table { width: 100%; border-collapse: collapse; margin: 24px 0; text-align: left; }
.pricing-table th { font-size: 12px; color: var(--text-muted); font-weight: 600; padding: 9px 10px; border-bottom: 2px solid var(--border-light); }
.pricing-table td { font-size: 14px; color: var(--text-primary); padding: 10px 10px; border-bottom: 1px solid var(--border-light); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .hl { background: var(--amber-bg); font-weight: 700; color: var(--amber-strong); }
.pricing-features { list-style: none; text-align: left; margin: 24px 0; padding: 0; }
.pricing-features li { padding: 9px 0; border-bottom: 1px solid var(--border-light); font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.pricing-features li i { color: var(--amber); font-size: 13px; width: 20px; text-align: center; flex-shrink: 0; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px; background: var(--amber); color: #fff; border: none; border-radius: var(--radius-btn); font-size: 16px; font-weight: 700; font-family: inherit; cursor: pointer; transition: background var(--transition-fast); letter-spacing: -0.2px; }
.btn-primary:hover { background: var(--amber-hover); }

/* ─── Industry Cases ─── */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.case-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-card); padding: 28px 26px; transition: border-color var(--transition-fast); display: block; color: inherit; }
.case-card:hover { border-color: var(--amber); }
a.case-card.case-link .case-sub { color: var(--amber); font-weight: 600; }
a.case-card.case-link .case-sub i { margin-left: 4px; font-size: 10px; }
.case-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.case-emoji { width: 54px; height: 54px; background: var(--amber-bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.case-head h3 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.case-head .case-sub { font-size: 13px; color: var(--text-muted); }
.case-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-light); }
.case-metric-item { text-align: center; }
.case-metric-item b { display: block; font-size: 18px; font-weight: 800; color: var(--amber); letter-spacing: -0.5px; }
.case-metric-item span { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ─── Industry Icon Grid ─── */
.industry-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 32px; }
.industry-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 12px; padding: 18px 12px; text-align: center; transition: border-color var(--transition-fast); }
.industry-card:hover { border-color: var(--amber); }
.industry-card .ind-icon { font-size: 22px; margin-bottom: 6px; }
.industry-card h4 { font-size: 12px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.industry-card p { font-size: 10px; color: var(--text-muted); line-height: 1.4; }

/* ─── Reviews ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-card); padding: 26px 24px; transition: border-color var(--transition-fast); display: flex; flex-direction: column; }
.review-card:hover { border-color: var(--amber); }
.review-stars { color: #fbbf24; font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; flex: 1; }
.review-author { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border-light); }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--amber-light); display: flex; align-items: center; justify-content: center; color: var(--amber); font-size: 14px; flex-shrink: 0; }
.review-meta { flex: 1; min-width: 0; }
.review-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.review-tag { font-size: 11px; color: var(--amber); font-weight: 600; }

.reviews-summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-card); padding: 24px 28px; margin-bottom: 32px; flex-wrap: wrap; }
.rs-left { display: flex; align-items: center; gap: 18px; }
.rs-rating { font-size: 40px; font-weight: 900; color: var(--amber); letter-spacing: -2px; }
.rs-stars { color: #fbbf24; font-size: 18px; letter-spacing: 2px; margin-bottom: 4px; }
.rs-count { font-size: 13px; color: var(--text-muted); }
.rs-right a { color: var(--amber); font-weight: 600; font-size: 14px; }

/* ─── Guarantee ─── */
.guarantee-wrap { background: linear-gradient(135deg, var(--amber-bg) 0%, #fff 100%); border: 1px solid var(--amber-light); border-radius: 20px; padding: 48px 40px; display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; }
.guarantee-badge { text-align: center; padding: 24px; background: var(--amber); color: #fff; border-radius: 16px; box-shadow: 0 12px 32px rgba(217,119,6,0.25); }
.guarantee-badge i { font-size: 48px; margin-bottom: 12px; }
.guarantee-badge .g-big { font-size: 36px; font-weight: 900; display: block; letter-spacing: -1px; }
.guarantee-badge .g-sub { font-size: 14px; font-weight: 600; opacity: 0.9; }
.guarantee-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.g-item { display: flex; gap: 12px; }
.g-item i { color: var(--amber); font-size: 16px; flex-shrink: 0; margin-top: 3px; }
.g-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.g-item span { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── Keyword Content ─── */
.keyword-content { max-width: 820px; }
.keyword-content h3 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin: 32px 0 12px; letter-spacing: -0.3px; }
.keyword-content h3:first-child { margin-top: 0; }
.keyword-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 14px; }
.keyword-content ul { margin: 10px 0 18px 22px; list-style: disc; }
.keyword-content li { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 4px; }
.keyword-content a { color: var(--amber); font-weight: 600; text-decoration: underline; text-decoration-color: var(--amber-light); text-underline-offset: 3px; }
.keyword-content strong { color: var(--text-primary); font-weight: 700; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); padding: 20px 0; }
.faq-q { font-size: 15px; font-weight: 700; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; line-height: 1.5; }
.faq-q::after { content: '+'; font-size: 24px; color: var(--amber); font-weight: 300; flex-shrink: 0; transition: transform var(--transition); line-height: 1; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--text-secondary); line-height: 1.75; display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-a > div { overflow: hidden; padding-top: 0; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > div { padding-top: 12px; }
.faq-a a { color: var(--amber); font-weight: 600; }

/* ─── Board Preview ─── */
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.board-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-card); padding: 20px 22px; transition: border-color var(--transition-fast); display: block; }
.board-card:hover { border-color: var(--amber); }
.board-card h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.board-card .bp-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 10px; }
.board-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; font-size: 14px; font-weight: 600; color: var(--amber); transition: color var(--transition-fast); }
.board-more:hover { color: var(--amber-hover); }

/* ─── Page Hero (sub pages) ─── */
/* Page Hero (서브 페이지 + 업종 페이지 공통) */
.page-hero {
  background: linear-gradient(180deg, var(--dark) 0%, #13100a 100%);
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(217,119,6,0.15) 0%, transparent 70%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .section-label { background: rgba(217,119,6,0.2); color: var(--amber); }
.page-hero h1 {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.page-hero h1 .point { color: var(--kakao); font-style: normal; }
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 20px;
}
.page-hero-emoji { font-size: 64px; margin-bottom: 14px; display: block; line-height: 1; }
.page-hero-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.page-hero-ctas a {
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-hero-ctas .primary { background: var(--amber); color: #fff; box-shadow: 0 4px 12px rgba(217,119,6,0.3); }
.page-hero-ctas .primary:hover { background: var(--amber-hover); }
.page-hero-ctas .secondary { border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); }
.page-hero-ctas .secondary:hover { border-color: var(--amber); color: var(--amber); }
.breadcrumb, .page-breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.breadcrumb a, .page-breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.breadcrumb a:hover, .page-breadcrumb a:hover { color: var(--amber); }

/* ─── CTA Section ─── */
.cta-section { background: var(--dark); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(217,119,6,0.12) 0%, transparent 70%); }
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(24px, 3.8vw, 34px); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.5px; }
.cta-section p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 32px; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 36px; border-radius: 10px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; font-family: inherit; transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast); letter-spacing: -0.2px; }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-hover); }
.btn-ghost { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.1); }

/* ─── Links Section ─── */
.links-section { background: var(--bg-card); padding: 56px 0; border-top: 1px solid var(--border-light); }
.links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.link-card { display: block; background: var(--bg-section); border: 1px solid transparent; border-radius: 12px; padding: 18px; text-align: center; font-size: 13px; font-weight: 700; color: var(--text-primary); transition: background var(--transition-fast), border-color var(--transition-fast); letter-spacing: -0.2px; }
.link-card:hover { background: var(--amber-light); border-color: var(--amber); }
.link-card span { display: block; font-size: 11px; color: var(--text-muted); font-weight: 400; margin-top: 4px; }

/* ─── Footer ─── */
footer { background: var(--bg-section); padding: 48px 0 40px; text-align: center; font-size: 13px; color: var(--text-muted); }
footer a { color: var(--text-secondary); font-weight: 600; transition: color var(--transition-fast); }
footer a:hover { color: var(--amber); }
.footer-about { font-size: 13px; color: var(--text-secondary); max-width: 680px; margin: 0 auto 20px; line-height: 1.8; padding: 0 16px; }
.footer-about strong { color: var(--text-primary); }
.footer-links { margin-bottom: 16px; display: flex; gap: 6px 18px; justify-content: center; flex-wrap: wrap; }
.footer-recommend { margin-bottom: 16px; padding-top: 12px; border-top: 1px solid var(--border-light); display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.footer-recommend a { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.footer-info { line-height: 1.9; max-width: 720px; margin: 0 auto; }
.footer-info p { font-size: 12px; }

/* ─── Hero Pick Card (메인 우측 편집부 픽 카드) ─── */
.hero-pick {
  background: linear-gradient(180deg, #fff 0%, var(--amber-bg) 100%);
  border: 2px solid var(--amber);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 24px 60px rgba(217,119,6,0.22);
  position: relative;
}
.hero-pick::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--kakao) 100%);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.5;
}
.pick-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.pick-service { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pick-logo {
  width: 52px;
  height: 52px;
  background: var(--dark);
  color: var(--kakao);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.pick-service h3 { font-size: 22px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; margin-bottom: 2px; }
.pick-service h3 small { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0; margin-left: 4px; }
.pick-rating { font-size: 12px; color: #fbbf24; font-weight: 700; letter-spacing: 1px; }
.pick-rating b { color: var(--text-primary); font-weight: 800; }
.pick-rating span { color: var(--text-muted); font-weight: 500; letter-spacing: 0; }
.pick-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.pick-points { list-style: none; padding: 0; margin: 0 0 18px; border-top: 1px solid var(--amber-light); padding-top: 14px; }
.pick-points li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-primary); line-height: 1.8; }
.pick-points li i { color: var(--green); font-size: 11px; flex-shrink: 0; }
.pick-points li strong { color: var(--amber-strong); font-weight: 700; }
.pick-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.pick-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.pick-cta:hover { border-color: var(--amber); background: var(--amber-bg); }
.pick-cta.primary { background: var(--amber); border-color: var(--amber); color: #fff; }
.pick-cta.primary:hover { background: var(--amber-hover); border-color: var(--amber-hover); }
.pick-cta i { font-size: 18px; color: var(--amber); flex-shrink: 0; }
.pick-cta.primary i { color: #fff; }
.pick-cta b { display: block; font-size: 13px; font-weight: 700; letter-spacing: -0.2px; }
.pick-cta span { display: block; font-size: 10px; color: var(--text-muted); line-height: 1.4; margin-top: 1px; }
.pick-cta.primary span { color: rgba(255,255,255,0.85); }
.pick-more {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
  padding: 8px 0;
  border-top: 1px solid var(--amber-light);
  transition: color var(--transition-fast);
}
.pick-more:hover { color: var(--amber-hover); }

/* ─── Recommend Box (Chapter 3 및 업종 페이지 공통) ─── */
.recommend-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 44px;
  margin-top: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 20px 48px rgba(0,0,0,0.06);
  position: relative;
}
.recommend-box::after {
  content: '1위 추천';
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--amber);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: -0.1px;
  z-index: 2;
}
.recommend-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.recommend-head .r-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: var(--kakao);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.recommend-head h3 { font-size: 26px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.6px; }
.recommend-head .r-rating { font-size: 13px; color: var(--text-secondary); margin-left: auto; }
.recommend-head .r-rating b { color: var(--amber); font-weight: 800; }

/* 특장점 8개 그리드 */
.r-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 20px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.r-feat { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.r-feat i { color: var(--amber); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.r-feat b { color: var(--text-primary); font-weight: 700; }

.r-why {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  border: 1px solid var(--border-light);
}
.r-why strong { color: var(--text-primary); font-weight: 700; }

/* 추천 CTA 3개 버튼 */
.r-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.r-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: 14px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.r-cta:hover { border-color: var(--amber); background: var(--amber-bg); }
.r-cta.primary { background: var(--amber); border-color: var(--amber); color: #fff; }
.r-cta.primary:hover { background: var(--amber-hover); border-color: var(--amber-hover); }
.r-cta > i:first-child {
  font-size: 20px;
  color: var(--amber);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-bg);
  border-radius: 10px;
}
.r-cta.primary > i:first-child { color: #fff; background: rgba(255,255,255,0.18); }
.r-cta > div { flex: 1; min-width: 0; }
.r-cta b { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 2px; }
.r-cta span { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.r-cta.primary span { color: rgba(255,255,255,0.85); }
.r-cta-arrow { font-size: 13px; color: var(--text-muted); flex-shrink: 0; }
.r-cta.primary .r-cta-arrow { color: #fff; }

/* ─── 인라인 광고 배너 (섹션 중간 CTA) ─── */
.inline-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-sub) 60%, #2d2012 100%);
  border-radius: 20px;
  padding: 32px 40px;
  margin: 40px 0;
  color: #fff;
  flex-wrap: wrap;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(217,119,6,0.2);
  position: relative;
  overflow: hidden;
}
.inline-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(217,119,6,0.28) 0%, transparent 65%);
  pointer-events: none;
}
.inline-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(254,229,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.inline-cta > * { position: relative; z-index: 1; }
.inline-cta-text { flex: 1; min-width: 240px; }
.inline-cta-text strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
  line-height: 1.4;
}
.inline-cta-text span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.inline-cta-text b { color: var(--kakao); font-weight: 700; }
.inline-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 12px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(217,119,6,0.4), 0 0 0 1px rgba(255,255,255,0.1) inset;
  letter-spacing: -0.2px;
}
.inline-cta-btn:hover {
  background: var(--amber-hover);
  box-shadow: 0 12px 32px rgba(217,119,6,0.5), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.inline-cta-btn i { font-size: 16px; }

/* ─── 업종 페이지 전용 섹션 (hero는 공통 .page-hero 재사용) ─── */
.pain-list { background: var(--bg-section); border-radius: 16px; padding: 28px 32px; margin-bottom: 16px; }
.pain-list h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pain-list h3 i { color: var(--red); }
.pain-list ul { list-style: none; padding: 0; margin: 0; }
.pain-list li { padding: 8px 0; font-size: 14px; color: var(--text-secondary); line-height: 1.7; display: flex; align-items: flex-start; gap: 10px; }
.pain-list li::before { content: '•'; color: var(--amber); font-size: 18px; line-height: 1; margin-top: 2px; flex-shrink: 0; }

.msg-examples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.msg-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 14px; padding: 20px; transition: border-color var(--transition-fast); }
.msg-card:hover { border-color: var(--amber); }
.msg-card-header { font-size: 12px; font-weight: 700; color: var(--amber); margin-bottom: 10px; letter-spacing: 0.3px; display: flex; align-items: center; gap: 6px; }
.msg-card-body { background: var(--bg-section); border-radius: 10px; padding: 14px 16px; font-size: 13px; color: var(--text-primary); line-height: 1.7; white-space: pre-wrap; border-left: 3px solid var(--amber); }

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.metric-box { background: linear-gradient(180deg, #fff, var(--amber-bg)); border: 1px solid var(--amber-light); border-radius: 14px; padding: 24px 22px; text-align: center; }
.metric-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.metric-value { font-size: 26px; font-weight: 900; color: var(--amber); letter-spacing: -0.5px; margin-bottom: 8px; }
.metric-note { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

.ind-disclaimer { background: var(--bg-section); border-radius: 10px; padding: 14px 18px; margin-top: 14px; font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.ind-disclaimer strong { color: var(--text-secondary); }

.other-industries { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 16px; }
.other-ind-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 12px; padding: 16px 10px; text-align: center; transition: border-color var(--transition-fast), transform var(--transition-fast); display: block; color: inherit; }
.other-ind-card:hover { border-color: var(--amber); background: var(--amber-bg); }
.other-ind-card .o-emoji { font-size: 24px; display: block; margin-bottom: 4px; }
.other-ind-card h5 { font-size: 13px; font-weight: 700; color: var(--text-primary); margin: 0 0 2px; }
.other-ind-card .o-desc { display: block; font-size: 10px; color: var(--text-muted); font-weight: 500; }
.other-ind-card:hover h5 { color: var(--amber-strong); }

/* ─── Board (블로그/게시판) ─── */
.board-container { max-width: 880px; margin: 0 auto; }
.board-list { list-style: none; padding: 0; margin: 0; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.board-item { border-bottom: 1px solid var(--border-light); transition: background var(--transition-fast); }
.board-item:last-child { border-bottom: none; }
.board-item:hover { background: var(--amber-bg); }
.board-item-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  color: inherit;
  text-decoration: none;
}
.board-item-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  background: var(--amber-light);
  padding: 3px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  min-width: 48px;
  text-align: center;
}
.board-item-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-item:hover .board-item-title { color: var(--amber-strong); }
.board-item-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.board-item-meta i { margin-right: 4px; font-size: 10px; color: var(--amber); opacity: 0.7; }
.board-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  background: var(--bg-card);
  border-radius: 16px;
}
.board-empty i { font-size: 40px; color: var(--border); margin-bottom: 14px; }
.board-empty p { font-size: 14px; }

.board-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}
.board-pagination a, .board-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.board-pagination a {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.board-pagination a:hover { background: var(--amber-bg); border-color: var(--amber); color: var(--amber-strong); }
.board-pagination .current {
  background: var(--amber);
  color: #fff;
  border: 1px solid var(--amber);
  box-shadow: 0 2px 6px rgba(217,119,6,0.25);
}

/* 게시글 본문 */
.post-view {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.post-view-content {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-primary);
  word-break: break-word;
}
.post-view-content h1, .post-view-content h2, .post-view-content h3 {
  font-weight: 800;
  color: var(--text-primary);
  margin: 24px 0 12px;
  letter-spacing: -0.3px;
}
.post-view-content h1 { font-size: 22px; }
.post-view-content h2 { font-size: 19px; border-bottom: 2px solid var(--border-light); padding-bottom: 8px; }
.post-view-content h3 { font-size: 16px; }
.post-view-content p { margin: 12px 0; }
.post-view-content ul, .post-view-content ol { margin: 12px 0 12px 24px; }
.post-view-content li { padding: 4px 0; }
.post-view-content a { color: var(--amber); font-weight: 600; text-decoration: underline; text-decoration-color: var(--amber-light); text-underline-offset: 3px; }
.post-view-content strong { color: var(--text-primary); font-weight: 700; }
.post-view-content blockquote {
  border-left: 4px solid var(--amber);
  padding: 10px 18px;
  margin: 16px 0;
  background: var(--amber-bg);
  border-radius: 0 10px 10px 0;
  color: var(--amber-strong);
  font-style: normal;
}
.post-view-content img { max-width: 100%; border-radius: 10px; margin: 14px 0; }
.post-view-content table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14px; }
.post-view-content table th, .post-view-content table td { border: 1px solid var(--border-light); padding: 10px 14px; }
.post-view-content table th { background: var(--bg-section); font-weight: 700; }
.post-view-content hr { border: none; border-top: 1px solid var(--border-light); margin: 24px 0; }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.post-nav-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}
.post-nav-item:not(.disabled):hover { border-color: var(--amber); background: var(--amber-bg); }
.post-nav-item.next { text-align: right; }
.post-nav-item.disabled { opacity: 0.4; cursor: default; }
.post-nav-label { font-size: 11px; font-weight: 700; color: var(--amber); letter-spacing: 0.5px; }
.post-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .board-item-link { flex-wrap: wrap; padding: 14px 18px; gap: 10px; }
  .board-item-title { width: 100%; white-space: normal; order: 2; }
  .board-item-num { order: 1; }
  .board-item-meta { order: 3; width: 100%; }
  .post-view { padding: 28px 22px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-item.next { text-align: left; }
}

/* ─── Legal Doc Content ─── */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; font-weight: 800; color: var(--text-primary); margin: 32px 0 14px; letter-spacing: -0.3px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin: 22px 0 10px; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 8px; }
.legal-content ul, .legal-content ol { margin: 10px 0 16px 22px; }
.legal-content strong { color: var(--text-primary); font-weight: 700; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .order-card { max-width: 500px; margin: 0 auto; }
  .guarantee-wrap { grid-template-columns: 1fr; text-align: center; }
  .guarantee-list { grid-template-columns: 1fr; text-align: left; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(5, 1fr); }
  .r-ctas { grid-template-columns: 1fr; }
  .r-features { grid-template-columns: repeat(2, 1fr); }
  .hero-pick { max-width: 500px; margin: 0 auto; }
  .hero-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-price-big { font-size: 60px; }
  .hero-price-unit { font-size: 28px; }
}
@media (max-width: 768px) {
  .hero-price-display { padding: 20px; }
  .hero-price-big { font-size: 52px; letter-spacing: -3px; }
  .hero-price-unit { font-size: 24px; }
  .hero-price-from { font-size: 15px; }
  .hero-price-label { font-size: 13px; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 56px; }
  .page-hero { padding: 40px 0 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .targets-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table th, .compare-table td { padding: 11px 8px; font-size: 13px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-cta { width: 100%; max-width: 320px; }
  .top-nav { padding: 0 12px; min-height: 52px; gap: 10px; }
  .top-bar-inner { padding: 0 12px; justify-content: center; gap: 14px; font-size: 11px; }
  .top-bar a { padding: 8px 0; gap: 4px; }
  .top-bar a i { font-size: 9px; }
  .nav-brand-sub { display: none; }
  .nav-brand-text { font-size: 12px; }
  .nav-brand-text b { font-size: 13px; }
  .nav-links a { padding: 8px 10px; font-size: 12px; }
  .nav-cta { padding: 7px 12px !important; font-size: 12px !important; }
  .pricing-card { padding: 32px 22px; }
  .guarantee-wrap { padding: 32px 22px; }
  .reviews-summary { flex-direction: column; text-align: center; gap: 12px; }
  .rs-left { flex-direction: column; gap: 8px; }
  .recommend-box { padding: 28px 20px; }
  .r-features { grid-template-columns: 1fr; }
  .msg-examples { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; }
  .other-industries { grid-template-columns: repeat(3, 1fr); }
  .inline-cta { padding: 28px 24px; gap: 20px; border-radius: 18px; }
  .inline-cta-text { min-width: 100%; }
  .inline-cta-text strong { font-size: 18px; }
  .inline-cta-text span { font-size: 13.5px; }
  .inline-cta-btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px 24px; }
  .recommend-head h3 { font-size: 18px; }
  .recommend-head .r-rating { margin-left: 0; }
  .pick-ctas { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 28px; }
  .order-card { padding: 24px 20px; }
  .hero-trust { gap: 12px; }
  .section-title { font-size: 24px; }
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .top-nav { padding: 0 10px; }
  .top-bar-inner { padding: 0 10px; font-size: 10.5px; gap: 10px; line-height: 1.5; }
  .top-bar a { padding: 7px 0; }
  .nav-brand-icon { width: 28px; height: 28px; font-size: 12px; }
  .nav-brand-text b { font-size: 12px; }
  .nav-links a { padding: 7px 8px; font-size: 11px; }
  .nav-cta span { display: none; }
  .other-industries { grid-template-columns: repeat(2, 1fr); }
}
