/* ==========================================================================
   탕정365한의원 프리미엄 랜딩페이지 메인 스타일시트
   제작: 픽셀디자인 (PICELL DESIGN)
   ========================================================================== */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
  /* Brand Color Palette */
  --navy-dark: #071526;
  --navy-900: #0c213f;
  --navy-800: #14325c;
  --navy-700: #1b427b;
  --blue-primary: #1967d2;
  --blue-hover: #1352aa;
  --blue-light: #e8f2fe;
  --blue-subtle: #f2f7ff;
  
  --teal-500: #0ea5e9;
  --teal-100: #e0f2fe;
  --mint-500: #10b981;
  --mint-100: #d1fae5;
  --amber-500: #f59e0b;
  --amber-100: #fef3c7;
  
  /* Grayscale & Neutrals */
  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --ink-50: #f8fafc;
  --white: #ffffff;

  /* Elevation Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 50px rgba(15, 23, 42, 0.16);
  --shadow-glow: 0 0 24px rgba(25, 103, 210, 0.25);

  /* Layout Constants */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
  color: var(--ink-800);
  background-color: var(--ink-50);
  line-height: 1.65;
  letter-spacing: -0.025em;
  word-break: keep-all;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Header Utility - Typography Rhythm & Focus */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-tag, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-tag::before, .eyebrow::before {
  content: "";
  width: 14px;
  height: 2px;
  background: currentColor;
  opacity: 0.7;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.3;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.section-title strong,
.section-title span.bold {
  font-weight: 900;
  color: var(--navy-900);
}

.section-title span.accent {
  color: var(--blue-primary);
  font-weight: 900;
}

.section-desc {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--ink-500);
  line-height: 1.72;
  letter-spacing: -0.015em;
}

/* Button Component Tokens - Unified Consistency & Harmonic Hover */
.btn, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn svg, .button svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.25s ease, fill 0.25s ease;
}

.btn:hover svg, .button:hover svg {
  transform: translateY(-1px) scale(1.08);
}

.btn-primary, .button.primary {
  background: linear-gradient(135deg, #1d6fe6 0%, #1152b8 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(17, 82, 184, 0.32);
}
.btn-primary:hover, .button.primary:hover {
  background: linear-gradient(135deg, #1459be 0%, #0c3e8c 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 82, 184, 0.44);
}

.btn-secondary, .button.secondary {
  color: var(--blue-primary);
  border-color: #b8d5f3;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(16, 57, 96, 0.06);
}
.btn-secondary:hover, .button.secondary:hover {
  background: #f0f7ff;
  border-color: var(--blue-primary);
  color: #1152b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 57, 96, 0.12);
}
.btn-secondary:hover svg, .button.secondary:hover svg {
  stroke: #1152b8;
}

.btn-naver {
  background: linear-gradient(135deg, #03c75a 0%, #02a84c 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(3, 199, 90, 0.3);
}
.btn-naver .naver-n-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.24);
  font-weight: 900;
  font-size: 0.92rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-naver:hover {
  background: linear-gradient(135deg, #02b150 0%, #028e40 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(3, 199, 90, 0.42);
}
.btn-naver:hover .naver-n-mark {
  background: rgba(255, 255, 255, 0.36);
  transform: scale(1.1);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}
.btn-outline-white:hover {
  background: #ffffff;
  color: var(--navy-900);
  border-color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}
.btn-outline-white:hover svg {
  stroke: var(--blue-primary);
}

.btn-sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.88rem;
  border-radius: 6px;
}

/* ==========================================================================
   1. TOP EMERGENCY/ANNOUNCEMENT BAR & GLOBAL HEADER
   ========================================================================== */
.top-notice-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notice-badge {
  background: rgba(14, 165, 233, 0.25);
  color: #38bdf8;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  margin-right: 8px;
}
.top-notice-right {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
}
.top-notice-right span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Main Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-200);
  transition: var(--transition-smooth);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo-img {
  height: 88px;
  width: auto;
  max-width: 380px;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 250px;
  display: block;
  object-fit: contain;
}
.logo-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue-primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(25, 103, 210, 0.3);
}
.brand-text-wrap {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.brand-name span {
  color: var(--blue-primary);
}
.brand-sub {
  font-size: 0.72rem;
  color: var(--ink-500);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-700);
  padding: 12px 4px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--blue-primary);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--blue-primary);
  transition: left 0.2s ease, right 0.2s ease;
}
.nav-link:hover::after {
  left: 0;
  right: 0;
}

