/* ============================================================
   GLOBAL STYLES — 전체 공통 스타일
   모든 페이지에서 공유되는 기본 스타일입니다.
   ============================================================ */


/* ===== 1. Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: #181C1E;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }


/* ===== 2. CSS Variables ===== */
:root {
  --primary: #9E6B7B;
  --primary-light: #D4A5B5;
  --primary-dark: #8A5568;
  --wine: #2D1F24;
  --navy: #2D1F24;
  --navy-mid: #6B5258;
  --accent: #D4A5B5;
  --accent-light: #C09070;
  --bg-off: #F3E8E4;
  --text-dark: #2D1F24;
  --text-mid: #6B5258;
  --text-light: #9A8B90;
  --white: #FFFFFF;
  --primary-container: #F3E8E4;
  --secondary: #C09070;
  --secondary-light: #D4A5B5;
  --secondary-container: #F3E8E4;
  --tertiary: #8A5568;
  --tertiary-light: #D4A5B5;
  --surface: #FBF5F3;
  --surface-low: #F3E8E4;
  --surface-lowest: #FBF5F3;
  --on-surface: #2D1F24;
  --outline-variant: rgba(107, 82, 88, 0.15);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}


/* ===== 3. Header / GNB ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  display: flex; flex-direction: column;
  background: rgba(251, 245, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(158, 107, 123, 0.08);
  transition: background 0.35s, box-shadow 0.35s;
}
.header.scrolled {
  background: rgba(251, 245, 243, 0.98);
  box-shadow: 0 4px 24px rgba(158, 107, 123, 0.10);
}
.header-topbar {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(243, 232, 228, 0.5);
}
.logo-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  flex-shrink: 0;
  white-space: nowrap;
}
.topbar-nav { display: flex; align-items: center; gap: 0; }
.topbar-tab {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(0,0,0,0.45);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.topbar-tab:hover { color: var(--primary); }
.topbar-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.topbar-divider { width: 1px; height: 16px; background: rgba(0,0,0,0.12); }


/* ===== 4. Mobile Navigation ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(251, 245, 243, 0.97);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 60px 32px 40px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open { display: flex; opacity: 1; }
.mob-nav-section { width: 100%; max-width: 320px; margin-bottom: 8px; }
.mob-center-switcher {
  display: flex;
  gap: 0;
  border: 1px solid rgba(158,107,123,0.2);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 20px;
}
.mob-switch-tab {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,0.45);
  background: transparent;
  transition: all 0.2s;
}
.mob-switch-tab.active { background: var(--primary); color: #fff; }
.mob-sub-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  padding: 16px 0 8px;
}
.mob-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 8px; }
.mob-sub-grid a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,0,0,0.60);
  padding: 10px 12px;
  background: rgba(0,0,0,0.04);
  border-radius: 9999px;
  transition: color 0.18s, background 0.18s;
}
.mob-sub-grid a:hover { color: var(--text-dark); background: rgba(158,107,123,0.15); }
.mobile-nav-divider {
  width: 100%;
  max-width: 320px;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 16px 0;
}
.mobile-nav-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}
.mobile-nav-cta a {
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 14px 0 !important;
  text-align: center;
  border-radius: 9999px;
}
.mobile-nav-cta .nav-phone { background: linear-gradient(135deg, #9E6B7B, #D4A5B5); color: #FFFFFF; }
.mobile-nav-cta .nav-kakao { background: #FEE500; color: #3C1E1E !important; }


/* ===== 5. Section 공통 ===== */
.section { padding: 100px 40px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.8px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-desc { font-size: 15px; color: var(--text-mid); line-height: 1.8; }


/* ===== 6. CTA 버튼 공통 ===== */
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  color: #FFFFFF;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.25s;
  display: inline-block;
}
.cta-btn-primary:hover { background: var(--primary-light); }
.cta-btn-outline {
  padding: 14px 32px;
  border: 1.5px solid rgba(158,107,123,0.40);
  color: var(--primary-dark);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-block;
}
.cta-btn-outline:hover { border-color: var(--primary); color: var(--primary); }


