/* ============================================
   엘여성의원 — Sub Page Styles
   ============================================ */

/* 서브 페이지 콘텐츠 영역 */
.sub-content { padding-top: 0; }


/* ── 히어로 진입 시 사이드바 흰색 (데스크탑) ── */
@media (min-width: 1200px) {
  body.sub-page .logo-img,
  body.sub-page #gnb .depth1 > li > a {
    transition: color 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
  }
  body.sub-page.hero-in-view .logo-img,
  body.sub-page.dark-bg-in-view .logo-img {
    filter: brightness(0) invert(1);
    opacity: 1;
  }
  body.sub-page.hero-in-view #gnb .depth1 > li > a,
  body.sub-page.dark-bg-in-view #gnb .depth1 > li > a {
    color: rgba(255,255,255,0.82);
  }
  body.sub-page.hero-in-view #gnb .depth1 > li > a:hover,
  body.sub-page.hero-in-view #gnb .depth1 > li.active > a,
  body.sub-page.dark-bg-in-view #gnb .depth1 > li > a:hover,
  body.sub-page.dark-bg-in-view #gnb .depth1 > li.active > a {
    color: #fff;
  }
}


/* ── 클리닉 히어로 ── */
.clinic-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.clinic-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.clinic-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,15,18,0.68) 0%,
    rgba(30,15,18,0.48) 50%,
    rgba(30,15,18,0.70) 100%
  );
}
.clinic-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
}
.clinic-hero-content h2 {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
  margin: 16px 0 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.25);
}
.clinic-hero-content p {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.clinic-hero-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  margin: 22px auto 20px;
}


/* ── 준비중 ── */
.coming-soon-wrap {
  max-width: 560px;
  padding: 80px 0;
}
.coming-soon-msg {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.9;
}


/* 서브 섹션 */
.sub-sec { background: var(--bg); }
.sub-sec.bg-pale { background: var(--rose-pale); }
.sub-sec.bg-section { background: var(--bg-section); }
.sub-sec.bg-dark-sec { background: var(--dark); }

/* 서브 섹션 제목 */
.sub-sec-title {
  text-align: center;
  margin-bottom: 56px;
}
.sub-sec-title h3 {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 14px;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) { .sub-sec-title h3 { font-size: 36px; } }


/* ── 탭 네비게이션 — 하단 아일랜드 ── */
.sub-tab-nav {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  max-width: calc(100vw - 32px);
  background: rgba(20,10,12,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 6px 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sub-tab-nav::-webkit-scrollbar { display: none; }
.sub-tab-nav.tab-nav-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (min-width: 1200px) {
  .sub-tab-nav {
    bottom: 36px;
  }
}
.sub-tab-nav a {
  flex-shrink: 0;
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  border-radius: 40px;
  white-space: nowrap;
  transition: all 0.22s ease;
  border-bottom: none;
}
.sub-tab-nav a:hover { color: rgba(255,255,255,0.9); }
.sub-tab-nav a.active {
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-weight: 500;
}


/* ── 클리닉 인트로 ── */
.clinic-intro { max-width: 720px; }
.clinic-intro h3 {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 14px;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) { .clinic-intro h3 { font-size: 38px; } }

.clinic-desc {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
}


/* 섹션 제목 라이너 중앙 정렬 */
.sub-sec-title .title-bar { margin: 16px auto 0; }

/* ── 진료 항목 아이콘 카드 그리드 ── */
.disease-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 1024px) { .disease-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .disease-grid { grid-template-columns: 1fr; gap: 14px; } }

.dg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.dg-card:hover {
  box-shadow: 0 12px 40px rgba(45,31,34,0.10);
  transform: translateY(-4px);
}

.dg-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196,132,154,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.dg-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dg-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rose-light);
  display: block;
  margin-bottom: 8px;
}
.dg-title {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.4;
}
.dg-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
  flex: 1;
}
.dg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.dg-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(196,132,154,0.08);
  border: 1px solid rgba(196,132,154,0.22);
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.01em;
}

/* img-slot-box — 여성성형·질타이트닝에 공용 */
.db-img {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
}
.img-slot-box {
  width: 100%;
  flex: 1;
  min-height: 240px;
  background: rgba(196,132,154,0.05);
  border: 2px dashed rgba(196,132,154,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-slot-box span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(196,132,154,0.35);
  text-transform: uppercase;
}


/* ════════════════════════════════
   여성성형 — 2×2 카드 그리드
════════════════════════════════ */
.plastic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 768px) { .plastic-grid { grid-template-columns: 1fr; gap: 20px; } }