/* Right Floating CTA - Gordonmom Style */
.desktop-quick-cta {
  position: fixed;
  z-index: 990;
  top: 50%;
  right: 24px;
  width: 86px;
  overflow: hidden;
  border: 1px solid rgba(178, 210, 238, 0.95);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 57, 96, 0.18);
  transform: translateY(-50%);
}
.desktop-quick-cta a {
  min-height: 74px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 10px 6px;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.desktop-quick-cta a + a {
  border-top: 1px solid var(--ink-200);
}
.desktop-quick-cta .quick-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-primary);
  background: var(--blue-subtle);
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.desktop-quick-cta a.quick-naver .quick-icon {
  color: #03c75a;
  background: #e8f9f0;
  font-weight: 900;
}
.desktop-quick-cta a:hover {
  color: var(--white);
  background: var(--blue-primary);
}
.desktop-quick-cta a.quick-naver:hover {
  background: #03c75a;
}
.desktop-quick-cta a:hover .quick-icon {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink-800);
  font-size: 1.4rem;
}

/* ==========================================================================
   2. HERO SECTION (Full-Width Cinematic Background - Gordonmom Style)
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: var(--white);
  background: #071526 url('../images/hero_bg.jpg') right center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 108px 0 116px;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 38, 0.96) 0%, rgba(7, 21, 38, 0.90) 42%, rgba(7, 21, 38, 0.55) 70%, rgba(7, 21, 38, 0.20) 100%);
  z-index: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(7, 21, 38, 0.8));
  z-index: 1;
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.hero-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.32);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: #7dd3fc;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}
.hero-meta-badge strong {
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 14px rgba(4, 15, 30, 0.7);
}
.hero-title strong,
.hero-title span.highlight {
  color: #38bdf8;
  font-weight: 900;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 24px rgba(56, 189, 248, 0.45);
}
.hero-title span.gold {
  color: #fcd34d;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(252, 211, 77, 0.35);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.78;
  color: #d1dced;
  margin-bottom: 30px;
  max-width: 620px;
  text-shadow: 0 1px 8px rgba(4, 15, 30, 0.6);
}
.hero-sub strong {
  color: var(--white);
  font-weight: 700;
}

/* Hero Point Tag Chips */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 36px;
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  background: rgba(7, 27, 51, 0.68);
  border: 1px solid rgba(158, 203, 243, 0.28);
  color: #e5f3ff;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease;
}
.hero-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  margin-right: 8px;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
}
.hero-points span:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-quick-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 680px;
}
.hero-feat-item {
  display: flex;
  flex-direction: column;
}
.hero-feat-item strong {
  font-size: 1.08rem;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.hero-feat-item span {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 3px;
}

/* Specialty Tab Point Badge */
.point-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
  border: 1px solid rgba(14, 165, 233, 0.28);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-right: 6px;
}

/* ==========================================================================
   3. TRUST POINTS (5대 핵심 강점 배너)
   ========================================================================== */
.trust-section {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--ink-200);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.trust-card {
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-primary);
  background: var(--white);
}
.trust-num {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--blue-primary);
  background: var(--blue-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.trust-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: var(--transition-fast);
}
.trust-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: var(--transition-fast);
}
.trust-card:hover .trust-icon-wrap {
  background: var(--blue-primary);
  color: var(--white);
  transform: scale(1.08);
}
.trust-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.trust-card p {
  font-size: 0.85rem;
  color: var(--ink-500);
  line-height: 1.5;
}

/* ==========================================================================
   4. 5대 핵심 특화진료 인터랙티브 탭 섹션 (haeyul land3 scar-guide 벤치마크)
   ========================================================================== */
.specialty-section {
  padding: 96px 0;
  background: #f8fafc;
}