/* ===== 7. Footer 공통 ===== */
.footer { background: #F3E8E4; color: #6B5258; }
.footer-copy { font-size: 12px; color: rgba(107,82,88,0.55); }


/* ===== 8. Mobile CTA Bar ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  z-index: 990;
  background: var(--surface, #FBF5F3);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.4);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.mobile-cta-inner { display: flex; gap: 10px; }
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.25s;
}
.mobile-cta-btn:active { opacity: 0.8; }
.cta-phone { background: #9E6B7B; color: #2D1F24; }
.cta-kakao { background: #FEE500; color: #3C1E1E; }


/* ===== 9. Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ===== 9. Responsive — 공통 미디어쿼리 ===== */
@media (max-width: 768px) {
  .header-topbar { height: 44px; padding: 0 16px; }
  .topbar-nav { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 60px 20px; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 14px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .mobile-cta { display: block !important; }
  .footer { padding-bottom: 76px; }
}


/* ============================================================
   SHARED COMPONENTS — 페이지간 공유 컴포넌트
   여러 페이지에서 공통으로 사용되는 컴포넌트입니다.
   ============================================================ */


/* ===== [C1] Page Hero — 시술·진료 상세 페이지 (12개 페이지) ===== */
/* breast, eye, fat, lifting, male, nose, other, petit,
   reconstruction, trauma, burn, pediatric */
.page-hero {
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%) center/cover no-repeat;
  padding: 100px 40px 80px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(138, 85, 104, 0.25) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-dark);
  position: relative;
}
.page-hero-badge {
  display: inline-block;
  background: rgba(158,107,123,0.10);
  border: 1px solid rgba(158,107,123,0.25);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.page-hero-title { font-size: 44px; font-weight: 700; margin-bottom: 16px; letter-spacing: -1px; }
.page-hero-desc { font-size: 18px; opacity: 0.85; max-width: 600px; margin: 0 auto; line-height: 1.7; }

@media (max-width: 768px) {
  .page-hero { padding: 56px 20px 52px; }
  .page-hero-title { font-size: 32px; }
}


/* ===== [C2] Hero Banner — 정보·목록 페이지 (8개 페이지) ===== */
/* about, community, consultation, doctor, notice, reviews, tour, booking */
.hero-banner {
  margin-top: 48px;
  height: 340px;
  background: linear-gradient(140deg, #F3E8E4 0%, #FBF5F3 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(251,245,243,0.95) 0%, rgba(232,220,200,0.6) 100%);
  z-index: 1;
}
.hero-banner::after {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(158,107,123,0.18);
  z-index: 1;
}
.hero-banner-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 40px; width: 100%;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(107,82,88,0.5);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: #2D1F24;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-subtitle { font-size: 15px; color: rgba(107,82,88,0.65); line-height: 1.8; max-width: 480px; }

@media (max-width: 768px) {
  .hero-banner { height: 280px; }
  .hero-banner-inner { padding: 0 20px; }
}


/* ===== [C3] Section Header — 섹션 제목 블록 (12개 페이지) ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc {
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ===== [C4] Rich Footer — 전체 푸터 레이아웃 (11개 페이지) ===== */
/* about, community, consultation, doctor, index, medical, notice,
   reviews, cosmetic, tour, booking */
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.footer-logo { font-size: 16px; font-weight: 700; color: #2D1F24; margin-bottom: 16px; }
.footer-detail { font-size: 13px; line-height: 2.1; }
.footer-bottom {
  border-top: 1px solid rgba(107,82,88,0.15);
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-top { flex-direction: column; gap: 36px; padding: 44px 20px 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 18px 20px; }
}


/* ===== [C5] Surgical Simple Footer — 시술 상세 페이지 (13개 페이지) ===== */
/* breast, burn, eye, fat, lifting, male, nose, other, pediatric,
   petit, reconstruction, trauma 등 */
.footer-info { font-size: 14px; margin-bottom: 12px; line-height: 1.8; }


/* ===== [C6] FAQ Section — 시술 페이지 FAQ (12개 페이지) ===== */
.faq { background: var(--white); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--surface, #FBF5F3);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 8px 40px rgba(158, 107, 123, 0.06); }
.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.3s;
}
.faq-question:hover { background: rgba(158,107,123,0.05); }
.faq-q-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.faq-q-text { flex: 1; font-size: 17px; font-weight: 600; color: var(--text-dark); }
.faq-toggle { font-size: 24px; color: var(--text-light); transition: transform 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 28px 24px 80px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
}


/* ===== [C7] Bottom CTA Block — 시술 페이지 하단 CTA (12개 페이지) ===== */
/* .cta (section), .cta h2, .cta p, .cta-btn, .cta-btn-primary/-outline/-kakao */
.cta {
  background: linear-gradient(135deg, #F3E8E4 0%, #FBF5F3 100%);
  color: var(--text-dark);
  text-align: center;
  border-top: 1px solid rgba(158,107,123,0.15);
}
.cta h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.cta p { font-size: 17px; opacity: 0.85; margin-bottom: 36px; }
.cta-btn {
  padding: 16px 40px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.cta .cta-btn-primary { background: linear-gradient(135deg, #9E6B7B, #D4A5B5); color: #FFFFFF; }
.cta .cta-btn-primary:hover { background: linear-gradient(135deg, #8A5568, #9E6B7B); transform: translateY(-2px); }
.cta .cta-btn-outline {
  background: rgba(158, 107, 123, 0.08);
  color: var(--primary-dark);
  border: 1.5px solid rgba(158, 107, 123, 0.30);
}
.cta .cta-btn-outline:hover { background: rgba(158, 107, 123, 0.14); border-color: var(--primary); color: var(--primary); }
.cta .cta-btn-kakao { background: #FEE500; color: #3C1E1E; }
.cta .cta-btn-kakao:hover { opacity: 0.88; }

@media (max-width: 768px) {
  .cta-btn { width: 100%; text-align: center; }
}


/* ===== [C8] CTA Section Block — 정보 페이지 하단 CTA (10개 페이지) ===== */
/* about, booking, community, consultation, cosmetic, doctor,
   medical, notice, reviews, tour */
.cta-section {
  background: linear-gradient(135deg, #F3E8E4 0%, #FBF5F3 100%);
  padding: 80px 40px;
  text-align: center;
  border-top: 1px solid rgba(158,107,123,0.15);
}
.cta-section h2 { font-size: 32px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.8px; margin-bottom: 12px; }
.cta-section p { font-size: 15px; color: var(--text-mid); margin-bottom: 36px; }
.cta-btn-kakao { padding: 14px 32px; background: #FEE500; color: #3C1E1E; border-radius: 6px; font-size: 15px; font-weight: 700; transition: opacity 0.25s; display: inline-block; }
.cta-btn-kakao:hover { opacity: 0.88; }


/* ===== [C9] Safety Banner — 종합병원 안전 강조 박스 ===== */
/* breast, burn, eye, fat, lifting, medical, nose, other, pediatric,
   petit, reconstruction, trauma */
.safety-banner {
  background: linear-gradient(135deg, #F3E8E4 0%, #FBF5F3 100%);
  color: var(--text-dark);
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border: 1px solid rgba(158,107,123,0.15);
}
.safety-banner-icon { font-size: 48px; flex-shrink: 0; }
.safety-banner h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.safety-banner p { font-size: 15px; opacity: 0.85; line-height: 1.7; }

@media (max-width: 768px) {
  .safety-banner { flex-direction: column; }
}


/* ===== [C10] Principle Section — 시술 원칙 (12개 시술 페이지) ===== */
.principle { background: var(--white); }
.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.principle-visual {
  height: 380px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #F3E8E4 0%, #FBF5F3 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.principle-image { position: relative; }
.principle-image img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }
.principle-content h3 { font-size: 28px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.principle-content p { font-size: 16px; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }
.principle-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.principle-tag { padding: 8px 16px; background: var(--surface, #FBF5F3); border-radius: 6px; font-size: 14px; font-weight: 600; color: var(--primary); }

@media (max-width: 1024px) {
  .principle-grid { grid-template-columns: 1fr; gap: 40px; }
}


/* ===== [C11] Special Points Section — 차별화 포인트 (12개 시술 페이지) ===== */
.special-points { background: var(--surface, #FBF5F3); }
.points-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.point-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.point-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.point-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
}
.point-card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.point-card p { font-size: 15px; line-height: 1.7; color: var(--text-mid); }
.point-card-img { height: 160px; overflow: hidden; margin: -40px -32px 20px; }
.point-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.point-card:hover .point-card-img img { transform: scale(1.06); }

@media (max-width: 1024px) {
  .points-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .points-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PAGE-SPECIFIC STYLES — 페이지별 고유 스타일
   각 페이지에서만 사용하는 CSS입니다.
   ============================================================ */


/* ─── index.html — 메인 홈페이지 — 히어로 스플릿, 트러스트바, 의료진, 안전, SNS ─── */
.hero-split {
  height: 100vh;
  height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
}
.sp {
  flex: 1;
  min-height: 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.85s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-tap-highlight-color: transparent;
}
.hero-split.hover-cosmetic .sp-cosmetic {
  flex: 1.6;
}
.hero-split.hover-cosmetic .sp-medical {
  flex: 0.4;
}
.hero-split.hover-medical .sp-cosmetic {
  flex: 0.4;
}
.hero-split.hover-medical .sp-medical {
  flex: 1.6;
}
.sp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
  transform: scale(1.06);
  will-change: transform;
}
.sp.active .sp-bg, .sp:hover .sp-bg {
  transform: scale(1);
}
.sp-cosmetic .sp-bg {
  background-image: url('../images/mc-image/cosmetic/cosmetic-second.jpg');
  background-color: #F3E8E4;
  background-position: center top;
}
.sp-cosmetic .sp-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,31,36,0.08) 0%, rgba(45,31,36,0.55) 100%);
}
.sp-medical .sp-bg {
  background-image: url('../images/surgery-room.jpg');
  background-color: #FBF5F3;
}
.sp-medical .sp-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,31,36,0.08) 0%, rgba(45,31,36,0.58) 100%);
}
.sp-seam {
  width: 0;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  z-index: 20;
  pointer-events: none;
}
.sp-seam::before {
  display: none;
}
.sp-content {
  position: relative;
  z-index: 5;
  color: #fff;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  pointer-events: none;
}
.sp-content a {
  pointer-events: auto;
}
.sp-cosmetic .sp-content {
  padding-right: 100px;
}
.sp-medical .sp-content {
  padding-left: 100px;
}
.sp-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}
.sp-title {
  font-size: clamp(54px, 5.5vw, 90px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: #fff;
}
.sp-cosmetic .sp-title {
  text-align: left;
}
.sp-medical .sp-title {
  text-align: right;
}
.sp-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 320px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s 0.06s, transform 0.35s 0.06s;
}
.sp-medical .sp-desc {
  margin-left: auto; text-align: right;
}
.sp-services {
  display: flex;
  flex-direction: column;
  gap: 9px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s 0.1s, transform 0.35s 0.1s;
}
.sp-medical .sp-services {
  align-items: flex-end;
}
.sp-services li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-services li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.sp-medical .sp-services li {
  flex-direction: row-reverse;
}
.sp-medical .sp-services li::before {
  order: -1;
}
.sp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  width: fit-content;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s 0.15s, transform 0.35s 0.15s, background 0.2s, border-color 0.2s;
}
.sp-cta-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
}
.sp-medical .sp-cta-btn {
  align-self: flex-end;
}
.sp.active .sp-eyebrow, .sp.active .sp-desc, .sp.active .sp-services, .sp.active .sp-cta-btn {
  opacity: 1;
  transform: translateY(0);
}
.sp-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
  text-align: center;
  color: #fff;
  pointer-events: none;
  transition: opacity 0.4s;
}
.hero-split.hover-cosmetic .sp-center-logo, .hero-split.hover-medical .sp-center-logo {
  opacity: 0;
}
.sp-center-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}
.sp-center-line {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 10px auto;
}
.sp-center-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  white-space: nowrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  pointer-events: none;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55%       { transform: translateX(-50%) translateY(7px); }
}
.trust-bar {
  background: var(--primary-dark);
  padding: 28px 40px;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.trust-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.centers {
  background: var(--accent-light);
}
.centers-header {
  margin-bottom: 60px;
}
.centers-group {
  margin-bottom: 60px;
}
.centers-group:last-child {
  margin-bottom: 0;
}
.group-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.group-pill {
  padding: 6px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.pill-cosmetic {
  background: var(--primary); color: #2D1F24;
}
.pill-medical {
  background: var(--primary); color: #2D1F24;
}
.group-sub {
  font-size: 14px; color: var(--text-light);
}
.cards-grid {
  display: grid; gap: 14px;
}
.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #E8DAD5;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .card-img img {
  transform: scale(1.05);
}
.card-num {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.65);
  background: rgba(0,0,0,0.28);
  padding: 3px 9px;
  border-radius: 2px;
}
.card-body {
  padding: 26px 26px 30px;
}
.card-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 9px;
}
.card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 9px;
}
.card-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
}
.card-tag {
  font-size: 11px;
  color: var(--text-light);
  background: #F3E8E4;
  padding: 4px 9px;
  border-radius: 2px;
}
.card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.25s;
}
.service-card:hover .card-link {
  gap: 9px;
}
.doctor {
  background: #ffffff; padding: 100px 40px;
}
.doctor-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 80px;
  align-items: center;
}
.doctor-img-wrap {
  position: relative;
}
.doctor-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  display: block;
}
.doctor-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: #2D1F24;
  padding: 12px 18px;
  border-radius: 2px;
}
.doctor-img-badge strong {
  display: block; font-size: 15px; font-weight: 700;
}
.doctor-img-badge span {
  font-size: 12px; opacity: 0.8;
}
.doctor-content .section-label {
  color: var(--primary);
}
.doctor-content .section-title {
  color: var(--text-dark); margin-bottom: 8px;
}
.doctor-role {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.doctor-quote {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-mid);
  border-left: 3px solid var(--primary);
  padding-left: 22px;
  margin-bottom: 36px;
  font-style: italic;
}
.credentials {
  display: flex; flex-direction: column; gap: 10px;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.credential-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 6px;
}
.safety {
  background: var(--surface, #FBF5F3);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.safety-card {
  background: #fff;
  border-radius: 20px;
  border: none;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  box-shadow: 0 8px 40px rgba(158, 107, 123, 0.06);
}
.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(158,107,123,0.18);
}
.safety-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.safety-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.safety-card:hover .safety-img img {
  transform: scale(1.06);
}
.safety-card-body {
  padding: 28px 28px 32px;
}
.safety-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.safety-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.safety-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.drlog {
  background: #fff;
}
.drlog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.drlog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.drlog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.drlog-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.drlog-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.drlog-card:hover .drlog-thumb img {
  transform: scale(1.06);
}
.drlog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,31,36,0.35) 0%, rgba(0,0,0,0.08) 60%);
  z-index: 1;
}
.drlog-thumb-icon {
  font-size: 38px; color: rgba(255,255,255,0.7); position: relative; z-index: 2;
}
.drlog-type {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 9px;
  border-radius: 2px;
  z-index: 2;
}
.drlog-type-video {
  background: var(--primary); color: #2D1F24;
}
.drlog-type-column {
  background: rgba(255,255,255,0.85); color: #1a1a1a;
}
.drlog-type-case {
  background: var(--primary); color: #2D1F24;
}
.drlog-body {
  padding: 22px;
}
.drlog-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.drlog-meta {
  font-size: 12px; color: var(--text-light);
}
.drlog-cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.drlog-cta-text {
  font-size: 14px; color: var(--text-mid);
}
.drlog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.25s, transform 0.25s;
}
.drlog-cta-btn:hover {
  opacity: 0.85; transform: translateY(-2px);
}
.quick-connect {
  background: var(--surface, #FBF5F3);
  padding: 64px 40px;
}
.quick-connect-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.quick-connect h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.quick-connect p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.7;
}
.quick-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.qbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  letter-spacing: -0.2px;
}
.qbtn:active {
  transform: scale(0.97);
}
.qbtn-kakao {
  background: #FEE500;
  color: #3C1E1E;
  flex: 1;
}
.qbtn-phone {
  background: var(--primary);
  color: #2D1F24;
  flex: 1;
}
.qbtn-reserve {
  border: 1.5px solid rgba(0,0,0,0.18);
  color: var(--text-dark);
  flex: 1;
}
.qbtn-reserve:hover {
  border-color: var(--primary); color: var(--primary);
}
.qbtn-naver {
  background: #03C75A;
  color: #fff;
  flex: 1;
}
.qbtn-naver:hover {
  opacity: 0.88;
}
.qbtn-kakao:hover, .qbtn-phone:hover {
  opacity: 0.9;
}
@media (max-width: 380px) {
  .sp-title { font-size: 36px; }
  .sp-cta-btn { font-size: 11px; padding: 9px 18px; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-sep { display: none; }
}
.popup-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
.popup-card {
  background: #fff;
  max-width: 440px; width: 90%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 32px;
  position: relative;
}
.popup-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: pointer; font-size: 20px;
  color: #888; line-height: 1;
}
.popup-close:hover {
  color: #333;
}
.popup-img {
  width: 100%; border-radius: 8px;
  margin: 16px 0;
}
.popup-cta {
  display: block; text-align: center;
  background: var(--primary);
  color: #fff; padding: 12px;
  border-radius: 8px; font-weight: 600;
  margin-top: 16px; text-decoration: none;
  transition: background 0.2s;
}
.popup-cta:hover {
  background: var(--primary-dark);
}
.popup-skip {
  margin-top: 16px; font-size: 12px;
  color: #888; display: flex;
  align-items: center; gap: 6px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .doctor-inner {
  grid-template-columns: 1fr;
  gap: 48px;
  }
  .doctor-img-wrap img {
  height: 420px;
  }
  .cards-grid-3 {
  grid-template-columns: repeat(2, 1fr);
  }
  .safety-grid {
  grid-template-columns: 1fr;
  }
  .safety-img {
  height: 260px;
  }
  .sp-content {
  padding: 60px;
  }
  .sp-cosmetic .sp-content {
  padding-right: 80px;
  }
  .sp-medical .sp-content {
  padding-left: 80px;
  }
}
@media (max-width: 768px) {
  .quick-connect {
  padding: 48px 20px;
  }
  .quick-connect h2 {
  font-size: 22px;
  }
  .quick-btns {
  flex-direction: column; gap: 12px;
  }
  .qbtn {
  flex: none; width: 100%; padding: 18px 24px; font-size: 16px;
  }
}


