/* 진료과목 페이지 공통 스타일 */
.info-box {
  background: #F7F9FC;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.info-box .label { font-size: 0.75rem; color: #6F9CE8; font-weight: 700; letter-spacing: 0.05em; }
.cta-banner {
  background: linear-gradient(135deg, #6F9CE8 0%, #4574C9 100%);
  color: white;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  text-align: center;
}
.cta-banner h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta-banner p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta-banner-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cta-banner-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.cta-banner-actions .btn-primary { background: white; color: #6F9CE8; }
.cta-banner-actions .btn-primary:hover { background: #E8F0FF; }
.cta-banner-actions .btn-outline { border: 2px solid white; color: white; }
.cta-banner-actions .btn-outline:hover { background: white; color: #6F9CE8; }

.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6F9CE8;
  font-weight: 700;
}

.numbered-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.numbered-process .step {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.numbered-process .step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #6F9CE8;
  color: white;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.numbered-process .step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.numbered-process .step p { font-size: 0.8rem; color: #4A5568; line-height: 1.5; }

/* ============================================
   카테고리별 테마 시스템
   각 진료과목 카테고리에 distinct visual identity 부여
   ============================================ */

/* ▣ 임플란트 — Primary Blue + 디지털 정밀 톤 */
body.theme-implant .page-hero {
  background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 60%, #6F9CE8 100%);
}
body.theme-implant .page-hero::before {
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(148,183,240,0.20) 0%, transparent 45%);
}
body.theme-implant .section-label,
body.theme-implant .tldr-box { border-left-color: #4574C9; }
body.theme-implant .numbered-process .step .num { background: #4574C9; }
body.theme-implant .check-list li::before { color: #4574C9; }
body.theme-implant .cta-banner {
  background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 100%);
}

/* ▣ 치아교정 — Teal Cyan + 정렬·움직임 톤 */
body.theme-orthodontics .page-hero {
  background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 55%, #6F9CE8 100%);
}
body.theme-orthodontics .page-hero::before {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(148,183,240,0.25) 0%, transparent 45%);
}
body.theme-orthodontics .section-label { color: #2E5BA3 !important; }
body.theme-orthodontics .tldr-box { border-left-color: #4574C9; }
body.theme-orthodontics .numbered-process .step .num { background: #4574C9; }
body.theme-orthodontics .numbered-process .step:hover { border-color: #4574C9; }
body.theme-orthodontics .check-list li::before { color: #4574C9; }
body.theme-orthodontics .cta-banner {
  background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 100%);
}
body.theme-orthodontics .prose-body h3 { color: #4574C9; }
body.theme-orthodontics .faq-item[open] { border-color: #4574C9; }
body.theme-orthodontics .faq-item summary::after { color: #4574C9; }
body.theme-orthodontics .btn-primary,
body.theme-orthodontics .btn-primary-v3 { background: #4574C9; }
body.theme-orthodontics .btn-primary:hover,
body.theme-orthodontics .btn-primary-v3:hover { background: #2E5BA3; }
body.theme-orthodontics .text-primary { color: #4574C9 !important; }

/* ▣ 일반진료 — Sage Green + 자연·보존 톤 */
body.theme-general .page-hero {
  background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 55%, #6F9CE8 100%);
}
body.theme-general .page-hero::before {
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 75% 80%, rgba(148,183,240,0.25) 0%, transparent 45%);
}
body.theme-general .section-label { color: #2E5BA3 !important; }
body.theme-general .tldr-box { border-left-color: #4574C9; }
body.theme-general .numbered-process .step .num { background: #4574C9; }
body.theme-general .numbered-process .step:hover { border-color: #4574C9; }
body.theme-general .check-list li::before { color: #4574C9; }
body.theme-general .cta-banner {
  background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 100%);
}
body.theme-general .prose-body h3 { color: #4574C9; }
body.theme-general .faq-item[open] { border-color: #4574C9; }
body.theme-general .faq-item summary::after { color: #4574C9; }
body.theme-general .btn-primary,
body.theme-general .btn-primary-v3 { background: #4574C9; }
body.theme-general .btn-primary:hover,
body.theme-general .btn-primary-v3:hover { background: #2E5BA3; }
body.theme-general .text-primary { color: #4574C9 !important; }

/* ▣ 심미치료 — Rose / Coral + 미·자신감 톤 */
body.theme-cosmetic .page-hero {
  background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 55%, #6F9CE8 100%);
}
body.theme-cosmetic .page-hero::before {
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 30% 75%, rgba(148,183,240,0.25) 0%, transparent 45%);
}
body.theme-cosmetic .section-label { color: #4574C9 !important; }
body.theme-cosmetic .tldr-box { border-left-color: #4574C9; }
body.theme-cosmetic .numbered-process .step .num { background: #4574C9; }
body.theme-cosmetic .numbered-process .step:hover { border-color: #4574C9; }
body.theme-cosmetic .check-list li::before { color: #4574C9; }
body.theme-cosmetic .cta-banner {
  background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 100%);
}
body.theme-cosmetic .prose-body h3 { color: #4574C9; }
body.theme-cosmetic .faq-item[open] { border-color: #4574C9; }
body.theme-cosmetic .faq-item summary::after { color: #4574C9; }
body.theme-cosmetic .btn-primary,
body.theme-cosmetic .btn-primary-v3 { background: #4574C9; }
body.theme-cosmetic .btn-primary:hover,
body.theme-cosmetic .btn-primary-v3:hover { background: #2E5BA3; }
body.theme-cosmetic .text-primary { color: #4574C9 !important; }

/* ============================================
   페이지별 변형 패턴 (개별 페이지마다 distinct 액센트)
   ============================================ */

/* — IMPLANT 카테고리: 6개 페이지별 서브 패턴 */
body[data-page="implant-system"] .page-hero::after,
body[data-page="implant-general"] .page-hero::after,
body[data-page="implant-navigation"] .page-hero::after,
body[data-page="implant-bonegraft"] .page-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, white);
  pointer-events: none;
}

/* system: 격자 패턴 추가 */
body[data-page="implant-system"] .page-hero {
  background-image:
    linear-gradient(135deg, #2E5BA3 0%, #4574C9 60%, #6F9CE8 100%),
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 60px);
}

/* general: 더 부드러운 그라데이션 */
body[data-page="implant-general"] .page-hero {
  background: linear-gradient(160deg, #1A3F7A 0%, #4574C9 70%, #94B7F0 100%);
}

/* navigation: 디지털/테크 느낌 — 어둠 진하게 + 더 차가운 톤 */
body[data-page="implant-navigation"] .page-hero {
  background: linear-gradient(135deg, #0F1F4D 0%, #1B3470 50%, #4574C9 100%);
}

/* bonegraft: 따뜻한 다크 톤 */
body[data-page="implant-bonegraft"] .page-hero {
  background: linear-gradient(135deg, #3D2E5C 0%, #4574C9 80%);
}

/* — ORTHODONTICS: 2개 페이지별 변형 */
body[data-page="ortho-full"] .page-hero { background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 100%); }
body[data-page="ortho-partial"] .page-hero { background: linear-gradient(180deg, #4574C9 0%, #6F9CE8 100%); }

/* — GENERAL: 4개 페이지별 변형 */
body[data-page="gen-cavity"] .page-hero { background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 100%); }
body[data-page="gen-perio"] .page-hero { background: linear-gradient(180deg, #1B4332 0%, #4574C9 100%); }
body[data-page="gen-wisdom"] .page-hero { background: linear-gradient(135deg, #3D2E5C 0%, #2E5BA3 100%); }
body[data-page="gen-tmj"] .page-hero { background: linear-gradient(135deg, #2E5BA3 0%, #6F9CE8 100%); }

/* — COSMETIC: 3개 페이지별 변형 */
body[data-page="cos-whitening"] .page-hero { background: linear-gradient(180deg, #6F9CE8 0%, #F9A8D4 100%); }
body[data-page="cos-laminate"] .page-hero { background: linear-gradient(135deg, #2E5BA3 0%, #4574C9 100%); }
body[data-page="cos-allceramic"] .page-hero { background: linear-gradient(135deg, #831843 0%, #4574C9 60%, #DB2777 100%); }

/* =====================================================================
   ▣ TREATMENT PAGE COMPONENT SYSTEM (v3 — ONE 스타일)
   심플·큰 여백·풀블리드 이미지·가운데 정렬
   ===================================================================== */
:root {
  --tx-blue: #4574C9;
  --tx-blue-dark: #2F5BAA;
  --tx-blue-soft: #6F9CE8;
  --tx-blue-pale: #E8F0FF;
  --tx-blue-bg: #F6F8FC;
  --tx-cyan: #4FD1E5;
  --tx-navy: #0B2547;
  --tx-dark: #1A2233;
  --tx-body: #4A5568;
  --tx-muted: #8A94A3;
  --tx-line: #E2E8F0;
}

/* 공통 섹션 래퍼 — 큰 수직 여백 */
.tx-section {
  padding: clamp(5rem, 8vw, 8rem) 1.25rem;
}
.tx-section--tight { padding: clamp(3rem, 5vw, 4.5rem) 1.25rem; }
.tx-section--tint { background: var(--tx-blue-bg); }
.tx-section--dark { background: var(--tx-navy); color: white; }
.tx-section--full { padding: 0; }
.tx-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tx-section__inner--narrow { max-width: 920px; }

/* 섹션 헤더 — 영문 작게 (회색) + 점 + 큰 한글 + 부제 */
.tx-head { text-align: center; margin-bottom: 3rem; }
.tx-head__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--tx-muted);
  font-family: 'Pretendard', system-ui, sans-serif;
}
.tx-head__dot {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--tx-blue);
  margin: 0.85rem auto 1.1rem;
}
.tx-head__title {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--tx-dark);
  letter-spacing: -0.03em;
  line-height: 1.3;
}
.tx-head__sub {
  margin-top: 1rem;
  font-size: 0.97rem;
  color: var(--tx-muted);
  line-height: 1.75;
}

/* ━━━━━━ 1. INTRO — 가운데 큰 카피 ━━━━━━ */
.tx-intro__copy {
  margin-top: 2.5rem;
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 600;
  color: var(--tx-dark);
  line-height: 1.55;
  letter-spacing: -0.02em;
  white-space: pre-line;
}
.tx-intro__copy em {
  font-style: normal;
  color: var(--tx-blue);
  font-weight: 700;
}

/* ━━━━━━ 2. DEFINITION — 좌 텍스트 / 우 이미지 (ONE 스타일: 그림자 없음, 보더 얇게) ━━━━━━ */
.tx-def {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  background: white;
  border: 1px solid var(--tx-line);
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (min-width: 900px) {
  .tx-def { grid-template-columns: 1fr 1fr; }
  .tx-def--reverse .tx-def__text { order: 2; }
  .tx-def--reverse .tx-def__img { order: 1; }
}
.tx-def__text { padding: clamp(2rem, 4vw, 3.5rem); }
.tx-def__q {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 700;
  color: var(--tx-dark);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--tx-line);
}
.tx-def__q strong { color: var(--tx-blue); font-weight: 700; }
.tx-def__desc { font-size: 0.95rem; line-height: 1.9; color: var(--tx-body); }
.tx-def__desc p { margin-bottom: 1rem; }
.tx-def__desc p:last-child { margin-bottom: 0; }
.tx-def__desc strong { color: var(--tx-dark); font-weight: 600; }
.tx-def__img {
  background: linear-gradient(135deg, var(--tx-blue-pale), #F8FAFC);
  background-size: cover;
  background-position: center;
  min-height: 280px;
}
@media (max-width: 899px) {
  .tx-def__img { min-height: 240px; order: 2; }
}

/* ━━━━━━ 3. FEATURE BANNER — 풀블리드 사진 위 큰 카피 ━━━━━━ */
.tx-banner {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 1.5rem;
  text-align: center;
  background: #1A2233;
  color: white;
  overflow: hidden;
}
.tx-banner--light {
  background: #F0F4FA;
  color: var(--tx-dark);
}
.tx-banner__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
}
.tx-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,37,71,0.4), rgba(11,37,71,0.6));
  z-index: 1;
}
.tx-banner--light::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(246,248,252,0.85));
}
.tx-banner__copy {
  position: relative; z-index: 2;
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.02em;
  white-space: pre-line;
  max-width: 920px;
  margin: 0 auto;
}
.tx-banner__copy em {
  font-style: normal;
  color: var(--tx-cyan);
  font-weight: 700;
}
.tx-banner--light .tx-banner__copy em { color: var(--tx-blue); }

/* ━━━━━━ 4. CASE GRID — 보더만 있는 심플 박스 (ONE 스타일) ━━━━━━ */
.tx-cases {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .tx-cases--3 { grid-template-columns: repeat(3, 1fr); }
  .tx-cases--4 { grid-template-columns: repeat(4, 1fr); }
}
.tx-case {
  background: white;
  border: 1px solid var(--tx-line);
  border-radius: 0.5rem;
  padding: 0;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.tx-case:hover { border-color: var(--tx-blue); }
.tx-case__img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--tx-blue-pale), #F8FAFC);
  background-size: cover; background-position: center;
}
.tx-case__body {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 1rem;
  background: #FAFBFD;
}
.tx-case__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--tx-line);
  color: var(--tx-blue);
  font-weight: 600;
  font-size: 0.85rem;
}
.tx-case__label {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--tx-dark);
  line-height: 1.45;
  white-space: pre-line;
}

/* ━━━━━━ 5. BENEFITS (3 variants) ━━━━━━ */
.tx-benefits { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .tx-benefits--2 { grid-template-columns: repeat(2, 1fr); }
  .tx-benefits--3 { grid-template-columns: repeat(3, 1fr); }
  .tx-benefits--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .tx-benefits--4 { grid-template-columns: repeat(4, 1fr); }
}

/* variant: icon-text */
.tx-benefits--icon .tx-benefit {
  background: white;
  border: 1px solid var(--tx-line);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s ease;
}
.tx-benefits--icon .tx-benefit:hover {
  border-color: var(--tx-blue);
  box-shadow: 0 12px 28px rgba(15,30,60,0.08);
}
.tx-benefits--icon .tx-benefit__icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: var(--tx-blue-pale);
  color: var(--tx-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.tx-benefits--icon .tx-benefit__icon--img {
  width: 88px; height: 88px;
  background: transparent;
  overflow: hidden;
}
.tx-benefits--icon .tx-benefit__icon--img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.tx-benefits--icon .tx-benefit__title {
  font-size: 1.05rem; font-weight: 700; color: var(--tx-dark);
  margin-bottom: 0.5rem;
}
.tx-benefits--icon .tx-benefit__sub {
  font-size: 0.88rem; color: var(--tx-body); line-height: 1.7;
}

/* variant: blue-box — ONE 스타일 큰 라운드 박스 */
.tx-benefits--blue .tx-benefit {
  background: linear-gradient(155deg, #5A8AE0 0%, var(--tx-blue) 100%);
  color: white;
  border-radius: 1.25rem;
  padding: 3rem 1.75rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tx-benefits--blue .tx-benefit__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.tx-benefits--blue .tx-benefit__title {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 0.7rem;
  letter-spacing: -0.015em;
}
.tx-benefits--blue .tx-benefit__sub {
  font-size: 0.87rem; opacity: 0.92; line-height: 1.7;
  font-weight: 400;
}

/* variant: numbered */
.tx-benefits--num .tx-benefit {
  background: white;
  border: 1px solid var(--tx-line);
  border-radius: 1rem;
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
}
.tx-benefits--num .tx-benefit__num {
  position: absolute; top: -16px; left: 1.5rem;
  background: var(--tx-blue);
  color: white;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(69,116,201,0.35);
}
.tx-benefits--num .tx-benefit__title {
  font-size: 1.1rem; font-weight: 700; color: var(--tx-dark);
  margin: 0.5rem 0;
}
.tx-benefits--num .tx-benefit__sub {
  font-size: 0.9rem; color: var(--tx-body); line-height: 1.75;
}

/* ━━━━━━ 6. RECOMMENDATION — 알약 리스트 (ONE 스타일: 라이트 그레이) ━━━━━━ */
.tx-rec { display: grid; gap: 0.7rem; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .tx-rec--2 { grid-template-columns: repeat(2, 1fr); gap: 0.7rem 1.25rem; }
}
.tx-rec__item {
  background: #F1F4F9;
  border-radius: 100px;
  padding: 0.9rem 1.5rem 0.9rem 0.7rem;
  display: flex; align-items: center; gap: 1rem;
}
.tx-rec__num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: white;
  color: var(--tx-blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem;
}
.tx-rec__text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tx-dark);
  line-height: 1.5;
}

/* ━━━━━━ 7. PROCESS STEPS — 정사각 사진 + 작은 STEP 라벨 (ONE 스타일) ━━━━━━ */
.tx-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
  .tx-steps { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
}
.tx-step {
  background: transparent;
  text-align: center;
}
.tx-step__img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--tx-blue-pale), #F8FAFC);
  background-size: cover; background-position: center;
  border-radius: 0.5rem;
  border: 1px solid var(--tx-line);
  margin-bottom: 1.25rem;
}
.tx-step__body { padding: 0; }
.tx-step__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: white;
  background: var(--tx-blue);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.tx-step__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tx-dark);
  line-height: 1.4;
  letter-spacing: -0.01em;
  white-space: pre-line;
}
.tx-step__desc {
  font-size: 0.85rem;
  color: var(--tx-muted);
  line-height: 1.65;
  margin-top: 0.5rem;
}

/* ━━━━━━ 8. BEFORE/AFTER ━━━━━━ */
.tx-ba {
  position: relative;
  padding: clamp(3rem, 5vw, 4.5rem) 1rem;
  overflow: hidden;
}
.tx-ba__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900;
  color: var(--tx-blue-pale);
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  white-space: nowrap;
}
.tx-ba__grid {
  position: relative; z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .tx-ba__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tx-ba__grid { grid-template-columns: repeat(3, 1fr); } }

.tx-ba__case {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15,30,60,0.08);
}
.tx-ba__pair { display: grid; grid-template-columns: 1fr 1fr; }
.tx-ba__shot { aspect-ratio: 1/1; position: relative; background: #F8FAFC; background-size: cover; background-position: center; }
.tx-ba__shot::before {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: rgba(11,37,71,0.85);
  color: white; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.25rem 0.55rem; border-radius: 4px;
}
.tx-ba__shot--b::before { content: "BEFORE"; }
.tx-ba__shot--a::before { content: "AFTER"; background: var(--tx-blue); }
.tx-ba__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--tx-muted);
  margin-top: 2rem;
}

/* ━━━━━━ 9. NOTICE — 진한 블루 풀블리드 + 흰 글씨 (ONE 스타일) ━━━━━━ */
.tx-notice {
  background: linear-gradient(160deg, var(--tx-blue) 0%, var(--tx-blue-dark) 100%);
  color: white;
  padding: clamp(4rem, 7vw, 6rem) 1.5rem;
}
.tx-notice--white {
  background: var(--tx-blue-bg);
  color: var(--tx-dark);
}
.tx-notice__inner {
  max-width: 880px;
  margin: 0 auto;
}
.tx-notice__head { text-align: center; margin-bottom: 2.5rem; }
.tx-notice__title {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.tx-notice__sub {
  margin-top: 0.85rem;
  opacity: 0.85;
  font-size: 0.95rem;
}
.tx-notice--white .tx-notice__sub { color: var(--tx-muted); opacity: 1; }
.tx-notice__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 0;
}
.tx-notice__item {
  display: flex;
  gap: 1.25rem;
  padding: 1.15rem 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  align-items: flex-start;
  line-height: 1.65;
  font-size: 0.95rem;
}
.tx-notice__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
.tx-notice--white .tx-notice__item {
  border-top-color: rgba(0,0,0,0.08);
}
.tx-notice--white .tx-notice__item:last-child {
  border-bottom-color: rgba(0,0,0,0.08);
}
.tx-notice__num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  font-weight: 600;
  font-size: 0.78rem;
}
.tx-notice--white .tx-notice__num {
  background: white; color: var(--tx-blue); border: 1px solid var(--tx-line);
}

/* ━━━━━━ 10. POINTS — Point 1~4 작은 라벨 + 짧은 카피 (ONE 스타일) ━━━━━━ */
.tx-points {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .tx-points { grid-template-columns: repeat(2, 1fr); } }
.tx-point {
  background: white;
  border: 1px solid var(--tx-line);
  border-radius: 0.5rem;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.tx-point__label {
  flex-shrink: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--tx-blue);
  letter-spacing: -0.005em;
}
.tx-point__text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tx-dark);
  line-height: 1.55;
  letter-spacing: -0.015em;
  white-space: pre-line;
}

/* ━━━━━━ 11. CONSULTATION CTA — 다크 네이비 → 블루 풀블리드 ━━━━━━ */
.tx-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--tx-navy) 0%, var(--tx-blue-dark) 70%, var(--tx-blue) 100%);
  color: white;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
}
.tx-cta::before {
  content: ""; position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(79,209,229,0.2), transparent 60%);
  border-radius: 50%;
}
.tx-cta__inner {
  position: relative; z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .tx-cta__inner { grid-template-columns: 1.3fr 1fr; gap: 3rem; }
}
.tx-cta__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--tx-cyan);
  margin-bottom: 0.85rem;
}
.tx-cta__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.tx-cta__desc {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 1.75rem;
}
.tx-cta__phone-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.tx-cta__phone-label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}
.tx-cta__phone-num {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 1.25rem;
}
.tx-cta__btns {
  display: flex; flex-direction: column; gap: 0.65rem;
}
.tx-cta__btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.tx-cta__btn--primary {
  background: white;
  color: var(--tx-blue-dark);
}
.tx-cta__btn--primary:hover { background: var(--tx-blue-pale); }
.tx-cta__btn--ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.tx-cta__btn--ghost:hover { background: rgba(255,255,255,0.12); }

/* ━━━━━━ HERO — 병원소개(greeting) 톤과 동일한 큰 풀블리드 ━━━━━━ */
.tx-hero {
  position: relative;
  min-height: clamp(480px, 62vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 9vw, 7rem) 1.5rem;
  background-color: var(--tx-navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}
.tx-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,30,0.65) 0%, rgba(10,15,30,0.55) 50%, rgba(10,15,30,0.82) 100%);
}
.tx-hero__inner {
  position: relative; z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  color: white;
}
.tx-hero__eyebrow {
  font-size: clamp(0.85rem, 1.05vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  opacity: 0.92;
  margin-bottom: 1.25rem;
}
.tx-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.85rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.3);
}
.tx-hero__eyebrow {
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.tx-hero__sub {
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.005em;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}
.tx-hero__crumb { display: none; }

/* ━━━━━━ SECTION PHOTO BG + OVERLAY ━━━━━━ */
.tx-section--photo {
  position: relative;
  overflow: hidden;
}
.tx-section__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.tx-section__overlay {
  position: absolute; inset: 0;
  z-index: 1;
}
.tx-section--photo > .tx-section__inner {
  position: relative;
  z-index: 2;
}
/* 톤별 오버레이 — 어두운 톤(text 흰색) */
.tx-section__overlay--navy { background: linear-gradient(135deg, rgba(11,37,71,0.88) 0%, rgba(11,37,71,0.7) 100%); }
.tx-section__overlay--blue { background: linear-gradient(135deg, rgba(47,91,170,0.88) 0%, rgba(69,116,201,0.7) 100%); }
.tx-section__overlay--cyan { background: linear-gradient(135deg, rgba(11,37,71,0.7) 0%, rgba(34,156,180,0.55) 100%); }
.tx-section__overlay--rose { background: linear-gradient(135deg, rgba(157,23,77,0.85) 0%, rgba(190,24,93,0.7) 100%); }
.tx-section__overlay--teal { background: linear-gradient(135deg, rgba(14,110,126,0.85) 0%, rgba(18,140,160,0.65) 100%); }
.tx-section__overlay--green { background: linear-gradient(135deg, rgba(45,106,79,0.85) 0%, rgba(64,145,108,0.65) 100%); }
.tx-section__overlay--dark { background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.5) 100%); }
/* 라이트 톤 — text 어두운 색 유지 */
.tx-section__overlay--light { background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(246,248,252,0.85) 100%); }
.tx-section__overlay--paper { background: linear-gradient(180deg, rgba(244,248,252,0.92) 0%, rgba(255,255,255,0.85) 100%); }

/* 어두운 톤일 때 head 텍스트 흰색 처리 */
.tx-section--photo:not(.tx-section--photo-light) .tx-head__title,
.tx-section--photo:not(.tx-section--photo-light) .tx-intro__copy {
  color: white;
}
.tx-section--photo:not(.tx-section--photo-light) .tx-head__sub,
.tx-section--photo:not(.tx-section--photo-light) .tx-head__eyebrow {
  color: rgba(255,255,255,0.85);
}
.tx-section--photo:not(.tx-section--photo-light) .tx-head__dot {
  background: white;
}
.tx-section--photo:not(.tx-section--photo-light) .tx-intro__copy em {
  color: var(--tx-cyan);
  border-bottom-color: rgba(79,209,229,0.4);
}
/* 어두운 톤일 때 rec(알약) 카드 살짝 투명도 */
.tx-section--photo:not(.tx-section--photo-light) .tx-rec__item {
  background: rgba(255,255,255,0.95);
}

/* ━━━━━━ 12. STORY BLOCK — 풀블리드 사진/블루 + 좌·우 split + 번호 리스트 (ONE 시스템 패턴) ━━━━━━ */
.tx-story {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 420px;
}
.tx-story--dark { background: var(--tx-navy); color: #ffffff; }
.tx-story--dark::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(11,37,71,0.92) 0%, rgba(11,37,71,0.78) 60%, rgba(11,37,71,0.55) 100%);
}
.tx-story--dark .tx-story__title,
.tx-story--dark .tx-story__desc,
.tx-story--dark .tx-story__list li { color: #ffffff; }
.tx-story--dark .tx-story__title { text-shadow: 0 2px 14px rgba(0,0,0,0.45); }
.tx-story--blue {
  background: linear-gradient(110deg, var(--tx-blue) 0%, var(--tx-blue-dark) 100%);
  color: #ffffff;
}
.tx-story--blue::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(110deg, rgba(11,37,71,0.18) 0%, rgba(11,37,71,0.05) 100%);
}
.tx-story--blue .tx-story__bg { opacity: 0.22; mix-blend-mode: luminosity; }
.tx-story--blue .tx-story__title,
.tx-story--blue .tx-story__desc,
.tx-story--blue .tx-story__list li { color: #ffffff; }
.tx-story--blue .tx-story__title { text-shadow: 0 2px 14px rgba(0,0,0,0.3); }
.tx-story__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.tx-story__inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) 1.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .tx-story--split .tx-story__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .tx-story--split-r .tx-story__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .tx-story--split-r .tx-story__text { order: 2; }
  .tx-story--split-r .tx-story__photo { order: 1; }
}
.tx-story__eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  opacity: 0.78;
  margin-bottom: 1rem;
}
.tx-story__title {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  white-space: pre-line;
}
.tx-story__desc {
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  opacity: 0.92;
}
.tx-story__list {
  list-style: none; padding: 0; margin: 0;
  counter-reset: storyitem;
  display: grid; gap: 0.55rem;
}
.tx-story__list li {
  padding-left: 1.85rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.75;
  counter-increment: storyitem;
}
.tx-story__list li::before {
  content: counter(storyitem) ".";
  position: absolute; left: 0; top: 0;
  font-weight: 600;
  width: 1.5rem;
  opacity: 0.85;
}
.tx-story__photo {
  position: relative;
  background: rgba(255,255,255,0.06);
  background-size: cover;
  background-position: center;
  min-height: 320px;
  border-radius: 0.4rem;
}

/* ━━━━━━ 13. PHOTOGRID — 사진 + 번호 + 제목 + 텍스트 4 카드 (원케어 임플란트 장점 패턴) ━━━━━━ */
.tx-photogrid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
  .tx-photogrid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
  .tx-photogrid[data-count="5"] { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
  .tx-photogrid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
  .tx-photogrid[data-count="2"] { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
}
.tx-photocard {
  background: white;
  border: 1px solid var(--tx-line);
  border-radius: 0.6rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tx-photocard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15,30,60,0.08);
}
.tx-photocard__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--tx-blue-pale), #F8FAFC);
  background-size: cover;
  background-position: center;
}
.tx-photocard__num {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tx-blue);
  color: white;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.3rem 0.95rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.tx-photocard__body {
  padding: 1.5rem 1.25rem 1.5rem;
}
.tx-photocard__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tx-dark);
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}
.tx-photocard__desc {
  font-size: 0.85rem;
  color: var(--tx-muted);
  line-height: 1.75;
}

/* ━━━━━━ 14. CLOSER (페이지 하단 워터마크 + 사진) — 옵션 ━━━━━━ */
.tx-closer {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 1rem;
  text-align: center;
  overflow: hidden;
  background: white;
}
.tx-closer__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  color: var(--tx-blue-pale);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  opacity: 0.7;
}
.tx-closer__img {
  position: relative; z-index: 1;
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
  aspect-ratio: 16/9;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ━━━━━━ 15. SPLIT — 좌 풀블리드 사진 / 우 텍스트 (또는 반대) ━━━━━━ */
.tx-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 440px;
}
@media (min-width: 900px) {
  .tx-split { grid-template-columns: 1fr 1fr; min-height: 560px; }
  .tx-split--reverse .tx-split__photo { order: 2; }
  .tx-split--reverse .tx-split__text { order: 1; }
}
.tx-split__photo {
  background-color: #1A2233;
  background-size: cover;
  background-position: center;
  min-height: 340px;
}
.tx-split__text {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tx-split__text--tint { background: var(--tx-blue-bg); }
.tx-split__text--dark { background: var(--tx-navy); color: white; }
.tx-split__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--tx-blue);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.tx-split__text--dark .tx-split__eyebrow { color: var(--tx-cyan); }
.tx-split__title {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 700;
  color: var(--tx-dark);
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.tx-split__text--dark .tx-split__title { color: white; }
.tx-split__desc {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--tx-body);
}
.tx-split__desc p { margin-bottom: 0.85rem; }
.tx-split__desc p:last-child { margin-bottom: 0; }
.tx-split__text--dark .tx-split__desc { color: rgba(255,255,255,0.85); }
.tx-split__list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: 0.7rem;
}
.tx-split__list li {
  padding-left: 1.7rem; position: relative;
  font-size: 0.95rem; line-height: 1.65;
  color: var(--tx-dark);
}
.tx-split__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--tx-blue);
}
.tx-split__text--dark .tx-split__list li { color: rgba(255,255,255,0.95); }
.tx-split__text--dark .tx-split__list li::before { background: var(--tx-cyan); }

/* ━━━━━━ 16. STATS — 큰 숫자 4개 가로 ━━━━━━ */
.tx-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--tx-line);
  border-bottom: 1px solid var(--tx-line);
}
@media (min-width: 768px) {
  .tx-stats { grid-template-columns: repeat(4, 1fr); }
}
.tx-stat {
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.5rem) 1rem;
  border-right: 1px solid var(--tx-line);
}
.tx-stat:last-child { border-right: none; }
@media (max-width: 767px) {
  .tx-stat { border-right: 1px solid var(--tx-line); border-bottom: 1px solid var(--tx-line); }
  .tx-stat:nth-child(2n) { border-right: none; }
  .tx-stat:nth-last-child(-n+2):nth-child(odd):nth-last-child(2),
  .tx-stat:last-child { border-bottom: none; }
}
.tx-stat__num {
  font-size: clamp(2.25rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--tx-blue);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.65rem;
  display: flex; align-items: baseline; justify-content: center;
  gap: 0.1em;
}
.tx-stat__num .unit {
  font-size: 0.45em;
  color: var(--tx-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.tx-stat__label {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--tx-dark);
  letter-spacing: -0.01em;
}
.tx-stat__sub {
  font-size: 0.8rem;
  color: var(--tx-muted);
  margin-top: 0.4rem;
}

/* ━━━━━━ 17. QUOTE — 의료진 인용 ━━━━━━ */
.tx-quote {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(3rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, #0B2547 0%, #1B3470 50%, #2F5BAA 100%);
  color: white;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}
.tx-quote::before {
  content: ""; position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(79,209,229,0.18), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
@media (min-width: 900px) {
  .tx-quote { grid-template-columns: 220px 1fr; gap: 3.5rem; }
}
.tx-quote__photo {
  width: 200px; height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  background: #ffffff;
  background-size: cover;
  background-position: center 28%;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.tx-quote__text {
  position: relative;
  z-index: 1;
}
.tx-quote__mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
  color: var(--tx-cyan);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.3rem;
}
.tx-quote__copy {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.018em;
  margin-bottom: 1.75rem;
  white-space: pre-line;
}
.tx-quote__copy em {
  font-style: normal;
  color: var(--tx-cyan);
  font-weight: 700;
}
.tx-quote__author {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.tx-quote__author .role {
  display: block;
  font-weight: 400;
  font-size: 0.88rem;
  opacity: 0.85;
  margin-top: 0.3rem;
}

/* ━━━━━━ 18. TIMELINE — 수직 진행 (좌측 점·선 + 우측 텍스트) ━━━━━━ */
.tx-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 1rem;
}
.tx-timeline::before {
  content: ""; position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--tx-blue) 0%, var(--tx-blue-soft) 100%);
  border-radius: 1px;
}
.tx-tl-item {
  position: relative;
  padding: 0 0 2rem 2.5rem;
}
.tx-tl-item:last-child { padding-bottom: 0; }
.tx-tl-item::before {
  content: ""; position: absolute;
  left: 4px; top: 0.4rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--tx-blue);
  box-shadow: 0 0 0 3px white;
}
.tx-tl-item__step {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--tx-blue);
  margin-bottom: 0.5rem;
}
.tx-tl-item__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tx-dark);
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}
.tx-tl-item__desc {
  font-size: 0.95rem;
  color: var(--tx-body);
  line-height: 1.75;
}

