/* ============ tokens ============ */
:root {
  --terracotta: #B95737;
  --terracotta-hover: #A44A2C;
  --terracotta-soft: #F2E4DC;
  --ink: #1A1A1A;
  --ink-2: #2A2A2A;
  --body: #4A4A4A;
  --muted: #7A7A7A;
  --cream: #F5F0EA;
  --cream-2: #EEE7DE;
  --white: #FFFFFF;
  --card-dark: linear-gradient(95deg, #1F1F1F 0%, #2A2A2A 60%, #3A3A3A 100%);
  --shadow-card: 0 1px 2px rgba(20,20,20,.04), 0 8px 24px rgba(20,20,20,.06);
  --shadow-float: 0 4px 12px rgba(20,20,20,.06), 0 24px 48px rgba(20,20,20,.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta) 0%, #D97654 100%);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1000;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* ============ CUSTOM CURSOR ============ */
.cursor-glow {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,87,55,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow { opacity: 1; }
}

/* ============ FLOATING DECORATIVE ELEMENTS ============ */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.04; }
  50% { transform: translateY(-20px) rotate(5deg); opacity: 0.08; }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.05; }
  50% { transform: translateY(15px) rotate(-3deg); opacity: 0.07; }
}

.hero::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 20%;
  width: 80px;
  height: 80px;
  background: url("../assets/icons/logo-lotus.svg") center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

/* ============ shared button styles ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 8px;
  border: 1.5px solid transparent;
  padding: 14px 22px;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
}

/* Button shimmer effect */
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.btn-primary:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(185,87,55,.25);
}

/* Ripple effect container */
.btn-primary:active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}
@keyframes ripple {
  to { width: 200px; height: 200px; opacity: 0; }
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-outline:hover {
  background: var(--terracotta-soft);
}
.btn-outline:hover svg {
  transform: translateX(4px);
}
.btn-outline svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ NAV ============ */
.nav {
  height: 96px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E8E2D8;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow .2s ease;
}
.nav.scrolled {
  background: rgba(245,240,234,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 12px rgba(20,20,20,.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand .mark {
  width: 56px; height: 56px;
  background: url("../assets/icons/logo-lotus.svg") center/contain no-repeat;
  flex: 0 0 56px;
}
.brand .wm-title {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.brand .wm-sub {
  font-size: 13px;
  color: #5A5A5A;
  font-weight: 400;
  margin-top: 4px;
}

.nav-links {
  display: none;
  align-items: center;
  align-self: stretch;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s ease;
}
.nav-links a .chev { width: 12px; height: 12px; }
.nav-links a:hover { color: var(--terracotta); }

.nav-right { display: none; align-items: center; gap: 28px; }
.nav-phone { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--ink); text-decoration: none; }
.nav-phone .ph {
  width: 22px; height: 22px;
  background: url("../assets/icons/icon-phone.svg") center/contain no-repeat;
}
.nav-divider { width: 1px; height: 28px; background: #DAD3C7; }

/* mobile hamburger */
.m-hamburger {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; background: none; border: none;
}
.m-hamburger span { width: 24px; height: 2.5px; background: var(--terracotta); border-radius: 2px; display: block; transition: transform .2s ease, opacity .2s ease; }
.m-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.m-hamburger.active span:nth-child(2) { opacity: 0; }
.m-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 96px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid #E8E2D8;
  padding: 24px 32px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(20,20,20,.08);
}
.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 20px; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--ink); text-decoration: none; }
.mobile-menu a:hover { color: var(--terracotta); }
.mobile-menu .btn { width: 100%; margin-top: 8px; }

/* ============ HERO ============ */
/* ---- Hero ---- */
.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 24px 48px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}
.hero::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -40px;
  width: 360px; height: 360px;
  background: url("../assets/icons/logo-lotus.svg") center/contain no-repeat;
  opacity: .05;
  pointer-events: none;
  will-change: transform;
}
.hero-left { display: flex; flex-direction: column; gap: 0; }

/* Eyebrow */
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 36px;
}

/* Hero title — serif */
.hero-title {
  margin: 0 0 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 400;
  color: var(--ink);
  max-width: 600px;
}

/* Hero lede */
.hero-lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  max-width: 520px;
  margin: 0 0 36px;
}

/* Concern tabs */
.hero-concern-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.concern-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(26,26,26,.15);
  background: rgba(255,253,248,.55);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.concern-tab-check {
  display: none;
  width: 16px; height: 16px;
  filter: brightness(0) invert(1);
}
.concern-tab:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.concern-tab.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(156,90,60,.2);
}
.concern-tab.active .concern-tab-check {
  display: inline-block;
}

/* Summary card */
/* Summary card */
.hero-summary-card {
  border: 1px solid rgba(26,26,26,.08);
  border-radius: 16px;
  background: rgba(255,253,248,.55);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.hero-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 580px) {
  .hero-summary-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .hero-summary-item + .hero-summary-item {
    border-left: 1px solid rgba(26,26,26,.08);
    padding-left: 20px;
  }
}
.hero-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hero-summary-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 2px;
}
.hero-summary-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.hero-summary-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.hero-summary-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(26,26,26,.08);
  font-size: 13px;
  color: var(--muted);
}
.hero-summary-note-icon {
  width: 18px; height: 18px;
  flex: 0 0 18px;
  opacity: .5;
}

/* CTA bar */
.hero-cta-bar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-cta-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 32px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  min-height: 56px;
}
.hero-cta-book:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
}
.hero-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .2s;
}
.hero-cta-link:hover {
  color: var(--terracotta);
}

/* Trust row — 3 items, bare icons */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
}
.hero-trust-item img {
  width: 24px; height: 24px;
  flex-shrink: 0;
}

/* Hero right — image */
.hero-right { position: relative; }
.hero-image-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(26,26,26,.10);
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center 60%;
  aspect-ratio: 4 / 3;
}

/* Rating badge — positioned on hero-right */
.hero-rating-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,253,248,.92);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
  z-index: 5;
  white-space: nowrap;
}
.hero-rating-star {
  width: 16px; height: 16px;
}

/* Floating summary card — positioned on hero-right, hidden on mobile */
/* Bottom bar — card with circles */
.hero-bottom-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border: 1px solid rgba(26,26,26,.10);
  border-radius: 20px;
  background: rgba(255,253,248,.45);
  padding: 24px;
}
.hero-bottom-section {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-bottom-circle {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bottom-circle img {
  width: 36px; height: 36px;
}
.hero-bottom-label {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.hero-bottom-values {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}

/* ============ CONCERN SECTION ============ */
.concern-section {
  background: var(--white);
  padding: 72px 24px 56px;
}

/* Concern header */
.concern-header {
  max-width: 1100px;
  margin: 0 auto 32px;
}
.concern-header .eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.concern-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 12px;
}
.concern-header-left p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
  max-width: 540px;
}
.concern-header-right {
  display: none;
}
.concern-view-toggle {
  display: flex;
  gap: 8px;
}
.concern-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid #D5CCC4;
  background: var(--cream);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: all .2s ease;
}
.concern-toggle:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.concern-toggle.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}
.concern-toggle.active img {
  filter: brightness(0) invert(1);
}
.concern-toggle-note {
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0 0;
  text-align: right;
}

/* Concern tabs */
.concern-tabs-row {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.concern-tab-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid #D5CCC4;
  background: var(--cream);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.concern-tab-lg:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.concern-tab-lg.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}
.ctab-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: filter .2s ease;
}
.concern-tab-lg.active .ctab-icon {
  filter: brightness(0) invert(1);
}

