/* ==========================================================================
   준메디칼 주식회사 (JUN MEDICAL Co., Ltd.) — 공통 스타일시트
   - Typography: Pretendard (Korean) + Inter (English/Number)
   - Style: Sleek, Modern, Trustworthy Medical Corporate Design
   ========================================================================== */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

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

:root {
  /* Brand Colors */
  --navy:         #0f274a;       /* 메인 딥 네이비 */
  --navy-light:   #1a3a68;
  --blue:         #1a56db;       /* 브랜드 포인트 블루 */
  --steel:        #3b6cb7;       /* 스틸 블루 */
  --sky:          #0284c7;       /* 악센트 시안/스카이 */
  --sky-light:    #e0f2fe;       /* 소프트 블루 배경 */
  --sky-subtle:   #f0f9ff;       /* 연한 포인트 배경 */
  
  /* Neutral Colors */
  --white:        #ffffff;
  --bg:           #f8fafc;       /* 맑은 슬레이트 배경 */
  --bg-subtle:    #f1f5f9;       /* 연한 그레이 배경 */
  --card-bg:      #ffffff;
  --border:       #e2e8f0;       /* 슬림 1px 라인 */
  --border-light: #f1f5f9;
  --text:         #1e293b;       /* 본문 메인 텍스트 */
  --sub:          #64748b;       /* 보조 설명 텍스트 */
  --muted:        #94a3b8;       /* 약한 텍스트 */
  
  /* Layout & Geometry */
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-full:  9999px;
  --max:          1160px;
  
  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(15, 39, 74, 0.04), 0 1px 2px rgba(15, 39, 74, 0.02);
  --shadow:       0 4px 20px -2px rgba(15, 39, 74, 0.06);
  --shadow-lg:    0 12px 32px -4px rgba(15, 39, 74, 0.10);
  --shadow-hover: 0 14px 36px -4px rgba(2, 132, 199, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Noto Sans KR", sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  letter-spacing: -0.025em;
  word-break: keep-all;
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

/* ─────────────────────────────────────────────────────────────
   1. 헤더 (Header) & 네비게이션 (GNB)
   ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-ko {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-en {
  font-size: 11px;
  font-weight: 500;
  color: var(--sky);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}

.site-nav {
  display: flex;
  gap: 8px;
  list-style: none;
}

.site-nav > li {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav > li > a {
  display: block;
  padding: 24px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
}

.site-nav > li > a:hover {
  color: var(--sky);
}

/* 드롭다운 메뉴 */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  white-space: nowrap;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  border: 1px solid var(--border);
  border-top: 2px solid var(--sky);
  box-shadow: var(--shadow);
  list-style: none;
  padding: 6px 0;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-nav > li:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--text);
  transition: all 0.15s ease;
}

.dropdown li a:hover {
  background: var(--sky-subtle);
  color: var(--sky);
  padding-left: 22px;
}

.btn-inquiry {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13.5px !important;
  transition: all 0.25s ease !important;
  margin-left: 8px;
}

