/* ============================================================
   PageTalk — 화이트 베이스 · 블루 프라이머리 (국내 SaaS 표준 톤)
   ============================================================ */

:root {
  color-scheme: light;

  /* --- blue scale --- */
  --blue-50:  #F5F8FF;
  --blue-100: #E9F0FE;
  --blue-200: #C9DCFD;
  --blue-300: #A3C3FB;
  --blue-500: #3B7AF7;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-800: #1A3FA8;
  --blue-900: #142E6E;

  /* --- neutral scale --- */
  --slate-900: #0B1220;
  --slate-800: #131C2E;
  --slate-700: #1E293B;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;

  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFD;
  --bg-soft: var(--blue-50);
  --line: #E7EBF2;
  --line-2: #F1F4F9;

  --primary: var(--blue-600);
  --primary-dark: var(--blue-700);
  --primary-soft: var(--blue-200);
  --ink: var(--slate-900);
  --ink-2: var(--slate-700);
  --body: var(--slate-600);
  --muted: var(--slate-500);
  --muted-2: var(--slate-400);
  --navy: var(--slate-900);
  --line-dark: rgba(255,255,255,.10);

  --success: #10B981;
  --alert: #EF4444;

  --background: var(--bg);
  --foreground: var(--ink);
  --muted-foreground: var(--muted);
  --border: var(--line);
  --primary-foreground: #FFFFFF;

  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          system-ui, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius: 14px;
  --radius-lg: 18px;
  --radius-sm: 10px;

  /* 그림자 4단계 + 컬러 그림자 */
  --shadow-xs:  0 1px 2px rgba(16,24,40,.05);
  --shadow-sm:  0 2px 6px rgba(16,24,40,.05), 0 1px 2px rgba(16,24,40,.04);
  --shadow:     0 10px 28px -10px rgba(16,24,40,.14), 0 2px 6px rgba(16,24,40,.04);
  --shadow-lg:  0 30px 64px -20px rgba(16,24,40,.24), 0 4px 12px rgba(16,24,40,.05);
  --shadow-blue:0 12px 28px -10px rgba(37,99,235,.48);

  /* 아이콘 타일 */
  --tile: linear-gradient(150deg, #F2F7FF 0%, #E2ECFE 100%);
  --tile-ring: inset 0 0 0 1px rgba(37,99,235,.10);

  --maxw: 74rem;
  --gutter: 1.25rem;
}
@media (min-width: 768px) { :root { --gutter: 2rem; } }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; border-color: var(--line); }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.02em;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
svg { display: block; }
::selection { background: var(--primary-soft); color: var(--ink); }

/* ---------- helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-sm { max-width: 46rem; }
.container-md, .container-5xl { max-width: 64rem; }
.text-primary { color: var(--primary); }
.text-destructive { color: var(--alert); }
.text-muted { color: var(--muted); }
.font-bold { font-weight: 700; }
.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; }

/* ---------- section rhythm ---------- */
.section { position: relative; padding-block: 5rem; }
@media (min-width: 768px) { .section { padding-block: 7.5rem; } }
.section-alt { background: var(--bg-alt); }