/* Concern layout — main + sidebar */
.concern-layout {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Main content */
.concern-label-sm {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.concern-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.concern-desc {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Concern image */
.concern-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  max-width: 480px;
}
.concern-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.concern-image-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 14px;
  background: rgba(20,20,20,.72);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}

/* Concern video */
.concern-video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  max-width: 480px;
  background: #111;
}
.concern-video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 14;
  max-height: 340px;
  object-fit: cover;
}
.concern-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(156,90,60,.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
  backdrop-filter: blur(4px);
}
.concern-video-play:hover {
  background: var(--terracotta);
  transform: translate(-50%, -50%) scale(1.08);
}
.concern-video-play.is-playing { opacity: 0; pointer-events: none; }
.concern-video-wrap:hover .concern-video-play.is-playing { opacity: .7; pointer-events: auto; }
.concern-video-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 14px;
  background: rgba(20,20,20,.72);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}

/* Concern details grid */
.concern-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.concern-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.concern-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.concern-detail-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
}
.concern-detail-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.concern-detail-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: -2px;
}
.concern-detail-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.concern-detail--treatment .concern-detail-value {
  font-size: 20px;
}
.concern-detail--treatment .concern-detail-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--body);
}

/* Caveat */
.concern-caveat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: 10px;
  margin-bottom: 24px;
}
.concern-caveat-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.concern-caveat strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.concern-caveat p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  margin: 0;
}

/* Concern CTA */
.concern-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s, gap .2s;
}
.concern-cta:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
  gap: 12px;
}

/* Sidebar */
.concern-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.concern-sidebar-box {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px 24px;
}
.concern-sidebar-icon {
  display: block;
  margin-bottom: 14px;
}
.concern-sidebar-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}
.concern-sidebar-box > p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  margin: 0 0 18px;
}
.concern-sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border: 1.5px solid var(--terracotta);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  transition: all .2s ease;
  margin-bottom: 20px;
}
.concern-sidebar-cta:hover {
  background: var(--terracotta);
  color: var(--white);
}
.concern-sidebar-cta:hover svg path {
  stroke: var(--white);
}
.concern-sidebar-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.concern-sidebar-trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.concern-sidebar-trust li img {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Technology sidebar */
.concern-sidebar-tech {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px 24px;
}
.concern-sidebar-tech h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--terracotta);
}
.concern-device {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.concern-device:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.concern-device:first-of-type {
  padding-top: 0;
}
.concern-device-img {
  width: 72px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.concern-device-info h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.concern-device-info p {
  font-size: 12px;
  color: var(--body);
  line-height: 1.4;
  margin: 0 0 8px;
}
.concern-device-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  transition: gap .2s;
}
.concern-device-link:hover {
  gap: 8px;
}

/* Concern trust bar */
/* ============ RESULTS SECTION (was TECHNOLOGY, removed) ============ */
/* ============ RESULTS SECTION ============ */
.results-section {
  background: var(--white);
  padding: 0 0 0;
}

/* Results inner */
.results-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 56px;
}

/* Results header */
.results-header {
  margin-bottom: 32px;
}
.results-header .eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.results-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 14px;
}
.results-header p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

/* Filter chips */
.results-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.results-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid #D5CCC4;
  background: var(--cream);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.results-chip:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.results-chip.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}
.rchip-icon {
  flex-shrink: 0;
  transition: filter .2s ease;
}
.results-chip.active .rchip-icon {
  filter: brightness(0) invert(1);
}

/* Carousel */
.results-carousel-wrap {
  position: relative;
  margin-bottom: 20px;
}
.results-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}
.results-carousel::-webkit-scrollbar { display: none; }

.results-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #D5CCC4;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  box-shadow: var(--shadow-card);
}
.results-arrow:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.results-arrow--left { left: -20px; }
.results-arrow--right { right: -20px; }

/* Result card */
.results-card {
  flex: 0 0 85%;
  max-width: 400px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: opacity .3s ease, transform .3s ease;
}
.results-card.hidden {
  display: none;
}

/* Before/After images */
.results-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.results-card-images--combined {
  grid-template-columns: 1fr;
}
.results-card-images--combined > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.results-ba-img {
  position: relative;
  overflow: hidden;
}
.results-ba-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.results-ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  background: var(--white);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Card body */
.results-card-body {
  padding: 20px;
}
.results-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.results-card-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--terracotta);
}
.results-card-concern {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.results-card-body h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 14px;
}
.results-card-body h4 sup {
  font-size: 12px;
  font-weight: 400;
}

/* Stats row */
.results-card-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-bottom: 16px;
}
.results-card-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* Outcomes */
.results-card-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.results-outcome {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.results-outcome img {
  flex-shrink: 0;
  margin-top: 1px;
}
.results-outcome strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.results-outcome p {
  font-size: 11px;
  color: var(--body);
  line-height: 1.4;
  margin: 0;
}

/* Dots */
.results-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}
.results-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D5CCC4;
  transition: all .2s ease;
}
.results-dot.active {
  background: var(--terracotta);
  width: 24px;
  border-radius: 4px;
}

/* Bottom bar */
.results-bottom-bar {
  background: var(--cream);
  padding: 28px 24px;
}
.results-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.results-bottom-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.results-bottom-disclaimer img {
  flex-shrink: 0;
  margin-top: 2px;
}
.results-bottom-disclaimer strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.results-bottom-disclaimer p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  margin: 0;
}
.results-bottom-photo {
  width: 100%;
  max-width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}
.results-bottom-cta-text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.results-bottom-cta-text p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  margin: 0;
}
.results-bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s, gap .2s;
  white-space: nowrap;
}
.results-bottom-btn:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
  gap: 12px;
}

/* ============ TREATMENTS ROW ============ */
.treatments-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px 8px;
}
.treatments-header .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 12px;
}
.treatments-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 12px;
}
.treatments-header p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
.treatments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 24px 64px;
  position: relative;
  z-index: 2;
}
.t-card {
  position: relative;
  background: var(--card-dark);
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: stretch;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.t-card .t-content {
  flex: 1;
  padding: 24px 20px 20px;
  display: flex; flex-direction: column;
  justify-content: center;
  z-index: 2;
  max-width: 60%;
}
.t-card .t-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-card .t-ico img { width: 30px; height: 30px; }
.t-card h3 {
  margin: 14px 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.t-card .t-desc {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
  margin: 0 0 12px;
  font-weight: 400;
}
.t-card .t-cta {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap .15s ease;
}
.t-card:hover .t-cta { gap: 10px; }
.t-card .t-cta svg {
  width: 14px; height: 14px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.t-card:hover .t-cta svg {
  transform: translateX(4px);
}
.t-card .t-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 60%;
  background-size: cover;
  background-position: center;
  will-change: background-position;
  transition: background-position 0.3s ease;
}
.t-card .t-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #1F1F1F 0%, rgba(31,31,31,.6) 30%, rgba(31,31,31,0) 60%);
}

/* ============ WHY CHOOSE US ============ */
/* ============ TESTIMONIALS (was CONSULT CTA BAR, removed) ============ */
/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
  background: var(--white);
  padding: 56px 24px;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials-header .google-badge {
  margin: 0 auto 20px;
}
.testimonials-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

/* --- Continuous carousel --- */
.testimonials-carousel {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testi-scroll 40s linear infinite;
}
.testimonials-carousel:hover .testimonials-track {
  animation-play-state: paused;
}
@keyframes testi-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-card {
  background: var(--white);
  border: 1px solid #EDE8E2;
  border-radius: 14px;
  padding: 24px;
  width: 320px;
  flex: 0 0 320px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.testi-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 12px;
}
.testi-stars svg { width: 14px; height: 14px; }

.testi-quote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
  font-style: italic;
  margin: 0 0 16px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.testi-label {
  font-size: 12px;
  color: var(--muted);
}

/* ============ MEET THE FOUNDER ============ */
.founder-section {
  background: var(--white);
  padding: 72px 24px;
  overflow: hidden;
}
.founder-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.founder-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-text .eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.founder-text h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 20px;
}
.founder-text h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.founder-text p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin: 0 0 16px;
}

/* ============ CLIENT EXPERIENCE SECTION ============ */
.cexp-section {
  background: var(--cream);
}

