/* ============================================================
   리포트ON · main.css — Refined production brand landing
   Grounded, high-contrast, minimal decoration
   ============================================================ */

:root {
  /* Brand greens */
  --green-ink:       #0B3D2E;
  --green-900:       #0B3D2E;
  --green-800:       #12533F;
  --green-700:       #177556;
  --green-600:       #009B62;
  --green-500:       #1AAE77;
  --green-100:       #E4F2EB;
  --green-50:        #F2F8F5;

  /* Neutrals */
  --paper:           #FFFFFF;
  --surface:         #F6F7F6;
  --surface-2:       #EEF0EE;
  --line:            #E4E6E4;
  --line-2:          #C9CCC9;
  --ink:             #111513;
  --ink-2:           #232825;
  --muted:           #545955;
  --muted-2:         #878B88;

  --danger:          #C6311F;
  --danger-soft:     #FBEAE7;

  --radius-sm:       6px;
  --radius:          10px;
  --radius-lg:       14px;
  --shadow-1:        0 1px 2px rgba(11,61,46,.04), 0 2px 8px rgba(11,61,46,.04);
  --shadow-2:        0 1px 3px rgba(11,61,46,.06), 0 8px 24px rgba(11,61,46,.06);
  --ease:            cubic-bezier(.22, 1, .36, 1);

  --container:       1200px;
  --container-narrow:840px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
               system-ui, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.mono {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-feature-settings: "zero", "tnum";
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: background .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 18px 32px; font-size: 17px; border-radius: 10px; }
.btn-sm { padding: 11px 18px; font-size: 13px; border-radius: 6px; }
.full-width { width: 100%; }

.btn-primary {
  background: var(--green-600);
  color: #fff;
}
.btn-primary:hover { background: #008256; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,155,98,.22); }
.btn-primary:active { transform: translateY(0); }

.btn-accent {
  background: var(--green-600);
  color: #fff;
}
.btn-accent:hover { background: #008256; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,155,98,.22); }

.btn-outline {
  background: #fff;
  color: var(--green-ink);
  border-color: var(--line-2);
}
.btn-outline:hover { background: var(--green-ink); color: #fff; border-color: var(--green-ink); }

.btn-arrow { transition: transform .18s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-700);
  padding-bottom: 1px;
  border-bottom: 1.5px solid var(--green-700);
  transition: color .18s, border-color .18s, gap .18s;
}
.link-arrow:hover { color: var(--green-ink); border-color: var(--green-ink); gap: 9px; }

/* ── Section scaffolding ── */
section { position: relative; }
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }

.kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--green-700);
  margin-bottom: 16px;
}
.kicker.on-dark { color: var(--green-500); }

.section-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--green-ink);
}
.section-title.on-dark { color: #fff; }
.section-sub {
  margin-top: 16px;
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
}
.section-head.left .section-sub { margin-inline: 0; }

/* ============================================================
   NAV — minimal, high contrast, no blur decoration
   ============================================================ */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.main-nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(11,61,46,.02);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* 공식 로고 SVG (2026-09-04 브랜드 1차 적용) — <img> 로 /assets/brand 참조. 텍스트 워드마크 폰트 규칙 제거 */
.nav-logo { display: inline-flex; align-items: center; line-height: 0; }
.nav-logo img { display: block; width: 123px; height: 24px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--surface); color: var(--green-ink); }

.nav-cta {
  background: var(--green-600);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 18px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #008256 !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 햄버거 drawer — 데스크탑(>820px)에서는 완전 숨김 */
.nav-drawer { display: none; }
body.nav-drawer-open { overflow: hidden; }

/* ============================================================
   §1 HERO — dominant headline, reduced decoration
   Hero on WHITE for maximum readability + contrast.
   ============================================================ */
.hero {
  padding: 132px 0 100px;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #ffffff 60%,
      var(--green-50) 100%
    );

  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 80px;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;   /* text further dominant */
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-600);
}

/* ── Headline: deliberate two-line rhythm ──
   Line 1 (setup): smaller, muted
   Line 2 (punchline "당신을 잊습니다"): dominant, heavy, highlighted */
.hero-headline {
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-headline .hl-line-1 {
  display: block;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.25;
  color: var(--muted);
}
.hero-headline .hl-line-2 {
  display: block;
  font-size: clamp(48px, 7.4vw, 96px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--ink);
  margin-top: 6px;
}
.hero-headline em {
  font-style: normal;
  color: var(--green-ink);
  position: relative;
  display: inline-block;
}
.hero-headline em::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  bottom: 6px;
  height: 14px;
  background: var(--green-100);
  z-index: -1;
  border-radius: 1px;
}