/* ━━━━━━ 19. COMPARE — 2단 비교 ━━━━━━ */
.tx-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}
@media (min-width: 768px) {
  .tx-compare { grid-template-columns: 1fr 1fr; gap: 0; }
}
.tx-compare__side {
  padding: clamp(2rem, 3.5vw, 3rem);
  border-radius: 0.75rem;
  position: relative;
}
.tx-compare__side--neg {
  background: #F1F4F9;
  border: 1px solid var(--tx-line);
}
.tx-compare__side--pos {
  background: linear-gradient(160deg, var(--tx-blue) 0%, var(--tx-blue-dark) 100%);
  color: white;
}
@media (min-width: 768px) {
  .tx-compare__side--neg { border-radius: 0.75rem 0 0 0.75rem; border-right: none; }
  .tx-compare__side--pos { border-radius: 0 0.75rem 0.75rem 0; }
}
.tx-compare__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.tx-compare__side--neg .tx-compare__label {
  background: white;
  color: var(--tx-muted);
  border: 1px solid var(--tx-line);
}
.tx-compare__side--pos .tx-compare__label {
  background: rgba(255,255,255,0.18);
  color: white;
}
.tx-compare__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
.tx-compare__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.65rem;
}
.tx-compare__list li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.65;
}
.tx-compare__side--neg .tx-compare__list li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--tx-muted);
  font-weight: 700;
}
.tx-compare__side--pos .tx-compare__list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--tx-cyan);
  font-weight: 700;
}
.tx-compare__vs {
  display: none;
}
@media (min-width: 768px) {
  .tx-compare__vs {
    display: flex;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 52px; height: 52px;
    background: white;
    border: 1px solid var(--tx-line);
    border-radius: 50%;
    align-items: center; justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--tx-blue);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    letter-spacing: 0.05em;
  }
}

