/* Newve Clinic — Treatment Page (6-Zone Conversion Layout)
 * skinmdlab tone: premium medical, generous whitespace, neutral palette
 * Tokens: tokens.css Phase 2 v2
 */

/* ═══════════════════════════════════════════════════════════════
   ZONE 1 — HERO (Hook)
   ═══════════════════════════════════════════════════════════════ */

.nt-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px var(--newve-pad-desktop, 15px) 0;
}
/* No image → same layout, just no image block */
.nt-hero__visual {
  position: relative;
  border-radius: var(--newve-radius-lg, 20px);
  overflow: hidden;
  margin-bottom: 28px;
}
.nt-hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.nt-hero__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--newve-primary);
  color: var(--newve-white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--newve-radius-pill, 9999px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nt-hero__eyebrow {
  display: inline-block;
  font-size: var(--newve-fs-eyebrow, 13px);
  color: var(--newve-primary);
  text-transform: uppercase;
  letter-spacing: var(--newve-ls-eyebrow, 0.2em);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 8px;
}
.nt-hero__title {
  font-family: var(--newve-font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--newve-dark);
  margin: 0 0 4px;
}
.nt-hero__korean {
  font-size: 14px;
  color: var(--newve-black-06, #666);
  margin: 8px 0 20px;
  display: block;
}
.nt-hero__specs {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.nt-spec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nt-spec__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--newve-dark);
}
.nt-spec__label {
  font-size: 12px;
  color: var(--newve-black-08, #888);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nt-hero__doctor {
  font-size: 14px;
  color: var(--newve-black-06, #666);
  margin: 0 0 24px;
}
.nt-hero__doctor strong {
  color: var(--newve-dark);
}

@media (max-width: 767px) {
  .nt-hero { padding-top: 20px; }
  .nt-hero__title { font-size: 28px; }
  .nt-hero__specs { gap: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.nt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--newve-radius-pill, 9999px);
  font-family: var(--newve-font);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms ease;
  white-space: nowrap;
}
.nt-btn--primary {
  background: var(--newve-primary);
  color: var(--newve-white);
}
.nt-btn--primary:hover {
  background: var(--newve-dark);
  color: var(--newve-white);
}
.nt-btn--outline {
  background: transparent;
  color: var(--newve-white);
  border: 1px solid rgba(255,255,255,0.5);
}
.nt-btn--outline:hover {
  background: var(--newve-white);
  color: var(--newve-dark);
}
.nt-btn--lg { padding: 16px 40px; font-size: 16px; }

/* Sticky CTA → replaced by FAB (main.css .newve-fab) */

/* ═══════════════════════════════════════════════════════════════
   BODY CONTAINER
   ═══════════════════════════════════════════════════════════════ */

.nt-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--newve-pad-desktop, 15px);
}
.nt-body > * {
  padding-left: 0;
  padding-right: 0;
}

/* ═══════════════════════════════════════════════════════════════
   ZONE SECTIONS
   ═══════════════════════════════════════════════════════════════ */

.nt-zone {
  padding: 48px 0;
  border-bottom: 1px solid var(--newve-border-soft, #eee);
}
.nt-zone:last-child { border-bottom: none; }
.nt-zone:empty { display: none; padding: 0; border: none; }
.nt-zone + .nt-zone--trust { margin-top: -8px; }

.nt-zone h2 {
  font-family: var(--newve-font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--newve-dark);
  margin: 0 0 28px;
}
.nt-zone h2[data-eyebrow]::before {
  content: attr(data-eyebrow);
  display: block;
  font-family: var(--newve-font);
  font-size: 12px;
  font-weight: 500;
  color: var(--newve-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   ZONE 2 — DESIRE
   ═══════════════════════════════════════════════════════════════ */

.nt-overview {
  font-size: 18px;
  line-height: 1.7;
  color: var(--newve-black-03, #333);
  margin: 0 0 32px;
}

.nt-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.nt-benefits__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--newve-bg-soft, #fafafa);
  border-radius: var(--newve-radius-sm, 6px);
  font-size: 15px;
  color: var(--newve-black-03, #333);
}
.nt-benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--newve-white);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--newve-primary);
}
.nt-benefits__icon i { font-size: 16px; }
.nt-benefits__icon svg { color: var(--newve-primary); }

/* ═══════════════════════════════════════════════════════════════
   ZONE 3 — TRUST
   ═══════════════════════════════════════════════════════════════ */

.nt-zone--trust {
  background: var(--newve-bg-light, #f6f5f2);
  border-radius: var(--newve-radius-lg, 20px);
  padding: 40px 32px !important;
  border: none !important;
}

.nt-trust-header {
  margin-bottom: 28px;
}
.nt-trust-header__image {
  margin: 0 0 20px;
}
.nt-trust-header__image img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: var(--newve-radius-md, 14px);
  background: var(--newve-white);
  padding: 16px;
}
.nt-trust-header__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--newve-border-soft, #eee);
  border-bottom: 1px solid var(--newve-border-soft, #eee);
}
.nt-trust-header__label {
  font-size: 11px;
  color: var(--newve-black-08, #888);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nt-trust-header__brand strong {
  font-size: 16px;
  color: var(--newve-dark);
}

.nt-video {
  margin: 24px 0;
}
.nt-video__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--newve-radius-md, 14px);
}
.nt-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.nt-video__credit {
  margin-top: 8px;
  font-size: 12px;
  color: var(--newve-black-04, #999);
  font-style: italic;
  text-align: center;
}

.nt-mechanism {
  font-size: 16px;
  line-height: 1.7;
  color: var(--newve-black-03, #333);
}
.nt-mechanism img {
  border-radius: var(--newve-radius-md, 14px);
  margin: 16px 0;
}

@media (max-width: 767px) {
  .nt-zone--trust { padding: 28px 20px !important; }
  .nt-trust-header { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   ZONE 4 — EXPERIENCE
   ═══════════════════════════════════════════════════════════════ */

.nt-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nt-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--newve-border-soft, #eee);
}
.nt-steps__item:last-child { border-bottom: none; }
.nt-steps__num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--newve-dark);
  color: var(--newve-white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.nt-steps__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--newve-black-03, #333);
  padding-top: 4px;
}

/* B&A Teaser (gated) */
.nt-zone--ba {
  border: none !important;
  padding: 32px 0 !important;
  margin-bottom: 16px;
}
.nt-ba-teaser {
  position: relative;
  border-radius: var(--newve-radius-lg, 20px);
  overflow: hidden;
  min-height: 200px;
  background: linear-gradient(135deg, var(--newve-bg-light) 0%, var(--newve-bg-warm, #f8f8f8) 100%);
}
.nt-ba-teaser__blur {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%23e8e5e0" width="400" height="200"/><text x="50%" y="50%" font-family="sans-serif" font-size="14" fill="%23bbb" text-anchor="middle" dy=".3em">Before / After</text></svg>') center/cover;
  filter: blur(8px);
  opacity: 0.5;
}
.nt-ba-teaser__overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
}
.nt-ba-teaser__overlay h3 {
  font-family: var(--newve-font-display);
  font-size: 22px;
  color: var(--newve-dark);
  margin: 0 0 8px;
}
.nt-ba-teaser__overlay p {
  color: var(--newve-black-06, #666);
  font-size: 14px;
  margin: 0 0 20px;
}
.nt-ba-teaser .nt-btn--outline {
  color: var(--newve-dark);
  border-color: var(--newve-dark);
}
.nt-ba-teaser .nt-btn--outline:hover {
  background: var(--newve-dark);
  color: var(--newve-white);
}
.nt-ba-teaser__disclaimer {
  font-size: 11px;
  color: var(--newve-black-09, #999);
  margin: 12px 0 0;
}

/* Precautions (collapsible) */
.nt-precautions {
  margin: 16px 0;
}
.nt-precautions summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--newve-black-06, #666);
  padding: 12px 0;
  list-style: none;
}
.nt-precautions summary::before {
  content: '+ ';
  font-weight: 700;
}
.nt-precautions[open] summary::before { content: '− '; }
.nt-precautions__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--newve-black-06, #666);
  padding: 8px 0 16px;
}

.nt-aftercare-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #0070DF;
  text-decoration: none;
  transition: color 0.3s;
}
.nt-aftercare-link:hover {
  color: var(--newve-dark, #111);
}

.nt-disclaimer {
  font-size: 12px;
  color: var(--newve-black-09, #999);
  margin: 8px 0 0;
}

/* ═══════════════════════════════════════════════════════════════
   ZONE 5 — PRICING
   ═══════════════════════════════════════════════════════════════ */

.nt-zone--pricing {
  background: var(--newve-dark);
  color: var(--newve-white);
  border-radius: var(--newve-radius-lg, 20px);
  padding: 48px 32px !important;
  border: none !important;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 48px;
}
.nt-zone--pricing h2 { color: var(--newve-white); }
.nt-zone--pricing h2[data-eyebrow]::before { color: var(--newve-primary); }

/* Empty pricing */
.nt-pricing-empty {
  padding: 24px;
}
.nt-pricing-empty p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 20px;
}

/* Single pricing */
.nt-pricing-single { margin: 16px 0 24px; }
.nt-pricing-single__original {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.nt-pricing-single__price {
  display: block;
  font-family: var(--newve-font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--newve-white);
  margin: 4px 0;
}
.nt-pricing-single__usd {
  display: block;
  font-size: 16px;
  color: var(--newve-primary);
  font-weight: 500;
}
.nt-pricing-single__label {
  display: block;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}
.nt-pricing-single__note {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* Table pricing */
.nt-pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
}
.nt-pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.nt-pricing-table caption { position: absolute; clip: rect(0 0 0 0); width: 1px; height: 1px; overflow: hidden; }
.nt-pricing-table th {
  padding: 12px 0;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nt-pricing-table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
}
.nt-pricing-table__option { color: var(--newve-white); font-weight: 500; }
.nt-pricing-table__price strong { color: var(--newve-white); font-size: 17px; }
.nt-pricing-table__price s { color: rgba(255,255,255,0.3); margin-right: 8px; }
.nt-pricing-table__price small { color: var(--newve-primary); font-size: 13px; margin-left: 8px; }
.nt-pricing-table__consult { color: rgba(255,255,255,0.5); font-style: italic; }
.nt-pricing-table__note { color: rgba(255,255,255,0.4); font-size: 13px; }
.nt-pricing-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.nt-pricing-row--hidden { display: none; }
.nt-pricing-toggle {
  margin: 16px auto 0;
  padding: 8px 24px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--newve-radius-pill, 9999px);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}
.nt-pricing-toggle:hover { border-color: var(--newve-primary); color: var(--newve-primary); }

.nt-pricing-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin: 20px 0 0;
}
.nt-pricing-cta { margin-top: 28px; }
.nt-zone--pricing .nt-btn--primary {
  background: var(--newve-primary);
  color: var(--newve-white);
}

@media (max-width: 767px) {
  .nt-zone--pricing { padding: 36px 20px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   ZONE 6 — RELATED
   ═══════════════════════════════════════════════════════════════ */

.nt-related {
  padding: 64px 0;
  background: var(--newve-bg-soft, #fafafa);
}

/* Space before footer when no Related section */
.nt-body:last-child {
  padding-bottom: 64px;
}
.nt-related h2 { text-align: center; }

.nt-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nt-related__card {
  display: block;
  text-decoration: none;
  background: var(--newve-white);
  border-radius: var(--newve-radius-md, 14px);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.nt-related__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--newve-shadow-hover);
}
.nt-related__card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.nt-related__card--no-image .nt-related__card-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--newve-bg-light) 0%, var(--newve-bg-warm, #f8f8f8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--newve-black-10, #aaa);
  font-size: 13px;
}
.nt-related__card-body {
  padding: 16px 20px 20px;
}
.nt-related__card h3 {
  font-family: var(--newve-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--newve-dark);
  margin: 0 0 4px;
}
.nt-related__price {
  font-size: 14px;
  color: var(--newve-primary);
  font-weight: 500;
}

@media (max-width: 767px) { .nt-related__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════
 * Treatment pricing section — Figma "NEWVE Pricing / Event" (node 2:6)
 * Gold accent (var --newve-gold), scoped to this section only.
 * ═══════════════════════════════════════════════════════════════════ */
.nt-pricing2 {
  background: var(--newve-ink, #1d1c19);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: var(--newve-font-display, 'Manrope', 'Pretendard Variable', sans-serif);
}
.nt-pricing2__head { text-align: center; display: flex; flex-direction: column; gap: 6px; }
.nt-pricing2__eyebrow {
  color: var(--newve-gold, #bda363);
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}
.nt-pricing2__title { color: #fff; font-size: 40px; font-weight: 700; margin: 0; line-height: 1.1; }

.nt-pricing2__card {
  background: #fff; border-radius: 6px; width: 100%; max-width: 960px;
  padding: 28px; display: flex; flex-direction: column; gap: 20px;
}

/* Event banner */
.nt-pricing2__banner {
  background: var(--newve-ink, #1d1c19); border-radius: 4px;
  padding: 16px 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.nt-pricing2__banner-label {
  background: var(--newve-gold, #bda363); color: #121212; border-radius: 2px;
  padding: 4px 10px; font-size: 10px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
}
.nt-pricing2__banner-name { color: #fff; font-size: 16px; font-weight: 600; flex: 1 0 auto; }
.nt-pricing2__banner-period { color: #b9b4a8; font-size: 13px; }

/* Table */
.nt-pricing2__scroll { width: 100%; overflow-x: auto; }
.nt-pricing2__table { width: 100%; border-collapse: collapse; border: 1px solid #e4e1da; }
.nt-pricing2__table thead th {
  background: #f6f5f2; border-bottom: 1px solid #e4e1da;
  color: #757575; font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  padding: 13px 14px; text-align: left; white-space: nowrap;
}
.nt-pricing2__table th.is-krw, .nt-pricing2__table th.is-usd { text-align: right; }
.nt-pricing2__table td { padding: 13px 14px; border-bottom: 1px solid #e4e1da; vertical-align: middle; }
.nt-pricing2__opt { color: #212121; font-size: 15px; font-weight: 500; }
.nt-pricing2__krw { text-align: right; white-space: nowrap; }
.nt-pricing2__regular { color: #999; font-size: 13px; display: block; }
.nt-pricing2__event { display: inline-flex; align-items: center; gap: 7px; justify-content: flex-end; }
.nt-pricing2__event strong { color: #121212; font-size: 15px; font-weight: 700; }
.nt-pricing2__price { color: #121212; font-size: 15px; font-weight: 700; }
.nt-pricing2__badge {
  border: 1px solid var(--newve-gold, #bda363); color: var(--newve-gold, #bda363);
  font-size: 10px; font-weight: 800; letter-spacing: .5px; padding: 1px 5px;
}
.nt-pricing2__consult { color: #757575; font-size: 14px; font-style: italic; }
.nt-pricing2__usd { text-align: right; color: var(--newve-gold, #bda363); font-size: 14px; font-weight: 500; white-space: nowrap; }
.nt-pricing2__note { color: #212121; font-size: 14px; }

.nt-pricing2__empty { color: #757575; font-size: 15px; text-align: center; padding: 24px 0; }

.nt-pricing2__row--hidden { display: none; }

.nt-pricing2__toggle {
  align-self: center; background: none; border: 1px solid #e4e1da; color: #212121;
  font-size: 14px; padding: 10px 20px; cursor: pointer;
}
.nt-pricing2__toggle:hover { border-color: var(--newve-gold, #bda363); color: var(--newve-gold, #bda363); }

.nt-pricing2__disclaimer { color: #999; font-size: 12px; text-align: center; margin: 0; }

.nt-pricing2__cta { display: flex; justify-content: center; padding-top: 8px; }
.nt-pricing2__btn {
  background: var(--newve-gold, #bda363); color: #fff; text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: .5px; padding: 14px 30px; display: inline-block;
  transition: filter .2s ease;
}
.nt-pricing2__btn:hover { filter: brightness(1.08); }

/* Mobile — stack table rows as cards */
@media (max-width: 767px) {
  .nt-pricing2 { padding: 40px 16px; }
  .nt-pricing2__title { font-size: 30px; }
  .nt-pricing2__card { padding: 16px; }
  .nt-pricing2__table thead { display: none; }
  .nt-pricing2__table, .nt-pricing2__table tbody, .nt-pricing2__table tr, .nt-pricing2__table td { display: block; width: 100%; }
  .nt-pricing2__table tr { border-bottom: 1px solid #e4e1da; padding: 8px 0; }
  .nt-pricing2__table td { border: 0; padding: 4px 2px; text-align: left; }
  .nt-pricing2__krw, .nt-pricing2__usd { text-align: left; }
  .nt-pricing2__event { justify-content: flex-start; }
  .nt-pricing2__table td::before {
    content: attr(data-label); display: inline-block; min-width: 84px;
    color: #757575; font-size: 11px; text-transform: uppercase; letter-spacing: .5px;
  }
  .nt-pricing2__table td.nt-pricing2__krw::before { vertical-align: top; }
}
