/* ============================================================
   Sellflow homepage — "가장 안전한 쿠팡 자동화"
   컬러 사용 비율: 네이비 50 / 클라우드 30 / 틸 15 / 민트 5
   틸(--teal)은 버튼·링크·진행 표시에만, 민트(--mint)는 하이라이트 한 점에만.
   전환은 ease-out 200~300ms만 사용 (바운스/플래시/글로시 금지).
   ============================================================ */

:root {
  /* 컬러 */
  --navy: #0C2340;        /* 브릿지 네이비 — 주조, 다크 섹션 배경 */
  --navy-2: #143458;      /* 딥 스틸 — 카드, 면 분할 */
  --teal: #17B8A6;        /* 플로우 틸 — 버튼, 링크, 진행 표시에만 */
  --mint: #6FE3D6;        /* 미스트 민트 — 하이라이트 한 점에만 */
  --cloud: #F1F7F8;       /* 클라우드 — 라이트 섹션 배경, 여백 */
  --ink: #1B2733;         /* 본문 텍스트 (라이트 배경) */
  --muted: #5E6E7D;
  /* 시그널 (UI 상태 전용) */
  --ok: #178A5B; --warn: #C88A1F; --error: #C04545;

  /* 파생 (다크 섹션 텍스트/보더) */
  --text-on-dark: #DCE6EC;
  --strong-on-dark: #FFFFFF;
  --muted-on-dark: #93A6B7;
  --line-on-dark: rgba(220, 230, 236, 0.14);
  --line-on-light: rgba(12, 35, 64, 0.12);
  --card-on-dark: rgba(20, 52, 88, 0.55);

  --radius: 14px;
  --max-width: 1120px;
  --ease: cubic-bezier(0, 0, 0.2, 1); /* ease-out */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: var(--text-on-dark);
  background: var(--navy);
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(23, 184, 166, 0.3);
  color: #fff;
}

img {
  max-width: 100%;
}

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

/* 스킵 네비게이션 */
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--navy-2);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* ── Header ─────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 35, 64, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-on-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--strong-on-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: block;
  margin-right: 10px;
}

.logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--muted-on-dark);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--strong-on-dark);
}

/* ── Buttons ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease),
    color 0.2s var(--ease), transform 0.2s var(--ease);
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
}

.btn-primary:hover {
  background: #14A594;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--line-on-dark);
  color: var(--text-on-dark);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(220, 230, 236, 0.4);
  color: var(--strong-on-dark);
}

.nav .btn {
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: 9px;
}

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
  color: var(--navy);
}

/* ── 섹션 공통 ─────────────────────────── */
section {
  padding: 96px 0;
  scroll-margin-top: 72px;
}

/* 다크/라이트 교차 배치 */
.sec-dark {
  background: var(--navy);
  color: var(--text-on-dark);
}

.sec-light {
  background: var(--cloud);
  color: var(--ink);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--muted-on-dark);
}

.sec-light .eyebrow {
  color: var(--muted);
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--strong-on-dark);
}

.sec-light .section-head h2 {
  color: var(--navy);
}

.section-head p {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted-on-dark);
}

.sec-light .section-head p {
  color: var(--muted);
}

/* ── Hero ─────────────────────────── */
.hero {
  /* hero-bridge.webp: 새벽의 대교 + 틸 광선 5노드 (이미지 미배치 시 네이비 그라디언트만 렌더) */
  background:
    linear-gradient(180deg, rgba(12, 35, 64, 0.78) 0%, rgba(12, 35, 64, 0.9) 70%, var(--navy) 100%),
    url("../images/brand/hero-bridge.webp") center / cover no-repeat,
    var(--navy);
  color: var(--text-on-dark);
  padding: 120px 0 96px;
  text-align: center;
}