/* ━━━━━━ 20. FAQ — 아코디언 ━━━━━━ */
.tx-faq {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}
.tx-faq__item {
  background: white;
  border: 1px solid var(--tx-line);
  border-radius: 0.6rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.tx-faq__item[open] { border-color: var(--tx-blue); }
.tx-faq__q {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.5rem;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tx-dark);
  letter-spacing: -0.01em;
}
.tx-faq__q::-webkit-details-marker { display: none; }
.tx-faq__q::before {
  content: "Q";
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--tx-blue);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  margin-right: 0.85rem;
  vertical-align: middle;
}
.tx-faq__q::after {
  content: "+";
  position: absolute;
  right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--tx-blue);
  font-weight: 300;
  transition: transform 0.2s ease;
}
.tx-faq__item[open] .tx-faq__q::after {
  content: "−";
}
.tx-faq__a {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--tx-body);
}
.tx-faq__a strong { color: var(--tx-dark); font-weight: 600; }

/* ━━━━━━ 21. POSTER — 가운데 큰 카피 (라이트 톤, 배경 이미지가 있을 때만 다크 처리) ━━━━━━ */
.tx-poster {
  position: relative;
  min-height: clamp(320px, 42vh, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 7vw, 6rem) 1.5rem;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}
/* 배경 이미지가 있을 때만 다크 오버레이 */
.tx-poster[style*="background-image"]::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(11,37,71,0.55) 0%, rgba(11,37,71,0.85) 80%),
    linear-gradient(180deg, rgba(11,37,71,0.55) 0%, rgba(11,37,71,0.75) 100%);
}
.tx-poster[style*="background-image"] .tx-poster__inner { color: #ffffff; }
.tx-poster[style*="background-image"] .tx-poster__copy { color: #ffffff; text-shadow: 0 2px 4px rgba(0,0,0,0.55), 0 4px 22px rgba(0,0,0,0.45); }
.tx-poster[style*="background-image"] .tx-poster__sub { color: rgba(255,255,255,0.95); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.tx-poster[style*="background-image"] .tx-poster__eyebrow {
  color: var(--tx-cyan);
  border-color: rgba(79,209,229,0.4);
  background: rgba(11,37,71,0.35);
}
.tx-poster__inner {
  position: relative; z-index: 1;
  max-width: 880px;
  color: var(--tx-dark);
}
.tx-poster__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--tx-blue);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(111,156,232,0.3);
  border-radius: 100px;
  background: rgba(232,240,255,0.6);
}
.tx-poster__copy {
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  white-space: pre-line;
  color: var(--tx-dark);
}
.tx-poster__copy em {
  font-style: normal;
  color: var(--tx-blue);
  font-weight: 700;
}
.tx-poster__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--tx-body);
  font-weight: 400;
  line-height: 1.7;
  white-space: pre-line;
}

