/* General styles */
html {
  scroll-behavior: smooth;
}

/* ── Custom Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 7px;
}


section#np {
    padding-bottom: 80px !important;
}

@media (max-width: 768px) {
    section#np {
            padding-top: 18px;
            padding-bottom: 60px !important;
    }
}

::-webkit-scrollbar-track {
  background: #f0eeec;
}

::-webkit-scrollbar-thumb {
  background-color: #4F1713;
  border-radius: 10px;
  border: 2px solid #f0eeec;
  transition: backgnround-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #3a100e;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #4F1713 #f0eeec;
}

.our-approach-our{
	line-height: 1.1 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-color: #F5F4F3;
}

.main-placeholder {
  /* old .main block moved to footer section above */
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animatable background layer */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140%;
  background-image: url('../images/hero-1920.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}

@media (min-width: 1920px) {
  .hero-bg {
    background-image: url('../images/hero-1920.png');
  }
}

@media (min-width: 2560px) {
  .hero-bg {
    background-image: url('../images/hero-2560.png');
  }
}

@keyframes heroZoomOut {
  from { transform: scale(1.08); }
  to   { transform: scale(1);    }
}

.logo-container {
  position: absolute;
  top: 43px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.logo {
  width: 255px;
  height: 143px;
  object-fit: cover;
}

.hero-content {
  color: white;
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  width: max-content;
  max-width: 90%;
}

.hero-content h1 {
  opacity: 0;
  animation: headingSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.hero-content p {
  opacity: 0;
  animation: headingSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
.hero-content .cta-button {
  opacity: 0;
  animation: headingSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
  font-size: 11px !important;
  letter-spacing: .1em;
  padding: 10px 24px;
}

.hero h1 {
  font-family: 'Libre Baskerville', sans-serif;
  line-height: 140%;
  margin-bottom: 20px;
  color: #FFF;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0%;
}

.hero p {
  font-size: 16px;
  margin-bottom: 60px;
  font-weight: 300;
  line-height: 120%;
  text-transform: none;
  color: #FFF;
  font-style: normal;
  font-family: "Work Sans";
  letter-spacing: -3%;
}

.cta-button {
  background-color: #F5F4F3;
  width: 447px;
  padding: 15px 24px;
  font-family: 'Work Sans', sans-serif;
  color: #1C1B1B;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0px;
  font-size: 13px;
  letter-spacing: 10%;
  text-align: center;
  align-items: center;
  justify-content: center;
  line-height: 140%;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  display: flex;
  margin: 0 auto;
}

.cta-button:hover {
  background-color: #CCC4C4;
  color: #602622;
  border-color: #602622;
}

.cta-button:active,
.cta-button.selected {
  background-color: #602622;
  color: #F5F4F3;
  border-color: #602622;
}

.menu-icon {
  position: absolute;
  top: 50px;
  left: 50px;
  cursor: pointer;
  z-index: 11;
  width: 35px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 4px;
  background-color: #602622;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-icon:hover .hamburger-line {
  background-color: #602622;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: -200px;
  height: 60px;
  left: 0;
  width: 100%;
  background-color: #ebebeb;
  z-index: 2222;
  transition: top 0.3s ease-in-out;
  padding: 11px 22px 11px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-header.visible {
  top: 0;
}

.sticky-header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sticky-menu-icon {
  cursor: pointer;
  width: 35px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sticky-hamburger-line {
  width: 100%;
  height: 4px;
  background-color: #4F1713;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.sticky-menu-icon:hover .sticky-hamburger-line {
  background-color: #3d1210;
}

.sticky-logo {
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.sticky-header-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sticky-button {
  padding: 10px 25px;
  background-color: transparent;
  border: 2px solid #4F1713;
  color: #333;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.prescription-title br{
  display: none;
}

.sticky-button:hover {
  background-color: #4F1713;
  color: white;
  border-color: #4F1713;
}

.submenu {
  position: fixed;
  top: 0;
  left: -300px;
  background-color: #e8e3e3;
  color: #602622;
  width: 300px;
  height: 100vh;
  transition: left 0.3s ease-in-out;
  padding-top: 20px;
  z-index: 2223;
}

.submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu ul li {
  padding: 10px;
  text-align: left;
  font-size: 14px;
}

.submenu ul li a {
  color: #4F1713;
  text-decoration: none;
  display: block;
  padding: 20px 10px;
  font-family: 'Libre Baskerville', sans-serif;
  transition: background-color 0.2s ease;
}

.submenu ul li a:hover {
  background-color: #d8d3d3;
}

/* ══════════════════════════════════════════════════════════════
   HOW YOUR PRESCRIPTION IS PERSONALISED
══════════════════════════════════════════════════════════════ */
.prescription-personalised {
  background-color: #f5f4f3;
  padding: 54px 0 0px;
  height: min(80vh, 800px);
  min-height: min(0vh, 800px);
  max-height: min(80vh, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prescription-container {
  width: 100%;
  margin: 0 auto;
}

.prescription-title {
  margin-top: 0px;
  font-size: 30px;
  color: #602622;
  margin-bottom: 50px;
  font-weight: 400;
  font-family: 'Libre Baskerville', sans-serif;
  letter-spacing: -3%;
  line-height: 130%;
  text-align: center;
}

.prescription-content {
  position: relative;
}

.prescription-timeline {
  position: relative;
  width: 100%;
  height: 4px;
  margin-bottom: 10px;
}

.prescription-seg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background-image: radial-gradient(circle, #BEBEBE 1px, transparent 1px);
  background-size: 6px 3px;
  background-repeat: repeat-x;
  background-position: 0 center;
  z-index: 0;
}

.prescription-seg-full {
  left: 0;
  width: 100%;
}

.prescription-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 3px;
  transform: translateY(-50%);
  background-image: radial-gradient(circle, #80130B 1px, transparent 1px);
  background-size: 6px 3px;
  background-repeat: repeat-x;
  background-position: 0 center;
  z-index: 1;
  pointer-events: none;
}

/* ── PRESCRIPTION DOTS — 18px inactive/visited, 28px active ── */
.prescription-dot {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background-color: #BEBEBE;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease,
              box-shadow 0.3s ease, filter 0.3s ease;
}

.prescription-dot.visited {
  background-color: #80130B;
  box-shadow: none;
  filter: none;
  width: 18px;
  height: 18px;
  animation: none;
}

.prescription-dot-left {
  left: 32%;
  transform: translate(-50%, -50%);
}

.prescription-dot-right {
  left: 70%;
  transform: translate(-50%, -50%);
}

.prescription-dot.active {
  background-color: #80130B;
  box-shadow: 0 0 10px rgba(128, 19, 11, 0.6);
  filter: blur(3px);
  width: 28px;
  height: 28px;
  animation: pulseDot 1.5s infinite;
}

/* ── Heading entrance animation ── */
@keyframes headingSlideUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.heading-hidden {
  opacity: 0;
  transform: translateY(36px);
}

.heading-visible {
  animation: headingSlideUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Character split animation ── */
.char-wrap {
  display: inline-block;
  overflow: visible;
  vertical-align: bottom;
  padding: 0 2px;
  margin: 0 -2px;
}

.char-space {
  display: inline-block;
  width: 0.3em;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: none;
  transition: opacity 0.6s ease;
}

.split-heading.in-view .char {
  opacity: 1;
  transform: none;
}

.split-heading .char {
  opacity: 0;
  transform: none;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(128, 19, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(128, 19, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(128, 19, 11, 0);
  }
}

.prescription-dot-title {
  position: absolute;
  top: 30px;
  letter-spacing: 0.1em;
  line-height: 140%;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 0.3s ease;
  color: #1C1B1B;
  text-align: center;
  font-family: "Work Sans";
  font-size: 15px;
  font-style: medium;
  font-weight: 500;
  letter-spacing: 10%;
}

.prescription-item.prescription-text-1.active, .prescription-item.prescription-text-2.active{
  font-size: 18px;
}

.prescription-dot-title-left {
  left: 32%;
}

.prescription-dot-title-right {
  left: 70%;
}

.prescription-columns {
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0 10px;
}

@media (min-width: 769px) {
  .prescription-columns {
    gap: 50px;
  }

  .prescription-dot-title-left {
    width: 301px;
    height: 19px;
    opacity: 1;
  }

  .prescription-dot-title-right {
    width: 263px;
    height: 19px;
    opacity: 1;
  }

  .prescription-text-1 p:nth-child(1) {
    width: 337px;
    height: 50px;
    opacity: 1;
    margin-right: 70px;
    margin-left: 3%;
  }

  .prescription-text-1 p:nth-child(2) {
    width: 337px;
    height: 50px;
    opacity: 1;
    margin-right: 70px;
    margin-left: 3%;
  }
}

.prescription-column {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
}

.prescription-right-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.prescription-right-col .prescription-text-1 {
  right: 0;
  left: auto;
}

.prescription-right-col .prescription-img-2 {
  right: 0;
  left: auto;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .prescription-columns {
    gap: 20px;
    padding: 0 10px;
  }

  .prescription-text-1 p:nth-child(1),
  .prescription-text-1 p:nth-child(2) {
    margin-right: 10px;
    margin-left: 0;
  }

  .prescription-left-col .prescription-text-2 {
    margin-left: 01px;
  }
}

.prescription-left-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.prescription-left-col .prescription-img-1 {
  left: 0;
  right: auto;
}

.prescription-left-col .prescription-text-2 {
  left: 0;
  right: auto;
  margin-left: 100px;
}

.prescription-left-col .prescription-item {
  left: 0;
  right: auto;
}

@media (max-width: 1200px) {
  .hero {
    height: 543px;
  }
}

.prescription-item {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  will-change: opacity;
  pointer-events: none;
}

.prescription-item.active {
  opacity: 1;
  visibility: visible;
  position: absolute;
  pointer-events: auto;
}

.prescription-item p {
  font-size: 15px;
  color: #333;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -3%;
  margin-bottom: 50px;
  text-align: justify;
  width: 100%;
}

.prescription-item p:last-child {
  margin-bottom: 0;
}

.prescription-item strong {
  color: #80130B;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
}

.prescription-item.prescription-text-1,
.prescription-item.prescription-text-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 400px;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.prescription-item.prescription-text-1.active,
.prescription-item.prescription-text-2.active {
  transform: translateY(-50%);
}

.prescription-item.prescription-text-2.active{
  margin-left: 50px !important;
}

.prescription-item img {
  width: 406px;
  height: 239px;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  opacity: 1;
}

.prescription-item.prescription-img-1,
.prescription-item.prescription-img-2 {
  top: 50%;
  transform: translateY(-50%);
}

.prescription-item.prescription-img-1.active,
.prescription-item.prescription-img-2.active {
  transform: translateY(-50%);
}

/* ══════════════════════════════════════════════════════════════
   OUR APPROACH
══════════════════════════════════════════════════════════════ */
.our-approach {
  background-color: #4F1713;
  padding: 50px 50px 60px;
  display: flex;
  justify-content: center;
}

.approach-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.approach-title {
  font-size: 30px;
  color: white;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: 'Libre Baskerville', sans-serif;
  letter-spacing: -0.48px;
  line-height: 100%;
}

@media (max-width: 768px) {
  .approach-title {
    line-height: 1.2;
  }
}

.approach-subtitle {
  font-size: 16px;
  color: white;
  font-weight: 300;
  font-family: 'Work Sans', sans-serif;
  line-height: 120%;
  letter-spacing: -0.03em;
}

.approach-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 50px;
}

.timeline-line-container {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  height: 245px;
  width: 1px;
  overflow: visible;
  background-color: rgba(255, 255, 255, 0.2);
}

.timeline-line {
  width: 1px;
  height: 0%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: height 0.1s linear;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 30px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
}

.timeline-item.active .timeline-dot {
  animation: pulse-dot 2s ease-in-out infinite;
  opacity: 1;
  background-color: #80130B;
  box-shadow: 0 0 10px rgba(128, 19, 11, 0.6);
}

.timeline-left {
  text-align: right;
  padding-right: 50px;
  display: flex;
  justify-content: flex-end;
}

.timeline-label {
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0;
  color: #FFF;
  font-family: "Work Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.6px;
}

.timeline-right {
  text-align: left;
  padding-left: 50px;
  display: flex;
  align-items: center;
}

.timeline-description {
  line-height: 120%;
  font-weight: 300;
  opacity: 0;
  color: #FFF;
  text-align: justify;
  font-family: "Work Sans";
  font-size: 14px;
  font-style: normal;
  letter-spacing: -0.42px;
  max-width: 299px;
}

/* ══════════════════════════════════════════════════════════════
   TREATMENT OPTIONS
══════════════════════════════════════════════════════════════ */
.treatment-options {
  background-color: #f5f4f3;
  padding: 80px 0 40px;
  min-height: 600px;
}

.treatment-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.treatment-title {
  font-size: 30px;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
  font-family: 'Libre Baskerville', sans-serif;
  line-height:100%;
}

.slider-container {
  overflow: hidden;
  position: relative;
  padding: 0 50px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.fixed-first-card-container {
  flex-shrink: 0;
  width: 258px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  z-index: 10;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(79, 23, 19, 0.8);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background-color: #4F1713;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
  left: 10px;
  z-index: 11;
}

.slider-arrow-right {
  right: 10px;
}

.slider-wrapper {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.treatment-card {
  min-width: 258px;
  width: 258px;
  max-width: 258px;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.card-image-area {
  height: 258px;
  width: 258px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #e8e3e3;
  position: relative;
  flex-shrink: 0;
}

.card-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.first-card-image {
  background-color: #4F1713;
  cursor: pointer;
  position: relative;
  transition: background-color 0.5s ease;
  padding: 0px !important;
  height: 258px;
  width: 258px;
}

.first-card-image .image-default {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
}

.first-card-image .image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  box-sizing: border-box;
}

.first-card-image:hover {
  background-color: #E8E3E3;
}

.first-card-image:hover .image-default {
  opacity: 0;
}

.first-card-image:hover .image-hover {
  opacity: 1;
}

.first-card-image .image-title {
  font-size: 16px;
  color: white;
  font-family: 'Libre Baskerville', sans-serif;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
}

.first-card-image .hover-title {
  width: 100%;
  max-width: 197px;
  color: #602622;
  text-align: center;
  font-family: "Libre Baskerville";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.45px;
  margin-bottom: 12px;
}

.first-card-image .hover-text {
  width: 100%;
  color: #1C1B1B;
  text-align: justify;
  font-family: "Work Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.42px;
}

.card-info {
  padding: 25px;
  text-align: center;
  background-color: transparent;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-label {
  color: #1C1B1B;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
  font-family: "Work Sans";
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
}

.card-title {
  color: #1C1B1B;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Work Sans";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.3px;
}

.card-button {
  padding: 10px 40px;
  background-color: transparent;
  border: 1px solid #1C1B1B;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1C1B1B;
  text-align: center;
  font-family: "Work Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 10%;
  margin-bottom: 10px;
  width: 100%;
}

.card-button:hover {
  background-color: #4F1713;
  color: white;
  box-shadow: inset 0 0 0 0.5px #4F1713;
}

.compare-wrapper-fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 258px;
  z-index: 100;
  padding: 0 25px;
  box-sizing: border-box;
}

.compare-treatments-btn {
  padding: 10px 18px;
  background-color: #ccc4c4;
  border: 1px solid #602622;
  -webkit-appearance: none;
  color: #602622;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 10%;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  line-height: 120%;
}

.compare-treatments-btn:hover {
  background-color: #4F1713;
  color: white;
  box-shadow: inset 0 0 0 0.5px #4F1713;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #80130B;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #4F1713;
}

/* ══════════════════════════════════════════════════════════════
   COMPARE TREATMENTS TIMELINE SECTION
══════════════════════════════════════════════════════════════ */
.compare-timeline-section {
  background-color: #f5f4f3;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease,
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.5s ease;
}

.compare-timeline-section.hidden-section {
  max-height: 0;
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  padding: 0;
}

.compare-close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 0;
}

.compare-close-btn:hover {
  background-color: transparent;
  border: none;
  transform: rotate(90deg);
}

.compare-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: #1C1B1B;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.compare-close-btn:hover svg {
  stroke: #4F1713;
}

.compare-timeline-container {
  position: relative;
}

.compare-timeline-title {
  font-size: 28px;
  color: #602622;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
  font-family: 'Libre Baskerville', sans-serif;
  letter-spacing: -0.72px;
  line-height: 1.3;
  padding: 0 100px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.compare-timeline-content {
  position: relative;
  max-width: 100%;
}

.compare-timeline-track {
  position: relative;
  width: 100%;
  height: 4px;
  margin-bottom: 0;
  z-index: 1;
  overflow: visible;
}

.compare-seg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background-image: radial-gradient(circle, #BEBEBE 1px, transparent 1px);
  background-size: 6px 3px;
  background-repeat: repeat-x;
  background-position: 0 center;
  z-index: 0;
  transition: background-image 0.4s ease;
}

.compare-seg-1 {
  left: 0%;
  width: 32%;
  background-image: radial-gradient(circle, #80130B 1px, transparent 1px);
}

.compare-seg-2 {
  left: 32%;
  width: 38%;
}

.compare-seg-3 {
  left: 70%;
  width: 30%;
}

.compare-seg-4 {
  display: none;
}

/* ── COMPARE DOTS — 18px inactive/visited, 28px active (DESKTOP ONLY) ── */
.compare-dot {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background-color: #BEBEBE;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: background-color 0.35s ease, width 0.3s ease, height 0.3s ease,
              box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: none;
  filter: none;
  animation: none;
}

.compare-dot.visited {
  background-color: #80130B;
  box-shadow: none;
  filter: none;
  width: 18px;
  height: 18px;
  animation: none !important;
}

.compare-dot-1 {
  left: 32%;
}

.compare-dot-2 {
  left: 70%;
}

.compare-dot-3 {
  left: 80%;
}

.compare-dot.active {
  background-color: #80130B;
  box-shadow: 0 0 10px rgba(128, 19, 11, 0.6);
  filter: blur(3px);
  width: 28px;
  height: 28px;
  animation: pulseDot 1.5s infinite;
}

.compare-dot-titles-row {
  position: relative;
  width: 100%;
  height: 55px;
  margin-top: 16px;
}

.compare-dot-title {
  padding-top: 5px;
  position: absolute;
  top: 0;
  letter-spacing: 0.1em;
  line-height: 120%;
  font-size: 13px;
  color: #1C1B1B;
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  width: max-content;
  max-width: 180px;
}

.compare-dot-title.active {
  font-size: 15px !important;
}

.compare-dot-title-1 {
  left: 32%;
}

.compare-dot-title-2 {
  left: 70%;
}

.compare-dot-title-3 {
  left: 80%;
}

.compare-columns-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 40% 30%;
  align-items: start;
  max-width: 1000px;
  padding-top: 20px;
  padding-bottom: 0px !important;
}

.compare-item.compare-text-1-left, .compare-item.compare-text-2-left, .compare-item.compare-text-3-left {
    margin-left: 30px;
}

.compare-right-col{
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    text-align: end;
}

.compare-column {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.compare-left-col {
  padding-left: 10px;
}

.compare-center-col {
  --line-opacity: 0;
  padding: 0 10px;
  align-items: center;
}

.compare-center-col::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  height: 75%;
  width: 1px;
  transform: translate(-50%, -50%);
  background: #D9D9D9;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.compare-center-col:has(.compare-item.active)::before {
  opacity: 1;
}

.compare-columns-wrapper:has(.compare-img-3.active) {
  align-items: stretch;
}
.compare-columns-wrapper:has(.compare-img-3.active) .compare-center-col {
  justify-content: center;
  display: flex;
}

.compare-right-col {
  padding-right: 10px;
}

.compare-item {
  display: none;
  width: 100%;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.compare-item.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.compare-content-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #80130B;
  margin-bottom: 6px;
  margin-top: 34px;
  font-family: 'Work Sans', sans-serif;
  line-height: 120%;
}

.compare-content-title:first-child {
  margin-top: 0;
}

.compare-content-text {
  font-size: 13px;
  line-height: 1.5;
  color: #1C1B1B;
  margin-bottom: 8px;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: -0.03em;
}

.compare-content-list {
  list-style: none;
  padding-left: 0;
  margin: 6px 0 0;
}

.compare-content-list li {
  font-size: 13px;
  line-height: 1.5;
  color: #1C1B1B;
  margin-bottom: 6px;
  padding-left: 0px;
  position: relative;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: -0.03em;
}

.compare-content-list i{
  color: #4F1713;
  font-weight: 300px;
  padding-right: 20px;
}

.compare-item.compare-text-1-right, .compare-item.compare-text-2-right, .compare-item.compare-text-3-right {
    padding-right: 32px;
}

.compare-image {
  width: 350px;
  height: 300px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   CARE DESIGNED TO EVOLVE
══════════════════════════════════════════════════════════════ */
.care-evolve {
  background-color: #f0ecea;
  padding: 70px 100px 80px;
}

.care-container {
  max-width: 1400px;
  margin: 0 auto;
}

.care-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
  margin-bottom: 70px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.care-left {
  position: relative;
  padding-right: 50px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.care-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  color: #1C1B1B;
  font-family: "Libre Baskerville";
  letter-spacing: -0.9px;
}

.care-title em {
  font-style: italic;
  font-weight: 400;
  display: block;
}

.care-line-container {
  position: relative;
  width: 0.5px;
  height: 173px;
  overflow: hidden;
  margin: 0 auto 30px auto;
  left: 0;
  transform: none;
}

.care-line {
  width: 100%;
  height: 0%;
  background-color: #333;
}

.care-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  opacity: 0;
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
  max-width: 337px;
  color: #1C1B1B;
  text-align: justify;
  font-family: "Work Sans";
  letter-spacing: -0.48px;
}

.care-right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.care-image {
  width: 85%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  transform: scale(1.08);
  transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  object-position: -150px;
}
.care-image.img-zoomed {
  transform: scale(1);
}

.care-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  height: 80px;
}

.feature-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.feature-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #1C1B1B;
  text-align: center;
  font-family: "Work Sans";
  letter-spacing: 1.5px;
}

.feature-description {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 1.3;
  color: #1C1B1B;
  text-align: justify;
  font-family: "Work Sans";
  letter-spacing: -0.42px;
  max-width: 156px;
}

/* ══════════════════════════════════════════════════════════════
   YOUR TREATMENT JOURNEY
══════════════════════════════════════════════════════════════ */
.treatment-journey {
  background-color: #f5f4f3;
  position: relative;
  overflow: hidden;
  padding: 84px 0 88px;
}

.journey-container {
  display: grid;
  grid-template-columns: 45% 55%;
  max-width: 880px;
  margin: 0 auto;
}

.journey-left {
  position: relative;
  overflow: hidden;
  max-width: 316px;
}

.journey-image {
  width: 100%;
  height: 448px;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.08);
  transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.journey-image.img-zoomed {
  transform: scale(1);
}

.journey-right {
  padding: 0px 60px 0 87px;
  display: flex;
  flex-direction: column;
  background-color: #f5f4f3;
}

.journey-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  color: #602622;
  font-family: "Libre Baskerville";
  letter-spacing: -1.05px;
}

.journey-title-your {
  font-style: italic;
}

.journey-title .journey-title-your,
.journey-title .journey-title-rest {
  display: block;
}

.journey-title em {
  font-style: italic;
  font-weight: 400;
}

.journey-timeline {
  position: relative;
  padding-left: 30px;
}

/* ── JOURNEY LINE — DOTTED (desktop) ── */
.journey-line-container {
  position: absolute;
  left: -2px;
  transform: translateX(-50%);
  top: 10px;
  width: 3px;
  height: calc(100% - 70px);
  overflow: visible;
}

/* Grey dotted track — always visible by default */
.journey-line-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-image: radial-gradient(circle, #BEBEBE 1px, transparent 1px);
  background-size: 3px 6px;
  background-repeat: repeat-y;
  background-position: center top;
  z-index: 0;
}

.journey-line {
  position: relative;
  z-index: 1;
  width: 3px;
  height: 0%;
  background-image: radial-gradient(circle, #4F1713 1px, transparent 1px);
  background-size: 3px 6px;
  background-repeat: repeat-y;
  background-position: center top;
  background-color: transparent;
}

/* ── JOURNEY ITEMS ── */
.journey-item {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
}

.journey-item:last-child {
  margin-bottom: 0;
}

/* ── JOURNEY DOTS — 18px base, 28px active, maroon visited (DESKTOP ONLY) ── */
.journey-dot {
  position: absolute;
  left: -32px;
  transform: translateX(-50%);
  top: 5px;
  width: 18px;
  height: 18px;
  background-color: #BEBEBE;
  border-radius: 50%;
  z-index: 2;
  transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease,
              box-shadow 0.3s ease, filter 0.3s ease;
}

@keyframes pulse-journey-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.journey-item.active .journey-dot {
  background-color: #80130B;
  filter: blur(3px);
  width: 28px;
  height: 28px;
  animation: pulseDot 1.5s infinite;
}

.journey-item.visited .journey-dot {
  background-color: #80130B !important;
  width: 18px;
  height: 18px;
  filter: none;
  animation: none;
  box-shadow: none;
  transition: background-color 0.3s ease, 
              width 0.3s ease, 
              height 0.3s ease,
              filter 0.3s ease,   /* ← add this */
              box-shadow 0.3s ease; /* ← and this */
}

.journey-content {
  padding-left: 0;
}

.journey-step-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #602622;
  font-family: "Work Sans";
  letter-spacing: 2px;
}

.journey-step-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-align: justify;
  max-width: 500px;
  color: #1C1B1B;
  font-family: "Work Sans";
  letter-spacing: -0.42px;
  max-width: 335px;
}

/* ══════════════════════════════════════════════════════════════
   NON-PRESCRIPTION
══════════════════════════════════════════════════════════════ */
.non-prescription {
  padding: 220px 0 80px;
  margin-top: 0px;
  position: relative;
  z-index: 2;
  background: #F5F4F3;
}

.np-title {
  font-size: 30px;
  color: #333;
  padding: 30px;
  font-weight: 400;
  font-family: 'Libre Baskerville', serif;
  text-align: center;
  margin: 0 0 5px;
}

.np-subtitle {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -3%;
  color: #1C1B1B;
  text-align: center;
  margin: 0 0 80px;
  padding: 0 20px;
}

.np-slider-container {
  max-width: 1200px;
  margin: 0 auto;
}

.np-slider-wrapper {
  overflow: visible;
}

.np-slider-track {
  display: grid;
  grid-template-columns: repeat(3, 258px);
  justify-content: center;
  gap: 40px;
}

.np-card {
  width: 258px;
  max-width: 258px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.np-card-image {
  height: 258px;
  width: 258px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #e8e3e3;
  position: relative;
  flex-shrink: 0;
  margin: 0 auto;
}

.np-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-card-info {
  padding-top: 20px;
  text-align: center;
}

.np-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: -0.72px;
  text-transform: uppercase;
  color: #1C1B1B;
  margin-bottom: 10px;
  text-align: center;
}

.np-card-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #1C1B1B;
  text-align: center;
}

.np-btn {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 40px;
  border: 1px solid #1C1B1B;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 258px;
  color: #1C1B1B;
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 0 auto;
}

.np-btn:hover {
  background: #4F1713;
  color: #fff;
  border-color: #4F1713;
}

.np-options {
  background-color: #f5f4f3;
  padding: 80px 0 80px;
}

.np-dots {
  display: none;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-section {
  background-color: #f0ecea;
  padding: 100px 50px;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
  padding-top: 70px;
}

.faq-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3;
  color: #602622;
  font-family: "Libre Baskerville";
  letter-spacing: -1.44px;
  padding-left: 30px;
}

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

.faq-item {
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.faq-right .faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  color: #4F1713;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  opacity: 0;
  margin-left: 20px;
}

.faq-item.active .faq-question::after {
  content: '–';
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  transition: color 0.3s ease;
  color: #602622;
  font-family: "Work Sans";
  letter-spacing: 1.6px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.4s ease;
}

.faq-answer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  text-align: justify;
  color: #1C1B1B;
  font-family: "Work Sans";
  letter-spacing: -0.42px;
  margin-bottom: 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 20px;
}

.faq-item:hover .faq-question h3 {
  color: #3d1210;
}

@media (min-width: 768px) and (max-width: 1024px) {
    
    .journey-item.visited .journey-dot {
  background-color: #80130B !important;
  width: 18px;
  height: 18px;
  filter: none;
  animation: none;
  box-shadow: none;
  transition: background-color 0.3s ease, 
              width 0.3s ease, 
              height 0.3s ease,
              filter 0.3s ease,   /* ← add this */
              box-shadow 0.3s ease; /* ← and this */
}
  .prescription-item.prescription-text-2.active{
    margin-left: 50px !important;
  }

  .prescription-columns {
    display: flex !important;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    padding: 0 30px;
    max-width: 100%;
  }

  .prescription-column {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1;
  }

  .prescription-item {
    position: absolute;
    transition: all 0.5s ease;
  }

  .prescription-item img {
    width: 331px;
    max-width: 400px;
    height: 239px;
    object-fit: cover;
  }

  .prescription-item.prescription-text-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 310px;
    width: 100%;
    margin-top: 0;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    pointer-events: none;
  }

  .prescription-item.prescription-text-1.active {
    transform: translate(-55%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .prescription-item.prescription-text-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 310px;
    width: 100%;
    margin-top: 0;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    pointer-events: none;
  }

  .prescription-item.prescription-text-2.active {
    transform: translate(-72%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .prescription-item.prescription-img-1 {
    top: 50%;
    left: 50%;
    transform: translate(-25%, -50%) scale(0.95);
    opacity: 0;
    pointer-events: none;
  }

  .prescription-item.prescription-img-1.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .prescription-item.prescription-img-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    pointer-events: none;
  }

  .prescription-item.prescription-img-2.active {
    transform: translate(-83%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background-color: #4F1713;
  width: 100%;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.main {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  background-color: #F5F4F3;
}

.footer-col {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer.footer-revealed .footer-col:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.site-footer.footer-revealed .footer-col:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.site-footer.footer-revealed .footer-col:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.site-footer.footer-revealed .footer-col:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.60s; }

.footer-map {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity   0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s;
}

.site-footer.footer-revealed .footer-map {
  opacity: 1;
  transform: scale(1);
}

.footer-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.10em;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 270px 270px 360px;
  gap: 40px;
  align-items: start;
  width: 1200px;
  height: 364px;
  margin: 0 auto;
  padding: 52px 0;
  box-sizing: border-box;
}

.footer-col-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
    width: 306px;
    height: 173px;
    object-fit: contain;
}

.footer-brand-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.footer-group {
  margin-bottom: 28px;
}
.footer-group:last-child {
  margin-bottom: 0;
}

.footer-info {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
  text-align: justify;
}

.footer-link,
.footer-nav-link,
.footer-social-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.footer-link:hover,
.footer-nav-link:hover {
  opacity: 0.7;
}

.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.footer-social-link:hover {
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.footer-nav-link {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  display: inline-block;
}

.footer-col-map {
  height: 100%;
}

.footer-map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL ENTRANCE ANIMATIONS
══════════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.care-features .feature-item:nth-child(1) { transition-delay: 0s; }
.care-features .feature-item:nth-child(2) { transition-delay: 0.10s; }
.care-features .feature-item:nth-child(3) { transition-delay: 0.20s; }
.care-features .feature-item:nth-child(4) { transition-delay: 0.30s; }
.care-features .feature-item:nth-child(5) { transition-delay: 0.40s; }

.prescription-columns {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.prescription-columns.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Accordion Override ── */
@media (max-width: 768px) {
  .timeline-item {
    display: block;
    grid-template-columns: unset;
    gap: 0;
    margin-bottom: 0;
    padding: 16px 0;
  }

  .timeline-left {
    display: block;
    text-align: center;
    padding: 0;
  }

  .timeline-label {
    display: block;
    opacity: 1;
    font-size: 12px !important;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 0;
  }

  .timeline-right {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, margin-top 0.3s ease;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .timeline-right .timeline-description {
    min-height: 0;
    overflow: hidden;
  }

  .timeline-item.mob-open .timeline-right {
    grid-template-rows: 1fr;
    margin-top: 12px;
  }

  .timeline-description {
    opacity: 1;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
    padding-bottom: 4px;
  }

  .timeline-item + .timeline-item::before {
    content: '';
    display: block;
    width: 250px;
    height: 0.5px;
    background-color: #F5F4F3;
    margin: 0 auto 16px auto;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE.CSS — Mobile-only styles
══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    
    .journey-item.visited .journey-dot {
  background-color: #80130B !important;
  width: 18px;
  height: 18px;
  filter: none;
  animation: none;
  box-shadow: none;
  transition: background-color 0.3s ease, 
              width 0.3s ease, 
              height 0.3s ease,
              filter 0.3s ease,   /* ← add this */
              box-shadow 0.3s ease; /* ← and this */
}


  .approach-subtitle {
    display: none;
  }

  .our-approach-our{
    line-height: 1.1 !important;
  }
}

@media (max-width: 768px) {
  .sticky-header {
    padding: 12px 20px;
  }

  .prescription-item strong{
    font-size: 15px;
  }

  .sticky-logo {
    width: 100px;
  }

  .sticky-button {
    padding: 8px 15px;
    font-size: 12px;
    background-color: #4F1713;
    color: #EBEBEB;
    border: 2px solid #4F1713;
  }

  .sticky-button:hover {
    background-color: #4F1713;
    color: #EBEBEB;
    border-color: #4F1713;
  }

  .sticky-header-left {
    gap: 15px;
  }

  .sticky-header-right {
    gap: 8px;
  }

  .hamburger-line {
    background-color: #602622;
  }

  .menu-icon:hover .hamburger-line {
    background-color: #ffffff;
  }
}

@media (max-width: 768px) {
  .submenu {
    width: 80%;
    left: -100vw;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .hero-bg {
    height: 100%;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px 50px 20px;
    width: 100%;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    text-align: center;
  }

  .hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0;
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    color: #fff;
  }

  .hero h1 br {
    display: block;
  }

  .hero p {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    color: #fff;
    text-transform: none;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    margin-top: 14px;
  }

  .hero p br {
    display: none;
  }

  .cta-button {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    width: 300px;
    background-color: #F5F4F3;
    color: #1C1B1B;
    border: 1.5px solid #000000;
    margin: 0 auto;
  }

  .logo {
    width: 150px;
    height: auto;
    object-fit: contain;
  }

  .logo-container {
    top: 28px;
  }

  .menu-icon {
    left: 20px;
    top: 28px;
  }
}

@keyframes presItemFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes presItemFadeOut {
  from { opacity: 1; transform: translateY(0);    }
  to   { opacity: 0; transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .prescription-sticky-wrapper {
    height: 700px;
  }
  .prescription-personalised {
    padding: 13px 0px 80px;
    min-height: auto;
    height: min(100vh, 900px);
  }

  .first-card-image .hover-text {
    text-align: center;
  }

  .prescription-title {
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 65px;
    letter-spacing: -0.03em;
    line-height: 1.3;
  }

  .prescription-dot-title {
    font-size: 10px;
    letter-spacing: 0.05em;
    white-space: normal;
    width: 150px;
    line-height: 1.3;
    transition: color 0.35s ease, font-size 0.25s ease;
  }

  .prescription-dot-title.active,
  .prescription-dot-title.visited {
    font-size: 12px;
    letter-spacing: 0.05em;
    white-space: normal;
    width: 70px;
    line-height: 1.3;
  }

  .prescription-timeline {
    display: block;
    margin-bottom: 20px;
  }

  .prescription-content {
    padding-bottom: 20px;
  }

  .prescription-columns {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
    padding: 80px 20px 80px 20px;
    overflow: hidden;
    justify-content: center;
  }

  .prescription-column {
    flex: 1;
    min-height: 0 !important;
    position: relative !important;
    display: flex !important;
    justify-content: flex-start;
    overflow: visible;
  }

  .prescription-left-col {
    align-items: stretch !important;
  }

  .prescription-item:not(.active):not(.pres-leaving) {
    display: none !important;
  }

  .prescription-item.pres-leaving {
    display: block !important;
    position: absolute !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    width: 100% !important; max-width: 100% !important;
    height: auto !important; margin: 0 !important;
    transform: none !important;
    pointer-events: none;
    z-index: 1;
    animation: presItemFadeOut 0.28s ease forwards;
  }

  .prescription-item.active,
  .prescription-item.prescription-text-1.active,
  .prescription-item.prescription-text-2.active,
  .prescription-item.prescription-img-1.active,
  .prescription-item.prescription-img-2.active {
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    margin: 0 !important;
    width: 100% !important; max-width: 100% !important;
    height: auto !important;
    top: auto !important; left: auto !important; right: auto !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    animation: presItemFadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .prescription-item p {
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-align: left;
    width: 100% !important; max-width: 100% !important;
    margin-bottom: 10px;
    margin-left: 0 !important; margin-right: 0 !important;
  }

  .prescription-item.prescription-img-1.active {
    height: 100% !important;
    align-self: stretch !important;
  }

  .prescription-item.prescription-img-1 img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 160px;
    object-fit: cover;
    border-radius: 4px;
  }

  .prescription-item.prescription-img-2 img {
    width: 100% !important;
    max-width: 100% !important;
    height: 200px !important;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin: 0 auto !important;
  }

  .prescription-columns:has(.prescription-img-2.active),
  .prescription-columns.state-2 {
    flex-direction: column;
    gap: 20px;
  }

  .prescription-columns:has(.prescription-img-2.active) .prescription-column,
  .prescription-columns.state-2 .prescription-column {
    flex: none;
    width: 100% !important;
    align-items: flex-start !important;
  }
}

@media (max-width: 768px) {
  .our-approach {
    padding: 29px 20px 60px;
    min-height: auto;
    position: relative;
  }

  .approach-container {
    text-align: center;
  }

  .approach-title {
    font-size: 20px;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    line-height: 100%;
    text-align: center;
  }

  .approach-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    margin-top: 30px;
  }

  .approach-subtitle br {
    display: none;
  }

  .timeline-line-container {
    display: none;
  }

  .approach-content {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .timeline-item {
    display: block !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    margin-bottom: 0 !important;
    cursor: default;
    position: relative;
    padding: 0px;
    padding-bottom: 8px;
  }

  .timeline-item.mob-open {
    padding-bottom: 18px;
  }

  .timeline-item + .timeline-item::before {
    content: '';
    display: block;
    width: 270px;
    height: 1px;
    background-color: #F5F4F3;
    margin: 0 auto 10px auto;
  }

  .timeline-left {
    text-align: center;
    padding: 0;
    display: block;
  }

  .timeline-label {
    font-size: 11px !important;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important;
    margin-bottom: 0;
    display: block !important;
    transition: opacity 0.35s ease;
  }

  .timeline-right {
    display: grid !important;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    padding: 0 !important;
    opacity: 1 !important;
    overflow: hidden;
    margin-top: 0;
    align-items: unset;
    text-align: center;
    justify-content: center;
  }

  .timeline-right .timeline-description {
    min-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: visibility 0s linear 0.4s;
  }

  .timeline-item.mob-open .timeline-right {
    grid-template-rows: 1fr;
    margin-top: 12px;
  }

  .timeline-item.mob-open .timeline-right .timeline-description {
    visibility: visible;
    transition: visibility 0s linear 0s;
  }

  .timeline-description {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff !important;
    opacity: 1 !important;
    max-width: 280px;
    margin: 0 auto;
    padding-bottom: 4px;
  }

  .approach-content .timeline-dot {
    display: none;
  }
}

@media (max-width: 768px) {
  .treatment-options {
    padding: 29px 0 30px;
    min-height: 484px;
  }

  .treatment-title {
    font-size: 20px;
    margin-bottom: 24px;
    padding: 0 20px;
    text-align: center;
    letter-spacing: -.05em;
  }

  .slider-container {
    padding: 0 0 0 10px;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    overflow: visible;
    position: relative;
  }

  .fixed-first-card-container {
    position: relative;
    width: 37vw;
    min-width: 37vw;
    max-width: 37vw;
    flex-shrink: 0;
    top: 0;
    align-self: flex-start;
  }

  .slider-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    flex: 1;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .slider-wrapper::-webkit-scrollbar {
    display: none;
  }

  .slider-track {
    transition: none !important;
    gap: 8px;
    padding-right: 0;
  }

  .treatment-card {
    width: 38vw !important;
    min-width: 38vw !important;
    max-width: 38vw !important;
    height: auto;
    scroll-snap-align: start;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 5px;
  }

  .treatment-card:last-child {
    scroll-snap-align: start;
    margin-right: 30vw;
  }
  .slider-track::after {
    content: '';
    display: block;
    min-width: 30vw;
    flex-shrink: 0;
  }

  .card-image-area {
    padding: 0;
    width: 100%;
    height: 38vw;
  }

  .card-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .first-card-image {
    width: 100%;
    height: 38vw;
  }

  .card-info {
    padding: 12px 0px 0px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  .card-button {
    margin-top: 0px;
    text-align: center;
    margin-bottom: 6px;
  }

  .card-label {
    margin-bottom: 5px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .card-title {
    font-size: 11px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .card-button {
    padding: 8px 12px;
    font-size: 12px;
  }

  .first-card-image .image-title {
    font-size: 11px;
  }

  .first-card-image .hover-title {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .first-card-image .hover-text {
    font-size: 0.7rem;
  }

  .slider-arrow {
    display: none !important;
  }

  .slider-dots {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .compare-wrapper-fixed {
    position: static;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
    padding-right: 0px;
  }

  .reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
    width: 100%;
  }

  .compare-treatments-btn {
    padding: 10px 30px;
    &.reveal-up.in-view {
	    font-size: 10px !important;
	}
  }
}

@media (max-width: 768px) {
  .compare-timeline-section {
    padding: 0;
  }

  .compare-close-btn {
    display: none;
  }

  .compare-timeline-container {
    padding: 0;
    overflow: visible;
  }

  .compare-timeline-title {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .compare-timeline-track {
    display: none;
  }

  .compare-columns-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 20px 0;
  }

  .compare-column {
    min-height: auto;
    display: block;
  }

  .compare-item {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    margin-bottom: 30px;
  }

  .compare-item:last-child {
    margin-bottom: 0;
  }

  .compare-content-title {
    font-size: 12px;
    margin-top: 15px;
  }

  .compare-content-text {
    font-size: 12px;
  }

  .compare-content-list li {
    font-size: 12px;
  }

  .compare-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .care-evolve {
    padding: 60px 0px;
    padding-top: 0px;
  }

  .care-content {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 60px;
  }

  .care-left {
    padding-right: 0;
    max-width: 100%;
  }

  .care-left.reveal-up.in-view {
    padding: 0px 20px;
  }

  .care-title {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 100%;
    letter-spacing: -0.03em;
    line-height: 1.3;
    em {
    	display: inline;
    }
  }

  .care-line-container {
    height: 85px;
    margin: 0 auto;
  }

  .care-line {
    height: 0;
  }

  .care-text {
    font-size: 13px;
    max-width: 100%;
    text-align: left;
    line-height: 1.3;
    letter-spacing: -0.03em;
    padding: 0 17px;
  }

  .care-right {
    order: -1;
    border-radius: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 300px;
    position: relative;
  }

  .care-image-desktop {
    display: none !important;
  }

  .care-image-bg {
    position: absolute;
    top: -25%;
    left: 0;
    right: 0;
    height: 150%;
    background-image: url('../images/drs.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
  }

  .care-features {
    display: none;
  }

  .features-rolling-banner .feature-description {
    display: none !important;
  }

  .feature-item {
    text-align: center;
  }

  .feature-icon {
    height: 70px;
    margin-bottom: 20px;
  }

  .feature-icon img {
    width: 50px;
    height: 50px;
  }

  .feature-title {
    font-size: 9.5px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .feature-description {
    font-size: 12px;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.3;
    letter-spacing: -0.03em;
  }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE JOURNEY — FIXED
   Replace the existing @media (max-width: 768px) journey block
   in your styles.css with this
══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .treatment-journey {
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
  }

  /* Single-column stacked layout */
  .journey-container {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    min-height: auto;
  }

  /* ── Image block — fixed height, no parallax, no overflow weirdness ── */
  .journey-left {
    order: 0;                 /* image on top */
    width: 100%;
    height: 218px;            /* fixed, predictable */
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    max-width: unset;
  }

  /* Static image — no scale, no transform, no absolute positioning */
  .journey-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none !important;   /* kill any JS-applied transform */
    transition: none !important;
    will-change: auto;
  }

  /* Mobile title overlay — keep it if used */
  h2.journey-title.journey-title-mobile {
    display: block !important;
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    z-index: 10 !important;
    margin: 0 !important;
    text-align: left !important;
    padding: 0 !important;
    background: none !important;
  }

  h2.journey-title.journey-title-mobile span {
    color: #ffffff !important;
  }

  h2.journey-title.journey-title-desktop {
    display: none !important;
  }

  /* ── Text block — normal flow, no sticky ── */
  .journey-right {
    order: 1;
    position: relative !important;  /* override the sticky !important */
    top: auto !important;
    align-self: auto;
    padding: 40px 28px 50px;
    background-color: #f5f4f3;
    min-height: auto;
  }

  .journey-title {
    font-size: 20px;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: static;             /* no sticky title */
    background: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .journey-timeline {
    padding-left: 30px;
  }

  .journey-item {
    margin-bottom: 17px;
    opacity: 1;                   /* ensure visible; GSAP handles desktop */
  }

  .journey-dot {
    left: -32px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
  }

  /* Re-center line container to match mobile dot */
  .journey-line-container {
    left: -2px;
  }

  .journey-step-title {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .journey-step-text {
    font-size: 13px;
    text-align: left;
    max-width: 100%;
    line-height: 1.3;
    letter-spacing: -0.03em;
  }
  
  .journey-content {
  	padding-top: 7px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-left {
    position: relative;
    top: 0;
    padding: 0;
  }

  .faq-title {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-align: center;
    padding-left: 0px;
  }

  .faq-title .char-wrap {
    display: inline !important;
    overflow: visible !important;
    clip-path: none !important;
  }
  .faq-title .char {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .faq-item {
    padding: 0 0 5px;
    margin-bottom: 0;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
  }

  .faq-question h3 {
    font-size: 16px;
    line-height: 1.3;
    padding-right: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    letter-spacing: -0.03em;
    margin-bottom: 0;
  }

  .faq-item.active .faq-answer {
    padding-top: 15px;
  }
}

@media (max-width: 1240px) {
  .footer-inner {
    width: 100%;
    height: auto;
    padding: 52px 32px;
  }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 40px 24px;
  }
  .footer-col-logo {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .footer-col-map {
    grid-column: 1 / -1;
    min-height: 200px;
  }
}

@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }
  .footer-col-logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .prescription-title br{
    display: block;
  }
}

/* ── Rolling Banner ── */
.features-rolling-banner {
  display: none;
}

@keyframes featuresBannerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .care-features {
    display: none !important;
  }

  .features-rolling-banner {
    display: block;
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }

  .features-rolling-track {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: max-content;
    animation: featuresBannerScroll 22s linear infinite;
    will-change: transform;
  }

  .features-rolling-track:hover {
    animation-play-state: paused;
  }

  .features-rolling-track .feature-item {
    flex: 0 0 200px;
    width: 200px;
    text-align: center;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .features-rolling-track .feature-icon {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .features-rolling-track .feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .features-rolling-track .feature-title {
    font-size: 9.5px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .features-rolling-track .feature-description {
    display: none !important;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
  }
}

h2.journey-title.journey-title-mobile {
  display: none;
}

@media (max-width: 768px) {
  h2.journey-title.journey-title-desktop {
    display: none !important;
  }

  h2.journey-title.journey-title-mobile {
    display: block !important;
    position: absolute !important;
    bottom: 28px !important;
    left: 43px !important;
    right: 20px !important;
    z-index: 10 !important;
    margin: 0 !important;
    text-align: left !important;
    padding: 20px;
  }

  h2.journey-title.journey-title-mobile span {
    color: #ffffff !important;
  }
}

@media (max-width: 768px) {
  .cta-button,
  .card-button,
  .sticky-button,
  .np-btn,
  .compare-treatments-btn,
  .compare-close-btn {
    font-size: 12px !important;
  }

  .treatment-title .journey-title-your {
    font-size: 20px !important;
  }
  
  .journey-title .journey-title-your {
  	font-style: normal;
  }
  
    .journey-title .journey-title-rest {
  	font-style: italic;
  }
}

.btn-mobile-text  { display: none; }
.btn-desktop-text { display: inline; }
@media (max-width: 768px) {
  .btn-mobile-text  { display: inline !important; }
  .btn-desktop-text { display: none   !important; }
}

.faq-title-mobile-text { display: none; }
.faq-title-desktop     { display: inline; }
@media (max-width: 768px) {
  .faq-title-desktop     { display: none   !important; }
  .faq-title-mobile-text { display: inline !important; }
}

@media (max-width: 768px) {
  .split-heading .char-wrap {
    overflow: visible !important;
  }

  .split-heading .char {
    transform: none !important;
    transition: opacity 0.6s ease !important;
  }

  .split-heading.in-view .char {
    opacity: 1 !important;
    transform: none !important;
  }

  .split-heading:not(.in-view) .char {
    opacity: 0 !important;
  }
}

/* ── Compare Mobile Vertical ── */
.compare-mobile-vertical { display: none; }

@keyframes cmobLabelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .compare-timeline-track,
  .compare-dot-titles-row,
  .compare-columns-wrapper {
    display: none !important;
  }

  .compare-timeline-section {
    background-color: #F5F4F3 !important;
    overflow: visible !important;
    padding-top: 0 !important;
  }

  .compare-mobile-vertical {
    display: flex;
    flex-direction: row;
    position: relative;
    padding-left: 36px;
    padding-bottom: 10px;
    background-color: #F5F4F3;
    overflow: visible;
  }

  .cmob-timeline-left {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 20px;
    overflow: visible;
  }

  .cmob-vline-base {
    position: absolute;
    top: 0;
    bottom: 6px;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background-image: radial-gradient(circle, #BEBEBE 1px, transparent 1px);
    background-size: 3px 6px;
    background-repeat: repeat-y;
    background-position: center top;
    z-index: 0;
  }

  .cmob-vline-fill {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 0%;
    transform: translateX(-50%);
    background-image: radial-gradient(circle, #80130B 1px, transparent 1px);
    background-size: 3px 6px;
    background-repeat: repeat-y;
    background-position: center top;
    z-index: 1;
  }

  .cmob-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #BEBEBE;
    border: 2px solid #F5F4F3;
    z-index: 3;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  }

  .cmob-dot.visited {
    background-color: #80130B;
    box-shadow: none;
    filter: none;
    width: 18px;
    height: 18px;
    animation: none;
  }

  .cmob-dot.active {
    background-color: #80130B;
    box-shadow: 0 0 10px rgba(128, 19, 11, 0.6);
    filter: blur(3px);
    width: 28px;
    height: 28px;
    animation: pulseDot 1.5s infinite;
  }

  .cmob-states {
    flex: 1;
    min-width: 0;
  }

  .cmob-state-block {
    padding-bottom: 48px;
  }
  .cmob-state-block:last-child { padding-bottom: 0; }

  .cmob-state-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1C1B1B;
    margin-bottom: 20px;
    line-height: 1.3;
    transition: color 0.3s;
  }
  .cmob-state-title.active { color: #80130B; }

  .cmob-layout {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .cmob-layout::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0.5px;
    background-color: #D9D9D9;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
  }

  .cmob-state-block.cmob-state-inactive .cmob-layout::before {
    display: none;
  }

  .cmob-section {
    display: flex;
    flex-direction: column;
  }

  .cmob-section + .cmob-section {
    margin-top: 16px;
  }

  .cmob-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #80130B;
    background-color: #FFFFFF;
    border: 1px solid #C8C8C8;
    border-radius: 20px;
    padding: 5px 16px;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 90%;
    margin: 0 auto 8px auto;
    opacity: 1;
    filter: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }

  .cmob-label.cmob-label-locked {
    cursor: default;
  }

  .cmob-label.cmob-label-accordion {
    cursor: pointer;
    gap: 8px;
  }

  .cmob-label.cmob-label-accordion.cmob-label-open {
    background-color: #CCC4C4;
    border-color: #80130B;
    color: #80130B;
  }

  .cmob-label-arrow {
    width: 12px;
    height: 12px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
  }

  .cmob-label.cmob-label-visible {
    opacity: 1;
    filter: none;
  }

  .cmob-label-inner {
    background: none;
    height: auto;
    line-height: normal;
    padding: 0;
    text-align: center;
  }

  .cmob-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .cmob-section-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease-out;
    overflow: hidden;
    width: 100%;
  }

  .cmob-section-content.cmob-open {
    grid-template-rows: 1fr;
  }

  .cmob-section-content-inner {
    min-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 36% 1fr;
    position: relative;
  }

  .cmob-cell-left {
    padding: 6px 4px 6px 0;
    text-align: left;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #1C1B1B;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .cmob-cell-center {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cmob-cell-right {
    padding: 6px 0 6px 4px;
    text-align: left;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #1C1B1B;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .cmob-cell-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    position: relative;
    z-index: 2;
  }

  .cmob-cell-img img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
  }

  .cmob-sub-label {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1C1B1B;
    margin-bottom: 4px;
  }

  .cmob-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .cmob-list li {
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #1C1B1B;
    display: flex;
    align-items: flex-start;
    gap: 3px;
  }

  .cmob-cell-left .cmob-list li {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .cmob-cell-right .cmob-list li {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .cmob-check {
    color: #80130B;
    flex-shrink: 0;
    font-size: 9px;
    margin-top: 1px;
  }

  .cmob-cell-left.row-with-img,
  .cmob-cell-right.row-with-img {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.card-text-mobile { display: none; }
.card-text-desktop { display: inline; }
@media (max-width: 768px) {
  .card-text-desktop { display: none !important; }
  .card-text-mobile  { display: inline !important; }
}

@media (max-width: 768px) {
  .split-heading .char {
    transition-duration: 0.8s !important;
  }
}

/* ── Compare Mobile Tab UI ── */
@media (max-width: 768px) {
  #compareMobileVertical,
  .compare-mobile-vertical {
    display: none !important;
  }

  .compare-timeline-content {
    display: none !important;
  }

  .cmp-mobile-tabs {
    display: block;
    padding: 50px 20px 40px;
    position: relative;
    background: #F5F4F3;
  }

  .cmp-mob-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #1C1B1B;
    text-align: center;
    margin-bottom: 24px;
  }

  .cmp-mob-title em {
    font-style: italic;
  }

  .cmp-mob-close {
    position: absolute;
    top: 58px;
    right: 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-family: 'Work Sans', sans-serif;
    color: #1C1B1B;
    cursor: pointer;
    line-height: 1;
    padding: 0;
  }

  .cmp-tabs-row {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-bottom: 0;
  }

  .cmp-tab {
    flex: 1;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    line-height: 1.4;
    text-align: center;
    padding: 10px 8px;
    cursor: pointer;
    background: #CCC4C4;
    color: #FFFFFF;
    border: 1.5px solid #C8C8C8;
    border-bottom: none;
    transition: all 0.2s ease;
  }

  .cmp-tab.cmp-tab-active {
    background: #FFFFFF;
    color: #80130B;
    border-color: #80130B;
    border-bottom: 2px solid #FFFFFF;
    position: relative;
    z-index: 2;
  }

  .cmp-panel {
    display: none;
    border: 1.5px solid #80130B;
    border-top: none;
    background: #FFFFFF;
    padding: 0 0 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .cmp-panel::after {
    content: '';
    position: absolute;
    top: 35px;
    bottom: 20px;
    left: 50%;
    width: 0.5px;
    background: #A2A0A0;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
  }

  .cmp-panel.cmp-panel-active {
    display: block;
  }

  .cmp-tabs-row .cmp-tab:not(.cmp-tab-active) {
    border-bottom: 1.5px solid #80130B;
  }

  .cmp-img-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    z-index: 1;
  }

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

  .cmp-prod-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #80130B;
    background: #D9D9D9;
    border: none;
    padding: 4px 8px;
    line-height: 1.4;
    text-align: center;
    z-index: 3;
  }

  .cmp-prod-left  { left: 10px; }
  .cmp-prod-right { right: 10px; }

  .cmp-section-pill {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #80130B;
    border: 1.5px solid #80130B;
    border-radius: 20px;
    padding: 3px 6px;
    display: flex;
    justify-content: center;
    align-self: center;
    width: fit-content;
    margin: 14px auto 20px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .cmp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0 14px 4px;
    position: relative;
    margin-top: -1px;
  }

  .cmp-col {
    padding: 0 8px 8px;
  }

  .cmp-col:first-child { padding-left: 0; }
  .cmp-col:last-child  { padding-right: 0; }

  .cmp-col-sub {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    font-style: italic;
    color: #1C1B1B;
    margin-bottom: 4px;
  }

  .cmp-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .cmp-list li {
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: #1C1B1B;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 5px;
  }

  .cmp-check {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('../images/compare-tick.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
}

.cmp-mobile-tabs {
  display: none;
}

@media (max-width: 768px) {
  .cmp-mobile-tabs {
    display: block;
  }
}

@media (max-width: 768px) {
  .np-options {
    padding: 60px 0 40px;
  }

  .np-title {
    font-size: 20px;
    color: #602622;
    padding: 30px 30px 0;
    font-weight: 400;
    font-family: 'Libre Baskerville', serif;
    text-align: center;
    margin: 0 0 5px;
  }

  .np-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 40px;
    padding: 0 20px;
  }

  .np-slider-container {
    padding: 0 0 0 10px;
  }

  .np-slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .np-slider-wrapper::-webkit-scrollbar {
    display: none;
  }

  .np-slider-track {
    display: flex;
    gap: 8px;
    width: max-content;
  }

  .np-card {
    width: 38vw;
    min-width: 38vw;
    max-width: 38vw;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .np-card:last-child {
    margin-right: 30vw;
  }

  .np-slider-track::after {
    content: '';
    min-width: 30vw;
    flex-shrink: 0;
  }

  .np-card-image {
    width: 100%;
    height: 38vw;
  }

  .np-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .np-card-info {
    padding: 12px 0 0;
  }

  .np-label {
    font-size: 9px;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
  }

  .np-card-title {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    padding: 0 20px;
  }

  .np-btn {
    width: 150px;
    font-size: 12px;
    color: #1C1B1B;
    padding: 8px 12px;
    max-width: 80%;
  }
}

/* ── FIX 1: Footer bottom ── */
.footer-bottom {
  background-color: #4F1713 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 14px 20px;
  width: 100%;
}
.footer-bottom p {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #ffffff !important;
  line-height: 1.4;
}

/* ── FIX 2: FAQ title padding ── */
.faq-section .faq-left {
  padding-top: 0 !important;
}
.faq-title {
  padding-left: 0 !important;
}

/* ── FIX 3: Mobile sticky titles ── */
@media (max-width: 768px) {
  .prescription-personalised,
  .our-approach,
  .treatment-options,
  .compare-timeline-section,
  .care-evolve,
  .treatment-journey,
  .np-options,
  .faq-section,
  .science-section,
  .product-section,
  .compare-section {
    position: relative;
  }

  .prescription-title,
  .approach-title,
  .treatment-title,
  .care-title,
  .np-title,
  .faq-title,
  .science-title,
  .compare-title,
  .product-title {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: inherit;
    padding-top: 16px;
    padding-bottom: 12px;
    margin-bottom: 0;
  }

  .our-approach .approach-title {
    background-color: #4F1713;
  }

  .journey-right .journey-title {
    position: sticky;
    top: 98px;
    z-index: 50;
    background-color: #f5f4f3;
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .product-section .product-title {
    position: relative;
    top: 0;
    z-index: 50;
    padding-top: 16px;
    padding-bottom: 0;
    margin-bottom: 2px;
    background: none !important;
  }

  .faq-section .faq-title {
    background-color: #f0ecea;
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .care-evolve .care-title {
    background-color: #f0ecea;
  }

  .np-options .np-title {
    background-color: #F5F4F3;
  }

  .treatment-options .treatment-title {
    background-color: #f5f4f3;
    margin-bottom: 29px;
  }

  .science-section .science-title {
    background-color: inherit;
  }
}

/* ── FIX 4: Sticky header 3-column ── */
.sticky-header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.sticky-header-left  { flex: 0 0 auto; min-width: 60px; }
.sticky-header-center {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticky-header-right {
  flex: 0 0 auto;
  display: flex;
  gap: 15px;
  align-items: center;
}
.sticky-header-center {
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  .sticky-logo {
      width: 78px;
      height: 78px;
      object-fit: cover;
      display: block;
   }
}


/* ── FIX 5: Prescription mobile anchor ── */
@media (max-width: 768px) {
  .prescription-personalised {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .prescription-container {
    width: 100%;
  }
  
  .sticky-header-center {
  	position: static;
    transform: none;
  }
}

/* ── FIX 6: Prescription title mobile spacing ── */
@media (max-width: 768px) {
  .prescription-title {
    padding-top: 8px !important;
    padding-bottom: 55px !important;
  }
}

/* ── FIX 7: FAQ heading mobile ── */
@media (max-width: 768px) {
  .faq-title {
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .faq-left {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
  }

  .faq-title .char-wrap,
  .faq-title .char {
    display: inline !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* ── FIX 8: Journey image spacing ── */
@media (max-width: 768px) {
  .care-evolve {
    padding-bottom: 0 !important;
  }

  .features-rolling-banner {
    margin-bottom: 0 !important;
    padding-bottom: 50px;
  }

  .journey-right {
    padding-top: 41px !important;
  }

  .treatment-journey {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0;
  }

  .journey-left {
    margin: 0 !important;
    padding: 0 !important;
  }
}
.faq-title .char-space,
.faq-title .char-wrap {
    display: none !important;
}

.faq-title-desktop,
.faq-title-mobile-text {
    display: block;
}
@media (max-width: 768px) {
  .sticky-header-right .sticky-button {
    font-size: 10px !important;
    letter-spacing: 0.05em;
    line-height: 1.3;
    padding: 6px 15px;
    white-space: normal;
    width: 120px;
    text-align: center;
  }
}
/* ── Dot Pagination ── */
.np-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.np-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.np-dot.active {
  background-color: #000; /* change to match your brand color */
  transform: scale(1.3);
}

.sm {
	display: none !important;
}

.md {
	display: block !important;
}

@media (max-width: 768px) {
	.sm {
    	display: block !important;
    }
    
    .md {
    	display: none !important;
    }
}
@media (max-width: 768px) {
	.faq-section.is-second {
    	background: #F0ECEA;
        padding: 27px 35px 107px;
        
        .faq-title {
        	background: #F0ECEA;
            font-size: 18px !important;
            margin-bottom: 24px;
        }
        
        h3 {
        	font-size: 11px !important;
            letter-spacing: 0.1em;
            min-height: 40px;
            padding: 10px 0;
            display: flex;
            align-items: center;
        }
        
        .faq-item {
        	border-bottom: 1px solid #000;
            padding-bottom: 0;
            
            &.active {
            	padding-bottom: 11px;
                .faq-anser {
                    padding-top: 0;
                }
            }

        }
        
        .faq-question {
        	border-bottom: none;
            padding-bottom: 0;
            &::after {
            	display: none;
            }
        }
        
        .faq-answer {
        	padding-top: 0;
            p {
            	font-size: 10px;
            }
        }
    }

	.site-footer.footer-revealed {
    	position: static;
        
    	.footer-inner {
        	grid-template-columns: 1fr 1fr !important;
            gap: 0;
        }
        
        .footer-logo {
        	width: 131px;
            height: auto;
            position: relative;
            top: -36px;
            left: -23px;
        }
        
        .footer-label {
        	font-size: 11px;
            margin-bottom: 7px;
        }
        
        .footer-col:nth-child(1) {
        	gap: 0;
        }
        
                
        .footer-col:nth-child(2) {
        	display: flex;
            flex-direction: column-reverse;
            .footer-group:last-child {
            	margin-bottom: 28px;
            }
        }
    
        .footer-col:nth-child(4),
        .footer-bottom {
            display: none;
        }
        
        .footer-col-logo {
        	grid-column: auto;
        }
        
        .footer-nav-link,
        .footer-info {
        	font-size: 12px;
        }
    }
}

.cta-button {
  pointer-events: all;
}