.hero .badge {
  display: inline-block;
  border: 1px solid var(--line-on-dark);
  background: rgba(20, 52, 88, 0.5);
  color: var(--text-on-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.28;
  margin-bottom: 22px;
  color: var(--strong-on-dark);
}

/* 민트 하이라이트 — 사이트 전체에서 이 한 점에만 사용 */
.hero h1 em {
  font-style: normal;
  color: var(--mint);
}

.hero > .container > p {
  font-size: 1.12rem;
  color: var(--text-on-dark);
  opacity: 0.88;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 신뢰 배지 라인 */
.hero-trust {
  margin-top: 26px;
  font-size: 0.86rem;
  color: var(--muted-on-dark);
  font-variant-numeric: tabular-nums;
}

.hero-trust b {
  color: var(--text-on-dark);
  font-weight: 700;
}

/* ── Problem (라이트, 4카드) ─────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.problem-card:hover {
  border-color: rgba(12, 35, 64, 0.3);
  transform: translateY(-2px);
}

.problem-card .icon {
  width: 26px;
  height: 26px;
  color: var(--navy);
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.93rem;
  color: var(--muted);
}

/* ── Before & After 표 ─────────────────────────── */
.compare {
  max-width: 960px;
  margin: 0 auto;
}

.compare table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  overflow: hidden;
  font-variant-numeric: tabular-nums;
}

.compare th,
.compare td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-on-light);
  font-size: 0.95rem;
}

.compare thead th {
  background: var(--navy);
  color: var(--strong-on-dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: none;
}

.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: none;
}

.compare tbody th {
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  width: 130px;
}

.compare td.before {
  color: var(--muted);
}

.compare td.after {
  color: var(--ink);
  font-weight: 600;
}

.compare td .cell-label {
  display: none;
}

/* ── Pipeline (다크, 플로우 라인 모티프) ─────────────────────────── */
.flow {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* 진행 표시 — 틸 점선 라인 */
.flow::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed rgba(23, 184, 166, 0.45);
}

.flow-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

/* 진행 표시 노드 — 틸 */
.flow-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 800;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.flow-step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--strong-on-dark);
}

.flow-step p {
  font-size: 0.87rem;
  color: var(--muted-on-dark);
}

/* ── Features (라이트, 6카드) ─────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 18px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.feature-card:hover {
  border-color: rgba(12, 35, 64, 0.3);
  transform: translateY(-2px);
}

.feature-card .icon {
  width: 28px;
  height: 28px;
  color: var(--navy);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-card p b {
  color: var(--ink);
}

/* 기능 섹션 상단 쇼케이스 밴드 (2단) */
.features-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto 44px;
}

.features-showcase figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.features-showcase img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.features-showcase figcaption {
  padding: 12px 18px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--muted);
}

/* 다크 섹션 공용 와이드 배너 (파이프라인·안전장치) */
.section-banner {
  max-width: 960px;
  margin: 0 auto 56px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
}

.section-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* ── Safeguards (다크) ─────────────────────────── */

.safeguards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 760px) {
  .safeguards-grid {
    grid-template-columns: 1fr;
  }
}

.safeguard-card {
  background: var(--card-on-dark);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.safeguard-card:hover {
  border-color: rgba(220, 230, 236, 0.32);
  transform: translateY(-2px);
}

.safeguard-card .icon {
  width: 28px;
  height: 28px;
  color: var(--text-on-dark);
  margin-bottom: 18px;
}

.safeguard-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--strong-on-dark);
  letter-spacing: -0.01em;
}

.safeguard-card p {
  color: var(--muted-on-dark);
  font-size: 0.94rem;
}