/* 모션 환경 */
@media (prefers-reduced-motion: reduce) {
  .tx-case, .tx-step, .tx-point, .tx-rec__item, .tx-photocard { transition: none; }
}

/* =====================================================================
   ▣ MINIMAL REFRESH v4 (2026-05-18)
   에디토리얼 미니멀: 헤어라인 디바이더, 가벼운 타이포, 여백 우선.
   기존 컴포넌트 위에 톤만 갈아끼우는 오버라이드.
   ===================================================================== */

:root {
  --tx-accent: var(--tx-blue);
  --tx-accent-soft: var(--tx-blue-pale);
  --tx-ink: #111827;
  --tx-ink-soft: #4B5563;
  --tx-line-soft: #ECEFF3;
  --tx-bg-tint: #FAFBFC;
}

/* 카테고리별 서브틀 액센트 (살짝만 다르게) */
body.theme-implant      { --tx-accent: #2F5BAA; --tx-accent-soft: #E8F0FF; --tx-bg-tint: #F7F9FC; }
body.theme-orthodontics { --tx-accent: #4574C9; --tx-accent-soft: #E8F0FF; --tx-bg-tint: #F7F9FC; }
body.theme-cosmetic     { --tx-accent: #4574C9; --tx-accent-soft: #E8F0FF; --tx-bg-tint: #F7F9FC; }
body.theme-general      { --tx-accent: #2E5BA3; --tx-accent-soft: #E8F0FF; --tx-bg-tint: #F7F9FC; }

/* ─── 섹션 베이스 ─── */
body.font-sans .tx-section { padding: clamp(5.5rem, 9vw, 8.5rem) 1.5rem; }
body.font-sans .tx-section--tint { background: var(--tx-bg-tint); }

/* 흰 섹션 연속 시 헤어라인 디바이더 (강조 섹션 사이엔 자동 회피) */
.tx-section + .tx-section:not(.tx-section--photo):not(.tx-section--dark) {
  border-top: 1px solid var(--tx-line-soft);
}

/* ─── HERO: 더 가볍게 ─── */
.tx-hero {
  min-height: clamp(440px, 58vh, 600px);
  padding: clamp(5rem, 9vw, 7.5rem) 1.5rem;
}
.tx-hero::before {
  background:
    linear-gradient(180deg,
      rgba(8,14,28,0.32) 0%,
      rgba(8,14,28,0.28) 45%,
      rgba(8,14,28,0.62) 100%);
}
.tx-hero__inner { max-width: 920px; }
.tx-hero__eyebrow {
  position: relative;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  opacity: 0.85;
  padding-bottom: 1.05rem;
  margin-bottom: 1.6rem;
}
.tx-hero__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0; transform: translateX(-50%);
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.55);
}
.tx-hero__title {
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 16px rgba(0,0,0,0.35);
}
.tx-hero__sub {
  font-weight: 300;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  letter-spacing: 0.005em;
  opacity: 0.92;
  text-shadow: 0 1px 8px rgba(0,0,0,0.32);
}

/* ─── 섹션 헤더: 점 → 헤어라인 ─── */
.tx-head { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.tx-head__eyebrow {
  position: relative;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--tx-accent);
  padding-bottom: 1rem;
}
.tx-head__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0; transform: translateX(-50%);
  width: 32px; height: 1px;
  background: var(--tx-accent);
  opacity: 0.55;
}
.tx-head__dot { display: none !important; }
.tx-head__title {
  font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  letter-spacing: -0.028em;
  line-height: 1.32;
  color: var(--tx-ink);
  margin-top: 0.6rem;
}
.tx-head__sub {
  margin-top: 0.95rem;
  font-size: 0.95rem;
  color: var(--tx-ink-soft);
  font-weight: 400;
  line-height: 1.8;
}

/* photo 섹션 위에서도 동일하게 헤어라인 유지 (흰색으로) */
.tx-section--photo:not(.tx-section--photo-light) .tx-head__eyebrow { color: rgba(255,255,255,0.92); }
.tx-section--photo:not(.tx-section--photo-light) .tx-head__eyebrow::after { background: rgba(255,255,255,0.7); }

/* ─── INTRO 카피: 가벼운 굵기 ─── */
.tx-intro__copy {
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  letter-spacing: -0.022em;
  line-height: 1.6;
  color: var(--tx-ink);
}
.tx-intro__copy em { color: var(--tx-accent); font-weight: 600; }

/* ─── DEFINITION: 더 가벼운 카드 ─── */
.tx-def {
  border: 1px solid var(--tx-line-soft);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0); /* placeholder */
}
.tx-def__q {
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--tx-ink);
  border-bottom: 1px solid var(--tx-line-soft);
}
.tx-def__q strong { color: var(--tx-accent); }
.tx-def__desc { color: var(--tx-ink-soft); line-height: 1.95; }