/* Tight coupling: headline → sub (keep them close so eye flows down) */
.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
}
.hero-sub-em {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: -0.015em;
}
.hero-brand-highlight {
  color: var(--green-ink);
  font-weight: 800;
  font-size: 1.18em;
  letter-spacing: -0.02em;

  background:
    linear-gradient(
      transparent 58%,
      rgba(26, 174, 119, 0.16) 58%
    );

  padding: 0 2px;
}

/* Release point: generous gap before CTA, CTA itself weighty */
.hero-cta-group {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.hero-cta-group .btn-lg {
  padding: 22px 40px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,155,98,.12), 0 10px 28px rgba(0,155,98,.22);
}
.hero-cta-group .btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,155,98,.16), 0 16px 36px rgba(0,155,98,.28);
}
.hero-cta-note {
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-cta-note::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green-600);
}

.hero-urgency {
  margin-top: 24px;          /* 44 → 24 (CTA랑 붙이기) */
  margin-bottom: 8px;        /* CTA 바로 위에 붙게 */
  padding-top: 0;            /* 구분선 제거 */
  border-top: none;          /* 구분선 제거 */

  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);       /* 더 진하게 */
  max-width: 520px;
}

/* Hero preview card — reduced dominance: smaller, lower contrast, secondary */
.hero-preview {
  position: relative;
  max-width: 440px;
  margin-left: auto;
  opacity: 0.98;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: none;
}

.hero-preview-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--green-100);
  box-shadow:
    0 8px 24px rgba(11,61,46,.10),
    0 24px 56px rgba(11,61,46,.12);
}

.mock-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.mock-logo {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--green-ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
}
.mock-header-text { flex: 1; }
.mock-title { font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.mock-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--muted-2);
  margin-top: 2px;
}
.mock-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-100);
  padding: 3px 8px;
  border-radius: 4px;
}

.mock-body { padding: 20px; }
.mock-region-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.mock-headline-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.mock-price {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.mock-price small { font-size: 14px; color: var(--muted); font-weight: 600; margin-left: 3px; }
.mock-delta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--danger);
  background: var(--danger-soft);
  padding: 3px 8px;
  border-radius: 4px;
}

.mock-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  height: 56px;
  margin-bottom: 16px;
}
.mock-bar {
  flex: 1;
  height: 100%;
  background: #EAF4EF;
  border-radius: 3px 3px 0 0;
  position: relative;
  overflow: hidden;
}
.bar-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: var(--h, 50%);
  background: rgba(0, 155, 98, 0.16);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: fillWave 4.8s ease-in-out infinite;
}
.mock-bar:nth-child(1) .bar-fill { background: rgba(0, 155, 98, 0.12); }
.mock-bar:nth-child(2) .bar-fill { background: rgba(0, 155, 98, 0.14); }
.mock-bar:nth-child(3) .bar-fill { background: rgba(0, 155, 98, 0.16); }
.mock-bar:nth-child(4) .bar-fill { background: rgba(0, 155, 98, 0.18); }
.mock-bar:nth-child(5) .bar-fill { background: rgba(0, 155, 98, 0.20); }
.mock-bar:nth-child(6) .bar-fill { background: rgba(0, 155, 98, 0.24); }
.mock-bar:nth-child(7) .bar-fill { background: var(--green-600); }

.bar-fill.accent {
  background: var(--green-600);
}
.mock-bar:nth-child(1) .bar-fill { animation-delay: 0s; }
.mock-bar:nth-child(2) .bar-fill { animation-delay: 0.3s; }
.mock-bar:nth-child(3) .bar-fill { animation-delay: 0.6s; }
.mock-bar:nth-child(4) .bar-fill { animation-delay: 0.9s; }
.mock-bar:nth-child(5) .bar-fill { animation-delay: 1.2s; }
.mock-bar:nth-child(6) .bar-fill { animation-delay: 1.5s; }
.mock-bar:nth-child(7) .bar-fill { animation-delay: 1.8s; }

@keyframes fillWave {
  0%   { transform: scaleY(0.72); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0.72); }
}

.mock-bar.accent { background: var(--green-600); }

.mock-row-list { display: flex; flex-direction: column; gap: 6px; }
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-2);
  padding: 9px 12px;
  background: var(--surface);
  border-radius: 6px;
}
.mock-row-value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--green-ink);
}

.mock-foot {
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--green-50), #ffffff);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.mock-foot-num { font-weight: 700; color: var(--green-700); }

.hero-sample-link {
  margin-top: 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.hero-sample-link a {
  display: block;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-50);

  border-radius: 0 0 var(--radius-lg) var(--radius-lg);

  transition: all .15s;
}

.hero-sample-link a:hover {
  background: var(--green-100);
  color: var(--green-ink);
}