/* Tabs Nav: scar-guide.css .sg-tabs 기반 */
.specialty-tabs-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 14px;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink-700);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}
.tab-btn span.badge-num {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.65;
  color: var(--ink-500);
  background: transparent;
  padding: 0;
}
.tab-btn:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
}
.tab-btn.active {
  background: var(--navy-900);
  color: #ffffff;
  border-color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(12, 33, 63, 0.16);
}
.tab-btn.active span.badge-num {
  opacity: 0.9;
  color: #93c5fd;
}

/* Tab Panels */
.tab-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}
.tab-panel.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Main Panel: scar-guide.css .sg-panel 기반 */
.specialty-detail-box {
  border: 1px solid var(--ink-200);
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(12, 33, 63, 0.05);
}

/* 상단 Overview: scar-guide.css .sg-overview 기반 */
.spec-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 46px;
  padding: 38px 42px;
}

.spec-media {
  position: relative;
  width: 100%;
  margin: 0;
}
.spec-photo {
  margin: 0;
}
.spec-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: #f1f5f9;
  border: 1px solid var(--ink-200);
}
.spec-photo figcaption {
  font-size: 11.5px;
  color: var(--ink-500);
  padding-top: 10px;
  text-align: center;
  font-weight: 500;
}

.spec-copy {
  min-width: 0;
}
.spec-kind {
  font-size: 11px;
  color: var(--blue-primary);
  letter-spacing: 0.15em;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
}
.spec-copy h4 {
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.035em;
  margin: 6px 0 14px;
  font-weight: 900;
  color: var(--navy-900);
}
.spec-copy > p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-700);
  margin: 0 0 20px;
  word-break: keep-all;
}

/* Facts Table: scar-guide.css .sg-facts 기반 */
.spec-facts {
  margin: 0;
  display: grid;
}
.spec-facts > div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid #e5e9e0;
  font-size: 14px;
  line-height: 1.8;
  align-items: baseline;
}
.spec-facts dt {
  color: var(--navy-900);
  font-weight: 800;
}
.spec-facts dd {
  margin: 0;
  color: var(--ink-700);
  word-break: keep-all;
}

/* 하단 Treatment: scar-guide.css .sg-treatment 기반 */
.spec-treatment {
  border-top: 1px solid #e1e7dc;
  padding: 30px 42px 34px;
  background: #f8fafc;
}
.spec-treatment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.spec-treatment-head h4 {
  font-size: 17px;
  color: var(--navy-900);
  font-weight: 800;
  margin: 0;
}
.spec-treatment-head > span {
  color: var(--ink-400);
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-stages {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
}
.spec-stages > li {
  border-left: 1px solid #dce4d9;
  padding-left: 20px;
}
.spec-stages > li:first-child {
  border-left: 0;
  padding-left: 0;
}
.spec-stage-no {
  font-size: 11px;
  color: var(--blue-primary);
  letter-spacing: 0.09em;
  font-weight: 800;
  display: block;
}
.spec-stages h5 {
  font-size: 14.5px;
  color: var(--navy-900);
  margin: 6px 0 8px;
  line-height: 1.5;
  font-weight: 800;
}
.spec-stages p {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.85;
  margin: 0;
  word-break: keep-all;
}

/* Tags: scar-guide.css .sg-tags 기반 */
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}
.spec-tags > span {
  font-size: 11px;
  color: var(--blue-primary);
  border: 1px solid #d3dfd0;
  background: #ffffff;
  padding: 6px 11px;
  border-radius: 7px;
  font-weight: 600;
}

/* 하단 배너 바 */
.spec-bottom-bar {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e9e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.spec-bottom-bar strong {
  font-size: 0.92rem;
  color: var(--navy-900);
  font-weight: 800;
}
.spec-bottom-bar span {
  font-size: 0.84rem;
  color: var(--ink-500);
  margin-left: 6px;
}

/* ==========================================================================
   5. ADVANCED ULTRASOUND & DIAGNOSTIC SECTION (첨단 초음파 진단기 2대 보유)
   ========================================================================== */
.ultrasound-section {
  padding: 96px 0;
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.ultrasound-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 50%, rgba(25, 103, 210, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.ultrasound-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 10;
}
.ultrasound-text-box h2 {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.03em;
}
.ultrasound-text-box h2 span {
  color: #38bdf8;
  font-weight: 850;
}
.ultrasound-text-box p.lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 30px;
  letter-spacing: -0.015em;
}

.ultrasound-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.ultra-point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition-fast);
}
.ultra-point-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 189, 248, 0.4);
}
.ultra-point-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.2);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ultra-point-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.ultra-point-content strong {
  display: block;
  font-size: 1.02rem;
  color: var(--white);
  font-weight: 750;
  margin-bottom: 4px;
}
.ultra-point-content p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
}