/* ─── about.html — 소개 페이지 — 병원 소개, 미션 카드, 찾아오시는 길 ─── */
.about-intro {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.about-text h2 {
  font-size: 30px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.8px; margin-bottom: 24px; line-height: 1.35;
}
.about-text p {
  font-size: 16px; color: var(--text-mid); line-height: 1.9; margin-bottom: 20px;
}
.about-text p strong {
  color: var(--text-dark); font-weight: 700;
}
.info-box {
  background: var(--surface, #FBF5F3);
  border-radius: 12px;
  padding: 36px 32px;
  border-left: 4px solid var(--primary);
}
.info-box-title {
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: 24px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: none;
}
.stat-item:last-child {
  border-bottom: none;
}
.stat-num {
  font-size: 30px; font-weight: 800; color: var(--primary); letter-spacing: -1px; min-width: 80px;
}
.stat-label {
  font-size: 14px; color: var(--text-mid); line-height: 1.5;
}
.stat-label strong {
  display: block; font-size: 15px; color: var(--text-dark); font-weight: 700;
}
.mission {
  background: var(--surface, #FBF5F3);
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.mission-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.mission-card:hover {
  transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.mission-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}
.mission-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.mission-card:hover .mission-img img {
  transform: scale(1.06);
}
.mission-card-body {
  padding: 28px 28px 36px;
}
.mission-card h3 {
  font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; letter-spacing: -0.3px;
}
.mission-card p {
  font-size: 14px; color: var(--text-mid); line-height: 1.8;
}
.location {
  background: #fff;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.location-info h3 {
  font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 28px;
}
.location-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.location-icon {
  width: 40px; height: 40px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.location-label {
  font-size: 12px; font-weight: 700; color: var(--text-light); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px;
}
.location-value {
  font-size: 15px; color: var(--text-dark); line-height: 1.6;
}
.map-placeholder {
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-kakao-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: box-shadow 0.2s;
}
.map-kakao-link:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}
@media (max-width: 1024px) {
  .about-grid {
  grid-template-columns: 1fr;
  }
  .info-box {
  max-width: 480px;
  }
  .mission-grid {
  grid-template-columns: 1fr 1fr;
  }
  .location-grid {
  grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .about-text h2 {
  font-size: 24px;
  }
  .mission-grid {
  grid-template-columns: 1fr;
  }
}


/* ─── cosmetic.html — 미용성형센터 — 진료 분야 카테고리 카드 ─── */
.hero-slideshow {
  position: relative;
  height: clamp(500px, 70vh, 700px);
  overflow: hidden;
  background: linear-gradient(120deg, #F3E8E4 0%, #FBF5F3 100%);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45,31,36,0.60) 0%, rgba(0,0,0,0.38) 50%, rgba(0,0,0,0.12) 100%);
}
.slide-content {
  position: absolute;
  bottom: 80px;
  left: max(40px, calc((100% - 1280px) / 2 + 40px));
  z-index: 2;
  max-width: 520px;
}
.slide-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.slide-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2.5px;
  line-height: 1.0;
  margin-bottom: 14px;
}
.slide-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 380px;
}
.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  color: #FFFFFF;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.slide-btn:hover {
  background: var(--primary-light);
}
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.slide-arrow:hover {
  background: rgba(255,255,255,0.28);
}
.slide-arrow-prev {
  left: 24px;
}
.slide-arrow-next {
  right: 24px;
}
.slide-dots {
  position: absolute;
  bottom: 28px;
  right: max(40px, calc((100% - 1280px) / 2 + 40px));
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.slide-dot.active {
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  transform: scale(1.35);
}
.slide-bg-eye {
  background-image: url('../images/mc-image/cosmetic/1-eye-center.png');
}
.slide-bg-nose {
  background-image: url('../images/mc-image/cosmetic/2-rhinoplasty.jpg');
}
.slide-bg-lifting {
  background-image: url('../images/mc-image/cosmetic/3-lifting-antiaging.jpg');
}
.slide-bg-male {
  background-image: url('../images/mc-image/cosmetic/4-male-cosmetic.png');
}
.slide-bg-fat {
  background-image: url('../images/mc-image/cosmetic/5-fat-contouring.jpg');
}
.slide-bg-breast {
  background-image: url('../images/mc-image/cosmetic/6-breast-surgery.jpg');
}
.slide-bg-other {
  background-image: url('../images/mc-image/cosmetic/7-other-surgery.jpg');
}
.slide-bg-petit {
  background-image: url('../images/mc-image/cosmetic/8-petit-skin.jpg');
}
.categories-scroll-section {
  background: var(--bg-off, #FBF5F3);
  padding: 80px 0;
}
.categories-scroll-header {
  padding: 0 40px;
  max-width: 1360px;
  margin: 0 auto 40px;
}
.categories-scroll-wrapper {
  position: relative;
}
.categories-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 40px 16px 0;
  cursor: grab;
}
.categories-scroll-track::before {
  content: '';
  flex-shrink: 0;
  width: max(16px, calc((100vw - 1360px) / 2 + 16px));
}
.categories-scroll-track::-webkit-scrollbar {
  display: none;
}
.categories-scroll-track.dragging {
  cursor: grabbing;
}
.cat-card {
  flex-shrink: 0;
  width: 200px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.cat-card:hover {
  transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s;
}
.cat-card:hover .cat-card-bg {
  transform: scale(1.06);
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,31,36,0.06) 0%, rgba(45,31,36,0.60) 70%, rgba(45,31,36,0.80) 100%);
}
.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  z-index: 2;
}
.cat-card-en {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.cat-card-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cat-card-arrow {
  font-size: 16px;
  color: var(--primary-light);
  margin-top: 8px;
  display: block;
  transition: transform 0.25s;
}
.cat-card:hover .cat-card-arrow {
  transform: translateX(4px);
}
.cat-bg-eye {
  background-image: url('../images/mc-image/cosmetic/1-eye-center.png');
}
.cat-bg-nose {
  background-image: url('../images/mc-image/cosmetic/2-rhinoplasty.jpg');
}
.cat-bg-lifting {
  background-image: url('../images/mc-image/cosmetic/3-lifting-antiaging.jpg');
}
.cat-bg-male {
  background-image: url('../images/mc-image/cosmetic/4-male-cosmetic.png');
}
.cat-bg-fat {
  background-image: url('../images/mc-image/cosmetic/5-fat-contouring.jpg');
}
.cat-bg-breast {
  background-image: url('../images/mc-image/cosmetic/6-breast-surgery.jpg');
}
.cat-bg-other {
  background-image: url('../images/mc-image/cosmetic/7-other-surgery.jpg');
}
.cat-bg-petit {
  background-image: url('../images/mc-image/cosmetic/8-petit-skin.jpg');
}
.scroll-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 8px 40px rgba(158, 107, 123, 0.06);
  color: var(--text-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.scroll-nav:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.18); transform: translateY(-50%) scale(1.08);
}
.scroll-prev {
  left: 8px;
}
.scroll-next {
  right: 8px;
}
.trust-section {
  background: var(--surface, #FBF5F3);
}
.trust-header {
  margin-bottom: 52px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  padding: 44px 32px;
  background: #fff;
  border-radius: 20px;
  border: none;
  box-shadow: 0 8px 40px rgba(158, 107, 123, 0.06);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.trust-card:hover {
  background: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(158,107,123,0.15);
}
/* .trust-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
  transition: color 0.3s;
} */
.trust-card:hover .trust-num {
  color: var(--primary-dark);
}
.trust-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.45;
  color: var(--text-dark);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.trust-card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  transition: color 0.3s;
}
.trust-card:hover .trust-card-title, .trust-card:hover .trust-card-desc {
  color: var(--text-dark);
}
.doctor-banner {
  background: var(--surface, #FBF5F3);
  padding: 72px 40px;
}
.doctor-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.doctor-img-wrap {
  flex-shrink: 0;
  width: 200px;
  height: 240px;
  position: relative;
}
.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  display: block;
}
.doctor-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  color: #FFFFFF;
  padding: 8px 13px;
  border-radius: 2px;
}
.doctor-img-badge strong {
  display: block; font-size: 13px; font-weight: 700;
}
.doctor-img-badge span {
  font-size: 11px; opacity: 0.85;
}
.doctor-content {
  flex: 1;
}
.doctor-content .section-label {
  color: var(--primary); margin-bottom: 8px;
}
.doctor-content .section-title {
  color: var(--text-dark); font-size: 26px; margin-bottom: 6px;
}
.doctor-role {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.doctor-quote {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  border-left: 3px solid var(--primary);
  padding-left: 18px;
  margin-bottom: 24px;
  font-style: italic;
}
.credentials {
  display: flex; flex-direction: column; gap: 8px;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.credential-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  flex-shrink: 0;
  margin-top: 6px;
}
.cta-section-inner {
  max-width: 960px; margin: 0 auto;
}
.cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.cta-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.8px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}
.cta-btn-naver {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 16px 24px;
  background: #03C75A;
  color: #fff;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 700;
  transition: opacity 0.25s, transform 0.25s;
}
.cta-btn-naver:hover {
  opacity: 0.88; transform: translateY(-2px);
}
.cta-sub-notes {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cta-sub-notes span {
  font-size: 12px;
  color: var(--text-light);
}
.float-cta {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 980;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.float-cta-toggle {
  position: absolute;
  top: -32px;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.20);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.float-cta-toggle:hover {
  background: rgba(0,0,0,0.40);
}
.float-cta.hidden .float-cta-btns {
  display: none;
}
.float-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.float-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.float-cta-btn:hover {
  transform: translateX(-4px); box-shadow: 0 6px 24px rgba(0,0,0,0.24);
}
.float-cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.float-btn-phone {
  background: #fff; color: var(--primary-dark);
}
.float-btn-phone .float-cta-icon {
  background: var(--primary);
}
.float-btn-kakao {
  background: #FEE500; color: #3C1E1E;
}
.float-btn-kakao .float-cta-icon {
  background: rgba(0,0,0,0.10);
}
.float-btn-naver {
  background: #03C75A; color: #fff;
}
.float-btn-naver .float-cta-icon {
  background: rgba(255,255,255,0.20);
}
.cta-naver {
  background: #03C75A; color: #fff;
}
@media (max-width: 380px) {
  .slide-title { font-size: 34px; }
}
@media (max-width: 1024px) {
  .trust-grid {
  grid-template-columns: 1fr;
  }
  .doctor-banner-inner {
  gap: 40px;
  }
  .float-cta {
  display: none;
  }
}
@media (max-width: 768px) {
  .hero-slideshow {
  margin-top: 44px; height: clamp(420px, 80vw, 560px);
  }
  .slide-content {
  bottom: 60px; left: 20px; right: 60px; max-width: none;
  }
  .slide-title {
  font-size: clamp(36px, 10vw, 56px);
  }
  .slide-desc {
  font-size: 13px;
  }
  .slide-arrow {
  width: 38px; height: 38px; font-size: 16px;
  }
  .slide-arrow-prev {
  left: 12px;
  }
  .slide-arrow-next {
  right: 12px;
  }
  .slide-dots {
  right: 20px; bottom: 20px;
  }
  .categories-scroll-section {
  padding: 60px 0;
  }
  .categories-scroll-header {
  padding: 0 20px; margin-bottom: 28px;
  }
  .categories-scroll-track {
  padding: 8px 20px 12px 0; gap: 12px;
  }
  .categories-scroll-track::before {
  width: 20px;
  }
  .cat-card {
  width: 160px; height: 230px;
  }
  .cat-card-name {
  font-size: 18px;
  }
  .trust-grid {
  grid-template-columns: 1fr;
  }
  .trust-card {
  padding: 32px 24px;
  }
  .doctor-banner {
  padding: 56px 20px;
  }
  .doctor-banner-inner {
  flex-direction: column; gap: 32px;
  }
  .doctor-img-wrap {
  width: 100%; height: 240px;
  }
  .cta-section {
  padding: 60px 20px;
  }
  .cta-title {
  font-size: 24px;
  }
  .cta-btn-primary, .cta-btn-outline, .cta-btn-kakao, .cta-btn-naver {
  justify-content: center;
  }
  .cta-sub-notes {
  flex-direction: column; gap: 8px; align-items: center;
  }
  .float-cta {
  display: none;
  }
}


/* ─── medical.html — 외상재건센터 — 진료 분야 카테고리 카드 ─── */
.promo-strip {
  margin-top: 48px;
  background: linear-gradient(120deg, #F3E8E4 0%, #FBF5F3 100%);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(158, 107, 123, 0.15);
}
.promo-strip-inner {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.promo-strip-inner::-webkit-scrollbar {
  display: none;
}
.promo-card {
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: start;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 900px) {
  .promo-card { width: 33.333%; }
}
.promo-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.promo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(158,107,123,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.promo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.promo-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
}
.promo-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.2px;
  line-height: 1.35;
}
.promo-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.promo-link:hover {
  color: var(--primary-dark);
}
.promo-strip-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 12px;
}
.promo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(158,107,123,0.25);
  cursor: pointer;
  border: none;
  transition: background 0.25s;
}
.promo-dot.active {
  background: var(--primary);
}
.hero-slideshow {
  position: relative;
  height: clamp(480px, 68vh, 680px);
  overflow: hidden;
  background: linear-gradient(120deg, #F3E8E4 0%, #FBF5F3 100%);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-link {
  display: block;
  position: absolute;
  inset: 0;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45,31,36,0.60) 0%, rgba(0,0,0,0.38) 50%, rgba(0,0,0,0.12) 100%);
}
.slide-content {
  position: absolute;
  bottom: 80px;
  left: max(40px, calc((100% - 1280px) / 2 + 40px));
  z-index: 2;
  max-width: 520px;
}
.slide-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 14px;
}
.slide-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2.5px;
  line-height: 1.0;
  margin-bottom: 14px;
}
.slide-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 380px;
}
.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  color: #FFFFFF;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.slide-btn:hover {
  background: var(--primary-light);
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,80,60,0.85);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.slide-arrow:hover {
  background: rgba(255,255,255,0.25);
}
.slide-arrow-prev {
  left: 24px;
}
.slide-arrow-next {
  right: 24px;
}
.slide-dots {
  position: absolute;
  bottom: 28px;
  right: max(40px, calc((100% - 1280px) / 2 + 40px));
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.30);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.slide-dot.active {
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  transform: scale(1.35);
}
.slide-bg-trauma {
  background-image: url('../images/mc-image/medical/1-trauma.png');
}
.slide-bg-burn {
  background-image: url('../images/mc-image/medical/2-burn-treatment.png');
}
.slide-bg-tumor {
  background-image: url('../images/mc-image/medical/3-skin-tumor.png');
}
.slide-bg-pediatric {
  background-image: url('../images/mc-image/medical/4-pediatric.jpg');
}
.categories-scroll-section {
  background: var(--bg-off, #FBF5F3);
  padding: 80px 0;
}
.categories-scroll-header {
  padding: 0 40px;
  max-width: 1360px;
  margin: 0 auto 40px;
}
.categories-scroll-wrapper {
  position: relative;
}
.categories-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 40px 16px 0;
  cursor: grab;
}
.categories-scroll-track::before {
  content: '';
  flex-shrink: 0;
  width: max(12px, calc((100vw - 1360px) / 2 + 12px));
}
.categories-scroll-track::-webkit-scrollbar {
  display: none;
}
.categories-scroll-track.dragging {
  cursor: grabbing;
}
.cat-card {
  flex-shrink: 0;
  width: 240px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.cat-card:hover {
  transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.20);
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s;
}
.cat-card:hover .cat-card-bg {
  transform: scale(1.06);
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,31,36,0.08) 0%, rgba(45,31,36,0.60) 65%, rgba(45,31,36,0.82) 100%);
}
.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
  z-index: 2;
}
.cat-card-en {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 6px;
}
.cat-card-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cat-card-arrow {
  font-size: 16px;
  color: var(--primary-light);
  margin-top: 8px;
  display: block;
  transition: transform 0.25s;
}
.cat-card:hover .cat-card-arrow {
  transform: translateX(4px);
}
.cat-bg-trauma {
  background-image: url('../images/mc-image/medical/1-trauma.png');
}
.cat-bg-burn {
  background-image: url('../images/mc-image/medical/2-burn-treatment.png');
}
.cat-bg-tumor {
  background-image: url('../images/mc-image/medical/3-skin-tumor.png');
}
.cat-bg-pediatric {
  background-image: url('../images/mc-image/medical/4-pediatric.jpg');
}
.scroll-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 8px 40px rgba(158, 107, 123, 0.06);
  color: var(--text-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.scroll-nav:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.18); transform: translateY(-50%) scale(1.08);
}
.scroll-prev {
  left: 8px;
}
.scroll-next {
  right: 8px;
}
.safety {
  background-image: url('../images/mc-image/medical/medical-second.png');
  background-size: cover;
  background-position: center;
  position: relative;
}
.safety::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245,243,239,0.93);
  z-index: 0;
}
.safety .section-inner {
  position: relative; z-index: 1;
}
.safety-header {
  margin-bottom: 56px;
}
.safety .section-label {
  color: var(--primary);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.safety-card {
  background: #fff;
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(158, 107, 123, 0.06);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(13,31,46,0.15);
}
.safety-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.safety-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.safety-card:hover .safety-img img {
  transform: scale(1.06);
}
.safety-card-body {
  padding: 28px 28px 32px;
}
.safety-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.safety-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.safety-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.doctor-banner {
  background: var(--surface, #FBF5F3);
  padding: 72px 40px;
}
.doctor-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.doctor-img-wrap {
  flex-shrink: 0;
  width: 200px;
  height: 240px;
  position: relative;
}
.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  display: block;
}
.doctor-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  color: #FFFFFF;
  padding: 8px 13px;
  border-radius: 2px;
}
.doctor-img-badge strong {
  display: block; font-size: 13px; font-weight: 700;
}
.doctor-img-badge span {
  font-size: 11px; opacity: 0.85;
}
.doctor-content {
  flex: 1;
}
.doctor-content .section-label {
  color: var(--primary); margin-bottom: 8px;
}
.doctor-content .section-title {
  color: var(--text-dark); font-size: 26px; margin-bottom: 6px;
}
.doctor-role {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.doctor-quote {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  border-left: 3px solid var(--primary);
  padding-left: 18px;
  margin-bottom: 24px;
  font-style: italic;
}
.credentials {
  display: flex; flex-direction: column; gap: 8px;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.credential-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  flex-shrink: 0;
  margin-top: 6px;
}
.cta-section-inner {
  max-width: 960px; margin: 0 auto;
}
.cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.cta-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.8px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}
.cta-btn-naver {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 16px 24px;
  background: #03C75A;
  color: #fff;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 700;
  transition: opacity 0.25s, transform 0.25s;
}
.cta-btn-naver:hover {
  opacity: 0.88; transform: translateY(-2px);
}
.cta-sub-notes {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cta-sub-notes span {
  font-size: 12px;
  color: var(--text-light);
}
.cta-naver {
  background: #03C75A; color: #fff;
}

@media (max-width: 380px) {
  .slide-title { font-size: 32px; }
}
@media (max-width: 1024px) {
  .safety-grid {
  grid-template-columns: 1fr;
  }
  .safety-img {
  height: 260px;
  }
  .doctor-banner-inner {
  gap: 40px;
  }
}
@media (max-width: 768px) {
  .promo-strip {
  margin-top: 44px;
  }
  .promo-card {
  padding: 14px 20px;
  }
  .promo-title {
  font-size: 13px;
  }
  .hero-slideshow {
  height: clamp(400px, 80vw, 540px);
  }
  .slide-content {
  bottom: 56px; left: 20px; right: 60px; max-width: none;
  }
  .slide-title {
  font-size: clamp(34px, 9vw, 54px);
  }
  .slide-desc {
  font-size: 13px;
  }
  .slide-arrow {
  width: 38px; height: 38px; font-size: 16px;
  }
  .slide-arrow-prev {
  left: 12px;
  }
  .slide-arrow-next {
  right: 12px;
  }
  .slide-dots {
  right: 20px; bottom: 18px;
  }
  .categories-scroll-section {
  padding: 60px 0;
  }
  .categories-scroll-header {
  padding: 0 20px; margin-bottom: 28px;
  }
  .categories-scroll-track {
  padding: 8px 20px 12px 0; gap: 14px;
  }
  .categories-scroll-track::before {
  width: 20px;
  }
  .cat-card {
  width: 200px; height: 260px;
  }
  .cat-card-name {
  font-size: 20px;
  }
  .safety-header {
  margin-bottom: 36px;
  }
  .safety-grid {
  grid-template-columns: 1fr;
  }
  .safety-img {
  height: 220px;
  }
  .safety-card-body {
  padding: 24px 24px 28px;
  }
  .doctor-banner {
  padding: 56px 20px;
  }
  .doctor-banner-inner {
  flex-direction: column; gap: 32px;
  }
  .doctor-img-wrap {
  width: 100%; height: 240px;
  }
  .cta-section {
  padding: 60px 20px;
  }
  .cta-title {
  font-size: 24px;
  }
  .cta-btn-primary, .cta-btn-outline, .cta-btn-kakao, .cta-btn-naver {
  justify-content: center;
  }
  .cta-sub-notes {
  flex-direction: column; gap: 8px; align-items: center;
  }
}


/* ─── doctor.html — 의료진 소개 — 의사 프로필, 경력, 전문분야 ─── */
.doctor-section {
  background: #fff;
}
.doctor-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.doctor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--accent) 0%, var(--bg-off) 100%);
  display: flex;
  align-items: flex-end;
  position: relative;
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.doctor-info {
  padding-top: 8px;
}
.doctor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5);
  border: 1px solid rgba(158,107,123,0.12);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}