/* ============================================================
   §1b PRODUCT FLOW VIDEO
   히어로 직후, 실제 서비스가 어떻게 돌아가는지 1컷으로 증명.
   - 좌: CSS 만으로 만든 노트북 목업 + 자동재생 영상
   - 우: 짧고 강한 카피 + 3-step 흐름 + CTA
   - 톤은 현재 랜딩의 미니멀 그린/화이트 유지. 그라디언트/3D 일러스트 사용 X.
   ============================================================ */
.product-flow-video {
  padding: 96px 0;
  background: linear-gradient(180deg, #fff 0%, var(--green-50) 100%);
}

.flow-video-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
}

/* ── 좌측: 노트북 목업 ────────────────────────────────────── */
.laptop-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.laptop-frame {
  position: relative;
  width: 100%;
  background: #1a1f1c;
  border: 1px solid #0e1311;
  border-radius: 14px 14px 8px 8px;
  padding: 22px 14px 14px;
  box-shadow:
    0 28px 60px -28px rgba(11, 61, 46, 0.22),
    0 4px 10px rgba(11, 61, 46, 0.06);
}
/* 카메라 도트 — 상단 베젤 가운데 */
.laptop-frame::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2c3a35;
  box-shadow: inset 0 0 0 1px #0a0e0c;
}

.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--green-ink);
  border-radius: 4px;
  overflow: hidden;
}

.laptop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 약 7% 확대해 영상 좌우 여백을 제거하고 화면을 꽉 채워 몰입감 강화.
     overflow:hidden 인 .laptop-screen 안에서 안전하게 잘림. */
  transform: scale(1.07);
  transform-origin: center center;
  z-index: 2;
  display: block;
}

/* video 가 로드되지 않을 때 노출되는 placeholder. video 가 있으면 z-index 로 가려짐. */
.video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0E2A20 0%, #0B3D2E 60%, #0F4A38 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.video-fallback-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(26, 174, 119, 0.18);
  animation: flowPulse 1.6s ease-in-out infinite;
}
.video-fallback-label {
  white-space: nowrap;
}
@keyframes flowPulse {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%      { transform: scale(1.15); opacity: 1;    }
}

/* 노트북 베이스(키보드/힌지 영역) — 프레임보다 살짝 넓게 */
.laptop-base {
  width: calc(100% + 28px);
  max-width: calc(100% + 28px);
  height: 12px;
  margin-top: -1px;
  background: linear-gradient(180deg, #d6dad7 0%, #b6bbb7 100%);
  border-radius: 0 0 12px 12px;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 4px 10px rgba(11, 61, 46, 0.05);
}
/* 트랙패드 슬롯 — 중앙 작은 음각 */
.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 4px;
  background: #9aa19c;
  border-radius: 0 0 5px 5px;
}

/* ── 신뢰 배지 — "실제 사용 화면" 노트북 좌상단에 띄움 ──────
   "가짜 UI 가 아니라 실제 서비스" 라는 시각적 단서.
   기존 그린 톤만 사용, 과한 효과 없음. */
.video-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(11, 61, 46, 0.06);
}
.video-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 2px rgba(0, 155, 98, 0.18);
  flex-shrink: 0;
}

/* ── 우측: 카피 / 3-step / CTA ──────────────────────────── */
.flow-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.flow-copy .kicker { margin: 0; }
.flow-copy .section-title {
  margin: 0;
  text-align: left;
  margin-inline: 0;
}
.flow-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  letter-spacing: -0.005em;
  max-width: 460px;
}

.flow-points {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  counter-reset: flow-step;
}
.flow-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--green-ink);
  letter-spacing: -0.005em;
  transition: border-color 0.15s, transform 0.15s;
}
.flow-points li:hover {
  border-color: var(--green-100);
  transform: translateX(2px);
}
/* 결과 단어 — 기능 설명 옆에 작은 그린 pill 로 강조해 "결과 느낌" 부여 */
.flow-point-text { flex: 1; min-width: 0; }
.flow-point-result {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 3px 9px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green-700, var(--green-ink));
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.flow-points li::before {
  counter-increment: flow-step;
  content: counter(flow-step);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-ink);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}

.flow-cta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.flow-cta-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: -0.005em;
}

/* ── 반응형: 820px 이하에서는 1열 스택 ──────────────────── */
@media (max-width: 820px) {
  .product-flow-video { padding: 64px 0; }
  .flow-video-grid    { grid-template-columns: 1fr; gap: 36px; }
  .laptop-showcase    { max-width: 560px; margin: 0 auto; }
  .laptop-frame {
    border-radius: 12px 12px 6px 6px;
    padding: 18px 10px 10px;
  }
  .video-badge        { top: -8px; left: 12px; font-size: 11px; padding: 3px 9px; }
  .flow-desc          { font-size: 15px; }
  .flow-points li     { font-size: 13.5px; padding: 12px 14px; gap: 10px; }
  /* 좁은 화면에서 결과 pill 이 넘치지 않도록 살짝 축소 */
  .flow-point-result  { font-size: 11px; padding: 2px 8px; }
}