.plastic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.plastic-card:hover {
  box-shadow: 0 16px 48px rgba(45,31,34,0.09);
  transform: translateY(-5px);
}

.pc-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: rgba(196,132,154,0.05);
  border-bottom: 2px dashed rgba(196,132,154,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pc-img span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(196,132,154,0.35);
}

.pc-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pc-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.pc-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.pc-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
  flex: 1;
}
.pc-point {
  background: rgba(196,132,154,0.06);
  border-left: 3px solid var(--rose-light);
  padding: 14px 16px;
  border-radius: 0 3px 3px 0;
}
.pc-point h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 7px;
}
.pc-point p {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.85;
  margin: 0;
}


/* ════════════════════════════════
   질 타이트닝 — 배너형 카드
════════════════════════════════ */
.tight-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 56px;
}

.tight-card {
  display: grid;
  grid-template-columns: 88px 1fr 260px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.tight-card:hover { box-shadow: 0 8px 32px rgba(45,31,34,0.08); }

.tc-num-block {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  flex-shrink: 0;
}
.tc-num-block span {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--rose-light);
  letter-spacing: 0.05em;
}

.tc-body {
  padding: 32px 36px;
  border-right: 1px solid var(--border);
}
.tc-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.4;
}
.tc-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 18px;
}
.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tc-tags span {
  font-size: 11px;
  font-weight: 400;
  padding: 4px 12px;
  border: 1px solid rgba(196,132,154,0.4);
  border-radius: 20px;
  color: var(--primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tc-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(196,132,154,0.06) 0%, rgba(196,132,154,0.16) 100%);
  padding: 0;
}
.tc-img-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 160px;
  color: rgba(196,132,154,0.55);
}
.tc-img-icon svg {
  width: 70px;
  height: 70px;
}
.tc-img-icon .tc-icon-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(196,132,154,0.45);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .tight-card { grid-template-columns: 64px 1fr; }
  .tc-img { display: none; }
  .tc-body { border-right: none; }
}
@media (max-width: 600px) {
  .tight-card { grid-template-columns: 1fr; }
  .tc-num-block { padding: 16px 24px; justify-content: flex-start; }
}


/* ════════════════════════════════
   Y존클리닉 — 타일 프리뷰
════════════════════════════════ */
.yzone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 768px) { .yzone-grid { grid-template-columns: 1fr; } }

.yz-tile {
  position: relative;
  padding: 36px 28px 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s ease;
}
.yz-tile:hover { box-shadow: 0 8px 28px rgba(45,31,34,0.07); }

.yz-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--primary);
  background: rgba(196,132,154,0.1);
  border-radius: 20px;
  padding: 3px 10px;
}
.yz-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--primary);
}
.yz-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}
.yz-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 4px;
}

.yzone-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
}
.yzone-note a {
  color: var(--primary);
  font-weight: 500;
}

/* 섹션 소개 텍스트 (plastic / tight 공통) */
.sec-intro-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 12px;
}


/* ── CTA 섹션 ── */
.cta-sec { background: var(--primary); }
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 32px;
  text-align: center;
}
@media (min-width: 1200px) { .cta-inner { padding: 44px 60px; } }

.cta-inner p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.cta-tel {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  transition: opacity var(--transition);
}
.cta-tel:hover { opacity: 0.7; }

.btn-outline-white {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}


/* ── 진료시간 (location 페이지) ── */
.hours-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 900px) {
  .hours-wrap { flex-direction: row; align-items: flex-start; gap: 60px; }
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.hour-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px 28px;
  transition: var(--transition);
}
.hour-card:hover { border-color: var(--primary); }
.hour-card.closed { background: var(--bg-section); }
.hour-card.closed .hc-time { color: var(--text-muted); }

.hc-day {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.hc-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.hc-time span { color: var(--rose-light); margin: 0 6px; }
.hc-note { font-size: 12px; color: var(--text-muted); font-weight: 400; }

.hours-img { flex: 1; }
.hours-img img { width: 100%; border-radius: 2px; }

.tel-box {
  text-align: center;
  margin-top: 56px;
  padding: 48px 32px;
  background: var(--dark);
  border-radius: 2px;
}
.tel-box .label-en { color: var(--rose-light); }
.tel-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  margin: 16px 0 12px;
  transition: color var(--transition);
}
.tel-num:hover { color: var(--rose-light); }
.tel-box p { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.5); }