/* Hero: intro + photo */
.cexp-hero {
  padding: 72px 24px 56px;
}
.cexp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.cexp-intro .eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cexp-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 20px;
}
.cexp-intro-divider {
  width: 48px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  margin-bottom: 20px;
}
.cexp-intro > p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 480px;
}

/* 2x2 value grid */
.cexp-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-bottom: 32px;
}
.cexp-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cexp-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.cexp-value strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.cexp-value p {
  font-size: 12px;
  color: var(--body);
  line-height: 1.4;
  margin: 0;
}

/* CTA button */
.cexp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s, gap .2s;
}
.cexp-cta-btn:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
  gap: 12px;
}
.cexp-cta-btn--sm {
  padding: 12px 24px;
  font-size: 14px;
}

/* Hero photo */
.cexp-hero-photo img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Timeline */
.cexp-timeline-area {
  background: var(--white);
  padding: 56px 24px;
}
.cexp-timeline-inner {
  max-width: 900px;
  margin: 0 auto;
}
.cexp-timeline-header {
  margin-bottom: 36px;
}
.cexp-timeline-header h3 {
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

/* Timeline steps */
.cexp-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cexp-step {
  display: grid;
  grid-template-columns: 40px 64px 1fr 32px;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: relative;
}
.cexp-step:last-child { border-bottom: none; }

/* Step number */
.cexp-step-num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cexp-step-num span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--terracotta);
  background: var(--white);
  position: relative;
  z-index: 1;
}

/* Vertical connecting line */
.cexp-step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 56px;
  bottom: -20px;
  width: 1.5px;
  background: rgba(156,90,60,.15);
}
.cexp-step:last-child::before { display: none; }

/* Step photo */
.cexp-step-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.cexp-step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Step content */
.cexp-step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.cexp-step-content p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  margin: 0;
}

/* Step trailing icon */
.cexp-step-icon {
  display: none;
}

/* Reviews strip */
/* ============ FAQ SECTION ============ */
/* ---- FAQ Section ---- */
.faq-section {
  background: var(--cream);
  padding: 72px 24px;
}
.faq-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
/* -- Left intro -- */
.faq-intro .eyebrow { margin-bottom: 12px; }
.faq-intro h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 16px;
}
.faq-intro-desc {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 32px;
}
.faq-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.faq-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.faq-benefit-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: var(--terracotta);
  border-radius: 50%;
  padding: 8px;
  filter: brightness(0) invert(1);
  margin-top: 0;
}
.faq-benefit strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.faq-benefit p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  margin: 0;
}
.faq-still-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.faq-still-card p {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 16px;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--terracotta);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.faq-cta-btn:hover { background: var(--terracotta-hover); }

/* -- Right accordion -- */
.faq-accordion {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid #EDE8E2;
  transition: background 0.3s ease;
}
.faq-item:first-child {
  border-top: 1px solid #EDE8E2;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 14px;
}
.faq-num {
  font-size: 15px;
  font-weight: 700;
  color: var(--terracotta);
  flex: 0 0 28px;
}
.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}
.faq-toggle-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  transition: opacity 0.25s, transform 0.25s;
}
/* Show plus by default, minus when open */
.faq-icon-minus { display: none; }
.faq-icon-plus  { display: block; }
.faq-item.open .faq-icon-minus { display: block; }
.faq-item.open .faq-icon-plus  { display: none; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1), padding .4s ease;
}
.faq-item.open .faq-answer {
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin: 0;
  padding-left: 42px;
}