/* ============================================================
   §2 PROBLEM
   ============================================================ */
.problem { padding: 104px 0; background: var(--surface); }

.checklist {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.check-row {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.check-row:last-child { border-bottom: none; }
.check-row:hover { background: var(--green-50); }
.check-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}
.check-row p {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.check-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.problem-closing {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
  padding: 40px 32px;
  background: var(--green-ink);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.82);
}
.problem-closing p { font-size: 17px; line-height: 1.65; }
.problem-closing-strong {
  margin-top: 14px !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.02em;
}

/* ============================================================
   §3 STATS — flat deep green, no glow
   ============================================================ */
.stats-section {
  padding: 104px 0;
  background: var(--green-ink);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-block {
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-block:last-child { border-right: none; }
.stat-block.accent { background: rgba(255,255,255,0.03); }

.stat-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.stat-big-num {
  font-size: clamp(64px, 8vw, 108px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: #fff;
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  font-feature-settings: "tnum";
}
.stat-block.accent .stat-big-num { color: var(--green-500); }
.stat-unit {
  font-size: 0.26em;
  font-weight: 600;
  margin-left: 6px;
  margin-top: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.02em;
}
.stat-desc-title {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.stat-desc-body {
  font-size: 14.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}
.stat-desc-body strong { color: #fff; font-weight: 700; }

/* ============================================================
   §4 HOW
   ============================================================ */
.how { padding: 104px 0; background: #fff; }
.how-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.step:hover { border-color: var(--line-2); box-shadow: var(--shadow-1); }

.step-badge {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--green-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.step h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.step > p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}
.step-tip {
  margin-top: auto;
  padding: 16px 18px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-tip strong { color: var(--green-ink); font-weight: 700; }
.step-tip span { color: var(--muted); }
.step-tip.step-tip-strong {
  background: var(--green-ink);
  color: #fff;
  border-color: var(--green-ink);
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
}

/* ============================================================
   §5 DEMO
   ============================================================ */
.preview-demo { padding: 104px 0; background: var(--surface); }
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.demo-input-panel .section-head { margin-bottom: 32px; }
.demo-input-panel .section-title { text-align: left; }

.demo-form { display: flex; flex-direction: column; gap: 18px; max-width: 440px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.form-group input,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(0,155,98,.12);
}
.form-group input::placeholder { color: var(--muted-2); font-weight: 400; }
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23545955' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.demo-report-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.demo-report-card.pulse {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(0,155,98,.12), var(--shadow-1);
}
.demo-card-header {
  padding: 20px 24px;
  background: var(--green-ink);
  color: #fff;
}
.demo-card-header strong {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: block;
}
.demo-card-meta {
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.demo-card-body { padding: 26px; }
.demo-region-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-700);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.demo-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  color: var(--ink-2);
  padding: 9px 0;
}
.demo-stat-row strong {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--ink);
}
.demo-stat-row.up strong { color: var(--danger); }
.demo-divider { border: none; border-top: 1px dashed var(--line); margin: 14px 0; }
.demo-deals-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
}
.demo-deals { display: flex; flex-direction: column; gap: 6px; }
.demo-deals li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--ink);
}
.demo-deals li .mono { font-weight: 700; color: var(--green-ink); font-size: 13px; }

.demo-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  background: var(--green-50);
  text-align: center;
}

/* ============================================================
   §6 SCENARIOS
   ============================================================ */
.scenarios { padding: 104px 0; background: #fff; }
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scenario-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.scenario-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-1); }