.btn-inquiry:hover {
  background: var(--sky) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

/* 온라인몰 (메인 '정밀 의료기기 파트너' 시안 그라디언트 톤) */
.btn-shop {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px;
  background: rgba(2, 132, 199, 0.08) !important;
  border: 1.5px solid #38bdf8 !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  transition: all 0.25s ease !important;
  margin-left: 8px;
  text-decoration: none !important;
}

.btn-shop span {
  background: linear-gradient(90deg, #0284c7, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-shop svg {
  width: 16px;
  height: 16px;
  stroke: #0284c7;
  transition: all 0.2s ease;
}

.btn-shop:hover {
  background: linear-gradient(90deg, #0284c7, #2563eb) !important;
  border-color: transparent !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.btn-shop:hover span {
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

.btn-shop:hover svg {
  stroke: #ffffff;
  transform: scale(1.08);
}


/* 모바일 햄버거 */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ─────────────────────────────────────────────────────────────
   2. 히어로 섹션 (Main Hero & Sub Hero)
   ───────────────────────────────────────────────────────────── */
.main-hero {
  background: linear-gradient(135deg, #07172e 0%, #0f274a 55%, #163e75 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.main-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.22) 0%, rgba(2, 132, 199, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.main-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(2, 132, 199, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-tag svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.main-hero .hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #7dd3fc;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.main-hero h1 {
  font-size: clamp(32px, 5.2vw, 50px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.main-hero h1 em {
  background: linear-gradient(90deg, #38bdf8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.main-hero p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
  font-weight: 400;
}

/* Trust Badges Strip (공식 인증 및 신뢰도 배지) */
.trust-strip {
  background: #08172c;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 28px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.trust-badge-item svg {
  width: 18px;
  height: 18px;
  color: var(--sky);
  flex-shrink: 0;
}

/* 일반 서브페이지 히어로 */
.hero {
  background: linear-gradient(135deg, #0f274a 0%, #1a3e72 100%);
  color: var(--white);
  text-align: center;
  padding: 52px 24px 44px;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero h1 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.hero p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 버튼 컴포넌트 */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sky);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
  background: #0274ae;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 14.5px;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   3. 서브 뎁스 탭 (Depth Tab) & 위치 경로 (Breadcrumb)
   ───────────────────────────────────────────────────────────── */
.sub-nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.sub-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.sub-depth-tabs {
  display: flex;
  list-style: none;
  gap: 4px;
}

.sub-depth-tabs li a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sub);
  position: relative;
  transition: color 0.2s ease;
}

.sub-depth-tabs li a:hover,
.sub-depth-tabs li.active a {
  color: var(--sky);
  font-weight: 600;
}

.sub-depth-tabs li.active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sky);
}

.breadcrumbs {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumbs a {
  color: var(--sub);
}

.breadcrumbs a:hover {
  color: var(--sky);
}

.breadcrumbs span::before {
  content: '›';
  margin-right: 8px;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────────
   4. 숫자 통계 지표 (Stats Bar)
   ───────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 8px 12px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  font-family: 'Inter', 'Pretendard', sans-serif;
}

.stat-num span {
  font-size: 18px;
  font-weight: 600;
  color: var(--sky);
  margin-left: 2px;
}

.stat-label {
  font-size: 13.5px;
  color: var(--sub);
  margin-top: 6px;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   5. 섹션 공통 스타일
   ───────────────────────────────────────────────────────────── */
.section {
  padding: 80px 24px;
}

.section.bg-gray {
  background-color: var(--bg);
}

.section.bg-white {
  background-color: var(--white);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.section-desc {
  color: var(--sub);
  max-width: 640px;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.divider {
  width: 36px;
  height: 3px;
  background: var(--sky);
  border-radius: 2px;
  margin: 12px 0 32px;
}

/* ─────────────────────────────────────────────────────────────
   6. 카드 그리드 & 제품 카테고리 그리드 (1줄 5칸 레이아웃)
   ───────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1140px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.category-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 18px 16px 16px;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.category-card:hover,
.card:hover {
  transform: translateY(-5px);
  border-color: var(--sky);
  box-shadow: 0 12px 24px -6px rgba(15, 39, 74, 0.12), 0 0 0 1.5px rgba(2, 132, 199, 0.35);
  text-decoration: none;
}

.category-card .category-img-wrap,
.category-card .product-card-img {
  width: calc(100% + 32px);
  margin: -18px -16px 14px -16px;
  height: 170px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--sky-subtle);
  border-bottom: 1px solid var(--border);
  display: block;
  flex-shrink: 0;
}

.category-card .category-img-wrap img,
.category-card .product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-img-wrap img,
.category-card:hover .product-card-img img {
  transform: scale(1.05);
}

.card-icon-wrap,
.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sky-subtle);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  transition: all 0.3s ease;
}

.category-card:hover .card-icon-wrap,
.category-card:hover .category-icon {
  background: var(--sky);
  color: var(--white);
  transform: scale(1.06);
}

.card-icon-wrap svg,
.category-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.category-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}

.category-card p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.6;
  flex: 1;
  word-break: keep-all;
  margin-bottom: 12px;
}

.card p {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.65;
  flex: 1;
}

.category-card .section-label {
  font-size: 11px;
  margin-bottom: 3px;
  letter-spacing: 0.04em;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sky);
  transition: gap 0.2s ease, color 0.2s ease;
}

.category-card:hover .category-link,
.category-link:hover {
  color: #026494;
  gap: 7px;
}

/* 브랜드 로고 스트립 */
.brand-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.brand-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-pill:hover {
  border-color: var(--sky);
  color: var(--sky);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* 왜 준메디칼? (강점 섹션) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-subtle);
  border-radius: 50%;
  color: var(--sky);
  transition: all 0.2s ease;
}

.why-item:hover .why-icon {
  background: var(--sky);
  color: var(--white);
}

.why-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   7. 제품 상세 페이지 전용 레이아웃
   ───────────────────────────────────────────────────────────── */
.product-hero {
  background: var(--white);
  padding: 60px 24px 48px;
  border-bottom: 1px solid var(--border);
}

.product-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.product-brand {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-name {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.product-subtitle {
  font-size: 16px;
  color: var(--steel);
  font-weight: 500;
  margin-bottom: 18px;
}

.product-tagline {
  font-size: 15px;
  color: var(--sub);
  margin-bottom: 28px;
  line-height: 1.8;
}

.product-img-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
}

.product-img-wrap img {
  max-height: 280px;
  object-fit: contain;
}

/* 제품 카드 이미지 플레이스홀더 */
.product-card-img {
  background: var(--bg);
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  color: var(--sub);
  font-size: 13px;
  padding: 16px;
  text-align: center;
}

.product-card-img img {
  max-height: 150px;
  object-fit: contain;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 12px;
}

.feature-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.feature-list li::before {
  content: "✓";
  color: var(--sky);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 스펙 테이블 (Spec Table) */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.spec-table th,
.spec-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.spec-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.spec-table tr:nth-child(even) td {
  background: var(--bg);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:hover td {
  background: #f1f7fe;
}

.indication-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.indication-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.indication-item:hover {
  border-color: var(--sky);
  color: var(--sky);
  transform: translateY(-2px);
}

.notice-box {
  background: var(--sky-subtle);
  border-left: 3px solid var(--sky);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 13.5px;
  color: #0369a1;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   8. 하단 문의 CTA 배너 & 푸터 (Footer)
   ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0b1e38 0%, #153a6d 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 24px;
  position: relative;
}

.cta-banner h2 {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 24px;
}

.site-footer {
  background: #091322;
  color: #8fa0bd;
  padding: 48px 24px 32px;
  border-top: 1px solid #1a2a44;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.footer-left {
  flex: 1;
  min-width: 280px;
}

.footer-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer-info {
  font-size: 13px;
  line-height: 1.95;
  color: #94a3b8;
}

.footer-info span {
  margin-right: 18px;
  display: inline-block;
}

.footer-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
  padding-bottom: 2px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-logo-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-logo-ko {
  font-size: 21px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.12em;
}

.footer-logo-en {
  font-size: 10px;
  font-weight: 600;
  color: #38bdf8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #16243b;
  font-size: 12px;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─────────────────────────────────────────────────────────────
   9. 반응형 미디어 쿼리 (Responsive Mobile)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 20px;
    z-index: 999;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > li {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav > li > a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-light);
  }

  .dropdown {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    background: var(--bg);
    padding: 4px 0 8px 16px;
  }

  .btn-shop,
  .btn-inquiry {
    margin: 10px 24px 0 !important;
    text-align: center;
    justify-content: center !important;
  }

  .nav-toggle {
    display: block;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 56px 16px;
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-right {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 0;
  }
}

/* 인사말 대표 이미지 박스 */
.greeting-img-wrap {
  width: 250px;
  height: 320px;
  justify-self: center;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub);
  font-size: 13px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.greeting-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* ─────────────────────────────────────────────────────────────
   10. 오시는 길 (Directions / Location) 전용 모던 레이아웃
   ───────────────────────────────────────────────────────────── */
.location-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 24px;
}

.location-map-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.location-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: none;
  flex: 1;
}

.location-cards-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.loc-info-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.loc-info-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.loc-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.loc-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--sky-subtle);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-icon-badge svg {
  width: 18px;
  height: 18px;
}

.loc-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.loc-card-body {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.75;
  flex: 1;
}

.loc-card-body strong {
  color: var(--navy);
}

.loc-card-body a {
  color: var(--sky);
  font-weight: 500;
}

.loc-card-body a:hover {
  text-decoration: underline;
}

/* 길찾기 바로가기 버튼 그룹 */
.map-btn-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.btn-map-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-map-action svg {
  flex-shrink: 0;
}

.btn-naver-map {
  background: #03c75a;
  color: #ffffff !important;
}

.btn-naver-map:hover {
  background: #02b150;
  transform: translateY(-1px);
  text-decoration: none !important;
}

.btn-kakao-map {
  background: #fee500;
  color: #191919 !important;
}

.btn-kakao-map:hover {
  background: #fdd800;
  transform: translateY(-1px);
  text-decoration: none !important;
}

@media (max-width: 900px) {
  .location-container {
    grid-template-columns: 1fr;
  }
  .location-map-box iframe {
    min-height: 320px;
  }
  .location-cards-wrap {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────
   11. 우측 하단 퀵 플로팅 상담/견적 바 (Floating Quick Action Widget)
   ───────────────────────────────────────────────────────────── */
.floating-quick-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.floating-quick-popup {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 16px 36px rgba(15, 39, 74, 0.18);
  border: 1px solid var(--border);
  width: 260px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.22s ease;
}

.floating-quick-popup.open,
.floating-quick-popup.show,
.floating-quick-popup:hover,
.floating-quick-widget:has(.floating-quick-btn:hover) .floating-quick-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-quick-header {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.floating-quick-header span {
  font-size: 11px;
  color: var(--sky);
  font-weight: 600;
}

.floating-quick-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.floating-quick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.floating-quick-item svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
  flex-shrink: 0;
}

.floating-quick-item:hover {
  background: var(--sky-subtle);
  color: var(--sky);
  transform: translateX(3px);
}


.floating-quick-btn,
.floating-kakao-btn,
.floating-top-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  position: relative;
  box-sizing: border-box;
}

.floating-quick-btn {
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45);
}

.floating-quick-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.6);
}

.floating-quick-btn svg {
  width: 24px;
  height: 24px;
}

.floating-quick-btn .btn-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #ef4444;
  border: 2px solid white;
  border-radius: 50%;
}

.floating-kakao-btn {
  background: #FEE500;
  color: #191919;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(254, 229, 0, 0.5);
}

.floating-kakao-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2), 0 4px 14px rgba(254, 229, 0, 0.7);
}

.floating-kakao-btn svg {
  width: 26px;
  height: 26px;
  fill: #191919;
}

.floating-top-btn {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  box-shadow: 0 6px 20px rgba(15, 39, 74, 0.14);
  flex-direction: column;
  gap: 1px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
}

.floating-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-top-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 26px rgba(15, 39, 74, 0.25);
}

.floating-top-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.floating-top-btn:hover svg {
  transform: translateY(-2px);
}

.floating-top-btn .top-text {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.floating-top-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.floating-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #1e293b;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1060;
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  border-width: 4px 0 4px 4px;
  border-style: solid;
  border-color: transparent transparent transparent #1e293b;
}

.floating-kakao-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.floating-quick-btn:hover .floating-tooltip,
.floating-quick-popup.open ~ .floating-btn-group .floating-tooltip,
.floating-quick-popup.show ~ .floating-btn-group .floating-tooltip,
.floating-quick-popup:hover ~ .floating-btn-group .floating-tooltip {
  display: none !important;
}

@media (max-width: 640px) {
  .floating-quick-widget {
    bottom: 20px;
    right: 18px;
    gap: 10px;
  }
  .floating-quick-btn,
  .floating-kakao-btn,
  .floating-top-btn {
    width: 48px;
    height: 48px;
  }
  .floating-quick-btn svg,
  .floating-kakao-btn svg {
    width: 22px;
    height: 22px;
  }
  .floating-top-btn svg {
    width: 18px;
    height: 18px;
  }
  .floating-top-btn .top-text {
    font-size: 8px;
  }
}
  .floating-tooltip {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   12. PDF 카탈로그 다운로드 카드 컴포넌트
   ───────────────────────────────────────────────────────────── */
.pdf-download-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sky);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.pdf-download-card:hover {
  box-shadow: var(--shadow);
  border-color: #bae6fd;
}

.pdf-download-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdf-download-info p {
  font-size: 13.5px;
  color: var(--sub);
  margin: 0;
}

.pdf-download-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.pdf-download-action svg {
  width: 18px;
  height: 18px;
  color: #ef4444;
  flex-shrink: 0;
}

.pdf-download-action:hover {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.pdf-download-action:hover svg {
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────────
   13. 정밀 규격 스펙 테이블 (Modern Spec Table)
   ───────────────────────────────────────────────────────────── */
.spec-table-modern {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13.5px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.spec-table-modern th,
.spec-table-modern td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.spec-table-modern th {
  background: #f1f5f9;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.spec-table-modern tr:last-child td {
  border-bottom: none;
}

.spec-table-modern tr:hover td {
  background: var(--sky-subtle);
}

/* ─────────────────────────────────────────────────────────────
   14. 스크롤 리빌 애니메이션 (Scroll Reveal)
   ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   15. 연혁 타임라인 (Sejong Healthcare Style History Timeline)
   ───────────────────────────────────────────────────────────── */
.history-intro-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.history-intro-tit {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.history-intro-tit span {
  color: var(--sky);
}

.history-timeline-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 36px;
}

.history-timeline-wrap::before {
  content: '';
  position: absolute;
  top: 14px;
  bottom: 24px;
  left: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--sky) 0%, #cbd5e1 90%, transparent 100%);
}

.history-timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.history-timeline-item:last-child {
  margin-bottom: 0;
}

.history-timeline-item::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -32px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sky);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--sky), 0 2px 6px rgba(2, 132, 199, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.history-timeline-item:hover::before {
  transform: scale(1.25);
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--sky), 0 4px 10px rgba(2, 132, 199, 0.6);
}

.history-year-header {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  letter-spacing: -0.02em;
}

.history-year-header span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--sky);
}

.history-events-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s ease;
}