/* -- Bottom CTA banner -- */
.faq-bottom-cta {
  margin-top: 56px;
  background: var(--ink);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.faq-bottom-photo {
  height: 200px;
  overflow: hidden;
}
.faq-bottom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-bottom-content {
  padding: 32px 28px;
  text-align: center;
}
.faq-bottom-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.faq-bottom-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.faq-bottom-content > p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 20px;
  line-height: 1.5;
}
.faq-bottom-content .btn {
  margin-bottom: 12px;
}
.faq-bottom-trust {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--ink);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(185,87,55,.15) 0%, transparent 70%);
  pointer-events: none;
  will-change: transform;
}
.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.final-cta p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 8px 0 0;
}
.final-cta .btn-primary {
  padding: 16px 32px;
  font-size: 15px;
  align-self: flex-start;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #141414;
  padding: 48px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand .mini-lotus {
  width: 32px; height: 32px;
  background: url("../assets/icons/logo-lotus.svg") center/contain no-repeat;
  opacity: .7;
}
.footer-brand span {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin: 0;
}

/* ============ ANIMATIONS ============ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s cubic-bezier(0.34, 1.56, 0.64, 1), transform .7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s cubic-bezier(0.34, 1.56, 0.64, 1), transform .7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity .6s ease, transform .6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.blur-in {
  opacity: 0;
  filter: blur(10px);
  transition: opacity .7s ease, filter .7s ease;
}
.blur-in.visible {
  opacity: 1;
  filter: blur(0);
}

/* Hero entrance animations */
.hero-left,
.hero-bottom-bar {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-left.visible,
.hero-bottom-bar.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-right.entrance {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-right.entrance.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============ RESPONSIVE ============ */
@media (min-width: 768px) {
  .nav { padding: 0 40px; }
  .m-hamburger { display: none; }
  .nav-links { display: flex; }
  .nav-right { display: flex; }

  .hero {
    padding: 48px 40px 56px;
  }
  .hero-title { font-size: 48px; }
  .hero-cta-bar { flex-direction: row; align-items: center; }
  .hero-cta-book { flex: 0 0 auto; }
  .hero-bottom-bar { grid-template-columns: 1fr 1fr; }
  .hero-bottom-section:first-child { border-right: 1px solid rgba(26,26,26,.10); padding-right: 24px; }

  .concern-section { padding: 80px 40px 64px; }
  .concern-header h2 { font-size: 36px; }
  .concern-details-grid { grid-template-columns: repeat(3, 1fr); }
  .treatments-header { padding: 80px 40px 8px; }
  .treatments-header h2 { font-size: 36px; }
  .treatments {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px 40px 72px;
  }
  .t-card { height: 220px; }

  .results-inner { padding: 72px 40px 56px; }
  .results-header h2 { font-size: 36px; }
  .results-card { flex: 0 0 calc(50% - 10px); max-width: none; }
  .results-ba-img img { height: 180px; }
  .results-arrow { display: flex; }
  .results-bottom-bar { padding: 32px 40px; }
  .results-bottom-inner { grid-template-columns: 1fr auto auto auto; gap: 28px; }
  .results-bottom-photo { max-width: 140px; height: 100px; }

  .testimonials-section { padding: 64px 40px; }
  .testi-card { width: 340px; flex: 0 0 340px; }
  .featured-treatments { padding: 56px 40px 48px; }
  .featured-grid { grid-template-columns: 1fr; }
  .category-nav { padding: 0 40px; top: 96px; }
  .treatments-categories { padding: 0 40px 80px; }
  .founder-section { padding: 80px 40px; }
  .founder-inner { grid-template-columns: 1fr 1fr; gap: 56px; }
  .cexp-hero { padding: 80px 40px 64px; }
  .cexp-intro h2 { font-size: 36px; }
  .cexp-timeline-area { padding: 64px 40px; }
  .cexp-step { grid-template-columns: 40px 72px 1fr 36px; gap: 18px; }
  .cexp-step-icon { display: flex; align-items: center; justify-content: center; }
  .faq-section { padding: 80px 40px; }
  .faq-layout { grid-template-columns: 1fr 1.4fr; gap: 48px; }
  .faq-intro h2 { font-size: 32px; }
  .faq-bottom-cta { grid-template-columns: 220px 1fr; margin-top: 64px; }
  .faq-bottom-photo { height: auto; min-height: 200px; }
  .faq-bottom-content { text-align: left; padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
  .final-cta { padding: 72px 40px; }
  .final-cta-inner { grid-template-columns: 1fr auto; }
  .site-footer { padding: 48px 40px 32px; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .nav { padding: 0 64px; }

  .hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    column-gap: 48px;
    row-gap: 48px;
    padding: 56px 64px 64px;
    align-items: center;
  }
  .hero-left   { grid-column: 1; grid-row: 1; }
  .hero-right  { grid-column: 2; grid-row: 1; align-self: start; }
  .hero-bottom-bar { grid-column: 1 / -1; grid-row: 2; }
  .hero-title { font-size: 56px; }
  .hero-image { aspect-ratio: 1.03 / 1; }
  .hero-bottom-bar { padding: 24px 48px; }
  .hero-bottom-circle { width: 96px; height: 96px; flex: 0 0 96px; }
  .hero-bottom-circle img { width: 48px; height: 48px; }
  .hero-bottom-values { font-size: 16px; }

  .concern-section { padding: 88px 64px 72px; }
  .concern-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; }
  .concern-header h2 { font-size: 40px; }
  .concern-header-right { display: block; }
  .concern-layout { grid-template-columns: 1fr 320px; gap: 48px; }
  .treatments-header { padding: 96px 64px 12px; }
  .treatments-header h2 { font-size: 40px; }
  .treatments {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 32px 64px 80px;
  }
  .t-card { height: 240px; }
  .t-card .t-content { max-width: 56%; padding: 28px 24px 24px; }
  .t-card .t-ico { width: 52px; height: 52px; }
  .t-card .t-ico img { width: 32px; height: 32px; }
  .t-card h3 { font-size: 22px; margin: 18px 0 8px; }
  .t-card .t-desc { margin: 0 0 16px; }

  .results-inner { padding: 80px 64px 64px; }
  .results-header h2 { font-size: 40px; }
  .results-card { flex: 0 0 calc(33.333% - 14px); }
  .results-ba-img img { height: 200px; }
  .results-dots { display: none; }
  .results-bottom-bar { padding: 36px 64px; }

  .testimonials-section { padding: 72px 64px; }
  .testimonials-header h2 { font-size: 38px; }
  .testi-card { width: 360px; flex: 0 0 360px; }
  .featured-treatments { padding: 64px 64px 56px; }
  .featured-inner h2 { font-size: 40px; }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .category-nav { padding: 0 64px; }
  .treatments-categories { padding: 0 64px 96px; }
  .category-header h3 { font-size: 30px; }
  .founder-section { padding: 88px 64px; }
  .founder-inner { gap: 72px; }
  .founder-text h2 { font-size: 38px; }
  .cexp-hero { padding: 88px 64px 72px; }
  .cexp-hero-inner { grid-template-columns: 1fr 1fr; gap: 56px; }
  .cexp-intro h2 { font-size: 40px; }
  .cexp-hero-photo img { aspect-ratio: 3/4; border-radius: 24px; }
  .cexp-timeline-area { padding: 72px 64px; }
  .cexp-step { grid-template-columns: 44px 80px 1fr 40px; gap: 20px; }
  .faq-section { padding: 88px 64px; }
  .faq-layout { gap: 64px; }
  .faq-intro h2 { font-size: 34px; }
  .faq-bottom-cta { grid-template-columns: 260px 1fr; }
  .faq-bottom-content h3 { font-size: 30px; }
  .final-cta { padding: 80px 64px; }
  .final-cta h2 { font-size: 38px; }
  .site-footer { padding: 56px 64px 32px; }
}

@media (max-width: 767px) {
  .cursor-glow { display: none; }
  .nav { height: 72px; padding: 0 20px; }
  .brand .mark { width: 44px; height: 44px; flex: 0 0 44px; }
  .brand .wm-title { font-size: 18px; }
  .brand .wm-sub { font-size: 11px; margin-top: 2px; }
  .mobile-menu { top: 72px; }
  .category-nav { top: 72px; padding: 0 16px; }
  .cat-nav-link { padding: 12px 12px; font-size: 12px; }
}

/* ============ PAGE HEADER (shared for inner pages) ============ */
.page-header {
  background: var(--white);
  padding: 48px 24px;
  text-align: center;
  border-bottom: 1px solid #EDE8E2;
}
.page-header .eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 14px;
}
.page-header h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.page-header p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

@media (min-width: 768px) {
  .page-header { padding: 64px 40px; }
  .page-header h1 { font-size: 44px; }
}
@media (min-width: 1024px) {
  .page-header { padding: 72px 64px; }
  .page-header h1 { font-size: 48px; }
}

/* ============ TREATMENTS PAGE ============ */
.treatments-page {
  padding: 48px 24px 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.treatments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.treatment-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid #EDE8E2;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
  border-color: var(--terracotta-soft);
}
.treatment-card .tc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid #E8E2D8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.treatment-card .tc-icon img {
  width: 28px;
  height: 28px;
}
.treatment-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.treatment-card .tc-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
.treatment-card .tc-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--terracotta);
  margin: 0;
}
.treatment-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (min-width: 768px) {
  .treatments-page { padding: 56px 40px 80px; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .treatments-page { padding: 64px 64px 96px; }
  .treatments-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ============ ABOUT PAGE ============ */
.about-founder {
  padding: 64px 24px;
  background: var(--cream);
}
.about-founder-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-founder-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.about-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-founder-text h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 20px;
}
.about-founder-text h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.about-founder-text p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin: 0 0 16px;
}

.about-values {
  background: var(--white);
  padding: 72px 24px;
}
.about-values-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.about-values h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 40px;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border: 1px solid #EDE8E2;
  border-radius: 14px;
  transition: box-shadow .2s ease;
}
.value-card:hover {
  box-shadow: var(--shadow-card);
}
.value-card .value-ico {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1.5px solid #E8E2D8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.value-card .value-ico img {
  width: 24px;
  height: 24px;
}
.value-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.value-card p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  margin: 0;
}

.reviews-section {
  background: var(--cream);
  padding: 72px 24px;
}
.reviews-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.reviews-inner h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 40px;
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.review-card .stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 12px;
}
.review-card .stars svg {
  width: 14px;
  height: 14px;
}
.review-card .review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  font-style: italic;
  margin: 0 0 16px;
}
.review-card .review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card .review-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D9B49A 0%, #B98E72 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.review-card .review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.review-card .review-label {
  font-size: 12px;
  color: #6A6A6A;
}

