/* scan.croninc.com — 랜딩 페이지 스타일
   단일 라이트 룩으로 고정(마케팅 페이지). 차트 색은 검증된 레퍼런스 팔레트의
   sequential blue 계열(#2a78d6)을 흰 카드 표면 위에서 사용한다. */

:root {
  --brand:        #2a78d6;
  --brand-dark:   #1c5cab;
  --brand-deep:   #104281;
  --brand-tint:   #eaf2fd;
  --brand-tint-2: #d5e5fa;

  --ink:      #12161c;
  --ink-2:    #545a63;
  --ink-3:    #8b929c;
  --line:     #e5e8ed;
  --line-2:   #eef0f4;
  --surface:  #ffffff;
  --page:     #f7f8fa;

  --navy:     #0c1a2b;
  --navy-2:   #143454;

  --ok:       #1baf7a;
  --warn:     #eda100;

  --radius:   14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(16,25,40,.06), 0 2px 8px rgba(16,25,40,.04);
  --shadow:    0 4px 12px rgba(16,25,40,.07), 0 18px 40px rgba(16,25,40,.08);
  --shadow-lg: 0 8px 24px rgba(16,25,40,.10), 0 40px 80px rgba(16,25,40,.14);

  --maxw: 1140px;
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          system-ui, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕",
          "Noto Sans KR", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

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

h1, h2, h3, h4 { line-height: 1.28; letter-spacing: -0.022em; margin: 0; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.65vw, 2.4rem); }
h3 { font-size: 1.14rem; }
p  { margin: 0; }

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