.doctor-name {
  font-size: 42px; font-weight: 800; color: var(--text-dark); letter-spacing: -1.5px; margin-bottom: 8px;
}
.doctor-title {
  font-size: 16px; color: var(--text-mid); margin-bottom: 32px; line-height: 1.7;
}
.doctor-quote {
  background: var(--surface, #FBF5F3);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-bottom: 36px;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
}
.career-list {
  margin-bottom: 36px;
}
.career-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.career-item:last-child {
  border-bottom: none;
}
.career-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 7px;
}
.career-text {
  font-size: 15px; color: var(--text-mid); line-height: 1.6;
}
.career-text strong {
  color: var(--text-dark); font-weight: 600;
}
.specialty-section {
  background: var(--surface, #FBF5F3);
}
.specialty-section .inner-wrap {
  max-width: 1280px; margin: 0 auto;
}
.tag-group {
  margin-bottom: 36px;
}
.tag-group:last-child {
  margin-bottom: 0;
}
.tag-group-title {
  font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; letter-spacing: 0.3px;
}
.tag-list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.spec-tag {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(158,107,123,0.20);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  transition: all 0.2s;
}
.spec-tag:hover {
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5); color: #FFFFFF; border-color: var(--primary);
}
.academic-section {
  background: #fff;
}
.timeline {
  position: relative; padding-left: 28px;
}
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--accent);
}
.timeline-item {
  position: relative; padding: 0 0 36px 28px;
}
.timeline-item::before {
  content: ''; position: absolute; left: -6px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year {
  font-size: 12px; font-weight: 700; color: var(--primary); letter-spacing: 1px; margin-bottom: 6px;
}
.timeline-content h4 {
  font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px;
}
.timeline-content p {
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
}
@media (max-width: 1024px) {
  .doctor-card {
  grid-template-columns: 1fr;
  }
  .doctor-photo {
  max-width: 360px;
  }
}
@media (max-width: 768px) {
  .doctor-name {
  font-size: 32px;
  }
}


/* ─── tour.html — 병원둘러보기 — 슬라이더, 편의시설, 오시는 길 ─── */
.slider-section {
  background: #fff; padding: 0;
}
.slider-wrap {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}
.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
/* .slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
} */
.slide-visual {
  height: 56vw;
  max-height: 560px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slide-visual-emoji {
  font-size: clamp(64px, 10vw, 100px);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.slide-label-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(158,107,123,0.12);
  backdrop-filter: blur(4px); border: 1px solid rgba(158,107,123,0.20);
  padding: 5px 12px;
  border-radius: 2px;
}
.slide-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,0.60);
}
.slide-counter span {
  color: var(--primary);
}
.slide-body {
  padding: 28px 32px 36px;
  background: #fff;
}
.slide-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.slide-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}
.slider-btn {
  position: absolute;
  top: calc(56vw / 2);
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.slider-btn:hover {
  background: #fff; transform: translateY(-50%) scale(1.08);
}
.slider-btn:active {
  transform: translateY(-50%) scale(0.96);
}
.slider-btn svg {
  width: 18px; height: 18px; color: var(--text-dark);
}
.slider-btn-prev {
  left: 16px;
}
.slider-btn-next {
  right: 16px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 8px;
  background: #fff;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
  border: none;
  padding: 0;
}
.dot.active {
  background: var(--primary);
  width: 24px;
}
.space-grid {
  display: none;
}
.amenity-section {
  background: var(--surface, #F7FAFC);
}
.amenity-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.amenity-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 24px rgba(158, 107, 123, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.amenity-item:hover {
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(158, 107, 123, 0.15);
}
.amenity-icon-wrap {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.amenity-body {
  padding: 0 20px 24px;
}
.amenity-item h4 {
  font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px;
}
.amenity-item p {
  font-size: 13px; color: var(--text-mid); line-height: 1.75;
}
.dir-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; align-items: start;
}
.map-placeholder {
  height: 360px;
  border-radius: 16px;
  background: linear-gradient(160deg, #F3E8E4 0%, #FBF5F3 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(158,107,123,0.15);
}
.map-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(158,107,123,0.04) 39px, rgba(158,107,123,0.04) 40px),
  repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(158,107,123,0.04) 39px, rgba(158,107,123,0.04) 40px);
}
.map-icon {
  font-size: 48px; position: relative; z-index: 1;
}
.map-link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: rgba(158,107,123,0.08);
  border: 1px solid rgba(158,107,123,0.25);
  border-radius: 6px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.map-link:hover {
  background: rgba(158,107,123,0.15); color: var(--primary);
}
.dir-info {

}
.dir-info h3 {
  font-size: 22px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px; margin-bottom: 24px;
}
.dir-item {
  display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start;
}
.dir-text h4 {
  font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px;
}
.dir-text p {
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
}
.parking-note {
  border-left: 3px solid var(--primary);
  padding: 14px 20px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .space-grid {
  grid-template-columns: repeat(2, 1fr);
  }
  .amenity-grid {
  grid-template-columns: repeat(2, 1fr);
  }
  .dir-grid {
  grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .slider-btn {
  width: 36px; height: 36px;
  }
  .slider-btn svg {
  width: 14px; height: 14px;
  }
  .slider-btn-prev {
  left: 10px;
  }
  .slider-btn-next {
  right: 10px;
  }
  .slide-body {
  padding: 24px 20px 28px;
  }
  .slide-body h3 {
  font-size: 20px;
  }
}


/* ─── community.html — 커뮤니티 — 퀵 네비게이션, 공지, 연락방법 ─── */
.quicknav-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px;
}
.qnav-card {
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all 0.25s;
  display: block;
  cursor: pointer;
}
.qnav-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent;
}
.qnav-card.card-consult {
  background: linear-gradient(140deg, #FBF5F3, #fff);
}
.qnav-card.card-consult:hover {
  background: linear-gradient(140deg, #F3E8E4, #E8DAD5); border-color: rgba(158,107,123,0.25);
}
.qnav-card.card-consult:hover .qnav-title {
  color: var(--primary-dark);
}
.qnav-card.card-consult:hover .qnav-desc {
  color: var(--text-mid);
}
.qnav-card.card-consult:hover .qnav-icon-wrap {
  background: rgba(158,107,123,0.12);
}
.qnav-card.card-kakao {
  background: linear-gradient(140deg, #FBF5F3, #fff);
}
.qnav-card.card-kakao:hover {
  background: linear-gradient(140deg, #FFF8C0, #FFF0A0); border-color: rgba(203,169,0,0.25);
}
.qnav-card.card-kakao:hover .qnav-title {
  color: #3C1E1E;
}
.qnav-card.card-kakao:hover .qnav-desc {
  color: rgba(60,30,30,0.7);
}
.qnav-card.card-kakao:hover .qnav-icon-wrap {
  background: rgba(60,30,30,0.08);
}
.qnav-card.card-booking {
  background: linear-gradient(140deg, #FBF5F3, #fff);
}
.qnav-card.card-booking:hover {
  background: linear-gradient(140deg, #F3E8E4, #E8DAD5); border-color: rgba(158,107,123,0.25);
}
.qnav-card.card-booking:hover .qnav-title {
  color: var(--primary-dark);
}
.qnav-card.card-booking:hover .qnav-desc {
  color: var(--text-mid);
}
.qnav-card.card-booking:hover .qnav-icon-wrap {
  background: rgba(158,107,123,0.12);
}
.qnav-card.card-news {
  background: linear-gradient(140deg, #FBF5F3, #fff);
}
.qnav-card.card-news:hover {
  background: linear-gradient(140deg, #F3E8E4, #E8DAD5); border-color: rgba(158,107,123,0.25);
}
.qnav-card.card-news:hover .qnav-title {
  color: var(--primary-dark);
}
.qnav-card.card-news:hover .qnav-desc {
  color: var(--text-mid);
}
.qnav-card.card-news:hover .qnav-icon-wrap {
  background: rgba(158,107,123,0.12);
}
.qnav-card.card-notice {
  background: linear-gradient(140deg, #FBF5F3, #fff);
}
.qnav-card.card-notice:hover {
  background: linear-gradient(140deg, #F3E8E4, #E8DAD5); border-color: rgba(158,107,123,0.25);
}
.qnav-card.card-notice:hover .qnav-title {
  color: var(--primary-dark);
}
.qnav-card.card-notice:hover .qnav-desc {
  color: var(--text-mid);
}
.qnav-card.card-notice:hover .qnav-icon-wrap {
  background: rgba(158,107,123,0.12);
}
.qnav-card.card-reviews {
  background: linear-gradient(140deg, #FBF5F3, #fff);
}
.qnav-card.card-reviews:hover {
  background: linear-gradient(140deg, #F3E8E4, #E8DAD5); border-color: rgba(158,107,123,0.25);
}
.qnav-card.card-reviews:hover .qnav-title {
  color: var(--primary-dark);
}
.qnav-card.card-reviews:hover .qnav-desc {
  color: var(--text-mid);
}
.qnav-card.card-reviews:hover .qnav-icon-wrap {
  background: rgba(158,107,123,0.12);
}
.qnav-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px; background: rgba(0,0,0,0.04); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; transition: background 0.25s;
}
.qnav-title {
  font-size: 15px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.3px; margin-bottom: 6px; transition: color 0.25s;
}
.qnav-desc {
  font-size: 12px; color: var(--text-light); line-height: 1.6; transition: color 0.25s;
}
.notices-section {
  background: var(--surface, #FBF5F3);
}
.notice-list {
  margin-top: 48px;
}
.notice-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: none;
  transition: color 0.18s;
}
.notice-item:last-child {
  border-bottom: none;
}
.notice-item:hover .notice-title {
  color: var(--primary);
}
.notice-badge {
  flex-shrink: 0; display: inline-block; padding: 3px 10px; background: var(--accent); color: var(--primary-dark); font-size: 11px; font-weight: 700; border-radius: 20px; white-space: nowrap;
}
.notice-badge.badge-new {
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5); color: #FFFFFF;
}
.notice-title {
  flex: 1; font-size: 15px; font-weight: 600; color: var(--text-dark); transition: color 0.18s;
}
.notice-date {
  flex-shrink: 0; font-size: 13px; color: var(--text-light);
}
.view-all {
  display: inline-block; margin-top: 24px; font-size: 14px; font-weight: 600; color: var(--primary); border-bottom: 1px solid var(--primary); padding-bottom: 2px;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px;
}
.contact-card {
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}
.contact-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.contact-card.card-phone {
  border-top: 3px solid var(--primary);
}
.contact-card.card-kakao-c {
  border-top: 3px solid #FEE500;
}
.contact-card.card-online {
  border-top: 3px solid #3a5cd6;
}
.contact-icon {
  font-size: 40px; margin-bottom: 16px;
}
.contact-title {
  font-size: 18px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.4px; margin-bottom: 8px;
}
.contact-info {
  font-size: 22px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; margin-bottom: 8px;
}
.contact-desc {
  font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px;
}
.contact-btn {
  display: inline-block; padding: 11px 24px; border-radius: 6px; font-size: 14px; font-weight: 700; transition: all 0.25s;
}
.btn-primary-red {
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5); color: #FFFFFF;
}
.btn-primary-red:hover {
  background: var(--primary-light);
}
.btn-primary-yellow {
  background: #FEE500; color: #3C1E1E;
}
.btn-primary-blue {
  background: var(--primary); color: #fff;
}
.btn-primary-blue:hover {
  background: var(--primary-dark);
}
@media (max-width: 1024px) {
  .quicknav-grid {
  grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
  grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto;
  }
}
@media (max-width: 768px) {
  .quicknav-grid {
  grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
    .promo-strip-dots {
        display: none;
    }
}


/* ─── notice.html — 공지사항 — 공지 테이블, 페이지네이션 ─── */
.hero-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: #2D1F24; letter-spacing: -2px; line-height: 1.1; margin-bottom: 14px;
}
.notice-section {
  background: var(--surface, #FBF5F3); padding: 80px 40px;
}
.notice-inner {
  max-width: 1280px; margin: 0 auto;
}
.notice-table-wrap {
  background: #fff; border-radius: 16px; box-shadow: 0 8px 40px rgba(158, 107, 123, 0.06); overflow: hidden; margin-bottom: 36px;
}
.notice-table {
  width: 100%; border-collapse: collapse;
}
.notice-table thead tr {
  background: var(--text-dark);
}
.notice-table thead th {
  padding: 16px 20px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); text-align: left;
}
.notice-table thead th:first-child {
  width: 60px; text-align: center;
}
.notice-table thead th:nth-child(3) {
  width: 100px; text-align: center;
}
.notice-table thead th:last-child {
  width: 80px; text-align: center;
}
.notice-table tbody tr {
  border-bottom: none; transition: background 0.15s; cursor: pointer;
}
.notice-table tbody tr:last-child {
  border-bottom: none;
}
.notice-table tbody tr:hover {
  background: var(--surface, #FBF5F3);
}
.notice-table tbody tr.pinned {
  background: rgba(158,107,123,0.03);
}
.notice-table td {
  padding: 16px 20px; font-size: 14px; color: var(--text-mid);
}
.notice-table td:first-child {
  text-align: center; font-size: 13px; color: var(--text-light);
}
.notice-table td:nth-child(3) {
  text-align: center; font-size: 13px;
}
.notice-table td:last-child {
  text-align: center; font-size: 13px; color: var(--text-light);
}
.notice-title-cell {
  display: flex; align-items: center; gap: 10px;
}
.notice-title-text {
  color: var(--text-dark); font-weight: 600; font-size: 15px; transition: color 0.18s;
}
.notice-table tbody tr:hover .notice-title-text {
  color: var(--primary);
}
.n-badge {
  display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.n-badge-new {
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5); color: #FFFFFF;
}
.n-badge-pin {
  background: var(--accent); color: var(--primary-dark);
}
.n-badge-notice {
  background: rgba(0,0,0,0.06); color: var(--text-mid);
}
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 6px;
}
.pg-btn {
  width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid rgba(0,0,0,0.1); background: #fff; font-size: 14px; font-weight: 600; color: var(--text-mid); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.18s;
}
.pg-btn:hover, .pg-btn.active {
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5); color: #FFFFFF; border-color: var(--primary);
}
.pg-btn.arrow {
  font-size: 12px;
}
@media (max-width: 768px) {
  .notice-section {
  padding: 60px 20px;
  }
  .notice-table-wrap {
  overflow-x: auto;
  }
  .notice-table {
  min-width: 560px;
  }
}


/* ─── reviews.html — 치료후기 — 리뷰 그리드, 필터, 모달 ─── */
.filter-wrap {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 9999px; font-size: 13px; font-weight: 600; border: 1.5px solid rgba(158,107,123,0.22); color: var(--text-mid); background: #fff; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--primary); color: var(--primary);
}
.filter-btn.active {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  background: #fff;
}
.review-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(158,107,123,0.12); border-color: transparent;
}
.review-thumb {
  width: 100%; height: 200px; object-fit: cover; background: var(--bg-off); display: block;
}
.review-thumb-placeholder {
  width: 100%; height: 200px; background: linear-gradient(135deg, #F3E8E4, #D4A5B5); display: flex; align-items: center; justify-content: center;
}
.review-thumb-placeholder span {
  font-size: 40px;
}
.review-body {
  padding: 20px 22px 24px;
}
.review-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.review-cat {
  display: inline-block; padding: 3px 10px; background: rgba(158,107,123,0.1); color: var(--primary-dark); font-size: 11px; font-weight: 700; border-radius: 20px;
}
.review-date {
  font-size: 12px; color: var(--text-light);
}
.review-title {
  font-size: 16px; font-weight: 700; color: var(--text-dark); letter-spacing: -0.3px; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.review-summary {
  font-size: 13px; color: var(--text-mid); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.reviews-empty {
  grid-column: 1/-1; text-align: center; padding: 80px 0; color: var(--text-light); font-size: 15px;
}
.reviews-empty p {
  margin-top: 12px; font-size: 13px;
}
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: #fff; border-radius: 20px; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.2); animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.96) translateY(12px); } to { opacity:1; transform: scale(1) translateY(0); }
}
.modal-img {
  width: 100%; height: 260px; object-fit: cover;
}
.modal-img-placeholder {
  width: 100%; height: 200px; background: linear-gradient(135deg, #F3E8E4, #D4A5B5); display: flex; align-items: center; justify-content: center; font-size: 56px;
}
.modal-content {
  padding: 28px 32px 36px;
}
.modal-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.modal-cat {
  display: inline-block; padding: 4px 12px; background: rgba(158,107,123,0.1); color: var(--primary-dark); font-size: 12px; font-weight: 700; border-radius: 20px;
}
.modal-date {
  font-size: 13px; color: var(--text-light);
}
.modal-title {
  font-size: 22px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px; line-height: 1.35; margin-bottom: 16px;
}
.modal-body {
  font-size: 15px; color: var(--text-mid); line-height: 1.85; white-space: pre-wrap; word-break: keep-all;
}
.modal-close {
  position: sticky; top: 16px; float: right; margin: 16px 16px 0 0; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.06); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.modal-close:hover {
  background: rgba(0,0,0,0.12);
}
.modal-close svg {
  width: 16px; height: 16px; color: #555;
}
@media (max-width: 1024px) {
  .reviews-grid {
  grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews-grid {
  grid-template-columns: 1fr;
  }
  .filter-wrap {
  gap: 6px; margin-top: 28px; margin-bottom: 28px;
  }
  .modal-content {
  padding: 20px 20px 28px;
  }
  .modal-title {
  font-size: 18px;
  }
}


/* ─── booking.html — 진료예약 — 예약 폼 ─── */
.hero-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: #2D1F24; letter-spacing: -2px; line-height: 1.1; margin-bottom: 14px;
}
.method-section {
  background: #fff; padding: 80px 40px;
}
.method-inner {
  max-width: 1280px; margin: 0 auto;
}
.method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px;
}
.method-card {
  border-radius: 16px;
  padding: 40px 32px;
  border: 1.5px solid rgba(0,0,0,0.07);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.method-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.method-card.recommended {
  border-color: var(--primary);
}
.recommend-badge {
  position: absolute; top: 20px; right: 20px; background: linear-gradient(135deg, #9E6B7B, #D4A5B5); color: #FFFFFF; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px;
}
.method-icon {
  font-size: 40px; margin-bottom: 20px;
}
.method-title {
  font-size: 20px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px; margin-bottom: 10px;
}
.method-desc {
  font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px;
}
.method-pros {
  list-style: none; padding: 0; margin-bottom: 28px;
}
.method-pros li {
  font-size: 13px; color: var(--text-mid); padding: 5px 0; display: flex; gap: 8px; align-items: flex-start;
}
.method-pros li::before {
  content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0;
}
.method-btn {
  display: block; text-align: center; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: all 0.25s;
}
.method-btn-primary {
  background: linear-gradient(135deg, #9E6B7B, #D4A5B5); color: #FFFFFF;
}
.method-btn-primary:hover {
  background: var(--primary-light);
}
.method-btn-outline {
  border: 1.5px solid rgba(0,0,0,0.18); color: var(--text-dark);
}
.method-btn-outline:hover {
  border-color: var(--primary); color: var(--primary);
}
.method-btn-kakao {
  background: #FEE500; color: #3C1E1E;
}
.booking-section {
  background: var(--surface, #FBF5F3); padding: 80px 40px;
}
.booking-inner {
  max-width: 860px; margin: 0 auto;
}
.booking-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.booking-card h2 {
  font-size: 22px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px; margin-bottom: 6px;
}
.booking-card .form-sub {
  font-size: 14px; color: var(--text-mid); margin-bottom: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 7px;
}
.form-group label .req {
  color: var(--primary);
}
.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid rgba(0,0,0,0.12); border-radius: 8px; font-family: inherit; font-size: 14px; color: var(--text-dark); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(158,107,123,0.10);
}
.form-control::placeholder {
  color: var(--text-light);
}
select.form-control {
  cursor: pointer;
}
textarea.form-control {
  resize: vertical; min-height: 100px; line-height: 1.7;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.time-section {
  background: #fff; padding: 80px 40px;
}
.time-inner {
  max-width: 1280px; margin: 0 auto;
}
.time-table-wrap {
  margin-top: 48px; overflow-x: auto;
}
.time-table {
  width: 100%; border-collapse: collapse; min-width: 600px;
}
.time-table th {
  padding: 14px 16px; background: var(--text-dark); color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 700; text-align: center;
}
.time-table td {
  padding: 14px 16px; text-align: center; font-size: 14px; border-bottom: none;
}
.time-table tr:hover td {
  background: var(--surface, #FBF5F3);
}
.time-table .open {
  color: var(--primary); font-weight: 700;
}
.time-table .closed {
  color: var(--text-light);
}
.time-table .lunch {
  color: #C09070; font-weight: 600;
}
.privacy-check {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px;
}
.privacy-check input[type="checkbox"] {
  width: 18px; height: 18px; border: 1.5px solid rgba(0,0,0,0.2); border-radius: 4px; flex-shrink: 0; margin-top: 1px; accent-color: var(--primary); cursor: pointer;
}
.privacy-check-text {
  font-size: 13px; color: var(--text-mid); line-height: 1.6;
}
.submit-btn {
  width: 100%; padding: 16px; background: linear-gradient(135deg, #9E6B7B, #D4A5B5); color: #FFFFFF; border: none; border-radius: 8px; font-family: inherit; font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.25s, transform 0.15s;
}
.submit-btn:hover {
  background: var(--primary-light); transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .method-grid {
  grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto;
  }
}
@media (max-width: 768px) {
  .method-section, .booking-section, .time-section {
  padding: 60px 20px;
  }
  .booking-card {
  padding: 28px 24px;
  }
  .form-row {
  grid-template-columns: 1fr;
  }
}


/* ─── consultation.html — 온라인상담 — 상담 폼 ─── */
0} .hero-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: #2D1F24; letter-spacing: -2px; line-height: 1.1; margin-bottom: 14px;
}
.form-section {
  background: var(--surface, #FBF5F3); padding: 80px 40px;
}
.form-inner {
  max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start;
}
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-card h2 {
  font-size: 24px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.6px; margin-bottom: 8px;
}
.form-card .form-sub {
  font-size: 14px; color: var(--text-mid); margin-bottom: 36px; line-height: 1.7;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 7px; letter-spacing: 0.3px;
}
.form-group label .req {
  color: var(--primary); margin-left: 2px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 9999px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(158,107,123,0.10);
}
.form-control::placeholder {
  color: var(--text-light);
}
textarea.form-control {
  resize: vertical; min-height: 120px; line-height: 1.7; border-radius: 10px;
}
select.form-control {
  cursor: pointer;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.privacy-check input[type="checkbox"] {
  width: 18px; height: 18px; border: 1.5px solid rgba(0,0,0,0.2); border-radius: 4px; flex-shrink: 0; margin-top: 1px; accent-color: var(--primary); cursor: pointer;
}
.privacy-check-text {
  font-size: 13px; color: var(--text-mid); line-height: 1.6;
}
.privacy-check-text a {
  color: var(--primary); text-decoration: underline;
}
.privacy-box {
  background: var(--surface, #FBF5F3);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 16px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.8;
  max-height: 120px;
  overflow-y: auto;
  margin-bottom: 16px;
}
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #2D1F24;
  border: none;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  letter-spacing: 0.3px;
}
.submit-btn:hover {
  background: var(--primary-light); transform: translateY(-1px);
}
.submit-btn:active {
  transform: translateY(0);
}
.form-sidebar {
  display: flex; flex-direction: column; gap: 20px;
}
.sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(158, 107, 123, 0.06);
}
.sidebar-card-title {
  font-size: 14px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.sidebar-card-title span {
  font-size: 18px;
}
.sidebar-info-item {
  display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start;
}
.sidebar-info-item:last-child {
  margin-bottom: 0;
}
.sii-icon {
  font-size: 16px; flex-shrink: 0; margin-top: 1px;
}
.sii-text {
  font-size: 13px; color: var(--text-mid); line-height: 1.6;
}
.sii-text strong {
  color: var(--text-dark);
}
.sidebar-kakao-btn {
  display: block;
  background: #FEE500;
  color: #3C1E1E;
  text-align: center;
  padding: 14px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.sidebar-kakao-btn:hover {
  background: #C09070;
}
.caution-list {
  list-style: none; padding: 0;
}
.caution-list li {
  display: flex; gap: 8px; font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px;
}
.caution-list li::before {
  content: '·'; color: var(--primary); font-weight: 700; flex-shrink: 0;
}
@media (max-width: 1024px) {
  .form-inner {
  grid-template-columns: 1fr;
  }
  .form-sidebar {
  max-width: 600px;
  }
}
@media (max-width: 768px) {
  .form-section {
  padding: 60px 20px;
  }
  .form-card {
  padding: 28px 24px;
  }
  .form-row {
  grid-template-columns: 1fr;
  }
}


/* ─── breast.html — 가슴성형 — 시술 유형 카드 ─── */
.page-hero { background: linear-gradient(135deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/images2/cosmetic/breast/breast-augmentation.jpg) center/cover no-repeat; }
.surgery-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.type-card {
  background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
}
.type-card-visual {
  height: 200px; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.type-card-body {
  padding: 32px 28px;
}
.type-card-title {
  font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.type-card-desc {
  font-size: 15px; line-height: 1.7; color: var(--text-mid); margin-bottom: 16px;
}
.type-card-features {
  display: flex; flex-direction: column; gap: 8px;
}
.type-card-feature {
  display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓'; color: var(--primary); font-weight: 700; font-size: 15px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
  .footer, .footer {
  padding-bottom: 76px;
  }
}


/* ─── eye.html — 눈성형 — 시술 유형 카드 ─── */
.page-hero { background: linear-gradient(135deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/eye-correction.png) center/cover no-repeat; }
.surgery-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.type-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.type-card-visual {
  height: 220px;
  background: var(--surface, #FBF5F3);
  position: relative;
  overflow: hidden;
}
.type-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}
.type-card-body {
  padding: 32px 28px;
}
.type-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.type-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.type-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.type-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-hero-desc {
  font-size: 15px;
  }
  .section-header {
  margin-bottom: 40px;
  }
  .principle-image {
  grid-area: image;
  min-height: 200px;
  }
  .principle-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  }
  .principle-content {
  grid-area: content;
  }
  .principle-content h3 {
  font-size: 22px;
  }
  .principle-content p {
  font-size: 15px;
  }
  .point-card {
  padding: 0 0 28px;
  }
  .point-card-img {
  margin: 0 0 20px;
  height: 180px;
  border-radius: 20px 20px 0 0;
  }
  .point-card h3 {
  font-size: 17px;
  padding: 0 20px;
  }
  .point-card p {
  font-size: 14px;
  padding: 0 20px;
  }
  .point-icon {
  margin: 0 auto 16px;
  }
  .type-card-body {
  padding: 24px 20px;
  }
  .type-card-title {
  font-size: 18px;
  }
  .faq-answer-inner {
  padding: 0 20px 20px 44px;
  font-size: 14px;
  }
}


/* ─── nose.html — 코성형 — 시술 유형 카드 ─── */
.page-hero { background: linear-gradient(120deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/images2/cosmetic/nose/nose-design.png) center/cover no-repeat; }
.surgery-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.type-card {
  background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.type-card-visual {
  height: 200px; position: relative; overflow: hidden;
}
.type-card-body {
  padding: 28px 24px;
}
.type-card-title {
  font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.type-card-desc {
  font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 16px;
}
.type-card-features {
  display: flex; flex-direction: column; gap: 8px;
}
.type-card-feature {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓'; color: var(--primary); font-weight: 700; font-size: 14px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
  .footer, .footer {
  padding-bottom: 76px;
  }
}


/* ─── fat.html — 지방성형 — 시술 유형 카드 ─── */
.page-hero { background: linear-gradient(120deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/images2/fat-hero.jpg) center/cover no-repeat; }
.surgery-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.type-card {
  background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
}
.type-card-visual {
  height: 200px; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.type-card-body {
  padding: 28px 24px;
}
.type-card-title {
  font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.type-card-desc {
  font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 16px;
}
.type-card-features {
  display: flex; flex-direction: column; gap: 8px;
}
.type-card-feature {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓'; color: var(--primary); font-weight: 700; font-size: 14px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .page-hero-desc {
  font-size: 15px;
  }
  .section-header {
  margin-bottom: 40px;
  }
  .principle-visual {
  height: 240px;
  }
  .principle-content h3 {
  font-size: 22px;
  }
  .principle-content p {
  font-size: 15px;
  }
  .point-card {
  padding: 0 0 28px;
  }
  .point-card-img {
  margin: 0 0 20px; height: 180px; border-radius: 20px 20px 0 0;
  }
  .point-card h3 {
  font-size: 17px; padding: 0 20px;
  }
  .point-card p {
  font-size: 14px; padding: 0 20px;
  }
  .types-grid {
  grid-template-columns: 1fr;
  }
  .type-card-body {
  padding: 24px 20px;
  }
  .type-card-title {
  font-size: 18px;
  }
  .faq-answer-inner {
  padding: 0 20px 20px 44px; font-size: 14px;
  }
  .footer, .footer {
  padding-bottom: 76px;
  }
}


/* ─── lifting.html — 리프팅 — 시술 유형 카드 ─── */
.page-hero { background: linear-gradient(135deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/images2/lift-hero.jpg) center/cover no-repeat; }
.procedure-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.type-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.type-card-visual {
  height: 200px;
  background: linear-gradient(135deg, rgba(158, 107, 123, 0.05), rgba(212, 165, 181, 0.08));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--primary);
  opacity: 0.3;
}
.type-card-body {
  padding: 32px 28px;
}
.type-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.type-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.type-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.type-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-hero-desc {
  font-size: 15px;
  }
  .section-header {
  margin-bottom: 40px;
  }
  .principle-image {
  grid-area: image;
  min-height: 200px;
  }
  .principle-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  }
  .principle-content {
  grid-area: content;
  }
  .principle-content h3 {
  font-size: 22px;
  }
  .principle-content p {
  font-size: 15px;
  }
  .point-card {
  padding: 0 0 28px;
  }
  .point-card-img {
  margin: 0 0 20px;
  height: 180px;
  border-radius: 20px 20px 0 0;
  }
  .point-card h3 {
  font-size: 17px;
  padding: 0 20px;
  }
  .point-card p {
  font-size: 14px;
  padding: 0 20px;
  }
  .point-icon {
  margin: 0 auto 16px;
  }
  .type-card-body {
  padding: 24px 20px;
  }
  .type-card-title {
  font-size: 18px;
  }
  .faq-answer-inner {
  padding: 0 20px 20px 44px;
  font-size: 14px;
  }
}


/* ─── male.html — 남자성형 — 시술 유형 카드 ─── */
.page-hero { background: linear-gradient(120deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/images2/cosmetic/male/male-aesthetic.jpg) center/cover no-repeat; }
.surgery-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.type-card {
  background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
}
.type-card-visual {
  height: 200px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.type-card-body {
  padding: 28px 24px;
}
.type-card-title {
  font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.type-card-desc {
  font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 16px;
}
.type-card-features {
  display: flex; flex-direction: column; gap: 8px;
}
.type-card-feature {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓'; color: var(--primary); font-weight: 700; font-size: 14px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
  .footer, .footer {
  padding-bottom: 76px;
  }
}


/* ─── petit.html — 쁘띠시술 — 시술 유형 카드 ─── */
.page-hero { background: linear-gradient(135deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/images2/petti-hero.jpg) center/cover no-repeat; }
.procedure-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.type-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.type-card-visual {
  height: 180px;
  background: linear-gradient(135deg, rgba(158, 107, 123, 0.05), rgba(212, 165, 181, 0.08));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: var(--primary);
  opacity: 0.3;
}
.type-card-body {
  padding: 32px 28px;
}
.type-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.type-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.type-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.type-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-hero-desc {
  font-size: 15px;
  }
  .section-header {
  margin-bottom: 40px;
  }
  .principle-image {
  grid-area: image;
  min-height: 200px;
  }
  .principle-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  }
  .principle-content {
  grid-area: content;
  }
  .principle-content h3 {
  font-size: 22px;
  }
  .principle-content p {
  font-size: 15px;
  }
  .point-card {
  padding: 0 0 28px;
  }
  .point-card-img {
  margin: 0 0 20px;
  height: 180px;
  border-radius: 20px 20px 0 0;
  }
  .point-card h3 {
  font-size: 17px;
  padding: 0 20px;
  }
  .point-card p {
  font-size: 14px;
  padding: 0 20px;
  }
  .point-icon {
  margin: 0 auto 16px;
  }
  .type-card-body {
  padding: 24px 20px;
  }
  .type-card-title {
  font-size: 18px;
  }
  .faq-answer-inner {
  padding: 0 20px 20px 44px;
  font-size: 14px;
  }
}


/* ─── other.html — 기타수술 — 시술 유형 카드 ─── */
.page-hero { background: linear-gradient(120deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/images2/cosmetic/other/careful-planning.jpg) center/cover no-repeat; }
.surgery-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.type-card {
  background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
}
.type-card-visual {
  height: 200px; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.type-card-body {
  padding: 28px 24px;
}
.type-card-title {
  font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.type-card-desc {
  font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 16px;
}
.type-card-features {
  display: flex; flex-direction: column; gap: 8px;
}
.type-card-feature {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓'; color: var(--primary); font-weight: 700; font-size: 14px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
  .footer, .footer {
  padding-bottom: 76px;
  }
}


/* ─── burn.html — 화상 — 시술 유형, 응급 알림 ─── */
.page-hero { background: linear-gradient(135deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/images2/medical/burn/acute-burn.jpg) center/cover no-repeat; }
.emergency-banner {
  background: linear-gradient(135deg, #F3E8E4, #FBF5F3);
  color: var(--text-dark); padding: 20px 40px; text-align: center;
  border-bottom: 1px solid rgba(158,107,123,0.20);
}
.emergency-banner-inner {
  max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.emergency-banner strong {
  font-size: 16px; font-weight: 700;
}
.emergency-banner span {
  font-size: 15px; color: var(--text-mid);
}
.emergency-banner a {
  background: var(--primary); color: #fff; padding: 8px 20px; border-radius: 6px; font-size: 14px; font-weight: 700;
}
.degree-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px;
}
.degree-card {
  border-radius: 12px; padding: 28px 24px;
}
.degree-card.degree-1 {
  background: #FBF5F3; border-left: 4px solid #C09070;
}
.degree-card.degree-2 {
  background: #FBF5F3; border-left: 4px solid #C09070;
}
.degree-card.degree-3 {
  background: #FBF5F3; border-left: 4px solid #9E6B7B;
}
.degree-card h4 {
  font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px;
}
.degree-card p {
  font-size: 14px; line-height: 1.7; color: var(--text-mid);
}
.hospital-banner {
  background: var(--surface, #FBF5F3); border: 1px solid rgba(158, 107, 123, 0.18); border-radius: 16px; padding: 40px; margin-top: 40px;
}
.hospital-banner h4 {
  font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--text-dark);
}
.hospital-banner-items {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hospital-banner-item {
  background: #ffffff; border: 1px solid rgba(158,107,123,0.12); border-radius: 10px; padding: 20px;
}
.hospital-banner-item h5 {
  font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark);
}
.hospital-banner-item p {
  font-size: 14px; color: var(--text-mid); line-height: 1.6;
}
.surgery-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.type-card {
  background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
}
.type-card-visual {
  height: 200px; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.type-card-body {
  padding: 28px 24px;
}
.type-card-title {
  font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.type-card-desc {
  font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 16px;
}
.type-card-features {
  display: flex; flex-direction: column; gap: 8px;
}
.type-card-feature {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓'; color: var(--primary); font-weight: 700; font-size: 14px;
}
.cta-btn-emergency {
  background: #9E6B7B; color: #2D1F24;
}
.cta-btn-emergency:hover {
  background: #D4A5B5; transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr 1fr;
  }
  .degree-grid {
  grid-template-columns: 1fr;
  }
  .hospital-banner-items {
  grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
  .emergency-banner {
  padding: 16px 20px;
  }
}


/* ─── trauma.html — 상처외상 — 시술 유형 ─── */
.page-hero { background: linear-gradient(135deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/images2/medical/trauma/specialist-suture.jpg) center/cover no-repeat; }
.treatment-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.type-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.type-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.type-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.type-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.type-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
  .emergency-inner {
  flex-direction: column;
  text-align: center;
  }
}


/* ─── reconstruction.html — 피부종양·재건 — 시술 유형 ─── */
.page-hero { background: linear-gradient(135deg, rgba(45,168,167,0.30) 0%, rgba(66,192,191,0.30) 100%), url(../images/surgery-room.jpg) center/cover no-repeat; }
.treatment-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.type-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.type-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.type-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.type-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.type-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-hero-desc {
  font-size: 15px;
  }
  .section-header {
  margin-bottom: 40px;
  }
  .principle-image {
  grid-area: image;
  min-height: 200px;
  }
  .principle-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  }
  .principle-content {
  grid-area: content;
  }
  .principle-content h3 {
  font-size: 22px;
  }
  .principle-content p {
  font-size: 15px;
  }
  .point-card {
  padding: 0 0 28px;
  }
  .point-card-img {
  margin: 0 0 20px;
  height: 180px;
  border-radius: 20px 20px 0 0;
  }
  .point-card h3 {
  font-size: 17px;
  padding: 0 20px;
  }
  .point-card p {
  font-size: 14px;
  padding: 0 20px;
  }
  .point-icon {
  margin: 0 auto 16px;
  }
  .type-card-body {
  padding: 24px 20px;
  }
  .type-card-title {
  font-size: 18px;
  }
  .faq-answer-inner {
  padding: 0 20px 20px 44px;
  font-size: 14px;
  }
}


/* ─── pediatric.html — 소아진료 — 시술 유형, 동의 안내 ─── */
.page-hero { background: linear-gradient(120deg, rgba(251,245,243,0.30) 0%, rgba(243,232,228,0.30) 100%), url(../images/images2/medical/pediatric/pediatric-approach.jpg) center/cover no-repeat; }
.parent-banner {
  background: linear-gradient(135deg, #F3E8E4, #FBF5F3);
  color: var(--text-dark); padding: 20px 40px;
  border-bottom: 1px solid rgba(158,107,123,0.15);
}
.parent-banner-inner {
  max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.parent-banner strong {
  font-size: 15px; font-weight: 700;
}
.parent-banner span {
  font-size: 14px; opacity: 0.85;
}
.consent-box {
  background: #FBF5F3; border: 1px solid #E8DAD5; border-radius: 12px; padding: 32px; margin-top: 40px;
}
.consent-box h4 {
  font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.consent-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.consent-item {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); line-height: 1.6;
}
.consent-item::before {
  content: '📋'; font-size: 16px; flex-shrink: 0; margin-top: 2px;
}
.surgery-types {
  background: var(--surface-low, #F3E8E4);
}
.types-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.type-card {
  background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
}
.type-card-visual {
  height: 200px; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.type-card-body {
  padding: 28px 24px;
}
.type-card-title {
  font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.type-card-desc {
  font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 16px;
}
.type-card-features {
  display: flex; flex-direction: column; gap: 8px;
}
.type-card-feature {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid);
}
.type-card-feature::before {
  content: '✓'; color: var(--primary); font-weight: 700; font-size: 14px;
}
@media (max-width: 1024px) {
  .types-grid {
  grid-template-columns: 1fr 1fr;
  }
  .consent-items {
  grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .types-grid {
  grid-template-columns: 1fr;
  }
  .parent-banner {
  padding: 16px 20px;
  }
}