@media (min-width: 768px) {
  .about-founder { padding: 80px 40px; }
  .about-founder-inner { grid-template-columns: 1fr 1fr; gap: 56px; }
  .about-values { padding: 80px 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-section { padding: 80px 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .about-founder { padding: 88px 64px; }
  .about-founder-inner { gap: 72px; }
  .about-founder-text h2 { font-size: 38px; }
  .about-values { padding: 88px 64px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-section { padding: 88px 64px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ CONTACT PAGE ============ */
.contact-page {
  padding: 48px 24px 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.contact-form-wrap > p {
  font-size: 14px;
  color: var(--body);
  margin: 0 0 24px;
  line-height: 1.5;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid #E8E2D8;
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(185,87,55,.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.locations-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.location-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid #EDE8E2;
}
.location-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-card h3 img {
  width: 24px;
  height: 24px;
}
.location-card .loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
.location-card .loc-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 2px;
}
.location-card .loc-map {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
}
.location-card .loc-map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.contact-info-bar {
  background: var(--white);
  padding: 32px 24px;
  border-top: 1px solid #EDE8E2;
}
.contact-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
  flex-shrink: 0;
}
.contact-info-item:hover {
  color: var(--terracotta);
}

@media (min-width: 768px) {
  .contact-page { padding: 56px 40px 80px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-info-inner { flex-direction: row; justify-content: center; gap: 40px; }
}
@media (min-width: 1024px) {
  .contact-page { padding: 64px 64px 96px; }
  .contact-form-wrap { padding: 40px 32px; }
  .location-card .loc-map iframe { height: 250px; }
}

/* ============ BLOG PAGE ============ */
.blog-page {
  padding: 48px 24px 72px;
  max-width: 1080px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid #EDE8E2;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.blog-card .blog-date {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 12px;
}
.blog-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  line-height: 1.3;
}
.blog-card .blog-excerpt {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 20px;
}
.blog-card .blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  transition: gap .15s ease;
}
.blog-card .blog-link:hover {
  gap: 10px;
}
.blog-card .blog-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.blog-card .blog-link:hover svg {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .blog-page { padding: 56px 40px 80px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-page { padding: 64px 64px 96px; }
}

/* ============ INSTAGRAM SECTION ============ */
.instagram-section {
  background: var(--white);
  padding: 56px 24px;
  text-align: center;
}
.instagram-section .eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.instagram-section h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
}
.instagram-embed-wrap {
  max-width: 540px;
  margin: 0 auto 24px;
}
.instagram-embed-wrap iframe {
  border-radius: 14px !important;
}
.instagram-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  transition: gap .15s ease;
}
.instagram-follow:hover {
  gap: 12px;
}

@media (min-width: 768px) {
  .instagram-section { padding: 72px 40px; }
}
@media (min-width: 1024px) {
  .instagram-section { padding: 80px 64px; }
}

/* ============ FEATURED TREATMENTS ============ */
.featured-treatments {
  padding: 48px 24px 40px;
  background: var(--cream);
}
.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.featured-inner .eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.featured-inner h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 14px;
}
.featured-inner h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.featured-inner > p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 620px;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.featured-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 2px solid var(--terracotta-soft);
  box-shadow: var(--shadow-card);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
  border-color: var(--terracotta);
}
.featured-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  align-self: flex-start;
}
.featured-card-badge svg {
  width: 14px;
  height: 14px;
}
.fc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid #E8E2D8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-icon img {
  width: 28px;
  height: 28px;
}
.fc-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.fc-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
.fc-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
}
.fc-features li {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid #E8E2D8;
}
.fc-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--terracotta);
  margin: 4px 0 0;
}
.fc-comparison {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px;
  margin-top: 4px;
}
.fc-comparison h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 12px;
}
.fc-compare-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fc-compare-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc-compare-item .compare-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fc-compare-item .compare-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.fc-compare-item.highlight .compare-value {
  color: var(--terracotta);
}

/* ============ CATEGORY NAV ============ */
.category-nav {
  position: sticky;
  top: 96px;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #EDE8E2;
  padding: 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar {
  display: none;
}
.category-nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
  min-width: max-content;
}
.cat-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.cat-nav-link:hover {
  color: var(--terracotta);
}
.cat-nav-link.active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

/* ============ TREATMENTS CATEGORIES ============ */
.treatments-categories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 72px;
}
.treatment-category {
  padding-top: 48px;
}
.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.category-icon svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
}
.category-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}
.treatment-category > p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 600px;
}

/* ============ ACTIVE NAV LINK ============ */
.nav-links a.active,
.mobile-menu a.active {
  color: var(--terracotta);
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,.35);
  z-index: 90;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  color: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.whatsapp-float .wf-tooltip {
  position: absolute;
  right: 68px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-float);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.whatsapp-float:hover .wf-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============ STICKY MOBILE BOOK BAR ============ */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 20px;
  box-shadow: 0 -2px 12px rgba(20,20,20,.1);
  z-index: 89;
  border-top: 1px solid #E8E2D8;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.mobile-book-bar.visible {
  transform: translateY(0);
}
.mobile-book-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-book-bar .mbb-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.mobile-book-bar .mbb-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}
.mobile-book-bar .btn {
  padding: 12px 20px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .mobile-book-bar { display: block; }
  .whatsapp-float { bottom: 84px; }
  .back-to-top { bottom: 84px; }
  body { padding-bottom: 68px; }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid #E8E2D8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-card);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  box-shadow: var(--shadow-float);
  border-color: var(--terracotta);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
  color: var(--terracotta);
}

/* ============ PAGE TRANSITION ============ */
body {
  animation: fadeInPage .4s ease;
}
@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
body.page-leaving {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
}

/* ============ SKIP TO CONTENT (A11Y) ============ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--terracotta);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 1001;
  transition: top .2s ease;
}
.skip-to-content:focus {
  top: 0;
}

/* ============ ENHANCED FOCUS STYLES (A11Y) ============ */
*:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* ============ FORM VALIDATION ============ */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #D94646;
  background: #FFF5F5;
}
.form-group .error-msg {
  font-size: 12px;
  color: #D94646;
  margin-top: 4px;
  display: none;
}
.form-group input.error ~ .error-msg,
.form-group select.error ~ .error-msg,
.form-group textarea.error ~ .error-msg {
  display: block;
}
.form-success {
  background: #F1F8E9;
  border: 1px solid #AED581;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  display: none;
  animation: fadeInPage .4s ease;
}
.form-success.visible { display: block; }
.form-success .fs-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: #66BB6A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success .fs-icon svg { width: 24px; height: 24px; color: #fff; }
.form-success h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.form-success p { font-size: 14px; color: var(--body); margin: 0; line-height: 1.5; }

/* ============ GOOGLE REVIEWS BADGE ============ */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
  border: 1px solid #EDE8E2;
}
.google-badge:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-2px);
}
.google-badge .gb-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.google-badge .gb-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.google-badge .gb-rating {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.google-badge .gb-rating .gb-stars { display: inline-flex; gap: 1px; }
.google-badge .gb-rating .gb-stars svg { width: 14px; height: 14px; }
.google-badge .gb-count {
  font-size: 11px;
  color: var(--muted);
}

/* ============ RESULTS GALLERY ============ */
.results-gallery {
  background: var(--white);
  padding: 72px 24px;
}
.results-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.results-inner .eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.results-inner h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 14px;
}
.results-inner > p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 620px;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.result-card {
  background: var(--white);
  border: 1px solid #EDE8E2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.result-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.result-image-wrap {
  position: relative;
  overflow: hidden;
}
.result-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.result-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(20,20,20,.78);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.result-caption {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

@media (min-width: 768px) {
  .results-gallery { padding: 80px 40px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-images { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .results-gallery { padding: 88px 64px; }
  .results-inner h2 { font-size: 40px; }
}

/* ============ TREATMENT CARD HOVER DETAIL ============ */
.treatment-card .tc-hover-detail {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 16px;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s ease, max-height .3s ease;
}
.treatment-card:hover .tc-hover-detail {
  opacity: 1;
  max-height: 40px;
}
.tc-hover-detail span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tc-hover-detail svg {
  width: 14px;
  height: 14px;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ============ NAV DROPDOWN ============ */
/* ============ STRIPE-STYLE NAV DROPDOWN ============ */
.nav-dropdown {
  position: static;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-chevron {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown.open .nav-dropdown-chevron {
  transform: rotate(180deg);
}
/* Full-width panel anchored to nav bottom */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  pointer-events: none;
}
/* Invisible bridge above menu to prevent hover gap */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-inner {
  background: var(--white);
  border-top: 1px solid #E8E2D8;
  border-bottom: 1px solid #E8E2D8;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  padding: 36px 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 100%;
  border-radius: 0;
}
.nav-dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
  border-right: 1px solid #EDE8E2;
}
.nav-dropdown-group:first-child { padding-left: 0; }
.nav-dropdown-group:last-of-type { border-right: none; }
.nav-dropdown-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  padding-bottom: 8px;
}
.nav-dropdown-group a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--body) !important;
  padding: 6px 0;
  transition: color 0.15s ease, transform 0.15s ease !important;
  white-space: nowrap;
  display: block;
}
.nav-dropdown-group a:hover {
  color: var(--terracotta) !important;
  transform: translateX(3px);
  padding-left: 0;
}
.nav-dropdown-cta {
  grid-column: 1 / -1;
  border-top: 1px solid #EDE8E2;
  padding-top: 16px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-dropdown-view-all {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--terracotta) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s ease;
}
.nav-dropdown-view-all:hover {
  gap: 10px;
}

/* ============ MOBILE SUBMENU ============ */
.mobile-submenu-parent {
  list-style: none;
}
.mobile-submenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mobile-submenu-toggle {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.mobile-submenu-toggle.active {
  transform: rotate(180deg);
}
.mobile-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 16px;
}
.mobile-submenu li a {
  font-size: 14px !important;
  display: block;
  padding: 6px 0;
}
.mobile-submenu .mobile-submenu-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding: 10px 0 2px;
}