.history-timeline-item:hover .history-events-box {
  border-color: #cbd5e1;
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.history-event-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.history-event-month {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--sky);
  flex-shrink: 0;
  width: 28px;
  text-align: right;
}

.history-event-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.history-event-desc strong {
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 768px) {
  .history-intro-tit { font-size: 18px; }
  .history-timeline-wrap { padding-left: 28px; }
  .history-timeline-wrap::before { left: 7px; }
  .history-timeline-item::before { left: -27px; width: 12px; height: 12px; }
  .history-year-header { font-size: 30px; }
  .history-events-box { padding: 18px 20px; gap: 12px; }
  .history-event-row { gap: 14px; }
  .history-event-month { font-size: 15.5px; width: 22px; }
  .history-event-desc { font-size: 15px; }
}

/* ─────────────────────────────────────────────────────────────
   16. 주요 협력 병원 무한 롤링 티커 (Hospital Partners Marquee Ticker)
   ───────────────────────────────────────────────────────────── */
.hospital-ticker-section {
  padding: 68px 0;
  background: var(--white);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border-light);
}

.hospital-ticker-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 20px;
}

.hospital-ticker-header .section-label {
  color: var(--sky);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hospital-ticker-header .section-title {
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.hospital-ticker-header p {
  font-size: 14.5px;
  color: var(--sub);
  margin: 0;
}

.hospital-ticker-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  /* 좌우 부드러운 페이드아웃 그라디언트 마스크 */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hospital-ticker-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: hospitalMarquee 48s linear infinite;
}

.hospital-ticker-track-wrap:hover .hospital-ticker-track {
  animation-play-state: paused;
}

@keyframes hospitalMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hospital-logo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  flex-shrink: 0;
  min-height: 52px;
  box-sizing: border-box;
  transition: all 0.25s ease;
  cursor: default;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.hospital-logo-card:hover {
  background: var(--white);
  border-color: var(--sky);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.12);
  transform: translateY(-2px);
}