.scenario-num {
  display: inline-flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-700);
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--green-100);
  width: fit-content;
  text-transform: uppercase;
}
.scenario-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.scenario-scene { font-size: 14px; color: var(--muted); line-height: 1.7; }
.scene-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-2);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.scene-quote {
  border: none;
  margin-top: 10px;
  padding: 14px 16px;
  background: var(--surface);
  border-left: 3px solid var(--green-600);
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  font-weight: 500;
}
.scenario-moral {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.scenario-moral strong { color: var(--green-ink); font-weight: 700; }

/* ============================================================
   §7 TRUST
   ============================================================ */
.trust-section { padding: 104px 0; background: var(--surface); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.trust-item:hover { border-color: var(--line-2); box-shadow: var(--shadow-1); }
.trust-glyph {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  border: 1px solid var(--green-100);
}
.trust-glyph svg { width: 22px; height: 22px; }
.trust-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.4;
}
.trust-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   §8 OBJECTIONS
   ============================================================ */
.objections-section { padding: 104px 0; background: #fff; }
.objection-list {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.objection-item { border-bottom: 1px solid var(--line); }
.objection-item:last-child { border-bottom: none; }

.obj-question {
  display: grid;
  grid-template-columns: 28px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 22px 26px;
  width: 100%;
  text-align: left;
  transition: background .15s;
}
.obj-question:hover { background: var(--green-50); }
.obj-q-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.obj-question p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.obj-toggle {
  width: 20px; height: 20px;
  position: relative;
  justify-self: end;
}
.obj-toggle::before,
.obj-toggle::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--green-ink);
  border-radius: 1px;
}
.obj-toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.obj-toggle::after {
  width: 2px; height: 12px;
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease);
}
.objection-item.open .obj-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.obj-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.obj-answer-inner {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 4px 26px 24px;
}
.obj-a-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.obj-answer p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.obj-answer p:last-child { margin-bottom: 0; }
.obj-answer strong { color: var(--green-ink); font-weight: 700; }

/* ============================================================
   §9 ROI
   ============================================================ */
.roi-section { padding: 72px 0; background: var(--surface); }
.roi-block {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.roi-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--green-ink);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.3;
}
.roi-compare {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: stretch;
}
.roi-col {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: var(--radius);
}
.roi-cost { background: var(--surface); }
.roi-return { background: var(--green-50); border: 1px solid var(--green-100); }
.roi-col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.roi-col-label.cost { color: var(--muted); }
.roi-col-label.return { color: var(--green-700); }
.roi-calc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.roi-total {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cost-total { color: var(--ink); }
.return-total { color: var(--green-700); }
.roi-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-2);
}
.roi-footer-note {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}


/* ============================================================
   §9b PRICING
   ============================================================ */
.pricing { padding: 104px 0; background: #fff; }
.pricing .section-head { margin-bottom: 32px; }

.pricing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 48px; }
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  position: relative;
}
.toggle-pill {
  position: absolute;
  top: 4px; bottom: 4px; left: 4px;
  background: var(--green-ink);
  border-radius: 999px;
  transition: transform .3s var(--ease), width .3s var(--ease);
  z-index: 0;
}
.toggle-opt {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: color .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.toggle-opt.active { color: #fff; }
.badge-save {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--green-600);
  color: #fff;
}
.toggle-opt.active .badge-save { background: var(--green-500); color: var(--green-ink); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.plan-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-1); }
.plan-card.featured {
  background: var(--green-ink);
  color: #fff;
  border-color: var(--green-ink);
}
.plan-card.featured:hover { box-shadow: 0 12px 32px rgba(11,61,46,.18); }

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-600);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 8px;
}
.plan-card.featured .plan-name { color: var(--green-500); }
.plan-tagline {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  min-height: 40px;
  margin-bottom: 20px;
}
.plan-card.featured .plan-tagline { color: rgba(255,255,255,0.7); }
.plan-price {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
}
.plan-card.featured .plan-price { border-color: rgba(255,255,255,0.15); }
.price-amount {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.plan-card.featured .price-amount { color: #fff; }
.price-unit { font-size: 14px; color: var(--muted); font-weight: 600; }
.plan-card.featured .price-unit { color: rgba(255,255,255,0.6); }

.plan-features { display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 24px; }
.plan-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.plan-features li::before {
  width: 16px; height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
}
.plan-features li.yes::before { content: "✓"; background: var(--green-600); color: #fff; }
.plan-features li.no { color: var(--muted-2); }
.plan-features li.no::before { content: ""; background: var(--surface); border: 1px solid var(--line); }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.9); }
.plan-card.featured .plan-features li.no { color: rgba(255,255,255,0.35); }
.plan-card.featured .plan-features li.no::before {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.plan-card .btn { margin-top: auto; }
.plan-card.featured .btn-accent { background: #fff; color: var(--green-ink); }
.plan-card.featured .btn-accent:hover { background: var(--green-500); color: var(--green-ink); }
.plan-note {
  margin-top: 12px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--muted-2);
}
.plan-card.featured .plan-note { color: rgba(255,255,255,0.5); }

/* ============================================================
   §10 REVIEWS
   ============================================================ */
.reviews { padding: 104px 0; background: var(--surface); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.review-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-1); }
.review-stars { color: var(--green-600); font-size: 15px; letter-spacing: 3px; }
.review-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.review-author-block {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.review-author { font-size: 13.5px; font-weight: 700; color: var(--green-ink); }
.review-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted-2);
}

/* ============================================================
   §11 FINAL CTA — flat green block, no glow
   ============================================================ */