.ultrasound-img-box {
  position: relative;
}
.ultrasound-main-img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  width: 100%;
}
.ultrasound-badge-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ultrasound-badge-card strong {
  font-size: 1rem;
  color: #38bdf8;
}
.ultrasound-badge-card span {
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* ==========================================================================
   6. DOCTORS / MEDICAL TEAM SECTION (남녀 한의사 2인 진료)
   ========================================================================== */
.doctors-section {
  padding: 96px 0;
  background: var(--white);
}
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.doctor-card {
  display: grid;
  grid-template-columns: minmax(180px, 38%) 1fr;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
}
.doctor-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-primary);
  box-shadow: 0 16px 36px rgba(12, 33, 63, 0.12);
}

.doctor-photo-wrap {
  position: relative;
  min-height: 100%;
  background: #f1f5f9;
  overflow: hidden;
}
.doctor-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.doctor-card:hover .doctor-photo-wrap img {
  transform: scale(1.035);
}

.doctor-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(12, 33, 63, 0.88);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 5px 13px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.doctor-copy-wrap {
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
}

.doctor-role-tag {
  color: var(--blue-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.doctor-name {
  font-size: 1.52rem;
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.doctor-name .title-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-700);
  margin-left: 6px;
}

.doctor-spec {
  color: var(--blue-primary);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: -0.015em;
}

.doctor-philosophy {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  color: var(--ink-700);
  font-size: 0.86rem;
  line-height: 1.55;
  letter-spacing: -0.015em;
  font-weight: 500;
}

.doctor-bio-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.bio-section {
  padding-top: 12px;
  border-top: 1px solid var(--ink-200);
}
.bio-section h4 {
  margin: 0 0 7px;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.bio-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bio-section li {
  position: relative;
  padding-left: 12px;
  color: var(--ink-700);
  font-size: 0.84rem;
  line-height: 1.52;
  letter-spacing: -0.015em;
}
.bio-section li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-primary);
}

/* Care Banner */
.doctor-care-banner {
  margin-top: 36px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.care-banner-item {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.care-banner-item strong {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 3px;
}
.care-banner-item span {
  font-size: 0.84rem;
  color: var(--ink-500);
  line-height: 1.45;
}
.care-banner-divider {
  width: 1px;
  height: 40px;
  background: var(--ink-200);
  flex-shrink: 0;
}

/* ==========================================================================
   7. CLINIC TOUR / FACILITY GALLERY (원내 시설)
   ========================================================================== */
.facility-section {
  padding: 96px 0;
  background: var(--ink-50);
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.facility-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(12, 33, 63, 0.12);
  border-color: var(--blue-primary);
}

.facility-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f5f9;
}
.facility-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.facility-card:hover .facility-thumb img {
  transform: scale(1.06);
}

.facility-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}
.facility-body h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.facility-body p {
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.015em;
}

/* ==========================================================================
   8. PROCESS & FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 96px 0;
  background: var(--white);
}

/* Process Timeline */
.process-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.process-step-item {
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  text-align: center;
}
.process-step-item::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--ink-400);
  font-weight: 700;
}
.process-step-item:last-child::after {
  display: none;
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--blue-primary);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  margin: 0 auto 12px;
}
.process-step-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.process-step-item p {
  font-size: 0.82rem;
  color: var(--ink-500);
  line-height: 1.45;
}