/* ── 오시는 길 그리드 ── */
.location-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 900px) {
  .location-grid { flex-direction: row; gap: 60px; }
}

.map-box-lg {
  width: 100%;
  height: 360px;
  flex: 1.4;
}
@media (min-width: 900px) { .map-box-lg { height: 480px; } }
.map-box-lg iframe { border-radius: 2px; }

.location-info { flex: 1; }

.li-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.li-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.li-block h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.li-block p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
}
.addr-sub { font-size: 13px; color: var(--text-muted); }

.transport-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}
.transport-row strong { font-weight: 500; color: var(--dark); }

.line-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}
.line-9 { background: #b3b3b3; } /* 9호선 황금색 */

.bus-info {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 2;
  margin-bottom: 4px;
}
.bus-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(196,132,154,0.1);
  border-radius: 2px;
  padding: 1px 7px;
  margin-right: 8px;
  letter-spacing: 0.04em;
}
.bus-stop {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 8px;
}

.btn-map {
  display: block;
  width: fit-content;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  transition: all var(--transition);
}
.btn-map:hover { border-color: var(--primary); color: var(--primary); }


/* ── 병원소개 지도 레이아웃 ── */
.about-map-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: stretch;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .about-map-wrap { grid-template-columns: 1fr; }
}

.about-map-frame {
  width: 100%;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .about-map-frame { height: 300px; } }

.about-map-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}


/* ── 병원소개 about.html ── */
.about-feature-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 900px) {
  .about-feature-wrap { flex-direction: row; align-items: center; gap: 80px; }
}

.af-text { flex: 1; }
.af-text h3 {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-top: 14px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) { .af-text h3 { font-size: 36px; } }
.af-text p {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.95;
}

.af-img {
  flex: 1;
  min-height: 360px;
}
.af-img .img-placeholder {
  width: 100%; height: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, #e8c8d4 0%, #d4a8b8 60%, #c49098 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  border-radius: 2px;
}

/* ════════════════════════════════════════════
   병원소개 — 새 레이아웃
════════════════════════════════════════════ */

/* 철학 섹션 — 풀배경 */
.about-philosophy {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 12, 0.68);
  z-index: 0;
}
.about-philosophy > .sec-inner {
  position: relative;
  z-index: 1;
  margin-left: 0 !important;
  padding: 0 40px !important;
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ap-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--rose-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 32px;
}
.ap-quote {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.ap-divider {
  width: 44px;
  height: 1px;
  background: var(--rose-light);
  margin: 0 auto 32px;
}
.ap-desc {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 2.1;
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* 클리닉 소개 — split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } }

.about-split-text {
  padding: 80px 64px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) { .about-split-text { padding: 56px 0; } }

.about-split-text .label-en { margin-bottom: 20px; }
.about-split-text h3 {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.03em;
  line-height: 1.55;
  margin-bottom: 20px;
}
.about-split-text .title-bar { margin: 0 0 28px; }
.about-split-text p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 2.1;
}

.about-split-img {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 40px 0 40px 0;
}
.about-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 40px 0 40px 0;
}
.about-split-img span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(196,132,154,0.3);
  text-transform: uppercase;
}

/* WHY L — 2×2 테두리 그리드 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 56px;
  border: 1px solid var(--border);
}
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  padding: 44px 44px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.24s ease;
}
.why-item:hover { background: rgba(196,132,154,0.03); }
.why-item:nth-child(2n) { border-right: none; }
.why-item:nth-child(3),
.why-item:nth-child(4) { border-bottom: none; }
@media (max-width: 600px) {
  .why-item { border-right: none; }
  .why-item:last-child { border-bottom: none; }
  .why-item:nth-child(3) { border-bottom: 1px solid var(--border); }
}

.why-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: rgba(196,132,154,0.55);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.why-title {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.why-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
}

/* 시설 갤러리 */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 56px;
}
@media (max-width: 680px) { .about-gallery { grid-template-columns: repeat(2, 1fr); } }

.ag-item {
  aspect-ratio: 4 / 3;
  background: rgba(196,132,154,0.05);
  border: 1px dashed rgba(196,132,154,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.25s ease;
}
.ag-item:hover { opacity: 0.85; }
.ag-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ag-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(196,132,154,0.28);
  text-transform: uppercase;
}

/* 의료진 섹션 (새) */
.about-doctor {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 840px) { .about-doctor { grid-template-columns: 1fr; gap: 36px; } }