.final-cta {
  padding: 120px 0;
  background: var(--green-ink);
  color: #fff;
  text-align: center;
}
.cta-eyebrow {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
}
.cta-title {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.12;
}
.cta-sub { margin-top: 20px; font-size: 17px; color: rgba(255,255,255,0.78); }
.final-cta .btn {
  margin-top: 36px;
  background: #fff;
  color: var(--green-ink);
  padding: 20px 36px;
  font-size: 17px;
}
.final-cta .btn:hover { background: var(--green-500); color: var(--green-ink); }
.cta-note {
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: #0a2e23;
  color: rgba(255,255,255,0.6);
  padding: 56px 0 24px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-logo {
  display: block;
  margin-bottom: 12px;
  line-height: 0;
}
.footer-logo img { display: block; width: 128px; height: 25px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer-email { margin-top: 6px !important; }
.footer-company p,
.footer-links-col p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}
.footer-company strong,
.footer-links-col strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}
.footer-links-col a { transition: color .15s; }
.footer-links-col a:hover { color: var(--green-500); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.footer-bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy,
.footer-links-row {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-links-row a { transition: color .15s; }
.footer-links-row a:hover { color: #fff; }
.footer-links-row span { color: rgba(255,255,255,0.25); }

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 20px;
  background: var(--green-ink);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(11,61,46,.25);
  transition: transform .4s var(--ease);
  max-width: calc(100vw - 32px);
}
.sticky-cta.visible { transform: translate(-50%, 0); }
.sticky-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in { opacity: 1; transform: translate3d(0, 0, 0); }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger].in > *:nth-child(2) { transition-delay: 70ms; }
[data-stagger].in > *:nth-child(3) { transition-delay: 140ms; }
[data-stagger].in > *:nth-child(4) { transition-delay: 210ms; }
[data-stagger].in > *:nth-child(5) { transition-delay: 280ms; }
[data-stagger].in > *:nth-child(6) { transition-delay: 350ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { gap: 48px; }
  .hero-inner { gap: 48px; }
}

@media (max-width: 820px) {
  .container { padding: 0 20px; }
  .hero { padding: 96px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-preview { max-width: 420px; margin: 0 auto; }
  .hero-headline { font-size: clamp(34px, 8vw, 48px); }

  .problem, .how, .preview-demo, .scenarios,
  .trust-section, .objections-section, .reviews, .pricing,
  .stats-section { padding: 72px 0; }
  .final-cta { padding: 88px 0; }
  .roi-section { padding: 56px 0; }
  .roi-block { padding: 32px 20px; }

  .section-head { margin-bottom: 36px; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 40px 24px; }
  .stat-block:last-child { border-bottom: none; }

  .how-track { grid-template-columns: 1fr; gap: 16px; }

  .demo-grid { grid-template-columns: 1fr; gap: 36px; }
  .demo-input-panel .section-title { text-align: left; }
  .demo-form { max-width: 100%; }

  .scenario-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }

  .roi-compare { grid-template-columns: 1fr; gap: 10px; }
  .roi-vs { padding: 6px 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* 모바일 — 기존 inline nav-menu 는 숨기고 drawer 가 대체 */
  .nav-menu, .nav-menu.open { display: none !important; }
  .nav-hamburger { display: flex; }

  /* ── 모바일 햄버거 drawer — "운영센터 패널" 톤 ── */
  .nav-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 200ms ease, visibility 200ms ease;
  }
  .nav-drawer.open { visibility: visible; opacity: 1; }
  .nav-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 61, 46, .42);
    cursor: pointer;
  }
  .nav-drawer-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(88vw, 360px);
    background: #FAF9F6;            /* warm-gray tint — 순백보다 정돈된 패널 느낌 */
    display: flex;
    flex-direction: column;
    padding: 18px 16px calc(20px + env(safe-area-inset-bottom));
    box-shadow: -16px 0 40px -18px rgba(11, 61, 46, .28);
    transform: translateX(100%);
    transition: transform 220ms cubic-bezier(.2, .7, .2, 1);
    overflow-y: auto;
  }
  .nav-drawer.open .nav-drawer-panel { transform: translateX(0); }

  /* Drawer 헤더 — 로고 + 태그라인 + 닫기 X */
  .nav-drawer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 2px 4px 14px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--line);
  }
  .nav-drawer-brand {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    flex: 1;
    min-width: 0;
  }
  .nav-drawer-brand-name { display: block; line-height: 0; }
  .nav-drawer-brand-name img { display: block; width: 123px; height: 24px; }
  .nav-drawer-brand-tag {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: -0.01em;
  }
  .nav-drawer-close {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--ink-2);
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
  }
  .nav-drawer-close:hover,
  .nav-drawer-close:active {
    background: rgba(11, 61, 46, .06);
    color: var(--green-ink);
  }
  .nav-drawer-close svg { width: 22px; height: 22px; display: block; }

  /* 섹션 라벨 + 카드형 리스트 */
  .nav-drawer-section { margin-top: 12px; }
  .nav-drawer-section-label {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin: 0 6px 10px;
  }
  .nav-drawer-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-drawer-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 13px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--ink);
    background: transparent;
    transition: background .15s ease, transform .12s ease;
  }
  .nav-drawer-item:hover,
  .nav-drawer-item:focus-visible {
    background: var(--green-50);
    outline: none;
  }
  .nav-drawer-item:active {
    background: var(--green-50);
    transform: scale(.99);
  }
  .nav-drawer-item-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--green-ink);
    letter-spacing: -0.01em;
  }
  .nav-drawer-item-desc {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.5;
  }

  /* 하단 CTA — 회원가입 / 결제 영역 분리 */
  .nav-drawer-foot {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .nav-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 16px;
    background: var(--green-600);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    border-radius: 12px;
    text-decoration: none;
    transition: background .15s ease, transform .12s ease;
  }
  .nav-drawer-cta:hover { background: #008256; }
  .nav-drawer-cta:active { transform: translateY(1px); }
  .nav-drawer-foot-note {
    margin: 10px 0 0;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: -0.01em;
  }

  .check-row { grid-template-columns: 40px 1fr 28px; padding: 18px 16px; gap: 14px; }

  .sticky-cta { left: 12px; right: 12px; transform: translate(0, 140%); max-width: none; padding: 8px 8px 8px 16px; }
  .sticky-cta.visible { transform: translate(0, 0); }
  .sticky-cta-text { display: none; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn-lg { width: 100%; }
  .hero-cta-note { justify-content: center; }
}


/* ============================================================
   APPLY / SUCCESS PAGES
   ============================================================ */

.apply-page,
.success-page {
  padding: 112px 0 88px;
  background:
    linear-gradient(180deg, var(--green-50) 0%, #fff 220px);
  min-height: calc(100vh - 220px);
}

.apply-container,
.success-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.apply-container {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  padding: 40px 36px 32px;
}

.apply-header {
  text-align: center;
  margin-bottom: 28px;
}

.apply-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.apply-header h1 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--green-ink);
  margin-bottom: 12px;
}