/* ---------- headings (중앙 정렬) ---------- */
.eyebrow, .eyebrow-light {
  display: inline-flex; align-items: center; gap: .4375rem;
  padding: .4375rem .875rem; border-radius: 999px;
  font-size: .8125rem; font-weight: 600; letter-spacing: -0.01em;
}
.eyebrow { background: var(--bg-soft); color: var(--primary); }
.eyebrow-light { background: rgba(255,255,255,.1); color: #93B4FD; }
.eyebrow svg, .eyebrow-light svg { width: .9375rem; height: .9375rem; }

.h2 {
  text-align: center;
  font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.25rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.028em;
  color: var(--ink);
  text-wrap: balance;
}
.lead {
  text-align: center;
  margin-top: 1rem !important;
  margin-inline: auto !important;
  max-width: 44rem !important;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: balance;
}
@media (min-width: 768px) { .lead { font-size: 1.0625rem; } }

/* ---------- icons ---------- */
.icon { width: 1.375rem; height: 1.375rem; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: var(--radius-sm);
  font-weight: 600; letter-spacing: -0.02em;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.btn:focus-visible { outline: 3px solid var(--primary-soft); outline-offset: 2px; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.0625rem; }
.btn-md { padding: .6875rem 1.125rem; font-size: .9375rem; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(37,99,235,.22); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 8px 20px rgba(37,99,235,.28); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--primary); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn-white:hover { background: var(--bg-soft); transform: translateY(-1px); }
.btn-ghost { background: var(--bg-alt); color: var(--muted); }
.btn-ghost:hover { background: var(--line-2); color: var(--ink); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.blur-orb, .bg-grid, .hero-bg-grid, .hero-orb-1, .hero-orb-2, .wom-orb, .final-grid { display: none !important; }

/* ---------- logo ---------- */
.logo { display: inline-grid; place-items: center; width: 1.875rem; height: 1.875rem; border-radius: 8px; background: var(--primary); color: #fff; }
.logo svg { width: 1.125rem; height: 1.125rem; }
.brand { display: inline-flex; align-items: center; gap: .5rem; }
.wordmark { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.035em; color: var(--ink); }
.wordmark .text-primary { color: var(--primary); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 60;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; height: 4.25rem; align-items: center; justify-content: space-between; }
.main-nav { display: none; align-items: center; gap: 1.75rem; }
.main-nav a { font-size: .9375rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.main-nav a:hover { color: var(--primary); }
.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }
@media (min-width: 900px) { .main-nav { display: flex; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding-top: 7.5rem; padding-bottom: 4.5rem;
  background: linear-gradient(180deg, #F5F8FF 0%, #FFFFFF 62%);
}
@media (min-width: 900px) { .hero { padding-top: 10rem; padding-bottom: 6.5rem; } }
.hero-grid { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.hero-title {
  margin-top: 1.5rem;
  font-size: clamp(1.875rem, 1.1rem + 2.9vw, 3rem);
  font-weight: 700; line-height: 1.34; letter-spacing: -0.035em; color: var(--ink);
}
.hero-title .text-primary { color: var(--primary); }
.hero-sub { margin-top: 1.5rem; font-size: 1.125rem; font-weight: 600; color: var(--ink-2); }
.hero-desc { margin-top: .625rem; font-size: 1rem; line-height: 1.75; color: var(--muted); max-width: 34rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem; }
.chip {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .5rem .875rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: .8125rem; font-weight: 500; color: var(--body);
  box-shadow: var(--shadow-sm);
}
.chip svg { color: var(--primary); }

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: .875rem; margin-top: 2rem; }
.hero-note { font-size: .875rem; color: var(--muted-2); }

.hero-visual { position: relative; }
.animate-float { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- chat mockup ---------- */
.chat {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.chat-bar { display: flex; align-items: center; gap: .75rem; padding: .9375rem 1.125rem; border-bottom: 1px solid var(--line-2); }
.chat-title { font-size: .9375rem; font-weight: 700; color: var(--ink); }
.chat-status { display: flex; align-items: center; gap: .375rem; font-size: .75rem; font-weight: 500; color: var(--success); }
.dot-online { width: .4375rem; height: .4375rem; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(16,185,129,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 6px rgba(16,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); } }

.chat-body { padding: 1.25rem 1.125rem; display: flex; flex-direction: column; gap: .875rem; background: var(--bg-alt); }
.msg { position: relative; display: flex; padding-left: 3.25rem; }
.msg::before {
  content: attr(data-time); position: absolute; left: 0; top: .5rem;
  font-family: var(--mono); font-size: .625rem; color: var(--muted-2);
}
.msg.user { justify-content: flex-end; }
.bubble { max-width: 82%; padding: .75rem 1rem; font-size: .875rem; line-height: 1.6; }
.bubble.user { background: #fff; border: 1px solid var(--line); color: var(--ink-2); border-radius: 14px 14px 4px 14px; }
.bubble.ai { background: var(--primary); color: #fff; border-radius: 14px 14px 14px 4px; box-shadow: 0 4px 12px rgba(37,99,235,.2); }

.quick-row { display: flex; flex-wrap: wrap; gap: .375rem; padding-left: 3.25rem; }
.quick { padding: .375rem .75rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .75rem; color: var(--muted); transition: border-color .2s, color .2s; }
.quick:hover { border-color: var(--primary); color: var(--primary); }

.chat-input { display: flex; align-items: center; gap: .75rem; padding: .875rem 1.125rem; border-top: 1px solid var(--line-2); }
.chat-input .fake { flex: 1; font-size: .875rem; color: var(--muted-2); }
.chat-input .send { display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--primary); color: #fff; }
.chat-input .send svg { width: 1rem; height: 1rem; }

/* 접수 카드 */
.lead-card, .form-card {
  position: relative; z-index: 2;
  margin-top: -1.25rem; margin-inline-start: auto; width: 86%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.125rem 1.25rem; box-shadow: var(--shadow-lg);
}
.lead-card-head { display: flex; align-items: center; gap: .5rem; margin-bottom: .875rem; }
.lead-card-head .ic { display: grid; place-items: center; width: 1.75rem; height: 1.75rem; border-radius: 8px; background: var(--bg-soft); color: var(--primary); }
.field-row { display: grid; gap: .5rem; }
.field-row.cols-2 { grid-template-columns: 1fr 1fr; }
.field-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.field { font-size: .75rem; color: var(--muted-2); padding: .5625rem .625rem; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-alt); }
.submit-bar { margin-top: .75rem; text-align: center; padding: .625rem; background: var(--primary); color: #fff; border-radius: 8px; font-size: .8125rem; font-weight: 600; }

/* ============================================================
   PROBLEM
   ============================================================ */
.q-grid { display: grid; gap: .75rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .q-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .q-grid { grid-template-columns: repeat(4, 1fr); } }
.q-item {
  display: flex; align-items: flex-start; gap: .625rem; height: 100%;
  padding: 1.125rem 1.125rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.q-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.q-badge { display: grid; place-items: center; width: 1.25rem; height: 1.25rem; flex: none; margin-top: .125rem; border-radius: 6px; background: var(--bg-soft); color: var(--primary); font-size: .6875rem; font-weight: 700; }
.q-text { font-size: .9375rem; line-height: 1.55; color: var(--ink-2); }

.emphasis-card {
  margin-top: 3rem; padding: 2.5rem 2rem; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.emphasis-card .big { font-size: clamp(1.125rem, 2.4vw, 1.5rem); font-weight: 700; line-height: 1.55; color: var(--ink); }
.emphasis-card .sub { margin-top: .5rem; font-size: 1rem; font-weight: 500; color: var(--muted); }
.emphasis-card .divider { width: 2.5rem; height: 3px; margin: 1.75rem auto; border-radius: 2px; background: var(--primary-soft); }
.emphasis-card .note { font-size: .9375rem; line-height: 1.85; color: var(--muted); }

/* ============================================================
   SOLUTION
   ============================================================ */
.flow { margin-top: 3rem; display: grid; gap: .75rem; }
@media (min-width: 900px) { .flow { grid-template-columns: repeat(5, 1fr); gap: .5rem; } }
.flow-step { display: flex; align-items: center; gap: .5rem; }
.flow-step-inner {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: .75rem;
  padding: 1.5rem 1rem; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.flow-ic { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--bg-soft); color: var(--primary); }
.flow-step:last-child .flow-ic { background: var(--primary); color: #fff; }
.flow-label { font-size: .875rem; font-weight: 600; color: var(--ink-2); }
.flow-arrow { color: var(--muted-2); flex: none; }
.flow-arrow.desktop { display: none; }
.flow-arrow.mobile { display: block; margin-inline: auto; }
@media (min-width: 900px) {
  .flow-arrow.desktop { display: block; }
  .flow-arrow.mobile { display: none; }
  .flow-step { flex-direction: row; }
}
@media (max-width: 899px) { .flow-step { flex-direction: column; } }

.compare { margin-top: 2rem; display: grid; gap: .75rem; }
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-card { padding: 1.5rem 1.5rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-alt); text-align: center; }
.compare-card.new { background: var(--bg-soft); border-color: var(--primary-soft); }
.compare-tag { font-size: .8125rem; font-weight: 600; color: var(--muted); }
.compare-card.new .compare-tag { color: var(--primary); }
.compare-val { margin-top: .5rem; font-size: 1.0625rem; font-weight: 700; color: var(--ink); }
.compare-card.old .compare-val { color: var(--muted-2); text-decoration: line-through; }

/* ============================================================
   EASY START
   ============================================================ */
.steps { margin-top: 3rem; display: grid; gap: 1rem; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.step-card { height: 100%; padding: 1.75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; }
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step-no { padding: .25rem .625rem; border-radius: 999px; background: var(--bg-soft); color: var(--primary); font-family: var(--mono); font-size: .6875rem; font-weight: 500; }
.step-ic { color: var(--muted-2); }
.step-card h3 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.step-card p { margin-top: .5rem; font-size: .9375rem; line-height: 1.7; color: var(--muted); }

.pill-list { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .625rem; }
.pill { display: inline-flex; align-items: center; gap: .4375rem; padding: .5rem 1rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .875rem; font-weight: 500; color: var(--body); }
.pill svg { color: var(--primary); flex: none; }

.oneline { margin-top: 3rem; text-align: center; font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.code-window { margin-top: 1.25rem; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); box-shadow: var(--shadow-lg); }
.code-bar { display: flex; align-items: center; gap: .375rem; padding: .75rem 1rem; border-bottom: 1px solid var(--line-dark); }
.code-bar .d { width: .5625rem; height: .5625rem; border-radius: 50%; background: rgba(255,255,255,.2); }
.code-bar .fname { margin-left: .625rem; font-family: var(--mono); font-size: .75rem; color: rgba(255,255,255,.45); }
.code-window pre { padding: 1.375rem 1.25rem; overflow-x: auto; }
.code-window code { font-family: var(--mono); font-size: .8125rem; line-height: 1.8; color: #93B4FD; white-space: pre; }

/* ============================================================
   LEARNING LOOP
   ============================================================ */
.loop-grid { margin-top: 3rem; display: grid; gap: 2rem; }
@media (min-width: 1000px) { .loop-grid { grid-template-columns: .8fr 1.2fr; gap: 2.5rem; } }
.loop-list { padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.loop-item { display: flex; align-items: center; gap: .875rem; padding: .75rem 0; }
.loop-item + .loop-item { border-top: 1px solid var(--line-2); }
.loop-num { display: grid; place-items: center; width: 1.5rem; height: 1.5rem; flex: none; border-radius: 50%; background: var(--bg-soft); color: var(--primary); font-size: .75rem; font-weight: 700; }
.loop-body { font-size: .9375rem; font-weight: 600; color: var(--ink-2); }
.loop-cycle { margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--line); }
.loop-cycle span { display: inline-flex; align-items: center; gap: .4375rem; font-size: .8125rem; font-weight: 500; color: var(--primary); }
.loop-right { display: flex; flex-direction: column; gap: 1.25rem; }

.info-card { padding: 1.75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.info-card-head { display: flex; gap: 1rem; }
.info-ic { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; flex: none; border-radius: 10px; background: var(--bg-soft); color: var(--primary); }
.info-card .t { font-size: 1.0625rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.info-card .d { margin-top: .5rem; font-size: .9375rem; line-height: 1.75; color: var(--muted); }
.inline-tag { padding: .125rem .4375rem; border-radius: 6px; background: var(--bg-soft); color: var(--primary); font-size: .8125rem; font-weight: 600; }
.info-foot { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line-2); font-size: .9375rem; font-weight: 600; color: var(--ink-2); }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.stat { padding: 1.25rem 1rem; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat > svg { margin-inline: auto; color: var(--muted-2); }
.stat .v { margin-top: .625rem; font-size: 1.625rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1.2; }
.stat .l { margin-top: .25rem; font-size: .75rem; color: var(--muted); }
.stat.hl { background: var(--bg-soft); border-color: var(--primary-soft); }
.stat.hl > svg, .stat.hl .v { color: var(--primary); }
.center-note { margin-top: .25rem; text-align: center; font-size: .9375rem; color: var(--muted); }

/* ============================================================
   LEAD CONVERSION
   ============================================================ */
.two-col-start { margin-top: 3rem; display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1000px) { .two-col-start { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.stack { display: flex; flex-direction: column; }
.stack-lg { display: flex; flex-direction: column; gap: 1.25rem; }

.notify-card { padding: 1.5rem; background: var(--navy); color: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.notify-head { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; font-weight: 600; color: #93B4FD; }
.notify-title { margin-top: .875rem; font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.03em; }
.sms-row { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line-dark); display: flex; gap: .875rem; align-items: center; }
.sms-ic { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; flex: none; border-radius: 10px; background: rgba(255,255,255,.08); color: #93B4FD; }
.sms-row .text-muted { color: rgba(255,255,255,.5) !important; }

.callout { padding: 1.75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.callout .t { font-size: 1.0625rem; font-weight: 700; color: var(--ink); line-height: 1.5; letter-spacing: -0.03em; }
.callout .d { margin-top: .625rem; font-size: .9375rem; line-height: 1.75; color: var(--muted); }
.chip-inline { margin-top: 1.25rem; display: flex; align-items: center; gap: .625rem; padding: .875rem 1rem; border-radius: var(--radius); background: var(--bg-soft); font-size: .875rem; font-weight: 600; color: var(--ink-2); }
.chip-inline svg { color: var(--primary); flex: none; }

/* ============================================================
   INDUSTRY
   ============================================================ */
.ind-grid { margin-top: 3rem; display: grid; gap: 1rem; }
@media (min-width: 700px) { .ind-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1050px) { .ind-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.ind-card {
  display: flex; flex-direction: column; height: 100%; padding: 1.75rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s, border-color .25s;
}
.ind-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--primary-soft); }
.ind-ic { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 12px; background: var(--bg-soft); color: var(--primary); }
.ind-card h3 { margin-top: 1.125rem; font-size: 1.125rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.ind-copy { margin-top: .625rem; font-size: .9375rem; line-height: 1.7; color: var(--muted); }
.tag-row { margin-top: 1.125rem; display: flex; flex-wrap: wrap; gap: .375rem; }
.tag { padding: .25rem .625rem; border-radius: 999px; background: var(--bg-alt); font-size: .75rem; color: var(--muted); }
.ind-note { margin-top: .875rem; font-size: .8125rem; color: var(--muted-2); }
.ind-link { margin-top: auto; padding-top: 1.25rem; display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 600; color: var(--primary); cursor: pointer; }
.ind-link .arrow { transition: transform .2s; }
.ind-link:hover .arrow { transform: translateX(3px); }

/* ============================================================
   MINI HOME
   ============================================================ */
.mini-grid { margin-top: 3rem; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1000px) { .mini-grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; } }
.browser { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); }
.browser-bar { display: flex; align-items: center; gap: .375rem; padding: .75rem 1rem; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.browser-bar .d { width: .5625rem; height: .5625rem; border-radius: 50%; background: var(--line); }
.browser-bar .url { margin-left: .75rem; font-family: var(--mono); font-size: .75rem; color: var(--muted); }
.browser-nav { display: flex; gap: 1.125rem; padding: .875rem 1rem; border-bottom: 1px solid var(--line-2); overflow-x: auto; }
.browser-nav span { font-size: .8125rem; color: var(--muted-2); white-space: nowrap; }
.browser-nav .active { color: var(--primary); font-weight: 600; }
.browser-content { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.hero-block { padding: 1.75rem 1.5rem; border-radius: var(--radius); background: linear-gradient(135deg, var(--primary) 0%, #4F7FFA 100%); color: #fff; }
.hero-block .t { font-size: 1rem; font-weight: 700; }
.hero-block .s { margin-top: .25rem; font-size: .8125rem; color: rgba(255,255,255,.8); }
.hero-block .b { display: inline-block; margin-top: 1rem; padding: .4375rem .875rem; border-radius: 8px; background: #fff; color: var(--primary); font-size: .75rem; font-weight: 700; }
.thumb-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.thumb { aspect-ratio: 4/3; border-radius: 8px; background: var(--bg-alt); }
.skeleton { display: flex; flex-direction: column; gap: .4375rem; }
.sk-line { height: .5rem; border-radius: 999px; background: var(--bg-alt); }
.mini-table { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.mini-table .head, .mini-table .body { display: grid; grid-template-columns: 1fr auto; padding: .625rem .875rem; font-size: .8125rem; }
.mini-table .head { background: var(--bg-alt); color: var(--muted); font-weight: 600; }
.mini-table .body { border-top: 1px solid var(--line-2); font-weight: 600; color: var(--ink-2); }

.mini-features { display: flex; flex-direction: column; gap: 1rem; }
.feature { display: flex; gap: 1rem; padding: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.feature-ic { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; flex: none; border-radius: 10px; background: var(--bg-soft); color: var(--primary); }
.feature .t { font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.feature .d { margin-top: .375rem; font-size: .875rem; line-height: 1.7; color: var(--muted); }
.combo-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.combo { display: inline-flex; align-items: center; gap: .375rem; padding: .5rem .875rem; border-radius: 999px; background: var(--bg-soft); color: var(--primary); font-size: .8125rem; font-weight: 600; }

/* ============================================================
   TRUST
   ============================================================ */
.trust-grid { margin-top: 3rem; display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 1000px) { .trust-grid { grid-template-columns: 1.1fr .9fr; gap: 2rem; } }
.data-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.data-head { display: flex; align-items: center; gap: .5rem; padding: .9375rem 1.125rem; border-bottom: 1px solid var(--line-2); background: var(--bg-alt); font-size: .8125rem; font-weight: 600; color: var(--ink-2); }
.data-head svg { color: var(--primary); }
.data-card .table { font-size: .8125rem; }
.data-card .row { display: grid; grid-template-columns: 1fr 1fr 1.3fr 1.4fr; gap: .5rem; padding: .75rem 1.125rem; }
.data-card .row.head { background: var(--bg-alt); color: var(--muted); font-weight: 600; font-size: .75rem; }
.data-card .row.data { border-top: 1px solid var(--line-2); color: var(--muted); }
.data-card .row.data span:first-child { font-weight: 600; color: var(--ink-2); }
.data-card .row.data span:last-child { font-family: var(--mono); font-size: .75rem; }

.qa-stack { display: flex; flex-direction: column; gap: .875rem; }
.qa-user { align-self: flex-end; max-width: 88%; padding: .75rem 1rem; border-radius: 14px 14px 4px 14px; background: var(--primary); color: #fff; font-size: .875rem; }
.qa-ai { padding: 1.125rem 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: 4px 14px 14px 14px; box-shadow: var(--shadow-sm); }
.qa-ai .dept { font-size: .8125rem; font-weight: 700; color: var(--primary); }
.qa-ai .lines { margin-top: .5rem; display: flex; flex-direction: column; gap: .125rem; font-size: .875rem; color: var(--ink-2); }
.qa-note { font-size: .8125rem; line-height: 1.7; color: var(--muted); }

.trust-cards { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 768px) { .trust-cards { grid-template-columns: 1fr 1fr; } }
.trust-mini { display: flex; gap: .875rem; height: 100%; padding: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.trust-mini svg { color: var(--primary); flex: none; }
.trust-mini p { font-size: .875rem; line-height: 1.7; color: var(--muted); }

/* ============================================================
   DASHBOARD
   ============================================================ */
.dash { margin-top: 3rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.dash-head { display: flex; align-items: center; justify-content: space-between; padding: 1.125rem 1.375rem; border-bottom: 1px solid var(--line-2); }
.dash-head .title { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; font-weight: 700; color: var(--ink); }
.dash-head .title svg { color: var(--primary); }
.badge-soft { padding: .25rem .625rem; border-radius: 999px; background: var(--bg-soft); color: var(--primary); font-size: .75rem; font-weight: 600; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
.metric { padding: 1.25rem 1.375rem 1.5rem; border-bottom: 1px solid var(--line-2); }
.metric + .metric { border-left: 1px solid var(--line-2); }
@media (max-width: 767px) { .metric:nth-child(odd) { border-left: none; } }
.metric .top { display: flex; align-items: center; gap: .375rem; font-size: .8125rem; color: var(--muted); }
.metric .top svg { color: var(--muted-2); }
.metric .v { margin-top: .5rem; font-size: 1.75rem; font-weight: 700; color: var(--ink); letter-spacing: -0.035em; line-height: 1.2; }
.trend { display: inline-block; margin-top: .375rem; padding: .125rem .4375rem; border-radius: 6px; background: #ECFDF5; color: #059669; font-size: .75rem; font-weight: 600; }
.dash-body { display: grid; }
@media (min-width: 900px) { .dash-body { grid-template-columns: 1fr 1fr; } }
.panel { padding: 1.5rem 1.375rem; }
.panel + .panel { border-top: 1px solid var(--line-2); }
@media (min-width: 900px) { .panel + .panel { border-top: 0; border-left: 1px solid var(--line-2); } }
.p-title { font-size: .875rem; font-weight: 700; color: var(--ink-2); }
.bars { margin-top: 1.5rem; display: flex; align-items: flex-end; gap: .5rem; height: 8rem; }
.bar { flex: 1; background: var(--primary-soft); border-radius: 6px 6px 0 0; }
.bar:last-child { background: var(--primary); }
.bar-days { margin-top: .5rem; display: flex; gap: .5rem; }
.bar-days span { flex: 1; text-align: center; font-size: .6875rem; color: var(--muted-2); }
.faq-bars { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-bar .r { display: flex; justify-content: space-between; align-items: baseline; }
.faq-bar .lb { font-size: .875rem; font-weight: 500; color: var(--ink-2); }
.faq-bar .pc { font-size: .8125rem; font-weight: 600; color: var(--primary); }
.faq-track { margin-top: .5rem; height: 6px; border-radius: 999px; background: var(--bg-alt); overflow: hidden; }
.faq-fill { display: block; height: 100%; border-radius: 999px; background: var(--primary); }
.dash-note { margin-top: 1.75rem; text-align: center; max-width: 46rem; margin-inline: auto; font-size: .9375rem; line-height: 1.8; color: var(--muted); }

/* ============================================================
   WORD OF MOUTH (네이비)
   ============================================================ */
.wom { background: var(--navy); color: rgba(255,255,255,.72); }
.wom-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1000px) { .wom-grid { grid-template-columns: 1.1fr .9fr; gap: 3.5rem; } }
.wom h2 { margin-top: 1.25rem; font-size: clamp(1.5rem, 1.05rem + 2vw, 2.25rem); font-weight: 700; line-height: 1.42; letter-spacing: -0.03em; color: #fff; }
.wom .dim { color: rgba(255,255,255,.62); }
.wom .u { color: #93B4FD; }
.wom-desc { margin-top: 1.125rem; font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,.62); max-width: 34rem; }
.channels { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.channel { display: flex; align-items: center; gap: .875rem; padding: 1rem 1.125rem; border-radius: var(--radius); background: rgba(255,255,255,.05); }
.channel-ic { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; flex: none; border-radius: 10px; background: rgba(147,180,253,.14); color: #93B4FD; }
.channel .t { font-size: .9375rem; font-weight: 700; color: #fff; }
.channel .d { font-size: .8125rem; color: rgba(255,255,255,.52); }

.share-inner { padding: 1.75rem; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); }
.share-head { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; font-weight: 600; color: #93B4FD; }
.share-url { margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .75rem .875rem; border-radius: 10px; background: rgba(0,0,0,.25); }
.share-url span:first-child { font-family: var(--mono); font-size: .8125rem; color: rgba(255,255,255,.78); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-btn { flex: none; padding: .25rem .625rem; border-radius: 6px; background: var(--primary); color: #fff; font-size: .75rem; font-weight: 600; cursor: pointer; }
.qr-box { margin: 1.5rem auto 0; width: 9rem; height: 9rem; display: grid; place-items: center; border-radius: var(--radius); background: #fff; color: var(--navy); }
.qr-box svg { width: 5.5rem; height: 5.5rem; }
.share-caption { margin-top: 1rem; text-align: center; font-size: .8125rem; color: rgba(255,255,255,.5); }

/* ============================================================
   VALUE BAND
   ============================================================ */
.value-band { padding-block: 5rem; background: var(--bg-alt); }
@media (min-width: 768px) { .value-band { padding-block: 7rem; } }
.vb-lead-1 { text-align: center; font-size: clamp(1.125rem, 2.4vw, 1.5rem); font-weight: 500; color: var(--muted); }
.vb-lead-2 { margin-top: .375rem; text-align: center; font-size: clamp(1.375rem, 3vw, 2rem); font-weight: 700; line-height: 1.45; color: var(--ink); letter-spacing: -0.03em; }
.vb-grid { margin-top: 2.5rem; display: grid; gap: 1rem; }
@media (min-width: 768px) { .vb-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.vb-card { height: 100%; padding: 1.75rem 1.5rem; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.vb-ic { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; margin-inline: auto; border-radius: 50%; background: var(--bg-alt); color: var(--muted-2); }
.vb-before { margin-top: 1.125rem; font-size: .875rem; color: var(--muted-2); text-decoration: line-through; }
.vb-after { margin-top: .375rem; font-size: 1.0625rem; font-weight: 700; color: var(--primary); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { background: linear-gradient(135deg, var(--primary) 0%, #1E4FD8 100%); color: #fff; }
.final-inner { text-align: center; }
.final h2 { font-size: clamp(1.625rem, 1.05rem + 2.4vw, 2.5rem); font-weight: 700; line-height: 1.38; letter-spacing: -0.03em; }
.final .sub { margin-top: 1.125rem; margin-inline: auto; max-width: 40rem; font-size: 1.0625rem; line-height: 1.8; color: rgba(255,255,255,.82); }
.included { margin-top: 2.5rem; display: grid; gap: .625rem; max-width: 52rem; margin-inline: auto; }
@media (min-width: 640px) { .included { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .included { grid-template-columns: repeat(3, 1fr); } }
.included li { display: flex; align-items: center; gap: .5rem; padding: .75rem 1rem; border-radius: 10px; background: rgba(255,255,255,.12); font-size: .875rem; font-weight: 500; }
.included svg { flex: none; color: #fff; }
.final-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.25rem; }
.demo-link { display: inline-flex; align-items: center; gap: .375rem; font-size: .9375rem; font-weight: 600; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: .125rem; }
.demo-link:hover { color: #fff; border-color: #fff; }
.final-note { margin-top: 1.5rem; font-size: .875rem; color: rgba(255,255,255,.66); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item.open { border-color: var(--primary-soft); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 1.25rem 1.375rem; text-align: left; font-size: 1rem; font-weight: 600; color: var(--ink); }
.faq-q:hover { color: var(--primary); }
.faq-q .plus { flex: none; color: var(--muted-2); transition: transform .3s cubic-bezier(.22,1,.36,1), color .2s; }
.faq-item.open .plus { transform: rotate(45deg); color: var(--primary); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.22,1,.36,1); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 1.375rem 1.375rem; font-size: .9375rem; line-height: 1.85; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { padding-block: 3.5rem 1.75rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; } }
.footer-about p { margin-top: .875rem; font-size: .875rem; line-height: 1.8; max-width: 22rem; }
.footer-col .h { font-size: .875rem; font-weight: 700; color: var(--ink); }
.footer-col ul { margin-top: .875rem; display: flex; flex-direction: column; gap: .625rem; }
.footer-col a { font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; font-size: .8125rem; color: var(--muted-2); }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a:hover { color: var(--primary); }

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta { position: fixed; inset-inline: 0; bottom: 0; z-index: 55; padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .3s cubic-bezier(.22,1,.36,1); }
.sticky-cta.show { transform: none; }
.sticky-cta button { display: flex; width: 100%; align-items: center; justify-content: center; gap: .5rem; padding: .9375rem; border-radius: var(--radius-sm); background: var(--primary); color: #fff; font-size: .9375rem; font-weight: 600; box-shadow: 0 4px 12px rgba(37,99,235,.25); }
@media (min-width: 768px) { .sticky-cta { display: none; } }
.u-line { text-decoration: underline; text-decoration-color: var(--primary-soft); text-decoration-thickness: 4px; text-underline-offset: 3px; }

/* ============================================================
   LEAD MODAL
   ============================================================ */
.pt-modal { position: fixed; inset: 0; z-index: 9998; display: none; align-items: center; justify-content: center; padding: 1.25rem; background: rgba(15,23,42,.55); backdrop-filter: blur(4px); }
.pt-modal.open { display: flex; animation: pt-fade .2s ease; }
.pt-modal-card { position: relative; width: min(34rem, 100%); max-height: 90vh; overflow: auto; padding: 2.25rem; background: #fff; border-radius: 20px; box-shadow: 0 30px 70px rgba(15,23,42,.28); animation: pt-rise .35s cubic-bezier(.22,1,.36,1); }
@keyframes pt-fade { from { opacity: 0; } }
@keyframes pt-rise { from { opacity: 0; transform: translateY(14px); } }
.pt-modal-close { position: absolute; right: 1rem; top: 1rem; display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; color: var(--muted); transition: background .2s, color .2s; }
.pt-modal-close:hover { background: var(--bg-alt); color: var(--ink); }
.pt-modal-title { margin: 1rem 0 .5rem; font-size: 1.375rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1.45; }
.pt-modal-sub { margin-bottom: 1.75rem; font-size: .9375rem; line-height: 1.7; color: var(--muted); }
.pt-field-grid { display: grid; gap: .875rem; }
@media (min-width: 480px) { .pt-field-grid { grid-template-columns: 1fr 1fr; } }
.pt-field { display: block; margin-bottom: .875rem; font-size: .875rem; font-weight: 600; color: var(--ink-2); }
.pt-field-grid .pt-field { margin-bottom: 0; }
.pt-field-grid + .pt-field { margin-top: .875rem; }
.pt-field b { color: var(--primary); }
.pt-field input, .pt-field select, .pt-field textarea {
  display: block; width: 100%; margin-top: .4375rem; padding: .75rem .875rem;
  font-family: var(--sans); font-size: .9375rem; font-weight: 500; letter-spacing: -0.02em;
  color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.pt-field textarea { resize: vertical; line-height: 1.65; }
.pt-field input::placeholder, .pt-field textarea::placeholder { color: var(--muted-2); font-weight: 400; }
.pt-field select { appearance: none; cursor: pointer; padding-right: 2.5rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='1.8' stroke-linecap='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right .875rem center; background-size: 1.0625rem; }
.pt-field input:hover, .pt-field select:hover, .pt-field textarea:hover { border-color: var(--muted-2); }
.pt-field input:focus, .pt-field select:focus, .pt-field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.pt-check { display: flex; gap: .5rem; align-items: flex-start; margin-top: 1.125rem; padding: .875rem 1rem; border-radius: 10px; background: var(--bg-alt); font-size: .875rem; line-height: 1.6; color: var(--body); cursor: pointer; }
.pt-check input { flex: none; width: 1.0625rem; height: 1.0625rem; margin-top: .125rem; accent-color: var(--primary); cursor: pointer; }
.pt-form-actions { display: flex; justify-content: flex-end; gap: .5rem; margin-top: 1.5rem; }
@media (max-width: 479px) { .pt-modal-card { padding: 1.75rem 1.25rem; } .pt-form-actions .btn { flex: 1; } }

/* ============================================================
   TOAST
   ============================================================ */
.pt-toast {
  position: fixed; left: 50%; bottom: 2rem; z-index: 9999;
  display: flex; align-items: center; max-width: min(28rem, calc(100vw - 2.5rem));
  padding: .9375rem 1.25rem; border-radius: 12px;
  font-size: .875rem; font-weight: 500; line-height: 1.55;
  color: #fff; background: var(--navy); box-shadow: 0 16px 36px rgba(15,23,42,.28);
  opacity: 0; transform: translate(-50%, 1rem); pointer-events: none;
  transition: opacity .28s, transform .28s cubic-bezier(.22,1,.36,1);
}
.pt-toast::before { content: ""; flex: none; width: .5rem; height: .5rem; margin-right: .75rem; border-radius: 50%; background: var(--success); }
.pt-toast[data-type="error"]::before { background: var(--alert); }
.pt-toast.show { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 767px) { .pt-toast { bottom: 5.5rem; } }

/* ============================================================
   MOTION / A11Y
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .animate-float, .dot-online { animation: none; }
  .pt-modal.open, .pt-modal-card { animation: none; }
  * { transition-duration: .01ms !important; }
}
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ---------- 마감 보정 ---------- */
/* 접수 카드가 채팅 입력창을 가리지 않도록 겹침 해제 */
.lead-card, .form-card { margin-top: .875rem; }
/* 플로우 카드 높이 정렬 */
.flow-step { align-items: stretch; }
.flow-step-inner { height: 100%; justify-content: center; }
.flow-arrow { align-self: center; }

/* ============================================================
   품질 개선 레이어 — 타입 위계 / 깊이 / 광택
   ============================================================ */

/* ---------- 1. 타입 스케일 대비 강화 ---------- */
body { font-size: 1.0625rem; color: var(--slate-600); }
.hero-title {
  font-size: clamp(2.125rem, 1.15rem + 3.6vw, 3.5rem);
  font-weight: 800; line-height: 1.28; letter-spacing: -0.042em;
}
.hero-sub { font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.03em; }
.hero-desc { font-size: 1.0625rem; color: var(--slate-500); }
.h2 {
  font-size: clamp(1.75rem, 1.05rem + 2.6vw, 2.625rem);
  font-weight: 800; line-height: 1.36; letter-spacing: -0.038em;
}
.lead { font-size: 1.125rem; color: var(--slate-500); }
.wom h2 { font-size: clamp(1.75rem, 1.05rem + 2.6vw, 2.625rem); font-weight: 800; letter-spacing: -0.038em; line-height: 1.36; }
.final h2 { font-size: clamp(1.875rem, 1.1rem + 2.9vw, 2.875rem); font-weight: 800; letter-spacing: -0.038em; }
.vb-lead-2 { font-size: clamp(1.5rem, 1rem + 2.2vw, 2.25rem); font-weight: 800; letter-spacing: -0.038em; }
.oneline { font-size: clamp(1.5rem, 1rem + 2.2vw, 2.125rem); font-weight: 800; letter-spacing: -0.038em; }
.step-card h3, .ind-card h3 { font-size: 1.1875rem; font-weight: 800; letter-spacing: -0.035em; }
.callout .t, .info-card .t, .feature .t, .notify-title { font-weight: 800; letter-spacing: -0.035em; }
.faq-q { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.03em; }
/* 캡션은 더 작고 옅게 */
.ind-note, .share-caption, .hero-note, .bar-days span, .final-note,
.footer-bottom, .qa-note, .stat .l { font-size: .8125rem; color: var(--slate-400); }
.tag, .quick, .field { font-size: .78125rem; }
/* 숫자는 등폭 */
.metric .v, .stat .v, .trend, .faq-bar .pc, .count { font-variant-numeric: tabular-nums; }

/* ---------- 2. 섹션 배경 변주 (흰색·회색 2단 → 4단) ---------- */
.section-alt { background: linear-gradient(180deg, #FAFCFF 0%, #F3F6FC 100%); }
#solution { background: var(--white); }
#industry { background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFE 100%); }
#trust { background: var(--white); }
.section-alt + .section:not(.section-alt) { border-top: 1px solid var(--line-2); }
.value-band { background: linear-gradient(180deg, #F3F6FC 0%, #FFFFFF 100%); border-top: 1px solid var(--line-2); }

/* ---------- 3. 아이콘 타일: 단색 → 그라데이션 + 링 ---------- */
.flow-ic, .info-ic, .feature-ic, .ind-ic, .lead-card-head .ic, .vb-ic {
  background: var(--tile);
  box-shadow: var(--tile-ring);
  color: var(--blue-700);
}
.ind-ic { border-radius: 14px; }
.vb-ic { background: linear-gradient(150deg, #F6F8FB 0%, #EAEFF6 100%); box-shadow: inset 0 0 0 1px rgba(15,23,42,.06); color: var(--slate-400); }
.flow-step:last-child .flow-ic {
  background: linear-gradient(150deg, var(--blue-500) 0%, var(--blue-700) 100%);
  box-shadow: var(--shadow-blue); color: #fff;
}
.ind-card:hover .ind-ic {
  background: linear-gradient(150deg, var(--blue-500) 0%, var(--blue-700) 100%);
  box-shadow: var(--shadow-blue); color: #fff;
}
.ind-ic { transition: background .25s, box-shadow .25s, color .25s; }

/* ---------- 4. 버튼 광택 ---------- */
.btn-primary {
  background: linear-gradient(180deg, var(--blue-500) 0%, var(--blue-600) 55%, var(--blue-700) 100%);
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--blue-600) 0%, var(--blue-700) 100%);
  box-shadow: 0 16px 34px -10px rgba(37,99,235,.55), inset 0 1px 0 rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-white { box-shadow: 0 12px 28px -8px rgba(9,20,55,.35), inset 0 1px 0 rgba(255,255,255,.8); }
.submit-bar {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 6px 14px -6px rgba(37,99,235,.6), inset 0 1px 0 rgba(255,255,255,.2);
}
.sticky-cta button {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-700));
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255,255,255,.22);
}

/* ---------- 5. 카드 깊이 차등 ---------- */
.q-item, .trust-mini, .stat, .compare-card { box-shadow: var(--shadow-xs); }
.step-card, .ind-card, .feature, .info-card, .callout, .loop-list { box-shadow: var(--shadow-sm); }
.dash, .browser, .chat, .data-card, .emphasis-card { box-shadow: var(--shadow); }
.chat, .browser { box-shadow: var(--shadow-lg); }
.q-item, .step-card, .ind-card, .feature, .faq-item {
  transition: box-shadow .28s cubic-bezier(.22,1,.36,1), transform .28s cubic-bezier(.22,1,.36,1), border-color .28s;
}
.q-item:hover, .step-card:hover, .feature:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(37,99,235,.22), 0 2px 6px rgba(16,24,40,.05); border-color: var(--blue-200); }
.ind-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -16px rgba(37,99,235,.28), 0 3px 8px rgba(16,24,40,.05); }

/* ---------- 6. 히어로 배경 레이어 ---------- */
.hero { background: #FFFFFF; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60rem 32rem at 18% -6%, rgba(59,122,247,.16) 0%, transparent 62%),
    radial-gradient(46rem 28rem at 92% 6%, rgba(147,180,253,.20) 0%, transparent 60%),
    linear-gradient(180deg, #F6F9FF 0%, #FFFFFF 70%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(52rem 30rem at 50% 12%, #000 0%, transparent 72%);
          mask-image: radial-gradient(52rem 30rem at 50% 12%, #000 0%, transparent 72%);
}
.hero > .container { position: relative; z-index: 1; }
.hero .eyebrow {
  background: rgba(255,255,255,.8); border: 1px solid var(--blue-200);
  box-shadow: 0 2px 8px rgba(37,99,235,.10); backdrop-filter: blur(6px);
}

/* ---------- 7. 목업 마감 ---------- */
.chat { border-color: rgba(15,23,42,.07); }
.chat-bar { background: linear-gradient(180deg, #FFFFFF, #FBFCFE); }
.bubble.ai {
  background: linear-gradient(150deg, var(--blue-500) 0%, var(--blue-700) 100%);
  box-shadow: 0 8px 18px -8px rgba(37,99,235,.55);
}
.chat-input .send { background: linear-gradient(150deg, var(--blue-500), var(--blue-700)); box-shadow: 0 4px 10px -4px rgba(37,99,235,.6); }
.lead-card, .form-card { border-color: rgba(15,23,42,.07); box-shadow: var(--shadow-lg); }
.code-window { box-shadow: 0 30px 64px -22px rgba(11,18,32,.5); }
.hero-block { box-shadow: 0 10px 24px -10px rgba(37,99,235,.5); }

/* ---------- 8. 대시보드 밀도 ---------- */
.metric .v { font-size: 2rem; font-weight: 800; letter-spacing: -0.045em; }
.stat .v { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.04em; }
.bar { background: linear-gradient(180deg, #DCE8FE 0%, #C9DCFD 100%); }
.bar:last-child { background: linear-gradient(180deg, var(--blue-500), var(--blue-700)); box-shadow: 0 6px 14px -6px rgba(37,99,235,.5); }
.faq-fill { background: linear-gradient(90deg, var(--blue-500), var(--blue-700)); }
.dash { border-color: rgba(15,23,42,.07); }
.dash-head { background: linear-gradient(180deg, #FFFFFF, #FAFBFE); }

/* ---------- 9. 어두운 섹션 대비 ---------- */
.wom { background: linear-gradient(165deg, #101B33 0%, #0B1220 55%, #0D1A38 100%); position: relative; overflow: hidden; }
.wom::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40rem 24rem at 78% 18%, rgba(59,122,247,.22) 0%, transparent 62%);
}
.wom > .container { position: relative; z-index: 1; }
.channel { border: 1px solid rgba(255,255,255,.07); transition: background .25s, border-color .25s; }
.channel:hover { background: rgba(255,255,255,.08); border-color: rgba(147,180,253,.3); }
.notify-card { background: linear-gradient(165deg, #131F3A 0%, #0B1220 100%); }

.final { background: linear-gradient(140deg, var(--blue-500) 0%, var(--blue-700) 48%, var(--blue-800) 100%); position: relative; overflow: hidden; }
.final::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(38rem 22rem at 15% 0%, rgba(255,255,255,.20) 0%, transparent 62%),
    radial-gradient(30rem 18rem at 88% 100%, rgba(11,18,32,.28) 0%, transparent 60%);
}
.final > .container { position: relative; z-index: 1; }
.included li { background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(4px); transition: background .2s; }
.included li:hover { background: rgba(255,255,255,.2); }

/* ---------- 10. 잔여 마감 ---------- */
.eyebrow { border: 1px solid rgba(37,99,235,.14); }
.badge-soft, .step-no, .inline-tag, .combo { box-shadow: inset 0 0 0 1px rgba(37,99,235,.10); }
.trend { box-shadow: inset 0 0 0 1px rgba(16,185,129,.18); }
.chip { transition: border-color .2s, box-shadow .2s, transform .2s; }
.chip:hover { border-color: var(--blue-200); box-shadow: 0 4px 12px -4px rgba(37,99,235,.25); transform: translateY(-1px); }
.faq-item.open { box-shadow: 0 14px 32px -14px rgba(37,99,235,.28); }
.emphasis-card .divider { background: linear-gradient(90deg, var(--blue-500), var(--blue-200)); }
.site-header.scrolled { box-shadow: 0 1px 0 var(--line), 0 6px 20px -12px rgba(16,24,40,.18); }
.pt-modal-card { box-shadow: 0 40px 90px -24px rgba(11,18,32,.42); }

/* 히어로 제목이 5줄로 흘러 과도해지는 것을 방지 */
.hero-title { font-size: clamp(2rem, 1.1rem + 3.1vw, 3.125rem); }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

/* ============================================================
   줄바꿈 제어 — 짧은 라벨은 절대 두 줄로 흐르지 않는다
   ============================================================ */

/* 1) 강조 한 줄 문구: 폭에 맞춰 크기가 줄어들되 항상 한 줄 */
.oneline {
  white-space: nowrap;
  font-size: clamp(1.25rem, 5.2vw, 2.125rem);
}

/* 2) UI 라벨·배지·태그: 한 줄 고정 */
.chip, .tag, .quick, .field, .badge-soft, .step-no, .trend, .combo,
.compare-tag, .bar-days span, .browser-nav span, .chat-status,
.eyebrow, .eyebrow-light, .share-head, .notify-head, .demo-link,
.dash-head .title, .p-title, .metric .top span, .stat .l,
.mini-table .head span, .mini-table .body span, .data-card .row span,
.loop-cycle span, .copy-btn, .hero-block .b, .submit-bar, .lead-card-head p,
.faq-bar .lb, .faq-bar .pc, .channel .t, .hero-note, .final-note,
.footer-col .h, .qa-ai .dept, .chip-inline p {
  white-space: nowrap;
}
/* 모바일에서 넘칠 수 있는 항목만 예외 */
@media (max-width: 420px) {
  .hero-note, .final-note, .chip-inline p, .faq-bar .lb, .stat .l { white-space: normal; }
}

/* 3) 여러 줄이 되는 문구는 균형 배분 — 마지막 줄 한 단어 방지 */
.h2, .hero-title, .hero-sub, .hero-desc, .lead, .wom h2, .final h2, .final .sub,
.vb-lead-1, .vb-lead-2, .emphasis-card .big, .emphasis-card .sub, .emphasis-card .note,
.step-card h3, .step-card p, .ind-card h3, .ind-copy, .flow-label, .compare-val,
.callout .t, .info-card .t, .feature .t, .notify-title, .loop-body, .q-text,
.pill, .faq-q > span, .faq-a-inner p, .dash-note, .center-note, .qa-note,
.wom-desc, .share-caption, .channel .d, .info-foot, .trust-mini p,
.pt-modal-title, .pt-modal-sub, .included li {
  text-wrap: balance;
}
.faq-a-inner p, .wom-desc, .emphasis-card .note, .ind-copy, .step-card p { text-wrap: pretty; }

/* 4) 라벨 폭 여유 확보 */
.field { text-align: center; padding-inline: .375rem; }
.flow-label { font-size: .875rem; }
.stat .l { font-size: .78125rem; }
.metric .top { font-size: .8125rem; }
.dash-head .title { font-size: .9375rem; }

/* 5) 플로우: 5열 유지하되 좁은 구간에서 라벨이 카드를 넘지 않도록 축소 */
.flow-label { font-size: clamp(.8125rem, .72rem + .28vw, .9375rem); line-height: 1.45; }
@media (min-width: 900px) and (max-width: 1099px) {
  .flow { gap: .375rem; }
  .flow-step-inner { padding: 1.25rem .625rem; }
  .flow-ic { width: 2.5rem; height: 2.5rem; }
}

/* 6) 통계 3열은 좁은 화면에서 라벨이 깨진다 → 가로 배치로 전환 */
@media (max-width: 620px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat { display: flex; align-items: center; gap: .875rem; text-align: left; padding: .9375rem 1.125rem; }
  .stat > svg { margin: 0; flex: none; }
  .stat .v { margin: 0; font-size: 1.375rem; }
  .stat .l { margin: 0 0 0 auto; white-space: nowrap; }
}

/* 7) 그리드 자식 최소폭 0 — 내부 표·코드로 인한 가로 넘침 차단 */
.mini-grid > *, .trust-grid > *, .two-col-start > *, .loop-grid > *,
.hero-grid > *, .wom-grid > *, .dash-body > * { min-width: 0; }
.browser, .data-card, .code-window, .chat { max-width: 100%; }

/* 임베드 코드: 항상 한 줄. 좁은 화면에서는 가로 스크롤로 처리한다 */
.code-window pre { overflow-x: auto; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.code-window code { white-space: pre; font-size: clamp(.6875rem, .52rem + .5vw, .875rem); }
.code-window pre::-webkit-scrollbar { height: 6px; }
.code-window pre::-webkit-scrollbar-thumb { background: rgba(255,255,255,.16); border-radius: 3px; }
.code-window pre::-webkit-scrollbar-track { background: transparent; }

/* ============================================================
   채팅창 내부 상담·예약 신청 폼
   ============================================================ */
.chat-body .lead-card,
.chat-body .form-card {
  margin: 0; width: 100%; max-width: 100%;
  padding: 1rem 1.125rem 1.125rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px 14px 14px 14px;
  box-shadow: 0 6px 16px -8px rgba(16,24,40,.18);
}
.chat-body .msg:has(> .lead-card),
.chat-body .msg:has(> .form-card) { justify-content: flex-start; }
.chat-body .lead-card-head { margin-bottom: .75rem; padding-bottom: .75rem; border-bottom: 1px solid var(--line-2); }
.chat-body .field { background: #F7F9FC; border-color: #E7EBF2; }
.chat-body .submit-bar { margin-top: .625rem; padding: .5625rem; font-size: .8125rem; }
.chat-body .field-row.cols-3 { gap: .375rem; }
@media (max-width: 420px) {
  .chat-body .field-row.cols-3 { grid-template-columns: 1fr 1fr; }
  .chat-body .field-row.cols-3 .field:last-child { grid-column: 1 / -1; }
}
/* 카드가 들어간 뒤 채팅창 하단 여백 정리 */
.hero-visual .chat, .stack .chat { margin-bottom: 0; }

/* ============================================================
   미니 홈페이지 목업 — 실제 사이트처럼
   ============================================================ */
.browser { position: relative; }
.browser-nav { align-items: center; gap: 1rem; padding: .8125rem 1rem; }
.mh-brand {
  display: inline-flex; align-items: center; gap: .4375rem;
  margin-right: auto; font-size: .875rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.03em; white-space: nowrap;
}
.mh-mark {
  display: grid; place-items: center; width: 1.375rem; height: 1.375rem;
  border-radius: 7px; font-size: .6875rem; font-weight: 700; color: #fff;
  background: linear-gradient(150deg, var(--blue-500), var(--blue-700));
}
.browser-content { padding: 1rem; gap: 1rem; }

/* 히어로 */
.hero-block { position: relative; overflow: hidden; padding: 1.5rem 1.375rem; }
.hero-block::after {
  content: ""; position: absolute; right: -3rem; top: -3rem;
  width: 11rem; height: 11rem; border-radius: 50%;
  background: rgba(255,255,255,.14);
}
.mh-badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .25rem .5625rem; margin-bottom: .75rem;
  border-radius: 999px; background: rgba(255,255,255,.2);
  font-size: .6875rem; font-weight: 600; color: #fff; white-space: nowrap;
}
.mh-dot { width: .375rem; height: .375rem; border-radius: 50%; background: #4ADE80; }
.hero-block .t, .hero-block .s, .hero-block .b { position: relative; z-index: 1; }
.hero-block .t { font-size: 1.0625rem; }

/* 섹션 헤더 */
.mh-sec { display: flex; align-items: baseline; justify-content: space-between; }
.mh-sec-t { font-size: .9375rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.mh-more { font-size: .75rem; font-weight: 600; color: var(--primary); white-space: nowrap; }

/* 메뉴 카드 */
.thumb-row { gap: .625rem; }
.thumb { aspect-ratio: auto; background: none; display: flex; flex-direction: column; gap: .375rem; }
.mh-photo {
  aspect-ratio: 4/3; border-radius: 10px; position: relative; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.05);
}
.mh-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1.6rem 1.6rem at 30% 34%, rgba(255,255,255,.5) 0%, transparent 70%),
    radial-gradient(2.4rem 2rem at 72% 70%, rgba(255,255,255,.28) 0%, transparent 72%);
}
.mh-p1 { background: linear-gradient(150deg, #FDBA74 0%, #F97362 100%); }
.mh-p2 { background: linear-gradient(150deg, #86D9B4 0%, #37A98A 100%); }
.mh-p3 { background: linear-gradient(150deg, #A3C3FB 0%, #4F7FFA 100%); }
.mh-name { font-size: .75rem; font-weight: 700; color: var(--ink-2); letter-spacing: -0.02em; white-space: nowrap; }
.mh-price { font-size: .6875rem; font-weight: 600; color: var(--primary); white-space: nowrap; }

/* 표 */
.mini-table { border-radius: 12px; }
.mini-table .head, .mini-table .body { padding: .5625rem .875rem; }
.mini-table .body + .body { border-top: 1px solid var(--line-2); }

/* 정보 */
.mh-info { display: flex; flex-direction: column; gap: .4375rem; padding-top: .875rem; border-top: 1px solid var(--line-2); }
.mh-row { display: flex; align-items: center; gap: .4375rem; font-size: .75rem; color: var(--muted); }
.mh-row svg { color: var(--muted-2); flex: none; }
.mh-row span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* 챗봇 런처 */
.mh-launcher {
  position: absolute; right: 1rem; bottom: 1rem; z-index: 2;
  display: grid; place-items: center; width: 2.75rem; height: 2.75rem;
  border-radius: 50%; color: #fff;
  background: linear-gradient(150deg, var(--blue-500), var(--blue-700));
  box-shadow: var(--shadow-blue);
}
.mh-launcher svg { width: 1.375rem; height: 1.375rem; }
.mh-ping {
  position: absolute; right: -.125rem; top: -.125rem;
  width: .625rem; height: .625rem; border-radius: 50%;
  background: #F97362; box-shadow: 0 0 0 2px #fff;
}

@media (max-width: 400px) {
  .thumb-row { grid-template-columns: 1fr 1fr; }
  .thumb:last-child { display: none; }
  .browser-nav .mh-brand + span { margin-left: 0; }
}
/* 런처가 정보 영역과 겹치지 않도록 여백 확보 */
.browser-content { padding-bottom: 3.5rem; }
.mh-info { padding-right: 3.25rem; }

/* 메뉴 사진 — 인라인 일러스트 */
.mh-photo { background: none; }
.mh-photo::after { display: none; }
.mh-img { width: 100%; height: 100%; display: block; }
.mh-photo { transition: transform .3s cubic-bezier(.22,1,.36,1); }
.thumb:hover .mh-photo { transform: scale(1.03); }

/* QR 이미지 */
.qr-box { padding: .625rem; }
.qr-box img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 6px; }

/* ============================================================
   강조 텍스트 색상 — 역할별로 분리
   heading: 본문 잉크보다 약해 보이지 않도록 진한 blue-800
   link/label: 상호작용 신호로 읽히는 blue-600
   dark section: 잉크 배경에서 충분히 밝은 톤
   ============================================================ */
:root {
  --em-heading: #1B47C4;   /* 흰 배경 대비 7.65:1 */
  --em-link:    #2563EB;   /* 5.17:1 */
  --em-on-dark: #B9D0FF;   /* 잉크 대비 12.06:1 */
  --em-alert:   #C6362A;   /* 5.30:1 (기존 #EF4444는 3.76:1) */
}

/* 1) 제목 안의 강조 — 주변 검은 글자에 눌리지 않도록 진하게 */
.h2 .text-primary,
.hero-title .text-primary,
.oneline .text-primary,
.vb-lead-2 .text-primary,
.pt-modal-title .text-primary { color: var(--em-heading); }
.h2 .text-destructive, .hero-title .text-destructive { color: var(--em-alert); }
.text-destructive { color: var(--em-alert); }

/* 2) 본문·설명문 안의 강조 — 색과 굵기를 함께 올린다 */
.lead .text-primary,
.dash-note .text-primary,
.qa-note .text-primary,
.info-foot .text-primary,
.chip-inline .text-primary,
.center-note .text-primary,
.emphasis-card .text-primary,
.wom-desc .text-primary,
.share-caption .text-primary,
.ind-copy .text-primary,
.faq-a-inner .text-primary {
  color: var(--em-heading);
  font-weight: 700;
}

/* 3) 링크·라벨·태그 — 밝은 파랑 유지 */
.ind-link, .mh-more, .main-nav a:hover, .faq-bar .pc,
.step-no, .badge-soft, .inline-tag, .combo, .eyebrow,
.mh-price, .browser-nav .active, .copy-btn { color: var(--em-link); }
.copy-btn { color: #fff; }

/* 4) 어두운 배경 위 강조 */
.wom .u, .wom h2 .text-primary { color: var(--em-on-dark); }
.wom .dim { color: rgba(255,255,255,.58); }
.eyebrow-light, .notify-head, .share-head, .channel-ic,
.sms-ic, .code-window code { color: var(--em-on-dark); }
.hero-title .text-primary { color: var(--em-heading); }

/* 5) 파란 배경 위 강조는 흰색 + 굵기로만 */
.final .text-primary, .final h2 .text-primary { color: #fff; font-weight: 800; }

/* 6) 굵게 표시된 본문 강조가 흐려 보이지 않게 */
strong.font-bold, .lead strong, .emphasis-card .note strong { color: var(--ink); font-weight: 700; }
.bubble.ai, .qa-user, .submit-bar, .included li { color: #fff; }

/* QR: 이미지 로드 실패 시 아이콘이 그대로 남도록 */
.qr-box { position: relative; }
.qr-fallback { position: absolute; width: 55%; height: 55%; color: var(--slate-300); }
.qr-img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; background: #fff; border-radius: 6px; }

/* ============================================================
   PageTalk 위젯 연동
   ============================================================ */
/* 위젯 로딩 대기 중 CTA 상태 */
.btn.is-loading, .ind-link.is-loading { opacity: .65; pointer-events: none; cursor: progress; }
.btn.is-loading .arrow { animation: cta-pulse 1s ease-in-out infinite; }
@keyframes cta-pulse { 50% { transform: translateX(5px); opacity: .4; } }

/* 모바일 하단 고정 CTA가 떠 있을 때 챗봇 버튼이 가려지지 않도록 */
@media (max-width: 767px) {
  .pt-fab { bottom: 5.25rem !important; z-index: 54 !important; }
}