/* ── 아키텍처 (라이트, 3컬럼) ─────────────────────────── */
.arch {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.arch-col {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.arch-col .icon {
  width: 28px;
  height: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.arch-col h3 {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 14px;
}

.arch-col ul {
  list-style: none;
}

.arch-col li {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 6px 0 6px 18px;
  position: relative;
}

.arch-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-2);
}

.arch-arrow {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 1.3rem;
  font-weight: 700;
  user-select: none;
}

/* ── And more (라이트, 컴팩트 5그리드) ─────────────────────────── */
.more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.more-card {
  background: #fff;
  border: 1px solid var(--line-on-light);
  border-radius: 12px;
  padding: 24px 22px;
  transition: border-color 0.2s var(--ease);
}

.more-card:hover {
  border-color: rgba(12, 35, 64, 0.3);
}

.more-card .icon {
  width: 22px;
  height: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.more-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.more-card p {
  font-size: 0.87rem;
  color: var(--muted);
}

/* ── 지원 마켓 (다크) ─────────────────────────── */
.markets {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.market-chip {
  background: var(--card-on-dark);
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.market-chip:hover {
  border-color: rgba(220, 230, 236, 0.4);
  color: var(--strong-on-dark);
}

.market-chip.primary {
  border-color: rgba(220, 230, 236, 0.5);
  background: rgba(220, 230, 236, 0.08);
  color: var(--strong-on-dark);
  font-weight: 800;
}

/* ── 정직 FAQ (라이트, 아코디언) ─────────────────────────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line-on-light);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 52px 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  position: relative;
  transition: background-color 0.2s var(--ease);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  background: rgba(12, 35, 64, 0.03);
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.faq details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq .faq-body {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.faq .faq-body b {
  color: var(--ink);
}

/* ── 다운로드 CTA (다크, 텍스트+비주얼 분할) ─────────────────────────── */
.cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  text-align: left;
  background: var(--navy-2);
  border: 1px solid var(--line-on-dark);
  border-radius: 20px;
  padding: 60px 56px;
}

.cta-visual {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
}

.cta-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cta h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--strong-on-dark);
}

.cta p {
  color: var(--muted-on-dark);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.cta .btn-sub {
  display: block;
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--muted-on-dark);
  font-variant-numeric: tabular-nums;
}

/* ── Footer ─────────────────────────── */
footer {
  border-top: 1px solid var(--line-on-dark);
  padding: 52px 0 44px;
  background: var(--navy);
  color: var(--text-on-dark);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.footer-links a {
  color: var(--muted-on-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--strong-on-dark);
}

.footer-links a.strong {
  font-weight: 700;
  color: var(--text-on-dark);
}

.biz-info {
  font-size: 0.82rem;
  color: var(--muted-on-dark);
  line-height: 1.9;
  font-variant-numeric: tabular-nums;
}

.copyright {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--muted-on-dark);
  opacity: 0.75;
  font-variant-numeric: tabular-nums;
}

/* ── 약관/개인정보처리방침 페이지 ─────────────────────────── */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal h1 {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--strong-on-dark);
}

.legal .effective {
  color: var(--muted-on-dark);
  font-size: 0.92rem;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 44px 0 14px;
  padding-top: 8px;
  color: var(--strong-on-dark);
}

.legal h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--strong-on-dark);
}

.legal p {
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.legal ol,
.legal ul {
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.legal li {
  margin-bottom: 6px;
}

.legal ol ul,
.legal ol ol {
  margin-top: 6px;
}

.legal strong {
  color: var(--strong-on-dark);
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}

.legal th,
.legal td {
  border: 1px solid var(--line-on-dark);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.legal th {
  background: rgba(220, 230, 236, 0.07);
  font-weight: 700;
  color: var(--strong-on-dark);
}

.legal .table-wrap {
  overflow-x: auto;
}

.legal .note {
  background: rgba(200, 138, 31, 0.1);
  border: 1px solid rgba(200, 138, 31, 0.4);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #E3B15C;
  margin-bottom: 32px;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .flow {
    flex-direction: column;
    max-width: 420px;
    gap: 28px;
  }

  .flow::before {
    top: 8%;
    bottom: 8%;
    left: 20px;
    right: auto;
    border-top: none;
    border-left: 2px dashed rgba(23, 184, 166, 0.45);
  }

  .flow-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 18px;
    text-align: left;
    padding: 0;
  }

  .flow-step .num {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .arch {
    flex-direction: column;
    max-width: 480px;
  }

  .arch-arrow {
    justify-content: center;
    transform: rotate(90deg);
    padding: 2px 0;
  }

  .cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .cta-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .nav-links a:not(.btn) {
    display: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: 68px 0;
  }

  .hero {
    padding: 88px 0 64px;
  }

  .cta {
    padding: 56px 20px;
  }

  .features-showcase {
    grid-template-columns: 1fr;
  }

  /* Before & After 표 → 카드 스택 변환 */
  .compare table,
  .compare tbody,
  .compare tr,
  .compare th,
  .compare td {
    display: block;
    width: 100%;
  }

  .compare thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  .compare table {
    background: transparent;
    border: none;
    overflow: visible;
  }

  .compare tbody tr {
    background: #fff;
    border: 1px solid var(--line-on-light);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
  }

  .compare tbody th {
    width: 100%;
    background: rgba(12, 35, 64, 0.04);
    padding: 14px 20px;
    border-bottom: 1px solid var(--line-on-light);
    white-space: normal;
    text-align: left;
  }

  .compare td {
    padding: 12px 20px;
    border-bottom: none;
  }

  .compare td:last-child {
    padding-bottom: 18px;
  }

  .compare td .cell-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 3px;
  }

  .compare td.after .cell-label {
    color: var(--navy);
  }
}

/* 접근성: 모션 최소화 선호 시 전환 제거 */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