/* ─── POSTER: 살짝만 어두운 미니멀 ─── */
.tx-poster { min-height: clamp(360px, 46vh, 520px); }
.tx-poster::before {
  background:
    linear-gradient(180deg,
      rgba(8,14,28,0.5) 0%,
      rgba(8,14,28,0.62) 100%);
}
.tx-poster__copy {
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.32;
}
.tx-poster__eyebrow {
  background: transparent;
  border: none;
  letter-spacing: 0.38em;
  font-weight: 500;
  padding: 0 0 1rem;
  position: relative;
}
.tx-poster__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0; transform: translateX(-50%);
  width: 32px; height: 1px;
  background: rgba(79,209,229,0.65);
}

/* ─── STORY: 더 잔잔하게 ─── */
.tx-story { min-height: 380px; }
.tx-story--dark::before {
  background: linear-gradient(110deg, rgba(11,37,71,0.86) 0%, rgba(11,37,71,0.7) 60%, rgba(11,37,71,0.5) 100%);
}
.tx-story--blue {
  background: linear-gradient(110deg, var(--tx-accent) 0%, color-mix(in srgb, var(--tx-accent) 70%, #000) 100%);
}
.tx-story__title { font-weight: 600; letter-spacing: -0.025em; line-height: 1.32; }
.tx-story__desc { font-weight: 300; line-height: 1.95; opacity: 0.95; }
.tx-story__list li { font-weight: 400; line-height: 1.85; }

/* ─── BENEFITS: 보더 카드 (그림자 없는 미니멀) ─── */
.tx-benefits--icon .tx-benefit {
  border: 1px solid var(--tx-line-soft);
  border-radius: 12px;
  padding: 2.25rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tx-benefits--icon .tx-benefit:hover {
  border-color: var(--tx-accent);
  box-shadow: none;
  transform: translateY(-2px);
}
.tx-benefits--icon .tx-benefit__icon {
  background: var(--tx-accent-soft);
  color: var(--tx-accent);
}
.tx-benefits--icon .tx-benefit__title { font-weight: 600; }
.tx-benefits--blue .tx-benefit { background: var(--tx-accent); }

/* numbered variant: POINT 01~04 카드 (원치과 톤) */
.tx-benefits--num .tx-benefit {
  background: white;
  border: 1px solid var(--tx-line-soft);
  border-radius: 14px;
  padding: 2.5rem 1.75rem 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tx-benefits--num .tx-benefit:hover {
  border-color: var(--tx-accent);
  transform: translateY(-2px);
}
.tx-benefits--num .tx-benefit__num {
  position: absolute; top: -18px; left: 1.75rem;
  background: var(--tx-accent);
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--tx-accent) 35%, transparent);
}
.tx-benefits--num .tx-benefit__num::before { content: "POINT "; opacity: 0.85; font-size: 0.55rem; letter-spacing: 0.1em; margin-right: 0.1rem; display: none; }
.tx-benefits--num .tx-benefit__title { font-weight: 600; letter-spacing: -0.02em; margin-top: 0.25rem; }
.tx-benefits--num .tx-benefit__sub { color: var(--tx-ink-soft); }
.tx-benefits--num.tx-benefits--4 { gap: 1.5rem; }

/* ─── CASE / GRID: 가벼운 보더 ─── */
.tx-case {
  border: 1px solid var(--tx-line-soft);
  border-radius: 10px;
}
.tx-case:hover { border-color: var(--tx-accent); }
.tx-case__num {
  border: 1px solid var(--tx-line-soft);
  color: var(--tx-accent);
  font-weight: 500;
}

/* ─── RECOMMEND: 알약 → 헤어라인 리스트 ─── */
.tx-rec__item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--tx-line-soft);
  border-radius: 0;
  padding: 1.35rem 0.5rem;
  transition: background 0.2s ease;
}
.tx-rec__item:hover { background: var(--tx-bg-tint); }
.tx-rec__num {
  color: var(--tx-accent);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ─── STATS: 가벼운 숫자, 헤어라인 구분 ─── */
.tx-stat__num { font-weight: 600; color: var(--tx-accent); letter-spacing: -0.04em; }
.tx-stat__label { color: var(--tx-ink); font-weight: 500; }
.tx-stat__sub { color: var(--tx-ink-soft); }

/* ─── CTA: 가벼운 그라데이션 ─── */
.tx-cta { background: linear-gradient(135deg, var(--tx-accent) 0%, color-mix(in srgb, var(--tx-accent) 65%, #000) 100%); }

/* ─── SELECTOR: 페이지 차별화 표시 (페이지 인덱스 작은 배지) ─── */
.tx-selector .tx-selector__item--current {
  border-color: var(--tx-accent);
  color: var(--tx-accent);
}

/* ─── 카테고리별 미세 차별화 ─── */
/* implant: shape-square accent (각진 라인) */
body.theme-implant .tx-case,
body.theme-implant .tx-def,
body.theme-implant .tx-benefit { border-radius: 6px; }

/* orthodontics: pill accent (둥근 라인) */
body.theme-orthodontics .tx-case,
body.theme-orthodontics .tx-benefit { border-radius: 16px; }

/* cosmetic: serif eyebrow (보조 폰트 강조) */
body.theme-cosmetic .tx-head__eyebrow,
body.theme-cosmetic .tx-hero__eyebrow,
body.theme-cosmetic .tx-poster__eyebrow {
  font-family: 'Cormorant Garamond', 'Noto Serif KR', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  text-transform: none;
}

/* general: 약간 따뜻한 톤 + 살짝 좁은 라인 */
body.theme-general .tx-head__eyebrow::after,
body.theme-general .tx-hero__eyebrow::after { width: 24px; }

/* ─── 반응형 보정 ─── */
@media (max-width: 768px) {
  body.font-sans .tx-section { padding: clamp(4rem, 11vw, 5.5rem) 1.25rem; }
  .tx-hero { min-height: clamp(360px, 52vh, 460px); }
}

/* ============================================
   톤 통일 (v20260519d) — 이모지 알록달록 방지
   features 아이콘을 회색조 + 흐릿하게 처리해
   카테고리 간 시각 톤 통일
   ============================================ */
.tx-benefits--icon .tx-benefit__icon,
.tx-benefit__icon {
  filter: grayscale(100%) opacity(0.5) brightness(0.85);
  font-size: 1.6rem !important;
}
/* 이미지 아이콘은 원본 색상 유지 + 배경 투명 */
.tx-benefits--icon .tx-benefit__icon--img,
.tx-benefit__icon--img {
  filter: none !important;
  background: transparent !important;
}

/* 임플란트 카테고리 전체 hero — 의사 사진의 얼굴이 잘리지 않도록 background-position 조정 */
body.theme-implant .tx-hero {
  background-position: center 20% !important;
}

/* ============================================
   이미지 영역 PLACEHOLDER 시스템 (v20260519b)
   inline style의 background-image가 없는 경우
   자동으로 회색 박스 + "이미지 영역" 라벨 표시
   ============================================ */
.tx-split__photo:not([style*="background-image"]),
.tx-photocard__img:not([style*="background-image"]) {
  background: #ECEEF2 !important;
  background-image: none !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.tx-split__photo:not([style*="background-image"])::after,
.tx-photocard__img:not([style*="background-image"])::after {
  content: '이미지 영역';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A8B0BA;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.tx-photocard__img:not([style*="background-image"])::after {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

/* hero 배경이 없으면 단색 그라데이션 + 라벨 없음 (heading만 강조) */
.tx-hero:not([style*="background-image"]) {
  background: linear-gradient(135deg, var(--tx-navy, #1A2233) 0%, var(--tx-blue-dark, #4574C9) 100%);
}

/* quote 사진이 없으면 원형 placeholder */
.tx-quote__photo:not([style*="background-image"]),
.tx-quote__photo[style*="url('')"] {
  background: #ECEEF2 !important;
  background-image: none !important;
  position: relative;
}
.tx-quote__photo:not([style*="background-image"])::after {
  content: '사진';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A8B0BA;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

/* ============================================
   MANIFESTO 섹션 — 펄 그라데이션 + 큰 숫자 약속 리스트
   일반 임플란트 핵심문구 전용 신규 디자인
   ============================================ */
.tx-manifesto {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.95) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 20% 100%, rgba(180,202,234,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(150,180,225,0.35) 0%, transparent 60%),
    linear-gradient(170deg, #E8EEF7 0%, #D7E1F0 50%, #C7D4EA 100%);
  color: #1A2A45;
  position: relative;
  overflow: hidden;
}
/* 미세한 노이즈 텍스처로 프리미엄 종이 질감 */
.tx-manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.16 0 0 0 0 0.28 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* 우측 상단 글로우 액센트 */
.tx-manifesto::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 65%);
  pointer-events: none;
}
.tx-manifesto .tx-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}
.tx-manifesto__head {
  text-align: center;
  margin-bottom: 4.5rem;
}
.tx-manifesto__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #4A6B9E;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  position: relative;
}
.tx-manifesto__eyebrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #4A6B9E 50%, transparent 100%);
}
.tx-manifesto__heading {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: #1A2A45;
  margin: 0 0 1rem;
}
.tx-manifesto__sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(26,42,69,0.7);
  max-width: 620px;
  margin: 0 auto;
}
.tx-manifesto__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tx-manifesto__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.75rem 0;
  border-top: 1px solid rgba(74,107,158,0.18);
  position: relative;
}
.tx-manifesto__row:last-child {
  border-bottom: 1px solid rgba(74,107,158,0.18);
}
.tx-manifesto__row::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 48px;
  height: 1px;
  background: #1A2A45;
}
.tx-manifesto__num {
  font-size: clamp(3.2rem, 6.5vw, 5rem);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(26,42,69,0.85);
  text-stroke: 1px rgba(26,42,69,0.85);
  line-height: 1;
  font-feature-settings: "tnum";
  transition: -webkit-text-stroke-color 0.3s ease;
}
.tx-manifesto__row:hover .tx-manifesto__num {
  color: #1A2A45;
  -webkit-text-stroke-color: transparent;
}
.tx-manifesto__body {
  padding-left: 1.75rem;
  border-left: 1px solid rgba(74,107,158,0.25);
}
.tx-manifesto__title {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: #1A2A45;
  margin: 0 0 0.7rem;
}
.tx-manifesto__desc {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(40,55,80,0.78);
  margin: 0;
  max-width: 580px;
}

@media (max-width: 768px) {
  .tx-manifesto__head { margin-bottom: 3rem; }
  .tx-manifesto__row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  .tx-manifesto__num { font-size: 3rem; }
  .tx-manifesto__body {
    padding-left: 0;
    border-left: none;
    padding-top: 0.25rem;
  }
}