.apply-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apply-form .form-group {
  gap: 8px;
}

.apply-form label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
}

.required {
  color: var(--danger);
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, background .15s;
}

.apply-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: var(--muted-2);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(0,155,98,.10);
}

.form-error-banner {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #FBEAE7;
  border: 1px solid #F2C9C3;
  color: var(--danger);
  font-size: 14px;
  font-weight: 600;
}

.field-error {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--danger);
  min-height: 18px;
}

.input-error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 4px rgba(198,49,31,.08) !important;
  background: #fffafa;
}

.form-check {
  margin-top: 4px;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

.check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-600);
  flex-shrink: 0;
}

.submit-btn {
  margin-top: 8px;
  min-height: 56px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,155,98,.16);
}

.submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* success */
.success-container {
  max-width: 680px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  padding: 48px 32px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  font-size: 34px;
}

.success-title {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--green-ink);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.success-msg {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 10px;
}

.success-sub {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
}

.success-sub a {
  color: var(--green-700);
  font-weight: 700;
}

.success-btns {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .apply-page,
  .success-page {
    padding: 92px 0 64px;
  }

  .apply-container,
  .success-container {
    padding: 28px 20px;
  }

  .success-btns {
    flex-direction: column;
  }

  .success-btns .btn {
    width: 100%;
  }
}

/* ============================================================
   법적 문서 페이지 (이용약관 / 개인정보처리방침)
   ============================================================ */