/* 실제 병원 로고 이미지 삽입 시 */
.hospital-logo-img {
  height: 28px;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

.hospital-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.hospital-logo-card:hover .hospital-icon-badge {
  background: var(--sky-subtle);
  color: var(--blue);
  border-color: var(--sky);
}

.hospital-icon-badge svg {
  width: 19px;
  height: 19px;
}

.hospital-text-wrap {
  display: flex;
  flex-direction: column;
}

.hospital-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hospital-sub {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────
   16. 메인 홈페이지 오픈 안내 팝업 (Dual Floating Cards)
   ───────────────────────────────────────────────────────────── */
.popup-showcase-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(9, 19, 34, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-showcase-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card-group {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  max-width: 780px;
  width: 100%;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-showcase-overlay.active .popup-card-group {
  transform: scale(1) translateY(0);
}

/* 공통 팝업 카드 */
.popup-card {
  flex: 1;
  max-width: 370px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* 1. 다크 네이비 테마 카드 (텍스트 타이포그래피 강조형) */
.popup-card-dark {
  background: radial-gradient(circle at 50% 20%, #133363 0%, #0a1b33 55%, #050d1a 100%);
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.popup-card-dark-body {
  padding: 26px 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.popup-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.popup-dark-company {
  font-size: 13.5px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.popup-dark-open-title {
  font-size: 22px;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 2px 0 4px;
}

.popup-dark-open-title span {
  display: block;
  font-size: 40px;
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-top: 3px;
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 45%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.65));
}

.popup-dark-divider {
  width: 36px;
  height: 2px;
  background: #0284c7;
  margin: 8px auto 10px;
  border-radius: 2px;
}

.popup-dark-desc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
  word-break: keep-all;
  margin-bottom: 14px;
}

.popup-dark-desc strong {
  color: #38bdf8;
}

.popup-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(2, 132, 199, 0.4);
  border: 1px solid rgba(56, 189, 248, 0.5);
  transition: all 0.2s ease;
  width: 100%;
}

.popup-card:hover .popup-dark-btn {
  background: #0284c7;
  transform: translateY(-1px);
}

/* 2. 브라이트 화이트 테마 카드 (온라인 쇼핑몰 홍보형) */
.popup-card-light {
  background: #ffffff;
  color: #0f274a;
  border: 1px solid #e2e8f0;
}

.popup-card-light-top {
  position: relative;
  height: 155px;
  overflow: hidden;
  background: #f1f5f9;
}

.popup-card-light-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popup-card-light-body {
  padding: 18px 20px 16px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup-card-light-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: #0284c7;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.popup-card-light-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f274a;
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  text-align: center;
}

.popup-card-light-title strong {
  display: block;
  font-size: 36px;
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-top: 3px;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(37, 99, 235, 0.25));
}

.popup-card-light-sub {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2px;
}

.popup-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1a56db;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
  width: 100%;
  margin-top: 10px;
}

.popup-card-light-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #1a56db;
  color: #1a56db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.popup-card:hover .popup-light-btn {
  background: #1a56db;
  border-color: #1a56db;
  color: #ffffff;
}

.popup-card:hover .popup-light-btn .popup-card-light-arrow {
  border-color: #ffffff;
  color: #ffffff;
  transform: translateX(3px);
}

/* 팝업 하단 컨트롤 바 */
.popup-bottom-bar {
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.popup-card-dark .popup-bottom-bar {
  background: #060e1b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

.popup-card-light .popup-bottom-bar {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
}

.popup-check-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.popup-check-label input {
  cursor: pointer;
  accent-color: #0284c7;
}

.popup-close-btn {
  background: none;
  border: none;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: opacity 0.15s ease;
}

.popup-close-btn:hover {
  opacity: 0.7;
}

/* 반응형 모바일 */
@media (max-width: 760px) {
  .popup-card-group {
    flex-direction: column;
    align-items: center;
    max-height: 90vh;
    overflow-y: auto;
    gap: 16px;
  }
  .popup-card {
    max-width: 340px;
    width: 100%;
  }
  .popup-card-dark-header {
    padding: 18px 18px 10px;
  }
  .popup-card-dark-highlight {
    font-size: 18px;
  }
  .popup-card-light-top {
    height: 150px;
  }
  .popup-card-light-title {
    font-size: 18px;
  }
}




