/* ═══════════════════════════════════════════════════════
   LoBit 랜딩 — Figma 99:3 + 모바일 화면 퀄리티 개선판
   웜 에디토리얼 · 세리프 헤드라인 · 테라코타 액센트
   앱 화면: HTML/CSS 실물 UI (컨테이너 쿼리 단위로 스케일)
   ═══════════════════════════════════════════════════════ */
:root {
  --bg: #fbfaf7;
  --bg-warm: #f4eee8;
  --ink: #201c18;
  --ink-2: #706961;
  --line: #eae4dc;
  --line-card: #e7e0d8;
  --hairline: rgba(32, 28, 24, 0.08);
  --accent: #b8482d;
  --accent-soft: #f1e3de;
  --cta-tint: #f1ded7;
  --dark: #1f1a17;
  --dark-card: #2a231f;
  --dark-line: #4b3d35;
  --white: #ffffff;

  --serif: 'Noto Serif KR', 'Noto Sans KR', serif;
  --sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;

  --r-card: 16px;
  --r-card-lg: 24px;
  --r-photo: 22px;
  --r-panel: 26px;
  --r-btn: 13px;

  --shadow-soft: 0 18px 44px -18px rgba(32, 28, 24, 0.2);
  --shadow-card: 0 10px 30px -14px rgba(32, 28, 24, 0.14);
  --shadow-phone: 0 18px 50px rgba(32, 28, 24, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }

.container { max-width: 1256px; margin: 0 auto; padding: 0 32px; }

/* 등장 애니메이션 대상 — JS + 모션 허용 시에만 숨김 */
.anim [data-reveal] { opacity: 0; }
.anim .hero-title .line { opacity: 0; }
.anim .phone--hero-main, .anim .phone--hero-sub, .anim .hero-note { opacity: 0; }
.anim .reel-strip figure { opacity: 0; }

.hero-title, .feature-title { word-break: keep-all; }
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title .char { display: inline-block; white-space: pre; }

/* ═══════════════ 공용 요소 ═══════════════ */
.pill {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
}
.pill--dark { background: var(--dark-card); color: #e8b7a8; }
.pill--on-warm { background: #fff; }
.pill--white { background: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.86rem; font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--r-btn);
  text-decoration: none;
  /* 설계 §5 BUTTON: 200ms outQuad · scale 1.02~1.03 / active .98 */
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s;
}
.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(0.98); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { box-shadow: var(--shadow-card); }
.btn-light { background: var(--white); color: var(--ink); border: 1px solid var(--line-card); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-sm { padding: 11px 22px; font-size: 0.8rem; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.caption-label {
  display: block;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 3px;
}
.note-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; color: var(--accent); }

/* ═══════════════════════════════════════════
   PHONE MOCKUP — 얇은 베젤 · 매트 다크 · 실제 비율
   각 사용처는 --pw(폰 폭)만 지정한다
   ═══════════════════════════════════════════ */
.phone {
  --pw: 300px;
  width: var(--pw);
  padding: calc(var(--pw) * 0.024);
  background: var(--dark);
  border-radius: calc(var(--pw) * 0.148);
  box-shadow: var(--shadow-phone), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.screen {
  container-type: inline-size;
  position: relative;
  background: var(--bg);
  border-radius: calc(var(--pw) * 0.126);
  aspect-ratio: 390 / 790;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
}

/* 상태바 — 절제 */
.scr-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 3.6cqw 6.4cqw 0;
  height: 10cqw;
  font-size: 3.1cqw; font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.scr-status-ic { font-size: 1.9cqw; letter-spacing: 0.4cqw; opacity: 0.75; }
.scr-status--light { position: absolute; inset: 0 0 auto 0; z-index: 5; color: #fff; }

/* 공용 스크린 요소 */
.scr-ava {
  display: block; flex-shrink: 0;
  width: 11cqw; height: 11cqw;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent-soft);
}
.scr-ava img { width: 100%; height: 100%; object-fit: cover; }
.scr-ava--sm { width: 8.8cqw; height: 8.8cqw; }
.scr-ava--user {
  display: grid; place-items: center;
  width: 12cqw; height: 12cqw;
  font-size: 4.4cqw; font-weight: 700;
  color: var(--accent);
}
.scr-head-txt { min-width: 0; line-height: 1.35; }
.scr-head-txt b { display: block; font-size: 3.9cqw; font-weight: 700; }
.scr-head-txt i { display: block; font-style: normal; font-size: 2.9cqw; color: var(--ink-2); }
.scr-label {
  font-size: 2.9cqw; font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 4.5cqw 5.6cqw 2.2cqw;
}

/* ── SCREEN · TODAY ── */
.scr-today-head {
  display: flex; align-items: center; gap: 3.2cqw;
  padding: 2.5cqw 5.6cqw 0;
}
.scr-today-head b { font-size: 4.6cqw; }
.scr-today-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2cqw;
  margin: 4cqw 5.6cqw;
}
.scr-today-stats > div {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4.2cqw;
  padding: 3cqw 3.2cqw;
  line-height: 1.4;
}
.scr-today-stats b { display: block; font-size: 4.1cqw; font-weight: 700; }
.scr-today-stats > div:first-child b { color: var(--accent); }
.scr-today-stats i { font-style: normal; font-size: 2.6cqw; color: var(--ink-2); }
.scr-routines {
  list-style: none;
  flex: 1;
  display: flex; flex-direction: column; justify-content: space-evenly;
  margin: 0 5.6cqw;
}
.scr-routines li {
  display: flex; align-items: center; gap: 3cqw;
  padding: 2.6cqw 0;
  border-top: 1px solid var(--hairline);
}
.scr-routines li:first-child { border-top: none; }
.rt-check {
  display: grid; place-items: center; flex-shrink: 0;
  width: 6.6cqw; height: 6.6cqw;
  border-radius: 50%;
  border: 1px solid var(--line-card);
  background: var(--white);
  font-size: 3cqw; font-weight: 700;
  color: transparent;
}
.scr-routines li.done .rt-check {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--accent);
}
.scr-routines b { font-size: 3.6cqw; font-weight: 500; }
.scr-routines li.done b { font-weight: 700; }
.scr-routines i { margin-left: auto; font-style: normal; font-size: 2.8cqw; color: var(--ink-2); }
.scr-today-cta {
  display: flex; justify-content: space-between; align-items: center;
  margin: 0 5.6cqw;
  background: var(--ink); color: #fff;
  border-radius: 4cqw;
  padding: 3.6cqw 4.6cqw;
  font-size: 3.4cqw; font-weight: 700;
}
.scr-today-foot {
  display: flex; align-items: center; gap: 2.6cqw;
  padding: 3.2cqw 5.6cqw 4.5cqw;
}
.scr-fam { display: flex; }
.scr-fam em {
  display: grid; place-items: center;
  width: 6.4cqw; height: 6.4cqw;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--white);
  font-style: normal; font-size: 2.5cqw; font-weight: 700;
  color: var(--ink-2);
}
.scr-fam em + em { margin-left: -1.6cqw; }
.scr-today-foot i { font-style: normal; font-size: 2.9cqw; color: var(--ink-2); }

/* ── SCREEN · REELS ── */
.scr-reels { background: #17130f; }
.scr-reels-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.scr-reels-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 19, 15, 0.4) 0%, rgba(23, 19, 15, 0) 26%, rgba(23, 19, 15, 0) 52%, rgba(23, 19, 15, 0.62) 100%);
}
.scr-reels-top {
  position: absolute; top: 11.5cqw; left: 5.4cqw; right: 5.4cqw;
  display: flex; align-items: center; gap: 2.8cqw;
  z-index: 2;
}
.scr-reels-top .scr-ava { width: 9.6cqw; height: 9.6cqw; border: 1px solid rgba(255, 255, 255, 0.5); }
.scr-reels-top .scr-head-txt b { color: #fff; font-size: 3.7cqw; }
.scr-reels-top .scr-head-txt i { color: rgba(255, 255, 255, 0.75); font-size: 2.7cqw; }
.scr-template {
  margin-left: auto;
  font-size: 2.5cqw; font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 1.6cqw 3.2cqw;
  white-space: nowrap;
}
.scr-reels-rail {
  position: absolute; right: 4.6cqw; bottom: 40cqw;
  display: grid; gap: 5.4cqw;
  z-index: 2;
  text-align: center;
}
.scr-reels-rail svg { width: 6.6cqw; height: 6.6cqw; fill: #fff; margin: 0 auto; }
.scr-reels-rail i { display: block; font-style: normal; font-size: 2.6cqw; font-weight: 500; color: #fff; margin-top: 0.8cqw; }
.scr-reels-bottom {
  position: absolute; left: 5.4cqw; right: 17cqw; bottom: 7cqw;
  z-index: 2;
}
.scr-reels-caption { font-size: 4.4cqw; font-weight: 700; color: #fff; line-height: 1.4; word-break: keep-all; }
.scr-reels-meta { font-size: 2.8cqw; color: rgba(255, 255, 255, 0.72); margin-top: 1.2cqw; }
.scr-reels-cta {
  display: inline-block;
  margin-top: 3.6cqw;
  background: #fff; color: var(--ink);
  font-size: 3.3cqw; font-weight: 700;
  border-radius: 3.4cqw;
  padding: 2.8cqw 5cqw;
}

/* ── SCREEN · COMMUNITY CARE ── */
.scr-care-head {
  display: flex; align-items: center; gap: 3cqw;
  padding: 2.5cqw 5.6cqw 0;
}
.scr-care-head b { font-size: 4.6cqw; }
.scr-team {
  margin-left: auto;
  font-size: 2.6cqw; font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 1.4cqw 3cqw;
  white-space: nowrap;
}
.scr-animal {
  margin: 4cqw 5.6cqw 0;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 5cqw;
  overflow: hidden;
}
.scr-animal-photo { display: block; height: 36cqw; overflow: hidden; }
.scr-animal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.scr-animal-body { padding: 3.4cqw 4.2cqw 4cqw; }
.scr-animal-body b { font-size: 4.1cqw; }
.scr-chips { display: flex; flex-wrap: wrap; gap: 1.6cqw; margin-top: 2.6cqw; }
.scr-chips span {
  font-size: 2.6cqw; font-weight: 700;
  border-radius: 999px;
  padding: 1.3cqw 2.8cqw;
  background: var(--bg-warm);
  color: var(--ink-2);
}
.scr-chips .ok { background: var(--accent-soft); color: var(--accent); }
.scr-chips .warn { background: #f6ecd4; color: #8a6a1f; }
.scr-zone {
  position: relative;
  margin: 4cqw 5.6cqw 0;
  height: 34cqw;
  background: var(--bg-warm);
  border-radius: 5cqw;
  overflow: hidden;
  display: grid; place-items: center;
}
.scr-zone .ring {
  position: absolute;
  width: 24cqw; height: 24cqw;
  left: calc(50% - 12cqw); top: calc(50% - 12cqw);
  border: 1px solid rgba(184, 72, 45, 0.5);
  border-radius: 50%;
  opacity: 0;
}
.scr-zone-core {
  display: grid; place-items: center; align-content: center; gap: 0.6cqw;
  width: 24cqw; height: 24cqw;
  background: rgba(251, 250, 247, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}
.scr-zone-core b { font-size: 3.1cqw; color: var(--accent); }
.scr-zone-core i { font-style: normal; font-size: 2.5cqw; color: var(--ink-2); }
.scr-note {
  margin: auto 5.6cqw 5cqw;
  padding-top: 3cqw;
  font-size: 2.8cqw; color: var(--ink-2);
  border-top: 1px solid var(--hairline);
}

/* ── SCREEN · FEED ── */
.scr-feed-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 2cqw 5.6cqw 2.8cqw;
}
.scr-feed-head b { font-family: var(--serif); font-size: 4.6cqw; font-weight: 700; }
.scr-feed-head span { font-size: 2.9cqw; color: var(--ink-2); }
.scr-post {
  background: var(--white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.scr-post-top { display: flex; align-items: center; gap: 2.8cqw; padding: 3cqw 5.6cqw; }
.scr-post-top b { font-size: 3.5cqw; }
.scr-post-top i { font-size: 2.8cqw; }
.scr-post-img { display: block; height: 60cqw; overflow: hidden; }
.scr-post-img img { width: 100%; height: 100%; object-fit: cover; }
.scr-post-actions {
  display: flex; align-items: center; gap: 5cqw;
  padding: 3cqw 5.6cqw;
}
.scr-post-actions span {
  display: inline-flex; align-items: center; gap: 1.6cqw;
  font-size: 3.1cqw; font-weight: 500;
}
.scr-post-actions svg { width: 5.2cqw; height: 5.2cqw; fill: var(--ink); }
.scr-save { margin-left: auto; }
.scr-cert {
  display: flex; align-items: center; gap: 3cqw;
  margin: 4cqw 5.6cqw;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4.5cqw;
  padding: 3.4cqw 4.2cqw;
}
.scr-cert-check {
  display: grid; place-items: center; flex-shrink: 0;
  width: 8.4cqw; height: 8.4cqw;
  border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-size: 3.4cqw; font-weight: 700;
}
.scr-cert em { margin-left: auto; font-style: normal; font-size: 3.4cqw; font-weight: 700; color: var(--accent); }
.scr-post--peek { margin-top: auto; border-bottom: none; }
.scr-post-img--peek { height: 22cqw; }

/* ── SCREEN · PROFILE / IMPACT ── */
.scr-prof-head {
  display: flex; align-items: center; gap: 3.2cqw;
  padding: 2.5cqw 5.6cqw 0;
}
.scr-prof-head b { font-size: 4.4cqw; }
.scr-prof-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin: 4cqw 5.6cqw 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.scr-prof-stats span { text-align: center; padding: 2.8cqw 0; line-height: 1.4; }
.scr-prof-stats b { display: block; font-size: 3.8cqw; }
.scr-prof-stats i { font-style: normal; font-size: 2.6cqw; color: var(--ink-2); }
.scr-impact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2cqw;
  margin: 0 5.6cqw;
}
.scr-impact-grid > div {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4cqw;
  padding: 3cqw 2.6cqw;
  line-height: 1.4;
}
.scr-impact-grid b { display: block; font-size: 3.4cqw; font-weight: 700; }
.scr-impact-grid i { font-style: normal; font-size: 2.5cqw; color: var(--ink-2); }
.scr-impact-grid .hl { background: var(--cta-tint); border-color: transparent; }
.scr-impact-grid .hl b { color: var(--accent); }
.scr-results { list-style: none; margin: 0 5.6cqw; flex: 1; }
.scr-results li {
  display: flex; align-items: center; gap: 2.8cqw;
  padding: 2.9cqw 0;
  border-top: 1px solid var(--hairline);
}
.scr-results li:first-child { border-top: none; }
.scr-results .dot {
  width: 2.2cqw; height: 2.2cqw; border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
}
.scr-results b { font-size: 3.4cqw; }
.scr-results i { margin-left: auto; font-style: normal; font-size: 2.9cqw; color: var(--ink-2); }

/* ═══════════════ HEADER ═══════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 36px; height: 84px; }
/* 우측 액션 그룹 — 아이콘이 항상 헤더 최우측에 오도록 고정 */
.nav-actions { display: flex; align-items: center; gap: 14px; margin-left: 36px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 700;
  color: var(--ink); text-decoration: none;
}
.brand--light { color: #fff; }
.brand-mark {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--accent); color: #fff;
}
.brand-mark svg { width: 19px; height: 19px; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: 0.8rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }

/* ═══════════════ HERO ═══════════════ */
.hero { padding-top: 148px; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: center;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: -0.01em;
  margin: 22px 0 20px;
}
.hero-title .line { display: block; }
.hero-desc { color: var(--ink-2); font-size: 1.06rem; line-height: 1.72; max-width: 27rem; margin-bottom: 30px; }
.hero-caption { margin-top: 22px; font-size: 0.76rem; font-weight: 500; color: var(--ink-2); }

.hero-visual { position: relative; height: 730px; }
.hero-photo {
  position: absolute; top: 0; right: 0;
  width: 84%; height: 660px;
  border-radius: var(--r-photo);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-photo img, .photo-slot img, .gallery-photo img, .cta-photo img { width: 100%; height: 100%; object-fit: cover; }

.phone--hero-main {
  --pw: 302px;
  position: absolute; left: 2%; top: 52px; z-index: 3;
  transform: rotate(-2deg);
  will-change: transform;
}
.phone--hero-sub {
  --pw: 272px;
  position: absolute; right: 0; top: 128px; z-index: 2;
  transform: rotate(3deg);
  will-change: transform;
}
.hero-note {
  position: absolute; left: 52%; bottom: 10px; z-index: 4;
  display: grid; gap: 1px;
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: 14px;
  padding: 11px 16px;
  box-shadow: var(--shadow-card);
}
.hero-note-label { font-size: 0.64rem; font-weight: 500; color: var(--ink-2); }
.hero-note b { font-size: 0.92rem; font-weight: 700; }
.hero-note b em { font-style: normal; font-size: 0.7rem; color: var(--accent); margin-left: 4px; }

.principle {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 76px;
  padding-top: 28px; padding-bottom: 8px;
  flex-wrap: wrap;
}
.principle-quote { font-size: 0.9rem; font-weight: 500; color: var(--ink-2); }
.principle-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); }

/* ═══════════════ TRUST STRIP ═══════════════ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 56px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 42px 28px; display: grid; gap: 4px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; }
.trust-item > span:last-child { font-size: 0.8rem; color: var(--ink-2); }

/* ═══════════════ 출시 준비 중 상태 ═══════════════ */
.btn.is-pending {
  cursor: default;
  opacity: 0.45;
  filter: grayscale(0.35);
}
.btn.is-pending:hover, .btn.is-pending:active { transform: none; box-shadow: none; }
.pending-note {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--accent);
}
.pending-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.trust-note {
  padding-top: 0; padding-bottom: 24px;
  font-size: 0.74rem; color: var(--ink-2);
}

/* 법적 문서 — 배포 전 경고 배너 */
.legal-warning {
  display: flex; gap: 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(184, 72, 45, 0.22);
  border-radius: var(--r-card);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.legal-warning-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 0.8rem; font-weight: 700;
}
.legal-warning b { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.legal-warning p { font-size: 0.82rem; line-height: 1.7; color: #7a4a3a; word-break: keep-all; }

/* ═══════════════ PRODUCT INTRO ═══════════════ */
.intro { padding: 104px 0 8px; }
.intro-inner { max-width: 880px; text-align: center; }
.intro .feature-title { margin: 20px 0 18px; }
.intro-desc {
  color: var(--ink-2);
  font-size: 1rem; line-height: 1.85;
  max-width: 46rem; margin: 0 auto;
  word-break: keep-all;
}
.intro-flow {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 44px;
  text-align: left;
}
.intro-flow li {
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-card);
  padding: 22px 24px;
}
.intro-num {
  display: block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.intro-flow b { display: block; font-family: var(--serif); font-size: 1.05rem; font-weight: 700; }
.intro-flow i { font-style: normal; font-size: 0.8rem; color: var(--ink-2); }

/* ═══════════════ FEATURE 공통 ═══════════════ */
.feature { padding: 110px 0; }
.feature--dark { background: var(--dark); color: #fff; }
.feature--warm { background: var(--bg-warm); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}
.feature-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.1vw, 2.75rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.01em;
  margin: 20px 0 16px;
}
.feature-desc { color: var(--ink-2); font-size: 0.98rem; line-height: 1.75; max-width: 28rem; margin-bottom: 34px; }
.feature--dark .feature-desc { color: #b9afa6; }

.benefit-list { list-style: none; display: grid; gap: 14px; }
.benefit-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-card);
  padding: 14px 20px;
}
.check {
  display: grid; place-items: center; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.78rem; font-weight: 700;
}
.benefit-card strong { display: block; font-size: 0.9rem; }
.benefit-card span:not(.check) { font-size: 0.76rem; color: var(--ink-2); }

.feature-note { margin-top: 40px; }
.feature-note .note-label { margin-bottom: 10px; }
.note-text { border-top: 1px solid var(--line); padding-top: 18px; font-size: 0.95rem; font-weight: 700; line-height: 1.7; }

/* Feature 비주얼 — 사진 + 폰 */
.feature-visual { position: relative; }
.photo-slot {
  width: 92%; height: 690px;
  border-radius: var(--r-photo);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.photo-slot--tall { width: 100%; height: 694px; border-radius: var(--r-panel); }
.phone--overlay {
  --pw: 262px;
  position: absolute; right: -1%; top: 90px;
}
.phone--care { --pw: 258px; right: -3%; top: 110px; }
.photo-caption {
  position: absolute; left: 6%; bottom: 44px;
  background: var(--white);
  border-radius: 14px;
  padding: 13px 20px;
  box-shadow: var(--shadow-card);
}
.photo-caption strong { font-size: 0.88rem; }

/* ═══════════════ FEATURE 02 · 다크 ═══════════════ */
.step-list { list-style: none; display: grid; gap: 14px; }
.step-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--dark-card);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-card);
  padding: 15px 22px;
}
.step-num { font-size: 0.76rem; font-weight: 700; color: #e8b7a8; }
.step-card strong { display: block; font-size: 0.9rem; color: #fff; }
.step-card span { font-size: 0.75rem; color: #b9afa6; }

.reels-visual { display: grid; gap: 20px; }
.reel-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.reel-strip figure { margin: 0; }
.reel-strip img { aspect-ratio: 3 / 4.3; object-fit: cover; border-radius: 10px; width: 100%; }
.reel-strip figcaption {
  text-align: center;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
}
.reels-panel {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-panel);
  padding: 32px 32px 26px;
  display: grid; justify-items: center; gap: 20px;
}
.phone--panel { --pw: 296px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); }
.reels-flow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 500;
  color: #b9afa6;
}
.reels-flow em { font-style: normal; color: var(--accent); }
.reels-flow span:first-child, .reels-flow span:last-child { color: #e8d9d1; }

/* ═══════════════ FEATURE 03 · 피드 갤러리 ═══════════════ */
.feed-gallery {
  background: var(--bg-warm);
  border-radius: var(--r-panel);
  height: 680px;
}
.gallery-photo { position: absolute; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); }
.gallery-photo--a { left: 5%; top: 7%; width: 42%; height: 44%; }
.phone--gallery {
  --pw: 268px;
  position: absolute; right: 8%; top: 50%;
  transform: translateY(-50%);
}
.gallery-card {
  position: absolute; left: 7%; bottom: 9%;
  background: var(--white);
  border-radius: 14px;
  padding: 13px 18px;
  box-shadow: var(--shadow-card);
}
.gallery-card strong { display: block; font-size: 0.85rem; }

.index-list { list-style: none; }
.index-list li { padding: 17px 0; border-bottom: 1px solid var(--line); }
.index-list li:first-child { border-top: 1px solid var(--line); }
.index-list strong { display: block; font-size: 0.94rem; }
.index-list span { font-size: 0.78rem; color: var(--ink-2); }

/* ═══════════════ FEATURE 04 · 지역 돌봄 ═══════════════ */
.quote-card {
  margin-top: 36px;
  background: var(--white);
  border-radius: 18px;
  padding: 24px 28px;
  font-size: 0.95rem; font-weight: 700;
  line-height: 1.7;
}

/* ═══════════════ FEATURE 05 · 임팩트 ═══════════════ */
.impact-visual { display: grid; justify-items: center; }
.phone--impact { --pw: 300px; }
.impact-note { margin-bottom: 30px; }
.impact-note-sub { font-size: 0.8rem; color: var(--ink-2); margin-top: 6px; }
.impact-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.impact-stats > div {
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-card);
  padding: 18px 20px;
  display: grid; gap: 2px;
}
.impact-stats strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; }
.impact-stats > div:nth-child(2) strong { color: var(--accent); }
.impact-stats > div > span { font-size: 0.72rem; color: var(--ink-2); }

/* ═══════════════ CAROUSEL ═══════════════ */
.screens { padding: 100px 0 90px; }
.screens-head { text-align: center; margin-bottom: 48px; }
.screens-head .feature-title { margin-bottom: 10px; }
.screens-sub { color: var(--ink-2); font-size: 0.92rem; }

.carousel { overflow: hidden; }
.car-track {
  display: flex; align-items: center; gap: 40px;
  padding: 16px calc(50vw - 115px) 30px;
  width: max-content;
  cursor: grab;
  touch-action: pan-y;
  will-change: transform;
}
.car-track.dragging { cursor: grabbing; }
.car-slide {
  flex-shrink: 0; width: 230px;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
}
.car-slide .phone {
  --pw: 230px;
  margin: 0 auto;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s;
  transform: scale(0.82);
  opacity: 0.55;
  pointer-events: none;
}
.car-slide.near .phone { transform: scale(0.91); opacity: 0.85; }
.car-slide.active .phone { transform: scale(1); opacity: 1; }
.car-slide figcaption { margin-top: 18px; font-size: 0.78rem; font-weight: 500; color: var(--ink-2); }
.car-slide.active figcaption { color: var(--ink); font-weight: 700; }

.car-controls { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 6px; }
.car-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-card);
  background: var(--white); color: var(--ink);
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; padding-bottom: 3px;
  transition: background 0.2s, color 0.2s, transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.car-btn:hover { background: var(--ink); color: #fff; transform: scale(1.03); }
.car-dots { display: flex; gap: 8px; }
.car-dot {
  width: 7px; height: 7px; border-radius: 999px;
  border: none; padding: 0; cursor: pointer;
  background: #d9d0c5;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}
.car-dot.active { width: 22px; background: var(--accent); }

/* ═══════════════ REVIEWS ═══════════════ */
.reviews { padding: 100px 0; }
.reviews-head { text-align: center; margin-bottom: 48px; }
.reviews-head .feature-title { margin-bottom: 10px; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1.06fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.score-card {
  background: var(--ink); color: #fff;
  border-radius: var(--r-card-lg);
  padding: 34px 30px;
  display: grid; align-content: center; gap: 6px;
}
.score-num { font-family: var(--serif); font-size: 3.2rem; font-weight: 700; line-height: 1; }
.score-lead { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; line-height: 1.45; }
.score-stars { color: #ffd86f; font-size: 0.95rem; letter-spacing: 2px; }
.score-sub { font-size: 0.76rem; line-height: 1.7; color: rgba(255, 255, 255, 0.66); margin-top: 8px; }
.review-card p b { display: block; margin-bottom: 6px; font-size: 0.92rem; }
.rv-ava { font-size: 0.72rem; letter-spacing: 0.02em; }
.review-card {
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
}
.review-card p { font-size: 0.88rem; line-height: 1.72; word-break: keep-all; }
.review-card footer { display: flex; align-items: center; gap: 10px; }
.rv-ava {
  display: grid; place-items: center; flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.78rem; font-weight: 700;
}
.review-card footer b { display: block; font-size: 0.82rem; line-height: 1.3; }
.review-card footer i { display: block; font-style: normal; font-size: 0.72rem; color: var(--ink-2); }

/* ═══════════════ FINAL CTA ═══════════════ */
.cta { background: var(--cta-tint); padding: 110px 0; }
.cta .feature-desc { color: #8a7568; }
.cta-visual {
  background: var(--white);
  border-radius: var(--r-panel);
  padding: 30px 34px 34px;
  min-height: 500px;
}
.cta-flow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 22px; }
.cta-photos { position: relative; height: 400px; }
.cta-photo { position: absolute; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); }
.cta-photo--a { left: 0; top: 0; width: 46%; height: 82%; }
.cta-photo--b { right: 0; bottom: 0; width: 44%; height: 78%; }
.cta-chip {
  position: absolute; left: 38%; bottom: 8%; z-index: 2;
  background: var(--ink); color: #fff;
  border-radius: 14px;
  padding: 13px 20px;
  box-shadow: var(--shadow-soft);
}
.cta-chip span { display: block; font-size: 0.66rem; color: rgba(255, 255, 255, 0.7); }
.cta-chip strong { font-family: var(--serif); font-size: 1.1rem; }

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.82); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand p { margin-top: 18px; font-size: 0.82rem; line-height: 1.75; color: rgba(255, 255, 255, 0.6); }
.footer-col { display: grid; gap: 14px; align-content: start; }
.footer-col h4 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.45); margin-bottom: 6px; }
.footer-col a { color: rgba(255, 255, 255, 0.78); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px; padding-bottom: 30px;
  font-size: 0.7rem; color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1080px) {
  .feature-grid { gap: 48px; }
  .phone--hero-main { --pw: 258px; }
  .phone--hero-sub { --pw: 232px; }
  .phone--overlay, .phone--care { --pw: 224px; }
  .phone--gallery { --pw: 232px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  /* 링크가 숨겨져도 액션 그룹은 최우측 유지 */
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; }
  .hero { padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  /* §11 — 모바일 히어로: 폰 1개만 크게 */
  .hero-visual { height: auto; display: grid; justify-items: center; }
  .hero-photo { position: relative; width: 100%; height: 420px; }
  .phone--hero-main {
    --pw: 280px;
    position: relative; left: auto; top: auto;
    margin-top: -300px;
    transform: rotate(0deg);
  }
  .phone--hero-sub { display: none; }
  .hero-note { left: auto; right: 6%; bottom: 40px; }
  .principle { flex-direction: column; gap: 6px; margin-top: 48px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 28px 22px; }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .feature { padding: 72px 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 44px; }
  /* §11 — 카피 → 핵심 폰 → 보조 정보 */
  .feature-visual { order: 2; }
  .feature-copy { order: 1; }
  .photo-slot { width: 100%; height: 460px; }
  .photo-slot--tall { height: 500px; }
  .phone--overlay, .phone--care { --pw: 236px; top: 70px; }
  .feed-gallery { height: 560px; }
  .phone--gallery { --pw: 248px; right: 5%; }
  .gallery-photo--a { width: 40%; height: 36%; }
  .impact-stats { grid-template-columns: 1fr; gap: 10px; }
  .intro { padding-top: 72px; }
  .intro-flow { grid-template-columns: 1fr; gap: 10px; margin-top: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-visual { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .hero-title { font-size: 2.25rem; line-height: 1.4; }
  .btn-row .btn { flex: 1; }
  .hero-photo { height: 340px; }
  .phone--hero-main { --pw: 264px; margin-top: -240px; }
  .reel-strip { gap: 7px; }
  .reel-strip figcaption { font-size: 0.5rem; }
  .reels-panel { padding: 20px 16px 20px; }
  .phone--panel { --pw: 264px; }
  .cta-photos { height: 320px; }
  /* §9 — 모바일 캐러셀: 한 화면 거의 전체 너비, 옆은 가장자리만 */
  .car-track { gap: 18px; padding: 12px calc(50vw - 145px) 24px; }
  .car-slide { width: 290px; }
  .car-slide .phone { --pw: 290px; }
}

/* ═══════════════ MENU BUTTON + DRAWER ═══════════════ */
.menu-btn {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: none; background: transparent;
  color: var(--ink); cursor: pointer;
  border-radius: 12px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.menu-btn:hover { background: var(--bg-warm); }
.menu-btn svg { width: 32px; height: 32px; }

.drawer { position: fixed; inset: 0; z-index: 200; }
.drawer[hidden] { display: none; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(32, 28, 24, 0.38); border: none; padding: 0; cursor: pointer; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--bg);
  padding: 24px 30px 40px;
  overflow-y: auto;
  box-shadow: -24px 0 60px rgba(32, 28, 24, 0.2);
}
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.drawer-group { margin-bottom: 28px; }
.drawer-group h5 {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}
.drawer-group a {
  display: block;
  padding: 10px 0;
  color: var(--ink); text-decoration: none;
  font-size: 0.94rem; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.drawer-group a:hover { color: var(--accent); }
.drawer-cta { margin-top: 6px; width: 100%; }

/* ═══════════════ SUBPAGE (고객지원 · 법적 고지) ═══════════════ */
.subpage-head { padding: 150px 0 36px; }
.subpage-head .feature-title { margin-bottom: 8px; }
.subpage-sub { color: var(--ink-2); font-size: 0.95rem; }

.tabbar { display: flex; gap: 8px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.tab-btn {
  font-family: var(--sans);
  font-size: 0.9rem; font-weight: 700;
  color: var(--ink-2);
  background: none; border: none; cursor: pointer;
  padding: 13px 18px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--ink); border-color: var(--accent); }
.tab-panel { padding: 44px 0 100px; }
.tab-panel[hidden] { display: none; }

/* 고객지원 */
.help-intro {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 40px;
}
.help-intro > div {
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-card);
  padding: 22px 24px;
}
.help-intro b { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.help-intro span { font-size: 0.8rem; color: var(--ink-2); }
.help-intro a { color: var(--accent); text-decoration: none; font-weight: 700; }
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.help-card {
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-card);
  padding: 26px 28px;
}
.help-card h3 { font-family: var(--serif); font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.help-card p { font-size: 0.85rem; color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; }
.help-card a { font-size: 0.82rem; font-weight: 700; color: var(--accent); text-decoration: none; }
.help-urgent {
  grid-column: 1 / -1;
  background: var(--accent-soft);
  border: none;
}
.help-urgent p { color: #8a5544; }

/* FAQ 아코디언 */
.faq-list { display: grid; gap: 12px; max-width: 760px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-card);
  padding: 0 24px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0;
  font-size: 0.93rem; font-weight: 700;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.1rem; font-weight: 500;
  color: var(--accent);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  font-size: 0.87rem; color: var(--ink-2); line-height: 1.75;
  padding: 0 0 20px;
  word-break: keep-all;
}

/* 문의 폼 */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-size: 0.8rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .btn { justify-self: start; border: none; cursor: pointer; }
.contact-form .btn[disabled] { opacity: 0.55; cursor: progress; }
/* 봇 유인용 허니팟 — 사람에게는 보이지 않는다 */
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 0.82rem; line-height: 1.7; color: var(--ink-2); word-break: keep-all; }
.form-status:empty { display: none; }
.form-status.is-ok { color: var(--ink); font-weight: 700; }
.form-status.is-error { color: var(--accent); font-weight: 700; }
.form-note { font-size: 0.75rem; line-height: 1.7; color: var(--ink-2); word-break: keep-all; }
.form-note a { color: var(--ink-2); text-decoration: underline; }
.contact-aside { display: grid; gap: 16px; }
.contact-aside > div {
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-card);
  padding: 22px 24px;
}
.contact-aside b { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.contact-aside p { font-size: 0.8rem; color: var(--ink-2); line-height: 1.7; }
.contact-aside a { color: var(--accent); font-weight: 700; text-decoration: none; }

/* 법적 고지 문서 */
.legal-doc { max-width: 760px; }
.legal-draft {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 22px;
}
.legal-doc h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; margin: 26px 0 8px; }
.legal-doc p, .legal-doc li { font-size: 0.86rem; color: var(--ink-2); line-height: 1.8; word-break: keep-all; }
.legal-doc ul { padding-left: 18px; }
.legal-meta { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.76rem; color: var(--ink-2); }
.legal-doc h4 { font-size: 0.9rem; font-weight: 700; margin: 20px 0 6px; }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 0.8rem; }
.legal-doc th, .legal-doc td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; line-height: 1.6; color: var(--ink-2); word-break: keep-all; vertical-align: top; }
.legal-doc th { font-weight: 600; background: rgba(0, 0, 0, 0.03); white-space: nowrap; }
.legal-doc .table-wrap { overflow-x: auto; }
.legal-summary { border: 1px solid var(--line); padding: 18px 20px; margin: 18px 0 8px; }
.legal-summary h4 { margin: 0 0 10px; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.legal-summary ul { margin: 0; }
.legal-tbd { background: rgba(255, 196, 0, 0.18); padding: 0 4px; border-radius: 3px; font-weight: 500; }

@media (max-width: 880px) {
  .help-intro { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .subpage-head { padding-top: 120px; }
}

/* ═══════════════ REDUCED MOTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 법적 고지 안내 박스 */
.legal-notice { margin: 14px 0 22px; padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--line, #e6e1d8); background: rgba(214, 152, 74, .08);
  font-size: 14px; line-height: 1.75; }