.about-doc-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(196,132,154,0.06);
  border: 1px dashed rgba(196,132,154,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.about-doc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-doc-img span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(196,132,154,0.3);
  text-transform: uppercase;
}
.about-doc-info .label-en { margin-bottom: 16px; }
.about-doc-name {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.about-doc-role {
  font-size: 13px;
  font-weight: 400;
  color: var(--rose-light);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.about-doc-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 2.05;
  margin-bottom: 32px;
}
/* 학력·경력·연수 */
.about-doc-creds {
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
}
.doc-cred-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.doc-cred-dt {
  font-size: 11px;
  font-weight: 500;
  color: var(--rose-light);
  letter-spacing: 0.04em;
  padding-top: 2px;
  white-space: nowrap;
}
.doc-cred-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.doc-cred-list li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 2.0;
}

.about-doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.about-doc-tag {
  padding: 5px 14px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
}


/* 특장점 그리드 */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

.feat-item {
  padding: 40px 32px;
  background: transparent;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.feat-item:hover { background: rgba(255,255,255,0.04); }

.feat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--rose-light);
  opacity: 0.6;
  margin-bottom: 20px;
}
.feat-item h5 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.feat-item p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* 의료진 카드 placeholder */
.doctor-card-placeholder {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.doc-img-placeholder {
  width: 200px;
  height: 260px;
  background: var(--bg-section);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.doc-name {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.1em;
}
.doc-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}


/* ── 풀블리드 배경 이미지 섹션 ── */
.sec-bg-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sec-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 12, 0.62);
  z-index: 0;
}
.sec-bg-img > .sec-inner {
  position: relative;
  z-index: 1;
}
.sec-bg-img .clinic-intro .label-en { color: var(--rose-light); }
.sec-bg-img .clinic-intro h3        { color: #fff; }
.sec-bg-img .clinic-intro .title-bar { background: var(--rose-light); }
.sec-bg-img .clinic-intro .clinic-desc { color: rgba(255,255,255,0.75); }

/* 이미지 위 카드 — 반투명 배경 */
.sec-bg-img .ab-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(255,255,255,0.18);
}
.sec-bg-img .ab-type  { color: var(--rose-light); }
.sec-bg-img .ab-title { color: #fff; }
.sec-bg-img .ab-desc  { color: rgba(255,255,255,0.80); }
.sec-bg-img .ab-list li { color: rgba(255,255,255,0.80); }
.sec-bg-img .ab-list li::before { color: var(--rose-light); }
.sec-bg-img .ab-note {
  background: rgba(196,132,154,0.18);
  border-left-color: var(--rose-light);
  color: rgba(255,255,255,0.78);
}


/* ════════════════════════════════════════════
   피임클리닉 — 메서드 상세 카드
════════════════════════════════════════════ */
.contra-method-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 56px;
}

.contra-method {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.contra-method:hover { box-shadow: 0 12px 40px rgba(45,31,34,0.08); }

/* top row: num | content | image */
.cm-top {
  display: grid;
  grid-template-columns: 96px 1fr 260px;
  min-height: 210px;
}

.cm-num-block {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
  flex-shrink: 0;
}
.cm-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--rose-light);
  line-height: 1;
}
.cm-num-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.cm-content {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.cm-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--rose-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cm-title {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  line-height: 1.4;
}
.cm-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 20px;
}
.cm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cm-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(196,132,154,0.07);
  border: 1px solid rgba(196,132,154,0.22);
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.cm-img-side {
  background: linear-gradient(145deg, rgba(196,132,154,0.06) 0%, rgba(196,132,154,0.16) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  overflow: hidden;
}
.cm-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cm-img-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(196,132,154,0.55);
}
.cm-img-icon svg {
  width: 70px;
  height: 70px;
}
.cm-icon-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(196,132,154,0.45);
  text-transform: uppercase;
}

/* spec strip at bottom */
.cm-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.cm-spec {
  padding: 18px 28px;
  border-right: 1px solid var(--border);
}
.cm-spec:last-child { border-right: none; }
.cm-spec-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rose-light);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cm-spec-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.cm-spec-note {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted, #aaa);
  margin-top: 3px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cm-top { grid-template-columns: 72px 1fr; }
  .cm-img-side { display: none; }
  .cm-content { padding: 24px 28px; border-right: none; }
  .cm-specs { grid-template-columns: 1fr 1fr; }
  .cm-spec:nth-child(2) { border-right: none; }
  .cm-spec:last-child { grid-column: 1 / -1; border-top: 1px solid var(--border); border-right: none; }
}
@media (max-width: 540px) {
  .cm-top { grid-template-columns: 56px 1fr; }
  .cm-num { font-size: 22px; }
  .cm-num-label { display: none; }
  .cm-content { padding: 20px; }
  .cm-title { font-size: 18px; }
  .cm-specs { grid-template-columns: 1fr; }
  .cm-spec { border-right: none; border-top: 1px solid var(--border); }
  .cm-spec:first-child { border-top: none; }
}


