/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CDFC — treatments.css
   Template: Treatments Page
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Hero ───────────────────────────────────────────────────────── */
.treat-hero {
  position: relative;
  background: linear-gradient(150deg, #140b19 0%, #2a1035 35%, var(--shuttle-deep) 75%, #1a1d24 100%);
  padding: 96px 0 72px;
  overflow: hidden;
}
.treat-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(109,46,123,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(126,50,121,.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Animated blobs */
.treat-hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,46,123,.3), transparent 70%);
  filter: blur(40px);
  animation: blobFloat 8s ease-in-out infinite;
}
.blob.b1 { width: 380px; height: 380px; top: -100px; right: -80px; animation-delay: 0s; }
.blob.b2 { width: 260px; height: 260px; bottom: -60px; left: 10%; animation-delay: -3s; background: radial-gradient(circle, rgba(126,50,121,.25), transparent 70%); }
.blob.b3 { width: 180px; height: 180px; top: 40%; right: 25%; animation-delay: -5s; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-20px,18px) scale(1.06); }
  66%      { transform: translate(14px,-12px) scale(.94); }
}

.treat-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109,46,123,.2);
  border: 1px solid rgba(109,46,123,.4);
  color: var(--accent-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.treat-hero-badge svg { width: 15px; height: 15px; }

.treat-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  line-height: 1.14;
  margin-bottom: 18px;
  max-width: 740px;
}
.treat-hero-content .lead {
  color: rgba(255,255,255,.68);
  font-size: clamp(.92rem, 1.5vw, 1.05rem);
  line-height: 1.78;
  max-width: 620px;
  margin-bottom: 32px;
}

/* Search bar */
.treat-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(109,46,123,.35);
  border-radius: 14px;
  padding: 14px 20px;
  max-width: 600px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
  transition: border-color .3s, background .3s;
}
.treat-search:focus-within {
  border-color: var(--accent);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 4px rgba(109,46,123,.15);
}
.treat-search svg { width: 18px; height: 18px; color: rgba(255,255,255,.4); flex: none; }
.treat-search input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  color: #fff;
  font-size: .96rem;
  font-family: inherit;
}
.treat-search input::placeholder { color: rgba(255,255,255,.38); }
.treat-search-clear {
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-size: .9rem;
  flex: none;
  transition: color .2s;
}
.treat-search-clear:hover { color: #fff; }

/* Hero stats */
.treat-hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(109,46,123,.25);
  border-radius: 14px;
  overflow: hidden;
  max-width: 520px;
  background: rgba(255,255,255,.03);
}
.th-stat {
  flex: 1;
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid rgba(109,46,123,.2);
}
.th-stat:last-child { border-right: none; }
.th-stat .n {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-light);
  margin-bottom: 2px;
}
.th-stat .l { font-size: .7rem; color: rgba(255,255,255,.5); font-weight: 600; }

/* ── Category filter + card restyle (matches treatments.html reference) ──
   Scoped to just these two components via local custom-property overrides,
   so every existing var(--accent) rule below repaints to the new magenta
   palette + Poppins/Inter fonts without touching the rest of the site
   (header, hero, footer stay on the site-wide plum theme). ── */
.treat-cat-bar,
.treat-section {
  --accent:      #a0469a;
  --accent-deep: #7e3279;
  --accent-light:#d98fd1;
  --accent-soft: #f6e9f4;
}

/* ── Category sticky bar ────────────────────────────────────────── */
.treat-cat-bar {
  position: sticky;
  top: 68px;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 4px 20px -6px rgba(160,70,154,.2);
}
.treat-cats {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 0;
}
.treat-cats::-webkit-scrollbar { display: none; }
button.tc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  background: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
  flex: 0 0 auto;
  transition: all .25s var(--ease);
}
button.tc svg { width: 14px; height: 14px; flex: none; }
button.tc:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
button.tc.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(160,70,154,.55);
}
.tc-count {
  font-size: .68rem;
  font-weight: 800;
  background: rgba(0,0,0,.08);
  padding: 2px 7px;
  border-radius: 50px;
}
button.tc.active .tc-count { background: rgba(255,255,255,.2); }

/* ── Two-column layout ──────────────────────────────────────────── */
.treat-section { background: var(--paper); padding: 52px 0 72px; }
.treat-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
.treat-sidebar { position: sticky; top: 128px; display: grid; gap: 18px; }

/* Toolbar */
.treat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.treat-count-label { font-size: .88rem; color: var(--ink-soft); font-weight: 600; }
.treat-sort select { border: 1.5px solid var(--line); border-radius: 9px; padding: 8px 12px; font-size: .86rem; color: var(--ink); outline: none; }
.treat-sort select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(160,70,154,.12); }