/* FAQ Accordion */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--ink-50);
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item.open {
  border-color: var(--blue-primary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-900);
}
.faq-question span.q-badge {
  color: var(--blue-primary);
  font-weight: 900;
  margin-right: 10px;
}
.faq-chevron {
  font-size: 1.2rem;
  color: var(--ink-400);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue-primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.94rem;
  color: var(--ink-700);
  line-height: 1.65;
  border-top: 1px dashed var(--ink-200);
  padding-top: 14px;
}

/* ==========================================================================
   9. QUICK CONSULTATION FORM SECTION (빠른 상담 신청 폼)
   ========================================================================== */
.consultation-section {
  padding: 96px 0;
  background: radial-gradient(circle at 50% 10%, #16365f 0%, var(--navy-900) 100%);
  color: var(--white);
}
.consult-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.consult-head {
  text-align: center;
  margin-bottom: 36px;
}
.consult-head h2 {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.consult-head p {
  color: #cbd5e1;
  font-size: 0.98rem;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
}
.form-label span.req {
  color: #f87171;
  margin-left: 2px;
}
.form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: #38bdf8;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}
.form-control::placeholder {
  color: #94a3b8;
}

/* Radio Pill Group */
.radio-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.radio-pill-item {
  position: relative;
}
.radio-pill-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-pill-item label {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 9px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-fast);
  color: #cbd5e1;
}
.radio-pill-item input:checked + label {
  background: var(--blue-primary);
  border-color: #38bdf8;
  color: var(--white);
  font-weight: 700;
}

.privacy-check-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #cbd5e1;
}
.privacy-check-box input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue-primary);
}

.btn-submit-consult {
  width: 100%;
  min-height: 54px;
  padding: 16px;
  font-size: 1.04rem;
  font-weight: 800;
  border-radius: 8px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit-consult svg {
  width: 19px;
  height: 19px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-submit-consult:hover svg {
  transform: translateX(4px) translateY(-1px);
}

/* ==========================================================================
   10. LOCATION & CLINIC HOURS SECTION (오시는 길 & 진료시간)
   ========================================================================== */
.location-section {
  padding: 96px 0;
  background: var(--white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hours-card {
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.hours-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
}
.hours-table tr {
  border-bottom: 1px solid var(--ink-200);
}
.hours-table tr:last-child {
  border-bottom: none;
}
.hours-table td {
  padding: 12px 6px;
  font-size: 0.95rem;
}
.hours-table td.day {
  font-weight: 700;
  color: var(--navy-900);
  width: 35%;
}
.hours-table td.time {
  color: var(--ink-800);
  font-weight: 600;
}
.hours-table td.time strong {
  color: var(--blue-primary);
}
.hours-notice {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--ink-700);
  line-height: 1.6;
}
.hours-notice strong {
  color: var(--navy-900);
  font-weight: 800;
}

.location-map-wrap {
  margin-top: 36px;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--ink-100);
}

.location-info-card {
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.location-info-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 16px;
}
.loc-address {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.loc-sub {
  font-size: 0.88rem;
  color: var(--ink-500);
  margin-bottom: 20px;
}

.loc-badge-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.loc-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-700);
}
.loc-badge-item span.icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.map-buttons-row {
  display: flex;
  gap: 10px;
}
.map-buttons-row .btn {
  flex: 1;
  font-size: 0.92rem;
  padding: 12px;
}

/* ==========================================================================
   11. FOOTER & LEGAL DISCLAIMER
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: #94a3b8;
  padding: 60px 0 100px; /* space for mobile sticky bar */
  font-size: 0.84rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}
.footer-brand {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}
.footer-brand span {
  color: #38bdf8;
}
.footer-call {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}
.footer-call a {
  color: #38bdf8;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-meta span {
  display: inline-flex;
  gap: 6px;
}
.footer-meta strong {
  color: #cbd5e1;
}