/* ============ TREATMENT DETAIL PAGE ============ */
.treatment-detail {
  background: var(--cream);
  padding: 48px 24px;
}
.treatment-detail-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.td-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.td-content p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin: 0 0 14px;
}
.td-content ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.td-content ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 6px;
}
.td-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.td-image img {
  width: 100%;
  height: auto;
  display: block;
}

.treatment-benefits {
  background: var(--cream);
  padding: 64px 24px;
}
.treatment-benefits-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.treatment-benefits .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 40px;
}
/* Benefits cards — treatment page overrides */
.treatment-benefits .why-grid {
  counter-reset: benefit;
  max-width: 960px;
  gap: 24px;
}
.treatment-benefits .why-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px 32px;
  border: none;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.treatment-benefits .why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
  border-color: transparent;
}
.treatment-benefits .why-card .why-ico {
  width: 56px; height: 56px;
  flex: 0 0 56px;
  border: none;
  background: var(--terracotta);
  border-radius: 14px;
  display: none;
}
.treatment-benefits .why-card::before {
  counter-increment: benefit;
  content: counter(benefit, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.treatment-benefits .why-card h3,
.treatment-benefits .why-card h4 {
  font-size: 18px;
  margin: 0 0 10px;
}
.treatment-benefits .why-card p {
  font-size: 14px;
  line-height: 1.65;
}
@media (min-width: 768px) {
  .treatment-benefits .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .treatment-benefits .why-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.treatment-pricing {
  background: var(--ink);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.treatment-pricing::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(184,117,93,0.08);
  pointer-events: none;
}
.treatment-pricing::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(184,117,93,0.06);
  pointer-events: none;
}
.treatment-pricing .container { position: relative; z-index: 1; }
.treatment-pricing .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 8px;
}
.treatment-pricing .section-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin: 0 auto 40px;
  max-width: 540px;
  line-height: 1.6;
}
/* --- Pricing Cards Grid --- */
.td-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 32px;
  align-items: stretch;
}
.td-pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.td-pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.td-pricing-card.featured {
  background: var(--white);
  border: 2px solid var(--terracotta);
  box-shadow: 0 8px 32px rgba(184,117,93,0.25);
}
.td-pricing-card.featured:hover {
  box-shadow: 0 12px 40px rgba(184,117,93,0.35);
}
.td-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.td-pricing-card-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 12px;
}
.td-pricing-card.featured .td-pricing-card-name {
  color: var(--body);
}
.td-pricing-card-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 4px;
}
.td-pricing-card.featured .td-pricing-card-price {
  color: var(--terracotta);
}
.td-pricing-card-per {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 6px;
}
.td-pricing-card.featured .td-pricing-card-per {
  color: var(--body);
}
.td-pricing-card-sessions {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0 0 20px;
}
.td-pricing-card.featured .td-pricing-card-sessions {
  color: var(--body);
  opacity: 0.6;
}
.td-pricing-card-savings {
  display: inline-block;
  background: rgba(58,154,92,0.15);
  color: #3A9A5C;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 0 0 20px;
}
.td-pricing-card .btn {
  display: block;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background .2s ease, transform .2s ease;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
}
.td-pricing-card .btn:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}
.td-pricing-card.featured .btn {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.td-pricing-card.featured .btn:hover {
  background: #A5654E;
}
.td-pricing-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .td-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .td-pricing-card.featured {
    transform: scale(1.04);
  }
  .td-pricing-card.featured:hover {
    transform: scale(1.04) translateY(-3px);
  }
}

.related-treatments {
  background: var(--white);
  padding: 64px 24px;
}
.related-treatments-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.related-treatments .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 40px;
}

@media (min-width: 768px) {
  .treatment-detail { padding: 64px 40px; }
  .treatment-benefits { padding: 72px 40px; }
  .treatment-pricing { padding: 72px 40px; }
  .related-treatments { padding: 72px 40px; }
}
@media (min-width: 1024px) {
  .treatment-detail { padding: 72px 64px; }
  .treatment-detail-inner { grid-template-columns: 1fr 1fr; gap: 56px; }
  .treatment-benefits { padding: 80px 64px; }
  .treatment-pricing { padding: 80px 64px; }
  .related-treatments { padding: 80px 64px; }
}

/* ============ TREATMENT CONTENT SECTIONS ============ */

/* --- Technology / Equipment Section --- */
.treatment-technology {
  padding: 64px 24px;
  background: var(--cream);
}
.treatment-technology-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.treatment-technology .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 12px;
}
.treatment-technology .section-subtitle {
  font-size: 15px;
  color: var(--body);
  text-align: center;
  margin: 0 auto 40px;
  max-width: 640px;
  line-height: 1.6;
}
.td-tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.td-tech-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #EDE8E2;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.td-tech-card:hover {
  box-shadow: var(--shadow-card);
  border-color: #DDD6CC;
}
.td-tech-card .tech-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.td-tech-card .tech-icon svg { width: 24px; height: 24px; color: var(--terracotta); }
.td-tech-card h3,
.td-tech-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.td-tech-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
.td-tech-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.td-tech-card ul li {
  font-size: 13px;
  color: var(--body);
  padding: 4px 0;
  border-bottom: 1px solid #F0EBE4;
  display: flex;
  justify-content: space-between;
}
.td-tech-card ul li:last-child { border-bottom: none; }
.td-tech-card ul li strong {
  color: var(--ink);
  font-weight: 600;
}

/* --- Process Timeline Section --- */
.treatment-process {
  padding: 64px 24px;
  background: var(--white);
}
.treatment-process-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.treatment-process .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 16px;
}
.treatment-process .section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
}

/* Timeline grid with connecting lines */
.td-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  counter-reset: step;
}
.td-timeline-step {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px 28px;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,.04);
  counter-increment: step;
  overflow: hidden;
}
/* Accent top border per step */
.td-timeline-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--terracotta);
  opacity: .7;
}
.td-timeline-step:nth-child(2)::before { opacity: .85; }
.td-timeline-step:nth-child(3)::before { opacity: 1; }

/* Step number + badge row */
.td-timeline-step .step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.td-timeline-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.td-timeline-step .step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
/* Legacy: badge without step-header wrapper */
.td-timeline-step > .step-badge {
  margin-bottom: 16px;
}
.td-timeline-step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
}
.td-timeline-step p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin: 0 0 10px;
}
.td-timeline-step p:last-child { margin-bottom: 0; }
.td-timeline-step ul {
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
}
.td-timeline-step ul li {
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.td-timeline-step ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: .5;
}
.td-timeline-step ul li strong {
  color: var(--ink);
  font-weight: 600;
}

/* Step icon slot (optional) */
.td-timeline-step .step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--terracotta-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.td-timeline-step .step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
}

/* Desktop: 3 columns with connecting arrows */
@media (min-width: 768px) {
  .td-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  /* Connecting arrows between cards */
  .td-timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--terracotta);
    opacity: .3;
    z-index: 1;
  }
}
@media (min-width: 1024px) {
  .td-timeline { gap: 28px; }
  .td-timeline-step { padding: 36px 32px 32px; }
  .td-timeline-step:not(:last-child)::after { right: -18px; }
}

/* --- Candidates Section --- */
.treatment-candidates {
  padding: 64px 24px;
  background: var(--cream);
}
.treatment-candidates-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.treatment-candidates .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 16px;
}
.treatment-candidates .section-subtitle {
  font-size: 15px;
  color: var(--body);
  text-align: center;
  margin: 0 auto 40px;
  max-width: 640px;
  line-height: 1.6;
}
/* Table intro block (e.g. Fitzpatrick heading + description) */
.td-table-intro {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  border-left: 4px solid var(--terracotta);
}
.td-table-intro h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.td-table-intro p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}