/* ── Treatment cards ────────────────────────────────────────────── */
.treat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.treat-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition: opacity .55s var(--ease), transform .55s var(--ease), border-color .3s, box-shadow .3s;
  transition-delay: var(--delay, 0ms);
  position: relative;
  overflow: hidden;
}
.treat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
  border-radius: 20px 20px 0 0;
}
.treat-card:hover { border-color: rgba(160,70,154,.3); box-shadow: 0 12px 30px -10px rgba(160,70,154,.2); }
.treat-card:hover::before { transform: scaleX(1); }
.treat-card.in { opacity: 1; transform: translateY(0) scale(1); }
.treat-card.hidden { display: none; }

/* Card head */
.tc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.tc-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  transition: background .3s;
}
.tc-icon svg { width: 22px; height: 22px; color: var(--accent); transition: color .3s; }
.treat-card:hover .tc-icon { background: var(--accent); }
.treat-card:hover .tc-icon svg { color: #fff; }
.tc-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.tc-tag {
  font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff; padding: 3px 10px; border-radius: 50px;
}
.tc-dept {
  font-size: .7rem; font-weight: 700; color: var(--ink-soft);
  background: var(--shuttle-soft); padding: 3px 10px; border-radius: 50px;
}

/* Card content */
.tc-title { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; line-height: 1.4; color: var(--ink); }
.tc-body { font-family: 'Inter', sans-serif; font-size: .85rem; color: var(--ink-soft); line-height: 1.75; flex: 1; }

/* Includes list */
.tc-includes { background: var(--shuttle-soft); border-radius: 12px; padding: 12px 14px; }
.tc-inc-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); display: block; margin-bottom: 8px; }
.tc-includes ul { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.tc-includes li { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--ink); }
.tc-includes li svg { width: 12px; height: 12px; color: var(--accent); flex: none; }

/* Footer */
.tc-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid var(--line); }
.tc-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .74rem; font-weight: 700; color: var(--ink-soft);
  background: var(--shuttle-soft); padding: 5px 10px; border-radius: 50px;
}
.chip svg { width: 12px; height: 12px; }
.tc-actions { display: flex; gap: 8px; }
.tc-actions .btn { font-size: .8rem; padding: 8px 16px; }

/* No results */
.treat-no-results { grid-column: 1 / -1; text-align: center; padding: 60px 0; }
.treat-no-results svg { width: 48px; height: 48px; margin: 0 auto 16px; display: block; opacity: .25; }
.treat-no-results h4 { font-size: 1.1rem; margin-bottom: 8px; }
.treat-no-results p { color: var(--ink-soft); font-size: .9rem; margin-bottom: 20px; }

/* ── Sidebar widgets ─────────────────────────────────────────────── */
.treat-appt-cta .cta-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.treat-appt-cta .cta-icon-wrap svg { width: 24px; height: 24px; color: #fff; }
.cta-phone {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; font-size: .84rem; font-weight: 700; color: rgba(255,255,255,.8);
}
.cta-phone svg { width: 15px; height: 15px; }
.cta-phone a { color: rgba(255,255,255,.95); }

/* Category jumper */
.treat-jumper h5 { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 10px; }
button.tj-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; text-align: left;
  padding: 10px 12px; border-radius: 10px; border: none;
  background: none; cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: .86rem; font-weight: 700; color: var(--ink);
  transition: all .25s var(--ease);
}
button.tj-item:hover, button.tj-item.active { background: var(--accent-soft); color: var(--accent); }
.tj-ic { width: 28px; height: 28px; flex: none; }
.tj-ic svg { width: 16px; height: 16px; }
.tj-label { flex: 1; }
.tj-count { font-size: .72rem; font-weight: 800; background: var(--shuttle-soft); color: var(--ink-soft); padding: 2px 8px; border-radius: 50px; }

/* Second opinion card */
.treat-so-card .so-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--accent-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.treat-so-card .so-icon svg { width: 22px; height: 22px; color: var(--accent); }
.treat-so-card h4 { font-size: .98rem; margin-bottom: 7px; }
.treat-so-card p { font-size: .84rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 4px; }

