/* ============================================================
   SERVICE DETAIL PAGE STYLES
   ============================================================ */

/* â”€â”€ MEGA DROPDOWN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.has-mega {
  position: relative;
}

.mega-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: var(--white);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease;
  z-index: 2000;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.has-mega:hover .mega-menu,
.has-mega.menu-open .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1.4fr 1.2fr;
  gap: 0;
  padding: 32px 0 0;
  max-width: var(--max-w);
  margin: 0 auto;
}

.mega-col {
  padding: 0 28px 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.mega-col:last-of-type {
  border-right: none;
}

/* Footer bar inside mega menu */
.mega-footer-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f8f7fc;
  border-radius: 0 0 16px 16px;
}

.mega-footer-txt {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.mega-footer-bar .btn-consultation {
  font-size: 12.5px;
  padding: 9px 20px;
  flex-shrink: 0;
}

.mega-cat {
  display: block;
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 4px;
}

.mega-link {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: #444;
  padding: 5px 0;
  transition: color .18s;
  border-radius: 4px;
}

.mega-link:hover {
  color: var(--purple);
}

.mega-link.active-link {
  color: var(--purple);
  font-weight: 700;
}


/* â”€â”€ BREADCRUMB â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.breadcrumb-bar {
  background: var(--white);
  margin-top: var(--nav-h);
}

.bc-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-label);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.bc-inner a {
  color: var(--muted);
  transition: color .2s;
}

.bc-inner a:hover {
  color: var(--purple);
}

.bc-sep {
  color: var(--border);
}

.bc-current {
  color: var(--dark);
  font-weight: 600;
}

/* â”€â”€ TREATMENT TABS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tabs-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0px 40px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tabs-heading-wrap {
  max-width: var(--max-w);
  margin: 0 auto 16px;
}

.page-cat-title {
  font-family: var(--f-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--dark);
}

.tabs-scroll-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 40px;
}

.tabs-scroll-wrap::-webkit-scrollbar {
  display: none;
}
td.diff-feat br {
    display: none;
}
.tabs-track {
  display: flex;
  gap: 8px;
  padding-bottom: 0;
  width: max-content;
}

.tab-btn {
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
  transition: all .22s;
  margin-bottom: 14px;
}

.tab-btn:hover {
  border-color: var(--dark);
}

.tab-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* Loading state */
.tab-btn.loading {
  opacity: .6;
  pointer-events: none;
}

/* â”€â”€ CONTENT FADE-IN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#treatment-content {
  animation: fadeUp .4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overview-left {
  width: 100%;
  max-width: 50%;
}

/* â”€â”€ TREATMENT OVERVIEW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.treatment-overview {
  background: #f7f5fa;
  padding: 48px 0px;
}

.overview-inner {
  grid-template-columns: 380px 1fr;
  gap: 52px;
  display: flex;
}

/* Left column */
.overview-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.overview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appt-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d93025;
  color: var(--white);
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
}

.from-price-badge {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: var(--purple);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}

.from-sm {
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 600;
  opacity: .85;
}

.from-price {
  font-family: var(--f-label);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.from-price sup {
  font-size: 11px;
}

.img-overlay-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 100%);
  padding: 36px 16px 16px;
}