/* Skin table — works as <div> wrapper or directly on <table> */
.td-skin-table {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
}
table.td-skin-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.td-skin-table table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.td-skin-table th:first-child,
table.td-skin-table th:first-child,
.td-skin-table td:first-child,
table.td-skin-table td:first-child { width: 14%; }
.td-skin-table th:nth-child(2),
table.td-skin-table th:nth-child(2),
.td-skin-table td:nth-child(2),
table.td-skin-table td:nth-child(2) { width: 40%; }
.td-skin-table th:nth-child(3),
table.td-skin-table th:nth-child(3),
.td-skin-table td:nth-child(3),
table.td-skin-table td:nth-child(3) { width: 46%; }
.td-skin-table th,
table.td-skin-table th {
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
}
.td-skin-table td,
table.td-skin-table td {
  font-size: 14px;
  color: var(--body);
  padding: 12px 16px;
  border-bottom: 1px solid #F0EBE4;
  word-wrap: break-word;
}
.td-skin-table tr:last-child td { border-bottom: none; }
.td-skin-table tr:nth-child(even) td { background: var(--cream); }
.td-candidates-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
.td-candidates-list {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid #3A9A5C;
  position: relative;
}
.td-candidates-list.contraindications {
  border-top-color: #D94646;
}
/* Heading with inline icon */
.td-candidates-list h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.td-candidates-list h4::before {
  content: '';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E8F5EC;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%233A9A5C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.td-candidates-list.contraindications h4::before {
  background-color: #FCEAEA;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23D94646' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 9v4m0 4h.01M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0z'/%3E%3C/svg%3E");
}
.td-candidates-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.td-candidates-list ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  padding: 7px 0 7px 28px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.td-candidates-list ul li:last-child { border-bottom: none; }
.td-candidates-list ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 13px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%233A9A5C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.td-candidates-list.contraindications ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23D94646' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}
@media (min-width: 768px) {
  .td-candidates-lists { grid-template-columns: repeat(2, 1fr); }
}

/* --- Aftercare Timeline Section --- */
.treatment-aftercare {
  padding: 64px 24px;
  background: var(--white);
}
.treatment-aftercare-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.treatment-aftercare .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 12px;
}
.treatment-aftercare .section-subtitle {
  font-size: 15px;
  color: var(--body);
  text-align: center;
  margin: 0 auto 40px;
  max-width: 640px;
  line-height: 1.6;
}
.td-aftercare-timeline {
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  padding-left: 48px;
}
.td-aftercare-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--terracotta-soft);
}
.td-aftercare-phase {
  position: relative;
  padding-bottom: 20px;
}
.td-aftercare-phase:last-child { padding-bottom: 0; }
.td-aftercare-phase::before {
  content: "";
  position: absolute;
  left: -48px;
  top: 24px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--terracotta-soft);
  z-index: 1;
  margin-left: 8px;
}
.td-aftercare-phase-inner {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--terracotta);
}
.td-aftercare-phase h3,
.td-aftercare-phase h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.td-aftercare-phase p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
.td-aftercare-phase ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.td-aftercare-phase ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  padding: 6px 0 6px 24px;
  position: relative;
  border-bottom: 1px solid #F0EBE4;
}
.td-aftercare-phase ul li:last-child { border-bottom: none; }
.td-aftercare-phase ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta-soft);
}
.td-aftercare-products-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 48px 0 24px;
}
.td-aftercare-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.td-aftercare-product {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
}
.td-aftercare-product-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.td-aftercare-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
/* Placeholder icon when no image provided */
.td-aftercare-product-img::after {
  content: "";
  width: 32px; height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23B8755D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
}
.td-aftercare-product-img:has(img)::after { display: none; }
.td-aftercare-product-text {
  min-width: 0;
}
.td-aftercare-product h4,
.td-aftercare-product h5,
.td-aftercare-product strong,
.td-aftercare-product-text h4,
.td-aftercare-product-text h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin: 0 0 6px;
}
.td-aftercare-product p,
.td-aftercare-product span,
.td-aftercare-product-text p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
/* Fallback: cards without the grid structure (no img div) */
.td-aftercare-product:not(:has(.td-aftercare-product-img)) {
  grid-template-columns: 1fr;
  padding-left: 64px;
  position: relative;
}
.td-aftercare-product:not(:has(.td-aftercare-product-img))::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 26px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23B8755D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .td-aftercare-products { grid-template-columns: repeat(2, 1fr); }
}

/* --- Deep Dive / Technical Section --- */
.treatment-deep-dive {
  padding: 64px 24px;
  background: var(--cream);
}
.treatment-deep-dive-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.treatment-deep-dive .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  text-align: center;
}
.treatment-deep-dive .section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: -28px auto 40px;
}

/* Deep dive block — alternating text + image */
.td-dd-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.td-dd-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.td-dd-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
  position: relative;
  padding-left: 16px;
}
.td-dd-text h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: var(--terracotta);
  border-radius: 2px;
}
.td-dd-text p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  margin: 0 0 14px;
}
.td-dd-text p:last-child { margin-bottom: 0; }
.td-dd-text ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.td-dd-text ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 8px;
}
.td-dd-text ul li strong { color: var(--ink); }

/* Image placeholder */
.td-dd-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.td-dd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.td-dd-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}
.td-dd-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--terracotta);
  opacity: .4;
}
.td-dd-placeholder span {
  font-size: 13px;
  color: var(--body);
  opacity: .5;
  font-style: italic;
  max-width: 200px;
  line-height: 1.4;
}

/* Pull quote — enhanced */
.td-pull-quote {
  border-left: 3px solid var(--terracotta);
  padding: 24px 28px;
  margin: 32px 0;
  background: var(--white);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow-card);
  position: relative;
}
.td-pull-quote::before {
  content: '\201C';
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--terracotta);
  opacity: .15;
  position: absolute;
  top: -8px;
  left: 16px;
  line-height: 1;
}
.td-pull-quote p {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* Info/highlight box within deep-dive */
.td-dd-info {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--terracotta);
  margin: 24px 0;
}
.td-dd-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.td-dd-info p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
  margin: 0;
}

/* Fallback: plain .td-deep-dive-content still works */
.td-deep-dive-content {
  max-width: 760px;
}
.td-deep-dive-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
  padding-left: 16px;
  position: relative;
}
.td-deep-dive-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: var(--terracotta);
  border-radius: 2px;
}
.td-deep-dive-content h3:first-child { margin-top: 0; }
.td-deep-dive-content p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  margin: 0 0 14px;
}
.td-deep-dive-content ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.td-deep-dive-content ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 8px;
}

/* Responsive deep-dive blocks */
@media (min-width: 768px) {
  .td-dd-block { grid-template-columns: 1fr 1fr; gap: 40px; }
  .td-dd-block.reverse { direction: rtl; }
  .td-dd-block.reverse > * { direction: ltr; }
  .td-dd-media { min-height: 280px; }
}
@media (min-width: 1024px) {
  .td-dd-block { gap: 56px; }
  .td-dd-media { min-height: 320px; }
  .treatment-deep-dive .section-title { font-size: 34px; margin-bottom: 48px; }
}