/* ---------- 공통 파츠 ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 650; letter-spacing: .01em;
  color: var(--brand-dark); background: var(--brand-tint);
  border: 1px solid var(--brand-tint-2);
  padding: 6px 13px; border-radius: 999px;
}
.eyebrow.on-dark {
  color: #bcd8f8; background: rgba(42,120,214,.16);
  border-color: rgba(147,190,240,.28);
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.dot.live { background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.22); }

.lede { color: var(--ink-2); font-size: 1.06rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 11px; font-weight: 650; font-size: .96rem;
  border: 1px solid transparent; cursor: pointer; transition: .18s ease;
  font-family: inherit; white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(42,120,214,.28); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.26); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-outline { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px;
}

section { padding: 96px 0; }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 16px 0 14px; }

/* ---------- 헤더 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 12px rgba(16,25,40,.05); }
.nav { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 750; font-size: 1.08rem; letter-spacing: -.02em; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-deep) 100%);
  display: grid; place-items: center; color: #fff;
}
.nav-links { display: flex; gap: 28px; margin-left: 8px; }
.nav-links a { font-size: .93rem; font-weight: 550; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }

@media (max-width: 900px) {
  .nav-links {
    position: absolute; inset: 68px 0 auto; flex-direction: column; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; margin: 0; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line-2); font-size: 1rem; }
  .nav-toggle { display: block; order: 3; }
  .nav-cta { margin-left: auto; }
  .nav-cta .btn { padding: 10px 16px; font-size: .9rem; }
}
@media (max-width: 460px) { .nav-cta .btn span.hide-xs { display: none; } }

/* ---------- 히어로 ---------- */
.hero {
  position: relative; overflow: hidden; padding: 84px 0 96px;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(42,120,214,.34), transparent 62%),
    radial-gradient(760px 420px at 6% 108%, rgba(27,175,122,.16), transparent 60%),
    linear-gradient(168deg, var(--navy) 0%, #0f2740 55%, var(--navy-2) 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(900px 500px at 50% 20%, #000, transparent 78%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; }
.hero h1 {
  font-size: clamp(2.05rem, 1.15rem + 3.5vw, 3.5rem);
  margin: 20px 0 20px; letter-spacing: -.033em; font-weight: 780;
}
.hero h1 .accent {
  background: linear-gradient(96deg, #7fc0ff 0%, #b6e3cd 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub { font-size: 1.09rem; color: #c3d3e4; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 18px; }
.hero-note { font-size: .875rem; color: #93a9c0; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.hero-note svg { flex: none; opacity: .85; }

/* 폰 목업 */
.phone-stage { display: flex; justify-content: center; position: relative; }
.phone {
  position: relative; width: 272px; padding: 12px; flex: none;
  border-radius: 40px; background: linear-gradient(160deg, #2b3746, #131c27);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.09) inset;
}
.phone-screen {
  border-radius: 30px; overflow: hidden; background: #0a1420;
  aspect-ratio: 9 / 18.5; position: relative;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; border-radius: 999px; background: #05090f; z-index: 3;
}
.cam-view {
  flex: 1; position: relative;
  background:
    radial-gradient(120% 80% at 50% 26%, #33506e 0%, #1b2c40 46%, #0d1725 100%);
}
.face-frame {
  position: absolute; left: 50%; top: 38%; transform: translate(-50%, -50%);
  width: 132px; height: 158px; border-radius: 46% 46% 44% 44%;
  border: 2px solid rgba(126,198,255,.9);
  box-shadow: 0 0 0 6px rgba(42,120,214,.14), 0 0 26px rgba(126,198,255,.28);
}
.face-frame::before, .face-frame::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 2.5px solid #7fc6ff; border-radius: 3px;
}
.face-frame::before { top: -9px; left: -9px; border-right: 0; border-bottom: 0; }
.face-frame::after  { bottom: -9px; right: -9px; border-left: 0; border-top: 0; }
.scan-line {
  position: absolute; left: 12%; right: 12%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, #7fc6ff, transparent);
  box-shadow: 0 0 14px rgba(127,198,255,.85);
  animation: scan 2.9s ease-in-out infinite;
}
@keyframes scan { 0%,100% { top: 20%; opacity: .25; } 50% { top: 58%; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .scan-line { animation: none; top: 40%; } }

.cam-hud {
  position: absolute; top: 42px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .68rem; color: #a9c6e4; letter-spacing: .01em;
}
.cam-hud .rec { display: inline-flex; align-items: center; gap: 5px; }
.punch-card {
  margin: 0 12px 12px; padding: 13px 14px; border-radius: 16px;
  background: rgba(255,255,255,.96); color: var(--ink);
  box-shadow: 0 10px 26px rgba(0,0,0,.32);
  display: flex; align-items: center; gap: 11px;
}
.punch-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, #cfe3fb, #9dc4f0);
  display: grid; place-items: center; font-weight: 700; color: var(--brand-deep); font-size: .9rem;
}
.punch-card > div { min-width: 0; }
.punch-name { font-weight: 700; font-size: .9rem; white-space: nowrap; }
.punch-meta { font-size: .74rem; color: var(--ink-3); white-space: nowrap; }
.punch-badge {
  margin-left: auto; font-size: .7rem; font-weight: 700; color: #0d7a53;
  background: #dff5eb; border-radius: 999px; padding: 4px 9px; white-space: nowrap;
}
.float-card {
  position: absolute; background: var(--surface); border-radius: 14px;
  box-shadow: var(--shadow); padding: 12px 14px; font-size: .8rem;
  border: 1px solid var(--line-2); animation: bob 5.5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .float-card { animation: none; } }
.float-card .fc-label { color: var(--ink-3); font-size: .72rem; }
.float-card .fc-value { font-weight: 750; font-size: 1.05rem; letter-spacing: -.02em; }
.float-a { top: 12%; left: -6px; animation-delay: -1.2s; }
.float-b { bottom: 14%; right: -10px; animation-delay: -3.4s; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .phone-stage { order: 2; }
  .float-a { left: 2%; } .float-b { right: 2%; }
}
/* 폰 목업 양옆 여백이 없어 카드가 잘리므로 좁은 화면에서는 감춘다 */
@media (max-width: 720px) { .float-card { display: none; } }

/* ---------- 문제 제기 ---------- */
.pain { background: var(--page); border-bottom: 1px solid var(--line); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.pain-card .x { color: #d94f4f; font-weight: 700; font-size: .8rem; margin-bottom: 8px; display: block; }
.pain-card p { color: var(--ink-2); font-size: .93rem; margin-top: 7px; }

/* ---------- 기능 (2 기둥) ---------- */
.pillar { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pillar + .pillar { margin-top: 108px; }
.pillar.reverse .pillar-media { order: -1; }
.pillar h2 { margin: 16px 0 16px; }
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 15px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.check {
  width: 21px; height: 21px; border-radius: 50%; flex: none; margin-top: 2px;
  background: var(--brand-tint); color: var(--brand-dark);
  display: grid; place-items: center;
}
.feature-list strong { display: block; font-weight: 650; font-size: .97rem; }
.feature-list span { color: var(--ink-2); font-size: .89rem; }

.panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden;
}
.panel-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-bottom: 1px solid var(--line-2); background: #fbfcfe;
}
.panel-head .title { font-weight: 650; font-size: .9rem; }
.panel-head .tag {
  margin-left: auto; font-size: .72rem; color: var(--ink-3);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px;
}
.panel-body { padding: 18px; }

/* 근태 리스트 목업 */
.attend-row {
  display: flex; align-items: center; gap: 12px; padding: 11px 4px;
  border-bottom: 1px solid var(--line-2);
}
.attend-row:last-child { border-bottom: 0; }
.attend-av {
  width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-size: .8rem; font-weight: 700; background: var(--brand-tint); color: var(--brand-deep);
}
.attend-name { font-weight: 620; font-size: .9rem; }
.attend-sub { font-size: .76rem; color: var(--ink-3); }
.pill { font-size: .72rem; font-weight: 680; border-radius: 999px; padding: 4px 10px; margin-left: auto; white-space: nowrap; }
.pill.ok   { background: #dff5eb; color: #0d7a53; }
.pill.late { background: #fdf0d6; color: #8a6100; }
.pill.off  { background: #eef0f4; color: #6b727c; }

/* ---------- 대시보드 / 차트 ---------- */
.dash { background: var(--page); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.stat .label { font-size: .82rem; color: var(--ink-2); }
.stat .value { font-size: 1.85rem; font-weight: 750; letter-spacing: -.03em; margin-top: 4px; }
.stat .value small { font-size: .95rem; font-weight: 650; color: var(--ink-2); margin-left: 2px; }
.stat .delta { font-size: .78rem; font-weight: 650; margin-top: 3px; }
.delta.up { color: #0d7a53; } .delta.down { color: #b23b3b; } .delta.flat { color: var(--ink-3); }

.chart-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 24px 18px; box-shadow: var(--shadow-sm); }
.chart-title { font-weight: 680; font-size: 1rem; }
.chart-sub { font-size: .83rem; color: var(--ink-2); margin-top: 3px; }
.chart {
  position: relative; margin-top: 22px; display: grid;
  grid-template-columns: repeat(13, 1fr); gap: 2px; align-items: end;
  height: 190px; padding-bottom: 24px;
}
.chart .gridline {
  position: absolute; left: 0; right: 0; border-top: 1px solid var(--line-2);
  font-size: .68rem; color: var(--ink-3);
}
.chart .gridline span { position: absolute; right: 0; top: -9px; background: var(--surface); padding-left: 6px; }
.bar-col { position: relative; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
.bar {
  width: 62%; max-width: 30px; border-radius: 4px 4px 0 0;
  background: var(--brand); transition: background .15s;
  animation: grow .7s cubic-bezier(.22,.9,.3,1) both;
}
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.bar { transform-origin: bottom; }
@media (prefers-reduced-motion: reduce) { .bar { animation: none; } }
.bar-col:hover .bar, .bar-col:focus-visible .bar { background: var(--brand-deep); }
.bar-col .xlabel {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; color: var(--ink-3); white-space: nowrap;
}
.bar-col .peak-label {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: .72rem; font-weight: 700; color: var(--ink); white-space: nowrap;
}
.chart-tip {
  position: absolute; z-index: 5; pointer-events: none; opacity: 0;
  transform: translate(-50%, -114%); transition: opacity .12s;
  background: var(--ink); color: #fff; font-size: .76rem; line-height: 1.45;
  padding: 7px 10px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.chart-tip.show { opacity: 1; }
.chart-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line-2);
  font-size: .8rem; color: var(--ink-2); flex-wrap: wrap; }
.linkish { color: var(--brand-dark); font-weight: 620; border-bottom: 1px solid var(--brand-tint-2); }
.data-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: .84rem; }
.data-table th, .data-table td { text-align: right; padding: 7px 8px; border-bottom: 1px solid var(--line-2); }
.data-table th:first-child, .data-table td:first-child { text-align: left; }
.data-table th { color: var(--ink-2); font-weight: 620; }
.table-wrap { overflow-x: auto; }
details.table-toggle[open] summary { margin-bottom: 4px; }
details.table-toggle summary { cursor: pointer; color: var(--brand-dark); font-weight: 620; font-size: .8rem; }

/* ---------- 작동 방식 ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy); color: #fff; font-weight: 720; font-size: 1rem; margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: .93rem; }
.step::after {
  content: ""; position: absolute; top: 28px; left: 52px; right: -12px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }

/* ---------- 보안 ---------- */
.security { background: var(--navy); color: #fff; }
.security h2 { color: #fff; }
.security .lede { color: #a9c0d8; }
.sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sec-card {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 22px;
}
.sec-card h3 { font-size: 1.02rem; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.sec-card p { color: #a9c0d8; font-size: .91rem; }
.sec-ico { width: 32px; height: 32px; border-radius: 9px; flex: none;
  background: rgba(42,120,214,.26); display: grid; place-items: center; color: #9fcaf7; }
.sec-note { margin-top: 26px; font-size: .84rem; color: #86a0ba; }

/* ---------- 요금제 ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm); position: relative; height: 100%;
  display: flex; flex-direction: column;
}
.plan.featured { border-color: var(--brand); box-shadow: var(--shadow); }
.plan-badge {
  position: absolute; top: -12px; left: 26px; background: var(--brand); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.plan h3 { font-size: 1.06rem; }
.plan .price { font-size: 2.05rem; font-weight: 760; letter-spacing: -.035em; margin: 14px 0 2px; }
.plan .price small { font-size: .92rem; font-weight: 600; color: var(--ink-2); letter-spacing: 0; }
.plan .price-note { font-size: .82rem; color: var(--ink-3); min-height: 1.4em; }
.plan ul { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 10px; font-size: .9rem; }
.plan li { display: flex; gap: 9px; align-items: flex-start; color: var(--ink-2); }
.plan li svg { flex: none; margin-top: 4px; color: var(--brand); }
.plan .btn { width: 100%; margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-weight: 620; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .answer { padding: 0 8px 22px 0; color: var(--ink-2); font-size: .94rem; }

/* ---------- CTA / 문의 ---------- */
.cta { background: var(--page); }
.cta-box {
  background: linear-gradient(150deg, var(--navy) 0%, #14304f 100%);
  border-radius: 26px; padding: 54px; color: #fff; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center;
}
.cta-box::before {
  content: ""; position: absolute; width: 420px; height: 420px; right: -80px; top: -160px;
  background: radial-gradient(circle, rgba(42,120,214,.42), transparent 68%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; }
.cta-box p { color: #b7cadd; margin-top: 14px; }
.form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 13px 14px; border-radius: 11px; font-family: inherit; font-size: .94rem;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff;
}
.form input::placeholder, .form textarea::placeholder { color: #8ea6bf; }
.form select { color: #fff; }
.form select option { color: var(--ink); }
.form textarea { resize: vertical; min-height: 84px; }
.form .btn { width: 100%; }
.form-msg { font-size: .86rem; min-height: 1.3em; color: #b7cadd; }
.form-msg.ok { color: #86e3b8; } .form-msg.err { color: #ffb3b3; }
.form-agree { font-size: .78rem; color: #8ea6bf; }
.form-agree a { border-bottom: 1px solid rgba(255,255,255,.28); }

/* ---------- 푸터 ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 54px 0 40px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.footer-brand { max-width: 330px; }
.footer-brand p { color: var(--ink-2); font-size: .88rem; margin-top: 12px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: .84rem; color: var(--ink-3); font-weight: 650; margin-bottom: 12px; letter-spacing: .02em; }
.footer-col a { display: block; font-size: .89rem; color: var(--ink-2); padding: 5px 0; }
.footer-col a:hover { color: var(--brand-dark); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-2);
  font-size: .8rem; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
}

/* ---------- 등장 애니메이션 ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- 반응형 ---------- */
@media (max-width: 1000px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .cta-box { grid-template-columns: 1fr; padding: 40px 32px; }
}
@media (max-width: 880px) {
  section { padding: 72px 0; }
  .pain-grid, .steps, .plans, .sec-grid { grid-template-columns: 1fr; }
  .pillar { grid-template-columns: 1fr; gap: 36px; }
  .pillar.reverse .pillar-media { order: 0; }
  .pillar + .pillar { margin-top: 72px; }
  .step::after { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 15px 16px; }
  .stat .value { font-size: 1.5rem; }
  .chart { grid-template-columns: repeat(13, 1fr); gap: 1px; height: 160px; }
  .bar-col .xlabel { font-size: .6rem; }
  .cta-box { padding: 32px 22px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .phone { width: 262px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* 차트 플롯 영역(가로 기준선용) — x축 라벨 공간 24px 을 제외한 실제 그리는 영역 */
.chart .plot { position: absolute; top: 0; bottom: 24px; left: 0; right: 0; pointer-events: none; }