/* ── Treatment Process ──────────────────────────────────────────── */
.treat-process { background: #fff; padding: 80px 0; }
.treat-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  position: relative;
}
.tpg-card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .3s;
  opacity: 0;
  transform: translateY(32px);
  transition-delay: var(--delay, 0ms);
}
.tpg-card.in { opacity: 1; transform: translateY(0); }
.tpg-card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px -10px rgba(109,46,123,.2); border-color: rgba(109,46,123,.3); }
.tpg-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(109,46,123,.1);
  line-height: 1;
  position: absolute;
  top: 16px; right: 18px;
  transition: color .3s;
}
.tpg-card:hover .tpg-num { color: rgba(109,46,123,.2); }
.tpg-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background .3s;
}
.tpg-icon svg { width: 23px; height: 23px; color: var(--accent); transition: color .3s; }
.tpg-card:hover .tpg-icon { background: var(--accent); }
.tpg-card:hover .tpg-icon svg { color: #fff; }
.tpg-card h4 { font-size: 1rem; margin-bottom: 8px; }
.tpg-card p { font-size: .85rem; color: var(--ink-soft); line-height: 1.75; }
.tpg-arrow {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(109,46,123,.5);
}
.tpg-arrow svg { width: 16px; height: 16px; stroke: #fff; }

/* ── Before/After strip ─────────────────────────────────────────── */
.treat-ba-strip {
  background: linear-gradient(150deg, #1a0d20 0%, #2d1438 45%, #1e1a28 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.treat-ba-strip::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,46,123,.2), transparent 70%);
  pointer-events: none;
}
.treat-ba-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.treat-ba-text .eyebrow { color: var(--accent-light); justify-content: flex-start; }
.treat-ba-text p { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.8; margin: 14px 0 20px; }
.treat-ba-badges { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.treat-ba-badges span {
  display: flex; align-items: center; gap: 8px;
  font-size: .86rem; font-weight: 600; color: rgba(255,255,255,.8);
}
.treat-ba-badges svg { width: 16px; height: 16px; stroke: var(--accent-light); flex: none; }

/* Image pair */
.tba-image-pair { display: flex; flex-direction: column; gap: 4px; }
.tba-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.tba-img img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.tba-img:hover img { transform: scale(1.04); }
.tba-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 50px;
}
.tba-badge.before { background: rgba(30,60,100,.85); color: #6db3f2; }
.tba-badge.after  { background: rgba(10,50,30,.85);  color: #52c97a; }
.tba-healed {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(40,167,69,.85);
  display: flex; align-items: center; justify-content: center;
}
.tba-healed svg { width: 16px; height: 16px; stroke: #fff; }
.tba-divider { display: flex; justify-content: center; padding: 2px 0; }
.tba-divider svg { width: 24px; height: 32px; }
.tba-caption { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 10px; text-align: center; font-style: italic; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.treat-faq { background: var(--paper); padding: 80px 0; }
.treat-faq-grid { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }
.treat-faq-grid > div:first-child h2 { font-size: 1.6rem; margin: 8px 0 14px; }
.treat-faq-grid > div:first-child p { font-size: .9rem; color: var(--ink-soft); line-height: 1.75; }
.treat-faq-list { display: grid; gap: 10px; }
.treat-faq-list .acc-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.treat-faq-list .acc-item:hover { border-color: rgba(109,46,123,.3); }
.treat-faq-list .acc-item.open { border-color: var(--accent); box-shadow: 0 6px 20px -8px rgba(109,46,123,.25); }
.treat-faq-list .acc-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; cursor: pointer;
  font-weight: 700; font-size: .93rem;
  transition: background .25s, color .25s;
}
.treat-faq-list .acc-item.open .acc-head { background: var(--accent-soft); color: var(--accent); }
.treat-faq-list .acc-head svg { width: 16px; height: 16px; flex: none; transition: transform .3s; }
.treat-faq-list .acc-item.open .acc-head svg { transform: rotate(180deg); }
.treat-faq-list .acc-body { display: none; padding: 0 20px 16px; font-size: .88rem; color: var(--ink-soft); line-height: 1.85; }
.treat-faq-list .acc-item.open .acc-body { display: block; }

/* ── Final CTA band ─────────────────────────────────────────────── */
.treat-final-cta { padding: 0 0 72px; }
.treat-final-inner {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 50%, #7c4289 100%);
  border-radius: 28px;
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(109,46,123,.65);
}
.tf-blobs { position: absolute; inset: 0; pointer-events: none; }
.tf-blobs span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.tf-blobs span:first-child  { width: 280px; height: 280px; top: -80px; right: -80px; }
.tf-blobs span:last-child   { width: 180px; height: 180px; bottom: -60px; left: 8%; }
.tf-content { position: relative; z-index: 1; }
.tf-content h2 { color: #fff; font-size: clamp(1.5rem,3.5vw,2.1rem); margin-bottom: 12px; }
.tf-content p  { color: rgba(255,255,255,.78); font-size: .96rem; max-width: 600px; line-height: 1.75; margin-bottom: 28px; }
.tf-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.tf-cta-row .btn-white {
  background: #fff;
  color: var(--accent-deep);
  font-weight: 700;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.25);
}
.tf-cta-row .btn-white:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -10px rgba(0,0,0,.3); }
.btn-outline-white { border:1.5px solid rgba(255,255,255,.45); color:#fff; background:transparent; padding:13px 26px; border-radius:50px; font-weight:600; font-size:.93rem; display:inline-flex; align-items:center; transition: all .3s; }
.btn-outline-white:hover { background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.8); transform:translateY(-3px); }
.tf-phone {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-weight: 700; font-size: .92rem;
  padding: 13px 20px; border-radius: 50px;
  background: rgba(255,255,255,.1); transition: background .25s;
}
.tf-phone:hover { background: rgba(255,255,255,.18); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1200px) {
  .treat-process-grid { grid-template-columns: repeat(2, 1fr); }
  .tpg-card:nth-child(2) .tpg-arrow,
  .tpg-card:nth-child(4) .tpg-arrow { display: none; }
}
@media (max-width: 1024px) {
  .treat-layout { grid-template-columns: 1fr; }
  .treat-sidebar { position: static; grid-template-columns: 1fr 1fr; gap: 14px; }
  .treat-appt-cta { grid-column: 1 / -1; }
  .treat-ba-inner { grid-template-columns: 1fr; gap: 36px; }
  .treat-faq-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .treat-cards { grid-template-columns: 1fr; }
  .treat-process-grid { grid-template-columns: repeat(2, 1fr); }
  .tpg-arrow { display: none; }
}
@media (max-width: 640px) {
  .treat-hero { padding: 72px 0 52px; }
  .treat-hero-content h1 { font-size: 1.75rem; }
  .treat-hero-stats { flex-wrap: wrap; }
  .th-stat { flex: 1 0 40%; }
  .treat-search { padding: 12px 14px; }
  .treat-search input { font-size: .88rem; }
  .treat-sidebar { grid-template-columns: 1fr; }
  .treat-process-grid { grid-template-columns: 1fr; }
  .tc-includes ul { grid-template-columns: 1fr; }
  .treat-final-inner { padding: 36px 24px; border-radius: 20px; }
  .tf-cta-row { flex-direction: column; }
  .tf-cta-row .btn, .tf-cta-row .btn-outline-white, .tf-cta-row .tf-phone { width: 100%; justify-content: center; }
  .treat-ba-inner .treat-ba-text { order: 2; }
  .treat-ba-inner .treat-ba-visual { order: 1; }
}
@media (max-width: 480px) {
  button.tc { padding: 8px 12px; font-size: .78rem; }
  button.tc svg { display: none; }
  .tc-count { display: none; }
  .tba-img img { height: 140px; }
}

/* ─── GLOSSY TREATMENT PAGE ENHANCEMENTS ─── */
.treat-hero { background: var(--grad-hero) !important; }
.treat-hero .treat-search {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px -10px rgba(109,46,123,.2), var(--inset-shine);
}
.treat-hero .treat-search:focus-within {
  border-color: rgba(243,178,36,.5);
  box-shadow: 0 0 0 4px rgba(243,178,36,.12), 0 8px 32px -10px rgba(109,46,123,.25);
}
.treat-hero-stats {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  box-shadow: var(--inset-shine);
}
.th-stat .n {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(243,178,36,.4));
}
.treat-cat-bar {
  background: rgba(255,255,255,.9) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1.5px solid rgba(160,70,154,.15) !important;
  box-shadow: 0 8px 36px -8px rgba(160,70,154,.14) !important;
}
.treat-card {
  background: #fff;
  border: 1px solid rgba(160,70,154,.1);
  box-shadow: 0 4px 16px -8px rgba(160,70,154,.08);
}
.treat-card::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-light)) !important;
  height: 2.5px;
}
.tc-icon {
  background: linear-gradient(135deg, var(--accent-soft), rgba(255,255,255,.8)) !important;
  box-shadow: 0 4px 12px -4px rgba(160,70,154,.12);
  transition: all .35s var(--ease) !important;
}
.treat-card:hover .tc-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep)) !important;
  box-shadow: 0 8px 24px -6px rgba(160,70,154,.5), var(--inset-shine) !important;
}
.treat-process { background: #fff; }
.tpg-card {
  background: linear-gradient(160deg, rgba(240,234,241,.4) 0%, #fff 100%);
  border: 1px solid rgba(109,46,123,.1);
  box-shadow: 0 4px 16px -8px rgba(109,46,123,.08);
}
.tpg-card:hover {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-color: rgba(109,46,123,.2);
}
.tpg-icon {
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(255,255,255,.6) 100%) !important;
  box-shadow: 0 4px 12px -4px rgba(109,46,123,.12);
}
.tpg-card:hover .tpg-icon {
  background: var(--grad-plum) !important;
  box-shadow: 0 8px 24px -6px rgba(109,46,123,.5), var(--inset-shine) !important;
}
.tpg-arrow {
  background: var(--grad-plum) !important;
  box-shadow: 0 8px 24px -6px rgba(109,46,123,.55), var(--inset-shine) !important;
}
.treat-ba-strip { background: var(--grad-hero) !important; }
.treat-faq { background: var(--paper); }