.img-overlay-title h2 {
  font-family: var(--f-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

.need-help {
  margin-top: 20px;
}

.nh-title {
  font-family: var(--f-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}

.nh-sub {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.nh-link {
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  transition: opacity .2s;
}

.nh-link:hover {
  opacity: .7;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.stars {
  font-size: 16px;
  color: #f4a01c;
  letter-spacing: 1px;
}

.star-txt {
  font-family: var(--f-label);
  font-size: 12px;
  color: var(--muted);
}

/* Right column */
.treatment-title {
  font-family: var(--f-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
}

.treatment-desc {
  font-family: var(--f-body);
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
}

.learn-more-link {
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  display: inline-block;
  margin-bottom: 28px;
  transition: opacity .2s;
}

.learn-more-link:hover {
  opacity: .7;
}

.pricing-block {
  margin-bottom: 28px;
}

.pricing-block-title {
  font-family: var(--f-label);
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 12px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}

.price-table th {
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--muted);
  background: #fafafa;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.pt-name {
  display: block;
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.pt-note {
  display: block;
  font-family: var(--f-label);
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.pt-price {
  font-family: var(--f-label);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.pt-price-purple {
  font-family: var(--f-label);
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
}

.pt-reg {
  font-family: var(--f-label);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.pt-saving {
  font-family: var(--f-label);
  font-size: 15px;
  font-weight: 700;
  color: var(--purple);
}

.btn-book-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-family: var(--f-label);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background .2s;
  text-align: center;
}

.btn-book-dark:hover {
  background: #333;
}

.full-w {
  width: 100%;
}

.klarna-line {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.klarna-badge {
  background: #ff8bc8;
  color: var(--dark);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
}

.footnote {
  font-family: var(--f-body);
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
}

/* â”€â”€ FEATURE SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.feature-section {
  background: var(--white);
  padding: 72px 40px;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 10px;
  height: 480px;
}

.fi-main {
  grid-column: 1 / -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.fi-sub {
  display: none;
}

.feature-intro {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.6;
}

.feature-body-txt {
  font-family: var(--f-body);
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 28px;
}

.feature-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-outline-pill {
  display: inline-block;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 50px;
  transition: all .2s;
}

.btn-outline-pill:hover {
  background: var(--dark);
  color: var(--white);
}

.treatment-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.ts-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ts-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.ts-label {
  font-family: var(--f-label);
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.ts-val {
  font-family: var(--f-label);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

/* â”€â”€ HOW IT WORKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.how-section {
  background: var(--white);
  padding: 80px 0px;
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-heading {
  font-family: var(--f-heading);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 400;
  color: var(--dark);
  margin: 12px 0 24px;
  line-height: 1.15;
}

.how-body {
  font-family: var(--f-body);
  font-size: 14.5px;
  color: #444;
  line-height: 1.78;
  margin-bottom: 0;
}

.how-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 36px;
}

.how-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 32px;
}

.hs-item {
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  gap: 13px;
	justify-content:center;
}

.hs-icon {
  width: 50px;
  height: 50px;
}

.hs-label {
  font-family: var(--f-label);
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.hs-val {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.how-img {
  border-radius: 12px;
  overflow: hidden;
  height: 560px;
  background: #1e1245;
}

.how-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* â”€â”€ BEFORE / AFTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ba-section {
  background: var(--white);
  padding: 80px 0px;
  border-top: 1px solid var(--border);
}

.ba-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ba-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-slider {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  background: #ddd;
}

.ba-before-img,
.ba-after-img {
  position: absolute;
  inset: 0;
}

.ba-before-img img,
.ba-after-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-label,
.ba-label-after {
  position: absolute;
  top: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 14px;
  border-radius: 20px;
  font-family: var(--f-label);
  font-size: 12px;
  font-weight: 600;
  z-index: 5;
  color: var(--dark);
  pointer-events: none;
}

.ba-label {
  left: 14px;
}

.ba-label-after {
  right: 14px;
}

.ba-handle {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 10;
  cursor: col-resize;
  width: 44px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}

.ba-handle-btn {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  gap: 2px;
  flex-shrink: 0;
}

.ba-area-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ba-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all .2s;
}

.ba-tab.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.ba-tab:hover:not(.active) {
  border-color: var(--dark);
}

.ba-right {
  display: flex;
  flex-direction: column;
}

.ba-heading {
  font-family: var(--f-heading);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 400;
  color: var(--dark);
  margin: 12px 0 20px;
  line-height: 1.15;
}

.ba-body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 28px;
}

/* â”€â”€ MOST POPULAR TREATMENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.popular-section {
  background: #111;
  padding: 72px 40px;
}


.popular-heading-row {
  margin-bottom: 40px;
}

.pop-title {
  font-family: var(--f-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  position: relative;
  display: inline-block;
}

/* Blue text selection highlight effect from screenshot */
.pop-title::selection {
  background: #2563eb;
  color: var(--white);
}

.popular-body {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 52px;
  align-items: start;
}

/* Face map */
.face-map-wrap {
  position: sticky;
  top: 80px;
}

.face-map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 480px;
}

.face-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.face-highlight {
  position: absolute;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  border-radius: 4px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

/* Treatment list */
.popular-list {
  list-style: none;
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .2) transparent;
  padding-right: 4px;
}

.popular-list::-webkit-scrollbar {
  width: 4px;
}

.popular-list::-webkit-scrollbar-track {
  background: transparent;
}

.popular-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .2);
  border-radius: 4px;
}

.pop-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  cursor: pointer;
  transition: background .2s;
  border-radius: 6px;
  padding-left: 4px;
}

.pop-item:hover {
  background: rgba(255, 255, 255, .04);
}

.pop-item.active {
  background: rgba(107, 92, 231, .1);
}

.pop-num {
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pop-item.active .pop-num {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.pop-item strong {
  display: block;
  font-family: var(--f-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.pop-item p {
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.55;
}

/* â”€â”€ EXPERT / TRUST â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.expert-section {
  background: var(--white);
  padding: 80px 40px;
}

.expert-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 52px;
  align-items: start;
}

.expert-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.expert-img-wrap img {
  object-position: top;
}

.expert-quote {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
  font-style: normal;
}

.expert-name {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.expert-role {
  font-family: var(--f-label);
  font-size: 13px;
  color: var(--purple);
  margin-top: 2px;
}

/* â”€â”€ THÃ‰RAPIE DIFFERENCE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.diff-section {
  background: var(--white);
  padding: 80px 0px;
  border-top: 1px solid var(--border);
}

.diff-inner {
  max-width: 760px;
  margin: 0 auto;
}

.diff-heading {
  font-family: var(--f-heading);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  margin: 0 0 48px;
  line-height: 1.05;
}

.diff-table-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
}

.diff-table th {
  background: var(--white);
  padding: 18px 24px;
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.diff-feature-col {
  width: 55%;
  text-align: left !important;
}

.diff-us-col,
.diff-them-col {
  width: 22.5%;
}

.diff-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.diff-table tbody tr:last-child td {
  border-bottom: none;
}

.diff-feat {
  font-family: var(--f-label);
  font-size: 12px;
  color: var(--dark);
  line-height: 1.5;
}

.diff-feat strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.8px;
  /* color: var(--purple); */
  margin-bottom: 2px;
  color: #000;
}

.diff-feat small {
  font-size: 18.5px;
  color: var(--muted);
}

.diff-check {
  text-align: center;
}

.check-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #e6f9ee;
  color: #27ae60;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.check-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fde8e8;
  color: #e53e3e;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

/* Diff table â€” highlighted Therapie column */
.diff-us-hdr {
  background: rgba(107, 92, 231, 0.06);
}

.diff-us-cell {
  background: rgba(107, 92, 231, 0.04);
}
.diff-us-col.diff-us-hdr img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}
.check-yes-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.check-no-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

/* â”€â”€ REVIEWS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â”€â”€ Reviews â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reviews-section {
  background: #f6f4fb;
  padding: 72px 0px;
  border-top: 1px solid var(--border);
}


.reviews-header {
  margin: 0 auto 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.review-card {
  min-width: calc(33.333% - 11px);
  flex-shrink: 0;
  border-radius: 16px;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(107, 92, 231, 0.07);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 100px;
  font-family: Georgia, serif;
  color: rgba(107, 92, 231, 0.08);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(107, 92, 231, 0.14);
  transform: translateY(-3px);
}

.rc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.rc-stars {
  font-size: 15px;
  color: #f4a01c;
  letter-spacing: 2px;
}

.rc-platform-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 700;
  color: #444;
  background: #f0f0f0;
  border-radius: 20px;
  padding: 4px 10px 4px 7px;
}

.rc-text {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: #3a3a4a;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rc-author {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 16px;
  border-top: 1px solid rgba(107, 92, 231, 0.1);
}

.rc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--av-color, var(--purple));
  color: #fff;
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc-info {
  flex: 1;
  min-width: 0;
}

.rc-name {
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.rc-clinic {
  font-family: var(--f-label);
  font-size: 11px;
  color: var(--muted);
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rc-date {
  font-family: var(--f-label);
  font-size: 11px;
  color: var(--muted);
  flex-shrink: 0;
}

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section {
  background: var(--white);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-sub {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--dark);
  cursor: pointer;
  font-weight: 500;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--purple);
}

.faq-item.open .faq-q {
  color: var(--purple);
  font-weight: 600;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0eefe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
  color: var(--purple);
}

.faq-item.open .faq-icon {
  background: var(--purple);
  color: #fff;
}

.icon-minus {
  display: none;
}

.faq-item.open .icon-plus {
  display: none;
}

.faq-item.open .icon-minus {
  display: block;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.23, 1, .32, 1), padding .3s;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-a p {
  font-family: var(--f-body);
  font-size: 14.5px;
  color: #555;
  line-height: 1.78;
  padding-left: 2px;
}


/* â”€â”€ STYLISH CHECK LIST â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}

/* White variant â€” for dark backgrounds */
.check-list--white li {
  color: rgba(255, 255, 255, .88);
}

.check-list--white li::before {
  background-color: rgba(255, 255, 255, .14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  border: 1.5px solid rgba(255, 255, 255, .28);
}

/* Outline variant */
.check-list--outline li::before {
  background-color: transparent;
  border: 2px solid var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%102d21' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* wysiwyg output auto-styling â€” when ACF wysiwyg renders ul inside .how-body or .feature-body-txt */
.how-body ul,
.feature-body-txt ul,
.ba-body ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-body ul li,
.feature-body-txt ul li,
.ba-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.65;
}

.how-body ul li::before,
.feature-body-txt ul li::before,
.ba-body ul li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background-color: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* â”€â”€ INFO SECTION (plain white bg, image-left / text-right) â”€â”€ */
.info-section {
  background: var(--white);
  padding: 80px 0;
}

.info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.info-img {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-heading,
h2 {
  font-family: var(--f-heading);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}

.info-body {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
}

.info-body ul,
.wysiwyg-content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-body ul li,
.wysiwyg-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.65;
}

.info-body ul li::before,
.wysiwyg-content ul li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background-color: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.info-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* â”€â”€ AREAS SECTION (dark black bg, image-left / list-right) â”€â”€ */
.areas-section {
  background: #111;
  padding: 80px 0;
}

.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.areas-img {
  border-radius: 18px;
  overflow: hidden;
  /* aspect-ratio: 4/5; */
}

.areas-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* height: 606px; */
  object-fit: cover;
  border-radius: 20px;
}

.areas-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gold-eyebrow {
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c9a96e;
}

.areas-heading {
  font-family: var(--f-heading);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

a.btn-pill-purple {
  width: max-content;
}

.areas-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.areas-item:first-child {
  padding-top: 0;
}

.areas-item:last-child {
  border-bottom: none;
}

.areas-num {
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 700;
  color: #c9a96e;
  letter-spacing: .06em;
  flex-shrink: 0;
  min-width: 28px;
  padding-top: 2px;
}

.areas-item-text strong {
  display: block;
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.areas-item-text p {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  margin: 0;
}

.areas-btn {
  display: inline-block;
  margin-top: 8px;
  width: max-content;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .mega-inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .overview-inner {
    grid-template-columns: 320px 1fr;
    gap: 36px;
  }

  .popular-body {
    grid-template-columns: 320px 1fr;
  }
}

@media (max-width: 1100px) {
  .mega-inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .overview-inner {
    grid-template-columns: 320px 1fr;
    gap: 36px;
  }
		 .mob-nav-item svg {
    stroke: #fff !important;
}


}

@media (max-width: 900px) {
  .mega-menu {
    display: none;
  }

  .tabs-section {
    padding: 16px 20px 0;
  }

  .treatment-overview {
    padding: 32px 0px;
  }

  .overview-inner {
    grid-template-columns: 1fr;
  }

  .from-price-badge {
    right: 12px;
    top: auto;
    bottom: 16%;
    transform: none;
  }

  .how-section {
    padding: 56px 0px;
  }

  .how-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .how-img {
    height: 360px;
  }



  .info-inner,
  .areas-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0px 0px;
    align-items: start;
  }

  .info-section,
  .areas-section {
    padding: 56px 0;
  }

  .info-img,
  .areas-img {
    /* aspect-ratio: 16/9; */
  }

  .ba-section {
    padding: 56px 0px;
  }

  .ba-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .ba-slider {
    height: 380px;
  }

  .feature-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-img-grid {
    height: 300px;
  }

  .diff-section {
    padding: 56px 0px;
  }

  .diff-heading {
    font-size: clamp(36px, 7vw, 56px);
  }

  .review-card {
    min-width: calc(80% - 8px);
  }

  .reviews-section,
  .faq-section {
    padding: 56px 20px;
  }

  .faq-header {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 600px) 
 {
	.info-img {
    position: sticky;
    top: 100px;
}


.info-inner {
    align-items: start;
}

.overview-left {
    height: max-content;
    position: sticky;
    top: 100px;
}

}
@media (max-width: 600px) {
  .bc-inner {
    padding: 8px 20px;
  }
.how-inner {
    grid-template-columns: 1fr;
}

.info-inner {
    grid-template-columns: 1fr;
}

.areas-inner {
    grid-template-columns: 1fr;
}

.ba-inner {
    grid-template-columns: 1fr;
}
  .overview-inner {
    flex-direction: column;
  }

  .overview-left {
    max-width: 100%;
  }

  .how-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ba-slider {
    height: 300px;
  }

  .review-card {
    min-width: 88%;
  }

  .rc-clinic {
    white-space: normal;
  }

  .diff-heading {
    font-size: clamp(32px, 9vw, 48px);
    margin-bottom: 28px;
  }
}