/* --- Blog Reference Links (inline in content) --- */
.td-blog-links {
  max-width: 800px;
  margin: 48px auto 0;
}
.td-blog-links > h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 20px;
}
.td-blog-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.td-blog-link-card {
  display: block;
  background: var(--white);
  border-radius: 14px;
  padding: 24px 24px 24px 64px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  position: relative;
  border-left: 4px solid var(--terracotta);
  transition: box-shadow .2s ease, transform .2s ease;
}
.td-blog-link-card:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-2px);
}
.td-blog-link-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 26px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23B8755D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.td-blog-link-card h4,
.td-blog-link-card .blog-link-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}
.td-blog-link-card p,
.td-blog-link-card .blog-link-label {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .td-blog-links-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Comparison Table — works as <div> wrapper or directly on <table> --- */
.td-comparison-table {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
}
table.td-comparison-table { width: 100%; border-collapse: collapse; }
.td-comparison-table table { width: 100%; border-collapse: collapse; }
.td-comparison-table th,
table.td-comparison-table th {
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
.td-comparison-table td,
table.td-comparison-table td {
  font-size: 14px;
  color: var(--body);
  padding: 12px 16px;
  border-bottom: 1px solid #F0EBE4;
}
.td-comparison-table tr:last-child td { border-bottom: none; }
.td-comparison-table .highlight-col { color: var(--terracotta); font-weight: 600; }

/* --- Session Package Table — works as <div> wrapper or directly on <table> --- */
.td-package-table {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin: 24px auto;
  max-width: 480px;
  -webkit-overflow-scrolling: touch;
}
table.td-package-table { width: 100%; border-collapse: collapse; }
.td-package-table table { width: 100%; border-collapse: collapse; }
.td-package-table th,
table.td-package-table th {
  background: var(--terracotta);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
}
.td-package-table td,
table.td-package-table td {
  font-size: 14px;
  color: var(--body);
  padding: 12px 16px;
  border-bottom: 1px solid #F0EBE4;
}
.td-package-table tr:last-child td { border-bottom: none; }
.td-package-table .pkg-best { background: var(--terracotta-soft); font-weight: 600; color: var(--ink); }

/* --- Table responsive: horizontal scroll on mobile --- */
@media (max-width: 767px) {
  .td-comparison-table,
  .td-skin-table {
    overflow-x: auto;
    border-radius: 12px;
  }
  .td-comparison-table table,
  .td-skin-table table,
  table.td-comparison-table,
  table.td-skin-table {
    min-width: 540px;
  }
  .td-comparison-table th,
  .td-comparison-table td,
  .td-skin-table th,
  .td-skin-table td,
  table.td-comparison-table th,
  table.td-comparison-table td,
  table.td-skin-table th,
  table.td-skin-table td {
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* ============ BLOG ARTICLE PAGE ============ */
.blog-article {
  background: var(--white);
}
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  padding: 24px 24px 0;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.blog-back-link:hover { text-decoration: underline; }
.blog-back-link svg { width: 14px; height: 14px; }
.blog-article-header {
  padding: 32px 24px 40px;
  max-width: 760px;
  margin: 0 auto;
}
.blog-article-header .blog-category-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-soft);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.blog-article-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
}
.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}
.blog-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-article-meta svg { width: 16px; height: 16px; color: var(--terracotta); }

.blog-article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.blog-article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
}
.blog-article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}
.blog-article-content p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.8;
  margin: 0 0 16px;
}
.blog-article-content ul,
.blog-article-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.blog-article-content li {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 6px;
}
.blog-article-content blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--cream);
  border-radius: 0 12px 12px 0;
}
.blog-article-content blockquote p {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  font-style: italic;
}

.blog-article-author {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.blog-article-author-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--cream);
  border-radius: 14px;
}
.blog-article-author .author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D9B49A 0%, #B98E72 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}
.blog-article-author .author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 2px;
}
.blog-article-author .author-role {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ============ NEW CONTENT SECTIONS RESPONSIVE ============ */
@media (min-width: 768px) {
  .treatment-technology { padding: 72px 40px; }
  .td-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-process { padding: 72px 40px; }
  .treatment-candidates { padding: 72px 40px; }
  .treatment-aftercare { padding: 72px 40px; }
  .treatment-deep-dive { padding: 72px 40px; }
  .td-blog-links { grid-template-columns: repeat(2, 1fr); }
  .blog-article-header { padding: 40px 40px 48px; }
  .blog-article-header h1 { font-size: 38px; }
  .blog-article-content { padding: 0 40px 72px; }
  .blog-article-author { padding: 0 40px 56px; }
  .blog-back-link { padding: 32px 40px 0; }
}
@media (min-width: 1024px) {
  .treatment-technology { padding: 80px 64px; }
  .treatment-process { padding: 80px 64px; }
  .treatment-candidates { padding: 80px 64px; }
  .treatment-aftercare { padding: 80px 64px; }
  .treatment-deep-dive { padding: 80px 64px; }
  .blog-article-header { padding: 48px 24px 56px; }
  .blog-article-header h1 { font-size: 42px; }
  .blog-article-content { padding: 0 24px 80px; }
  .blog-article-author { padding: 0 24px 64px; }
  .blog-back-link { padding: 40px 24px 0; }
}

/* ============ SITE-NAV COMPATIBILITY ============ */
/* Mirrors .nav styles for pages using .site-nav pattern */
.site-nav {
  height: 96px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E8E2D8;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow .2s ease;
}
.site-nav.scrolled {
  background: rgba(245,240,234,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 12px rgba(20,20,20,.08);
}
.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-lotus {
  width: 56px; height: 56px;
  flex: 0 0 56px;
}
.nav-lotus svg { width: 100%; height: 100%; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-main {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 13px;
  color: #5A5A5A;
  font-weight: 400;
  margin-top: 4px;
}
.site-nav .nav-links { display: none; align-items: center; gap: 36px; }
.nav-actions { display: none; align-items: center; gap: 28px; }

/* ============ GENERIC CONTAINER ============ */
.container {
  max-width: 1080px;
  margin: 0 auto;
}

/* ============ TREATMENT DETAIL GRID COMPAT ============ */
.td-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

/* ============ PAGE HEADER COMPATIBILITY ============ */
.page-eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-header-inner,
.page-header-content {
  max-width: 100%;
}
.page-header-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

/* ============ BUTTON VARIANTS ============ */
.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn-secondary:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* ============ SECTION INTRO / TECH ICON COMPAT ============ */
.section-intro {
  font-size: 15px;
  color: var(--body);
  text-align: center;
  margin: 0 auto 40px;
  max-width: 640px;
  line-height: 1.6;
}
.td-tech-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.td-tech-icon svg { width: 24px; height: 24px; color: var(--terracotta); }

/* ============ PRICING SECTION COMPAT ============ */
.td-price-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--body);
  margin-bottom: 8px;
}
.td-price-note {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 20px;
}
.td-price-left {
  margin-bottom: 20px;
}
.td-price-left h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.td-price-left p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
.td-price-right {
  padding-top: 16px;
  border-top: 1px solid #EDE8E2;
}
.td-price-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  line-height: 1;
}
.td-price-unit {
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}
/* (td-package-table table rules moved to main table block above) */

/* ============ RELATED TREATMENTS COMPAT ============ */
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.related-treatments .treatment-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.tc-image,
.related-treatments .tc-icon {
  width: 100%;
  height: 180px;
  border-radius: 0;
  background: var(--cream);
  border: none;
  display: block;
  overflow: hidden;
}
.tc-image img,
.related-treatments .tc-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tc-content {
  padding: 20px 24px;
}
.tc-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.tc-content p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 12px;
}
.related-treatments .treatment-card h3 {
  padding: 16px 24px 0;
}
.related-treatments .tc-desc {
  padding: 0 24px;
}
.related-treatments .tc-price {
  padding: 0 24px;
}
.tc-link,
a.tc-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  padding: 0 24px 20px;
}
.tc-link:hover { text-decoration: underline; }
@media (min-width: 768px) {
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .treatment-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ============ SKIP LINK ============ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--terracotta);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 0;
}

/* ============ FAQ COMPAT ============ */
.faq-list {
  display: flex;
  flex-direction: column;
}

/* ============ SITE-NAV + COMPAT RESPONSIVE ============ */
@media (min-width: 768px) {
  .site-nav { padding: 0 40px; }
  .site-nav .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .td-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .page-header-cta { gap: 16px; }
  .td-price-card { display: flex; flex-direction: column; }
}
@media (min-width: 1024px) {
  .site-nav { padding: 0 64px; }
  .td-grid { gap: 56px; }
}