.legal-page {
  background: var(--surface, #F6F7F6);
  min-height: 100vh;
  padding: 120px 16px 80px;
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
}

.legal-card {
  background: var(--paper, #fff);
  border: 1px solid var(--line, #E4E6E4);
  border-radius: var(--radius-lg, 14px);
  box-shadow: var(--shadow-1, 0 1px 2px rgba(11,61,46,.04), 0 2px 8px rgba(11,61,46,.04));
  padding: 56px 56px 48px;
}

.legal-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--green-ink, #0B3D2E);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.25;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--muted-2, #878B88);
  margin: 0 0 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line, #E4E6E4);
}

.legal-section {
  margin-top: 32px;
}
.legal-section:first-of-type {
  margin-top: 0;
}

.legal-section h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-ink, #0B3D2E);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.legal-section p {
  font-size: 0.9375rem;
  color: var(--ink-2, #232825);
  line-height: 1.85;
  margin: 0 0 12px;
  word-break: keep-all;
}
.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 8px 0 14px;
  padding-left: 18px;
  list-style: disc;
}
.legal-section ul li {
  font-size: 0.9375rem;
  color: var(--ink-2, #232825);
  line-height: 1.85;
  margin-bottom: 6px;
  word-break: keep-all;
}
.legal-section ul li:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  color: var(--green-ink, #0B3D2E);
  font-weight: 700;
}

.legal-section-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line, #E4E6E4);
}
.legal-section-footer h2 {
  font-size: 1rem;
}
.legal-section-footer ul {
  list-style: none;
  padding-left: 0;
}
.legal-section-footer ul li {
  font-size: 0.875rem;
  color: var(--muted, #545955);
  margin-bottom: 4px;
  line-height: 1.7;
}

/* 모바일 */
@media (max-width: 768px) {
  .legal-page {
    padding: 88px 12px 56px;
  }
  .legal-card {
    padding: 36px 24px 32px;
    border-radius: var(--radius, 10px);
  }
  .legal-title {
    font-size: 1.5rem;
  }
  .legal-section {
    margin-top: 28px;
  }
  .legal-section h2 {
    font-size: 1.0625rem;
  }
  .legal-section p,
  .legal-section ul li {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}
/* ══════════════════════════════════════════════════════
   이번 주 시장 브리핑 — 홈 공개 블로그 최신 3편
   흰 배경 + 상·하단 1px 헤어라인으로만 구분(추가 배경 블록 없음).
   글 수에 따라 1=풀폭 가로형 Featured / 2=2열 / 3+=3열.
   ══════════════════════════════════════════════════════ */
.home-blog {
  padding: 88px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.home-blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.home-blog-head .section-title { margin-bottom: 8px; }
.home-blog-head .section-sub { margin: 0; max-width: 560px; }
.home-blog-more {
  flex: none; font-size: 17px; font-weight: 700; letter-spacing: -.01em;
  color: var(--green-700); text-decoration: none; white-space: nowrap;
}
.home-blog-more:hover { color: var(--green-ink); text-decoration: underline; }

.home-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.home-blog-grid--1 { grid-template-columns: 1fr; }
.home-blog-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.home-blog-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.home-blog-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.home-blog-thumb { display: block; aspect-ratio: 1200 / 630; background: var(--green-ink); }
.home-blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-blog-body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px 20px; flex: 1; }
.home-blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12.5px; }
.home-blog-region { padding: 2px 9px; border-radius: 999px; background: var(--green-100); color: var(--green-ink); font-weight: 600; }
.home-blog-week { color: var(--muted); font-variant-numeric: tabular-nums; }
.home-blog-title { font-size: 17px; line-height: 1.45; font-weight: 700; color: var(--ink); }
.home-blog-card:hover .home-blog-title { color: var(--green-ink); }
.home-blog-desc { font-size: 14px; line-height: 1.6; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.home-blog-date { margin-top: auto; padding-top: 4px; font-size: 12.5px; color: var(--muted-2); }

/* 글이 1개일 때 — 컨테이너 폭을 꽉 채우는 가로형 Featured (오른쪽 빈 공간 없음) */
.home-blog-grid--1 .home-blog-link { flex-direction: row; align-items: stretch; }
.home-blog-grid--1 .home-blog-thumb { flex: 0 0 44%; aspect-ratio: auto; min-height: 260px; }
.home-blog-grid--1 .home-blog-body { justify-content: center; gap: 10px; padding: 32px 36px; }
.home-blog-grid--1 .home-blog-meta { font-size: 13.5px; }
.home-blog-grid--1 .home-blog-title { font-size: 24px; line-height: 1.35; letter-spacing: -.01em; }
.home-blog-grid--1 .home-blog-desc { font-size: 15px; -webkit-line-clamp: 2; max-width: 46ch; }
.home-blog-grid--1 .home-blog-date { margin-top: 6px; padding-top: 0; }

@media (max-width: 1100px) { .home-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 820px) {
  .home-blog { padding: 64px 0; }
  .home-blog-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .home-blog-grid, .home-blog-grid--1, .home-blog-grid--2 { grid-template-columns: 1fr; gap: 18px; }
  /* 모바일에서는 Featured 도 세로형으로 되돌린다 */
  .home-blog-grid--1 .home-blog-link { flex-direction: column; }
  .home-blog-grid--1 .home-blog-thumb { flex: none; aspect-ratio: 1200 / 630; min-height: 0; }
  .home-blog-grid--1 .home-blog-body { padding: 18px 20px 20px; justify-content: flex-start; }
  .home-blog-grid--1 .home-blog-title { font-size: 19px; }
  .home-blog-grid--1 .home-blog-desc { font-size: 14px; -webkit-line-clamp: 3; max-width: none; }
}