/* ════════════════════════════════════════════
   임신중지 — 2-col 카드
════════════════════════════════════════════ */
.abortion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 680px) { .abortion-grid { grid-template-columns: 1fr; } }

.ab-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px 36px;
  background: var(--white);
  transition: box-shadow 0.28s ease;
}
.ab-card:hover { box-shadow: 0 10px 36px rgba(45,31,34,0.08); }

.ab-type {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--rose-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ab-title {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.ab-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 20px;
}
.ab-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.ab-list li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.7;
}
.ab-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose-light);
  font-size: 11px;
}
.ab-note {
  background: rgba(196,132,154,0.07);
  border-left: 3px solid var(--rose-light);
  padding: 14px 18px;
  border-radius: 0 4px 4px 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
}


/* ════════════════════════════════════════════
   웰니스 — 수액 메뉴 그리드
════════════════════════════════════════════ */
.iv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px) { .iv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .iv-grid { grid-template-columns: 1fr; } }

.iv-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.iv-card:hover {
  box-shadow: 0 10px 32px rgba(45,31,34,0.09);
  transform: translateY(-3px);
}

.iv-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, rgba(196,132,154,0.06) 0%, rgba(196,132,154,0.16) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.iv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iv-img-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(196,132,154,0.55);
}
.iv-img-icon svg { width: 64px; height: 64px; }
.iv-icon-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(196,132,154,0.45);
  text-transform: uppercase;
}

.iv-card-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.iv-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--rose-light);
  margin-bottom: 8px;
}
.iv-card-title {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.iv-card-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 14px;
}
.iv-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}
.iv-card-tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 50px;
  background: rgba(196,132,154,0.07);
  border: 1px solid rgba(196,132,154,0.2);
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
}


/* ============================================
   Policy / Sitemap Pages
   ============================================ */
.policy-top {
  background: var(--cream);
  padding: 140px 48px 72px;
  text-align: center;
}
.policy-top .label-en {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--rose-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.policy-top h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.policy-top .title-bar { margin: 0 auto; }

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}
.policy-intro {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding: 24px 28px;
  background: var(--cream);
  border-left: 3px solid var(--rose-gold);
}
.policy-section { margin-bottom: 44px; }
.policy-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.policy-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 18px 0 6px;
}
.policy-section p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.policy-manager {
  margin-top: 56px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  background: var(--white);
}
.policy-manager h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.policy-manager p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Sitemap */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
}
@media (max-width: 900px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (max-width: 560px) { .sitemap-grid { grid-template-columns: 1fr; gap: 28px; } }
.sitemap-cat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--rose-gold);
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196,132,154,0.3);
  margin-bottom: 16px;
}
.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sitemap-links li a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sitemap-links li a::before {
  content: '—';
  font-size: 11px;
  color: rgba(196,132,154,0.4);
  flex-shrink: 0;
}
.sitemap-links li a:hover { color: var(--rose-gold); }
.sitemap-links li.sm-main a {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}
.sitemap-links li.sm-main a::before { display: none; }
@media (max-width: 560px) { .policy-top { padding: 120px 24px 48px; } }


/* ============================================
   Non-Covered Fees Page
   ============================================ */
.nc-top-desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}
.nc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 720px) { .nc-grid { grid-template-columns: 1fr; gap: 24px; } }

.nc-table-wrap { overflow: hidden; border-radius: 2px; }
.nc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.nc-table thead tr {
  background: var(--primary);
}
.nc-table thead th {
  padding: 14px 20px;
  text-align: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.nc-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.nc-table tbody tr:last-child { border-bottom: none; }
.nc-table tbody tr:hover { background: rgba(196,132,154,0.04); }
.nc-item {
  padding: 13px 20px;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.5;
}
.nc-price {
  padding: 13px 20px;
  text-align: right;
  color: var(--primary);
  font-weight: 500;
  white-space: nowrap;
}
.nc-note {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.nc-legal {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(120,100,105,0.6);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