.footer-legal-notice {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-legal-notice strong {
  color: #e2e8f0;
}

.footer-copyright {
  font-size: 0.76rem;
  color: #64748b;
}

/* ==========================================================================
   12. STICKY MOBILE CTA BAR (모바일 하단 상시 노출 전환 바)
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(12, 33, 63, 0.96);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sticky-mobile-bar-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 8px;
}
.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  color: var(--white);
  text-align: center;
}
.sticky-btn.phone {
  background: var(--blue-primary);
}
.sticky-btn.naver {
  background: #03c75a;
}
.sticky-btn.kakao {
  background: #fee500;
  color: #191600;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  border: 1px solid var(--ink-200);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--blue-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   13. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .desktop-quick-cta {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ultrasound-grid {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .process-steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .process-step-item::after {
    display: none;
  }
  .doctors-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-notice-right {
    display: none;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--ink-200);
  }
  .nav-menu.mobile-open {
    display: flex;
  }
  .nav-menu .nav-link {
    font-size: 1.05rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--ink-100);
    width: 100%;
  }
  .header-actions {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .site-header {
    height: 64px;
  }

  .hero-section {
    padding: 44px 0 60px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 0.98rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .specialty-tabs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .tab-btn {
    padding: 12px 10px;
    font-size: 13.5px;
  }
  .spec-overview {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 24px 20px;
  }
  .spec-copy h4 {
    font-size: 23px;
  }
  .spec-facts > div {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px;
    font-size: 13px;
    padding: 11px 0;
  }
  .spec-treatment {
    padding: 24px 20px;
  }
  .spec-stages {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .spec-stages > li {
    border-left: 0;
    border-top: 1px solid #dce4d9;
    padding: 14px 0 0;
  }
  .spec-stages > li:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .spec-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .doctors-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .doctor-card {
    grid-template-columns: 1fr;
  }
  .doctor-photo-wrap {
    min-height: auto;
    height: 320px;
  }
  .doctor-photo-wrap img {
    min-height: 320px;
    height: 320px;
  }
  .doctor-copy-wrap {
    padding: 24px 20px;
  }
  .doctor-care-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
  .care-banner-divider {
    width: 100%;
    height: 1px;
  }
  .facility-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .facility-card {
    height: auto;
  }

  .consult-wrapper {
    padding: 30px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-bar {
    display: block;
  }
  body {
    padding-bottom: 64px;
  }
  .back-to-top {
    bottom: 74px;
    right: 16px;
  }
}

/* ==========================================================================
   13. GORDONMOM-STYLE DESKTOP QUICK CTA & ENHANCEMENTS
   (고든몸한의원 스타일 우측 고정 플로팅 바 & 섹션/버튼 레이아웃)
   ========================================================================== */
.desktop-quick-cta {
  position: fixed;
  z-index: 990;
  top: 50%;
  right: 22px;
  width: 76px;
  overflow: hidden;
  border: 1px solid rgba(178, 210, 238, 0.95);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(12, 33, 63, 0.20), 0 2px 8px rgba(0, 0, 0, 0.05);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.desktop-quick-cta a {
  min-height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  line-height: 1.25;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-quick-cta a + a {
  border-top: 1px solid rgba(216, 229, 239, 0.85);
}

.desktop-quick-cta svg,
.desktop-quick-cta .quick-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue-primary);
  background: #f0f7ff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  padding: 3px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-quick-cta a:hover {
  color: #ffffff;
  background: var(--blue-primary);
}

.desktop-quick-cta a:hover svg,
.desktop-quick-cta a:hover .quick-icon {
  color: var(--blue-primary);
  background: #ffffff;
  transform: scale(1.08);
}

.desktop-quick-cta a.quick-naver:hover {
  background: #03c75a;
}
.desktop-quick-cta a.quick-naver:hover svg,
.desktop-quick-cta a.quick-naver:hover .quick-icon {
  color: #03c75a;
}

.desktop-quick-cta a.quick-tel svg,
.desktop-quick-cta a.quick-tel .quick-icon {
  color: #0284c7;
}

@media (max-width: 1024px) {
  .desktop-quick-cta {
    display: none !important;
  }
}

/* 고든몸 참조: 섹션 타이틀 Eyebrow & 헤드라인 레이아웃 보강 */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 12px;
}
.section-tag::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-primary);
}

/* 고든몸 참조: 히어로 포인트 칩 태그 */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}
.hero-points span:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .header-inner {
    height: 72px;
  }
  .header-logo-img {
    height: 58px;
    max-width: 250px;
  }
  .footer-logo-img {
    height: 44px;
    max-width: 220px;
  }
}

