
:root {
  --brown-deep: #541900;
  --brown-mid: #69381e;
  --brown-light: #8f4d1e;
  --cream: #f5dfce;
  --cream-2: #efd8c3;
  --peach: #ffc59b;
  --peach-soft: #ffd7b5;
  --text: #312c2b;
  --text-dark: #232323;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}


img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: 0;
  background: transparent;
  font-family: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.section-wrap {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 120px;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.36px;
}
.eyebrow svg,
.eyebrow img {
  flex-shrink: 0;
}
.eyebrow--light {
  color: #fff;
  font-size: clamp(14px, 1.04vw, 20px);
  font-weight: 200;
  letter-spacing: -0.4px;
}
.eyebrow--light span {
  color: #fff;
}
.eyebrow--center {
  justify-content: center;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: clamp(26px, 2.5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin: 0;
}
.section-title--dark {
  color: var(--brown-mid);
}
.section-title--dark strong {
  font-weight: 400;
  color: var(--brown-deep);
}
.section-title--light {
  color: #fff;
}
.section-title--light .accent {
  color: var(--peach);
  font-weight: 400;
  font-style: normal;
}

.section-subtitle {
  font-size: 18px;
  line-height: 30px;
  color: var(--text-dark);
  letter-spacing: -0.36px;
  margin: 0;
}
.section-subtitle--light {
  color: rgba(255, 255, 255, 0.85);
}

.italic-accent {
  font-style: italic;
  color: var(--peach);
  font-weight: 500;
}
.hero__title--light {
  font-weight: 300;
  font-style: normal;
}

.accent {
  color: var(--peach);
}
.text-center {
  text-align: center;
}

.btn-rounded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(44px, 3.125vw, 60px);
  padding: 0 clamp(18px, 1.67vw, 32px);
  min-width: clamp(140px, 12.08vw, 232px);
  font-size: clamp(13px, 0.94vw, 18px);
  font-weight: 500;
  border-radius: 20px 0;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-rounded--outline {
  border: 2px solid var(--brown-deep);
  color: var(--brown-light);
  background: transparent;
}
.btn-rounded--outline:hover {
  background: var(--brown-deep);
  color: #fff;
}
.btn-rounded--outline-light {
  border: 2px solid var(--aa, #FFC59B);
  border-radius: 20px 0;
  color: #fff;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-rounded--outline-light:hover {
  background: #FFC59B;
  color: var(--brown-deep);
}
.btn-rounded--solid-light {
  background: var(--peach);
  color: var(--brown-deep);
  border: 2px solid var(--peach);
}
.btn-rounded--solid-light:hover {
  background: transparent;
  color: #fff;
}

.dash {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--peach);
  vertical-align: middle;
  margin-right: 8px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #541900;
}
.header-inner {
  max-width: 100%;
  width: 95vw;
  margin: 0 auto;
  padding: 0  41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}
.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--peach);
  color: var(--brown-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.brand-name {
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: 500;
}
.brand-name em {
  display: block;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 6px;
  opacity: 0.8;
  font-weight: 300;
}

.side-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-cta__item {
  background: var(--cream);
  color: #69381E;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0 18px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 0;
  cursor: pointer;
  border-top: 0.5px solid #541900;
border-bottom: 0.5px solid #541900;
border-left: 0.5px solid #541900;
}
.side-cta__item > span:first-child {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex: 1;
}
.side-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  flex-shrink: 0;
}
.side-cta__icon i {
  color: #69381E;
  font-size: 25px;
}
.side-icon-img {
  width: 32px;
  height: 32px;
  display: block;
  filter: brightness(0) invert(1);
}
.side-cta__item--light {
  background: #8F4D1E;
  color: #fff;
  border-top: 0.5px solid #F5DFCE;
border-bottom: 0.5px solid #F5DFCE;
border-left: 0.5px solid #F5DFCE;
}
.side-cta__item--light .side-cta__icon i {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: var(--brown-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    239.72deg,
    rgba(84, 25, 0, 0) 49%,
    rgba(84, 25, 0, 0.55) 67%,
    rgba(84, 25, 0, 0.6) 80%,
    rgba(84, 25, 0, 0.85) 90%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
      width: 95vw;

  max-width: 100%;
  margin: 0 auto;
  padding: 174px 100px 80px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: space-between;
}
.hero__content {
  width: 549px;
  flex-shrink: 0;
}
.hero__title {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 2.8vw, 45px);
  line-height: 1.2;
  letter-spacing: -0.96px;
  margin: 20px 0 24px;
  color: #fff;
}
.hero__desc {
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: 1.67;
  letter-spacing: -0.36px;
  margin: 0 0 24px;
  color: #fff;
}

.hero__stats-circles {
  display: flex;
  margin-bottom: 24px;
}
.stat-circle {
  position: relative;
  width: 135px;
  height: 135px;
  flex-shrink: 0;
}
.stat-circle + .stat-circle {
  margin-left: -12px;
}
.stat-circle__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.stat-circle__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}
.stat-num {
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 1.07vw, 20.5px);
  font-weight: 400;
  color: var(--peach);
  letter-spacing: -0.41px;
  line-height: 1.25;
}
.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: clamp(11px, 0.78vw, 15px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.31px;
  line-height: 1.3;
}

.hero__divider {
  width: 542px;
  max-width: 100%;
  height: 1px;
  background: rgba(255, 197, 155, 0.3);
  margin: 8px 0 20px;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3rem;
  font-size: clamp(12px, 0.73vw, 14px);
  color: #fff;
}
.hero__rating b {
  font-weight: 700;
  font-size: clamp(14px, 0.9375vw, 18px);
}
.hero__stars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.hero-star-img {
  height: 18px;
  width: 18px;
  display: block;
}

.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px;
}
.feature-tick {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(13px, 0.83vw, 16px);
  color: #fff;
  line-height: 1.2;
}
.tick {
  width: 24px;
  height: 24px;
  border: 1px solid var(--peach);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}

.hero__form-card {
  width: 530px;
border: 1px solid #8F4D1E;
background: rgba(0, 0, 0, 0.60);
  padding: 36px 38px 32px;
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}

.form-card__begin {
  color: var(--peach);
  font-size: clamp(11px, 0.68vw, 13px);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.form-card__begin .dash {
  background: var(--peach);
  width: 14px;
  height: 1.5px;
  margin-right: 10px;
  display: inline-block;
}

.form-card__title {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}
.form-card__sub {
  font-size: clamp(12px, 0.755vw, 14.5px);
  color: #fff;
  line-height: 1.5;
  margin: 0 0 14px;
}
.form-card__sub .accent {
  color: var(--peach);
}
.form-card__divider {
  border: 0;
  border-top: 1px solid #fff;
  margin: 14px 0 20px;
}
.iniya-modal .form-card__divider {
  border-top-color: rgba(84, 25, 0, 0.15);
}
.form-card__divider--bottom {
  margin: 22px 0 18px;
}

.form-field {
  margin-bottom: 12px;
}
.form-field label {
  display: block;
  font-size: 12px;
  color: var(--brown-mid);
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero__form-card .form-field label {
  color: #fff;
}
.hero__form-card .form-disclaimer {
  color: #fff;
}
.iniya-modal .form-field label {
  color: var(--brown-deep);
}
.iniya-modal .form-disclaimer {
  color: var(--brown-deep);
}
.form-field input,
.form-field select {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(84, 25, 0, 0.22);
  background: #fff;
  background-image: none !important;
  color: var(--text-dark);
  -webkit-text-fill-color: var(--text-dark);
  font-size: 14px;
  padding: 0 16px;
  font-family: inherit;
  outline: none;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--brown-deep);
  box-shadow: 0 0 0 3px rgba(84, 25, 0, 0.07);
  background: #fff !important;
}
.form-field input::placeholder {
  color: rgba(84, 25, 0, 0.4);
  font-size: 13.5px;
}
.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus,
.form-field select:-webkit-autofill {
  -webkit-text-fill-color: var(--text-dark) !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
.form-field-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field-row .form-field {
  margin-bottom: 0;
  flex: 1;
}
.form-field--small {
  flex: 0 0 150px !important;
}

.select-wrap {
  position: relative;
}
.select-wrap select {
  cursor: pointer;
  padding-right: 40px;
  color: rgba(49, 44, 43, 0.4);
}
.select-wrap select.has-value,
.select-wrap select:focus,
.select-wrap select:valid {
  color: var(--text-dark);
}
.select-wrap select option {
  color: var(--text-dark);
  background-color: #fff;
  font-size: 14px;
}
.select-wrap select option[value=""] {
  color: rgba(49, 44, 43, 0.4);
}
.select-wrap i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brown-deep);
  font-size: 12px;
  pointer-events: none;
  z-index: 1;
}

.form-submit-btn {
  width: 100%;
  height: 52px;
  border: none;
  background: var(--brown-deep);
  color: var(--cream);
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.5px;
  transition: background 0.25s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-submit-btn:hover:not(:disabled) {
  background: var(--brown-mid);
  color: #fff;
}
.form-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}
.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(245, 223, 206, 0.4);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: btnSpin 0.65s linear infinite;
  flex-shrink: 0;
}
.form-submit-btn.loading .btn-text {
  display: none;
}
.form-submit-btn.loading .btn-loader {
  display: block;
}
@keyframes btnSpin {
  to { transform: rotate(360deg); }
}
.form-disclaimer {
  text-align: center;
  font-size: 11.5px;
  font-style: italic;
  color: rgba(84, 25, 0, 0.45);
  margin: 10px 0 0;
}
.form-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}
.ff-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--peach);
  line-height: 1.45;
  font-weight: 400;
}
.ff-item i {
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--peach);
}

.problems {
  background: var(--cream);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.problems::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -6vw;
  width: 42vw;
  height: 42vw;
  background: url('../images/sound-familar/leaf.svg') no-repeat center center / contain;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}
.problems__head {
  display: flex;
  gap: clamp(32px, 5.2vw, 100px);
  align-items: flex-end;
  justify-content: space-between;
}
.problems__head-left,
.problems__head-right {
  flex: 1;
  max-width: 790px;
}
.problems__head-right p {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: 1.72;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin: 0 0 clamp(16px, 1.4vw, 27px);
}
.problems__head-right p em {
  color: var(--brown-mid);
  font-style: italic;
}
.problems__head-left .section-title {
  margin-top: clamp(14px, 1.25vw, 24px);
}
.problems .eyebrow {
  font-size: clamp(14px, 0.9375vw, 18px);
}
.problems__title-bold {
  font-weight: 400;
  color: var(--brown-deep);
}

.thin-divider {
  border: 0;
  border-top: 1px solid rgba(143, 77, 30, 0.40);
  margin: clamp(28px, 2.97vw, 57px) 0;
}

.btn-rounded--gradient-border {
  position: relative;
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 20px 0;
  z-index: 0;
}
.btn-rounded--gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px 0;
  padding: 2px;
  background: linear-gradient(135deg, #FFC59B 0%, #8F4D1E 50%, #FFC59B 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.btn-rounded--gradient-border:hover {
  background: linear-gradient(135deg, #FFC59B 0%, #8F4D1E 50%, #FFC59B 100%);
  color: #fff;
}
.btn-rounded--gradient-border-dark {
  position: relative;
  background: transparent;
  color: #8F4D1E;
  border: none;
  border-radius: 20px 0;
  z-index: 0;
}
.btn-rounded--gradient-border-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px 0;
  padding: 2px;
  background: linear-gradient(135deg, #541900 0%, #8F4D1E 33%, #FFC59B 66%, #541900 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.btn-rounded--gradient-border-dark:hover {
  background: #541900;
  color: #fff;
}

@media (min-width: 992px) {
  .problems__grid {
    overflow: visible;
  }
  .problems__grid .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.7vw, 27px);
    transform: none !important;
    width: auto !important;
    box-sizing: border-box;
  }
  .problems__grid .swiper-slide {
    width: auto !important;
    height: auto !important;
  }
  .problems__grid .problem-card {
    height: 100%;
  }
}
.problems-pagination {
  display: none;
}
.problems-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(84, 25, 0, 0.3);
  opacity: 1;
}
.problems-pagination .swiper-pagination-bullet-active {
  background: #541900;
  width: 22px;
  border-radius: 4px;
}
.problems-nav {
  display: none;
}
.problems-prev,
.problems-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #541900;
  color: #541900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.problems-prev:hover,
.problems-next:hover {
  background: #541900;
  color: #fff;
}
.problems-prev.swiper-button-disabled,
.problems-next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.problem-card {
  position: relative;
  background: transparent;
  border: 1px solid #541900;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: clamp(14px, 1vw, 22px);
  min-height: clamp(180px, 14vw, 240px);
}
.problem-card--active,
.problem-card:hover {
  background: #541900;
}

.problem-card__bg-img {
    position: absolute;
    top: 0;
    right: -2%;
    width: 38%;
    height: auto;
    opacity: 1;
    pointer-events: none;
    transform-origin: center center;
    display: block;
    transition: opacity 0.3s ease;
}
.problem-card--active .problem-card__bg-img,
.problem-card:hover .problem-card__bg-img {
  opacity: 1;
}

.problem-card__header {
  display: flex;
  align-items: end;
  gap: clamp(8px, 0.85vw, 16px);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.problem-card__icon {
  width: clamp(48px, 3.75vw, 72px);
  height: clamp(48px, 3.75vw, 72px);
  flex-shrink: 0;
  background: #69381e;
  border: 1px solid #ffc59b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 0.55vw, 9px);
}
.problem-card__icon img {
  width: 75%;
  height: 75%;
  display: block;
  object-fit: contain;
}

.problem-card__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 1.20vw, 24px);
  font-weight: 400;
  color: #8f4d1e;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0;
  word-break: break-word;
}
.problem-card--active .problem-card__title,
.problem-card:hover .problem-card__title {
  color: #ffc59b;
}

.problem-card__divider {
  border: none;
  border-top: 1px solid rgba(84, 25, 0, 0.25);
  margin: clamp(10px, 0.9vw, 16px) 0;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}
.problem-card--active .problem-card__divider,
.problem-card:hover .problem-card__divider {
  border-top-color: rgba(255, 197, 155, 0.30);
}

.problem-card__desc {
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.72;
  color: #1e1e1e;
  letter-spacing: -0.02em;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}
.problem-card--active .problem-card__desc,
.problem-card:hover .problem-card__desc {
  color: #fff;
}

.journey {
  background: var(--cream);
  padding: clamp(50px, 3.8vw, 73px) 0 0;
  position: relative;
  overflow: hidden;
}

.journey::before {
  content: '';
  position: absolute;
  right: -6%;
  top: -10%;
  width: 40vw;
  height: 40vw;
  background: url('../images/journey/leaf1.png') no-repeat center / contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.journey::after {
  content: '';
  position: absolute;
  left: -4%;
  top: 38%;
  width: 28vw;
  height: 35vw;
  background: url('../images/journey/leaf2.png') no-repeat center / contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.journey__intro {
  text-align: center;
  max-width: clamp(340px, 31.25vw, 600px);
  margin: 0 auto clamp(20px, 2.1vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 1.25vw, 24px);
  position: relative;
  z-index: 1;
}
.journey__desc {
  font-size: clamp(13px, 0.94vw, 18px);
  line-height: 1.67;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.journey__stage {
  position: relative;
  width: 100%;
  height: clamp(480px, 31.9vw, 613px);
  z-index: 1;
}

.journey__line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.journey__step {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.journey__step > * { pointer-events: auto; }

.journey__dot {
  position: absolute;
  width: clamp(48px, 3.75vw, 72px);
  height: clamp(48px, 3.75vw, 72px);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(105, 56, 30, 0.18);
  z-index: 3;
  transform: translate(-50%, -50%);
}
.journey__dot::after {
  content: '';
  width: clamp(16px, 1.35vw, 26px);
  height: clamp(16px, 1.35vw, 26px);
  background: #c4c4c4;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.journey__num {
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(60px, 6.25vw, 120px);
  line-height: 1;
  color: #312c2b;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -2px;
}

.journey__text {
  position: absolute;
  z-index: 2;
  width: clamp(200px, 22vw, 420px);
}
.journey__text h4 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 1.3vw, 25px);
  font-weight: 600;
  color: #69381e;
  line-height: 1.2;
  margin: 0 0 clamp(8px, 0.73vw, 14px);
  letter-spacing: -0.02em;
}
.journey__text p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(13px, 0.94vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: #312c2b;
  letter-spacing: 0.03em;
  margin: 0;
}


.journey__step--1 .journey__dot {
    left: 8.2%;
    top: 4.67%;
}
.journey__step--1 .journey__num {
    left: 16%;
    top: 9%;
}
.journey__step--1 .journey__text {
    left: 0%;
    top: 28%;
}

.journey__step--2 .journey__dot {
    left: 49.41%;
    top: 35.44%;
}
.journey__step--2 .journey__num {
    left: 59%;
    top: 40%;
}
.journey__step--2 .journey__text {
    left: 34%;
    top: 57%;
}

.journey__step--3 .journey__dot {
    left: 87.65%;
    top: 85.34%;
}
.journey__step--3 .journey__num {
    left: 88%;
    top: 13%;
}
.journey__step--3 .journey__text {
    left: 79%;
    top: 38%;
}

.treatments {
  background: var(--brown-deep);
  padding: clamp(50px, 4.17vw, 80px) 0 clamp(40px, 3.13vw, 60px);
  color: #fff;
  position: relative;
}
.treatments__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(30px, 3.13vw, 60px);
  margin-bottom: clamp(30px, 3.13vw, 60px);
}
.treatments__head-left {
  flex: 1;
}
.treatments__head-right {
  flex: 1;
  max-width: 790px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 1.4vw, 27px);
}
.treatments__head-right p {
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: 1.67;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.treatments__head-left .section-title {
  margin-top: clamp(14px, 1.25vw, 24px);
}

.treatments__tabs {
  display: flex;
  gap: clamp(30px, 4.27vw, 82px);
  border-bottom: 1px solid rgba(255, 197, 155, 0.25);
  padding-bottom: 12px;
  position: relative;
  margin-bottom: clamp(24px, 2.4vw, 46px);
}
.treatments__tabs li {
  font-size: clamp(14px, 0.94vw, 18px);
  letter-spacing: -0.02em;
  color: #fff;
  cursor: pointer;
  padding-bottom: 12px;
  position: relative;
  transition: color 0.2s ease;
}
.treatments__tabs li.active {
  color: var(--peach);
  font-weight: 500;
}
.treatments__tabs li.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--peach);
}
.treatments__tabs li:hover {
  color: var(--peach);
}

.treatments__sliders {
  display: flex;
  gap: clamp(14px, 1.25vw, 24px);
  align-items: stretch;
  position: relative;
  width: calc(100% + 120px);
}
.treatments-main {
  flex: 0 0 clamp(480px, 44.27vw, 850px);
  min-width: 0;
  overflow: hidden;
}
.treatments-thumbs {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.treatments__slide {
  height: auto;
  position: relative;
  overflow: hidden;
border: 1px solid rgba(255, 197, 155, 0.20);
box-shadow: 0 0 53.2px -17px #000;
}
.treatments-main .swiper-slide {
  width: 100%;
}
.treatments-thumbs .swiper-slide {
  height: auto;
}
.treatments-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treatments-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treatments__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 39.61%, rgba(84, 25, 0, 0.90) 81.46%);
  pointer-events: none;
}
.slide-overlay--small {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.slide-text {
  position: absolute;
  bottom: clamp(24px, 2.08vw, 40px);
  left: clamp(20px, 2.08vw, 40px);
  right: clamp(20px, 2.08vw, 40px);
  z-index: 2;
}
.slide-text h4 {
  font-size: clamp(16px, 1.25vw, 24px);
  color: var(--peach);
  letter-spacing: -0.02em;
  margin: 0 0 clamp(8px, 0.625vw, 12px);
  font-weight: 400;
}
.slide-text p {
  font-size: clamp(13px, 0.885vw, 17px);
  color: #fff;
  line-height: 1.65;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(8px, 0.625vw, 12px);
  max-width: 670px;
}
.slide-link {
  display: inline-block;
  color: var(--cream);
  font-size: clamp(13px, 0.83vw, 16px);
  font-style: italic;
  font-weight: 300;
  text-decoration: underline;
  letter-spacing: -0.02em;
}

.treatments__footer {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 24px;
}
.treatments__footer .slider-arrow {
  flex-shrink: 0;
}
.treatments__footer .swiper-pagination {
  flex: 1;
}
.slider-arrow {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid var(--peach);
  color: var(--peach);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  background: transparent;
}
.slider-arrow:hover {
  background: var(--peach);
  color: var(--brown-deep);
}

.treatments-pagination {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative !important;
  width: auto !important;
  left: auto !important;
  transform: none !important;
      bottom: 0px !important;
}
.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #fff !important;
  opacity: 0.4;
  border-radius: 50%;
  margin: 0 4px !important;
  transition: all 0.2s ease;
}
.swiper-pagination-bullet-active {
  width: 14px !important;
  height: 14px !important;
  opacity: 1;
}

.results {
  background: var(--cream);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.results__leaf {
  position: absolute;
  top: 0;
  right: 0;
  width: 30vw;
  max-width: 560px;
  pointer-events: none;
  opacity: 1;
  display: block;
}
.results__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 60px;
}
.results__head-left {
  flex: 1;
}
.results__title {
  margin-top: 24px;
  font-size: 2.5vw;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.results .btn-rounded--outline {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--cream), var(--cream)) padding-box,
    linear-gradient(180deg, #541900 0%, #8F4D1E 33%, #FFC59B 66%, #541900 100%) border-box;
  color: var(--brown-light);
}
.results .btn-rounded--outline:hover {
  background:
    linear-gradient(var(--brown-deep), var(--brown-deep)) padding-box,
    linear-gradient(180deg, #541900 0%, #8F4D1E 33%, #FFC59B 66%, #541900 100%) border-box;
  color: #fff;
}

.resultsSwiper {
  overflow: visible;
}

.result-arch-slide {
  width: 680px !important;
  height: 760px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.swiper-slide-active.result-arch-slide {
  z-index: 2;
}

.arch-inner {
  position: relative;
  width: 680px;
  height: 725px;
  border-radius: 500px 500px 0 0;
  transform: scale(0.735);
  transform-origin: bottom center;
  opacity: 0.55;
  transition:
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.55s ease;
  filter: saturate(0.7);
}
.swiper-slide-active .arch-inner {
  transform: scale(1);
  opacity: 1;
  filter: none;
}

.ba-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 500px 500px 0 0;
  overflow: hidden;
  user-select: none;
  --pos: 50%;
  z-index: 1;
  isolation: isolate;
  background: linear-gradient(180deg, #ffc59b 0%, #cb8754 55%, #69381e 100%);
}
.ba-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  pointer-events: none;
  display: block;
}

.ba-after {
  z-index: 1;
  pointer-events: none;
}

.ba-before-mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--pos);
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.ba-before-mask .ba-before {
  width: 680px;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2.5px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
}

.ba-handle {
  position: absolute;
  bottom: 56px;
  left: var(--pos);
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--peach);
  color: var(--brown-deep);
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  cursor: ew-resize;
  pointer-events: auto;
  z-index: 7;
  padding: 0;
  transition: transform 0.15s ease;
}
.ba-handle:hover {
  transform: translateX(-50%) scale(1.06);
}
.ba-handle:active {
  cursor: grabbing;
}
.ba-handle i {
  font-size: 11px;
}
.ba-handle .ba-dot {
  width: 5px;
  height: 5px;
  background: var(--brown-deep);
  border-radius: 50%;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.ba-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 1px;
  height: 1px;
  background: transparent;
}
.ba-range::-moz-range-thumb {
  width: 1px;
  height: 1px;
  background: transparent;
  border: 0;
}

.before-tag,
.after-tag {
  position: absolute;
  bottom: 36px;
  padding: 9px 22px;
  background: rgba(84, 25, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  z-index: 6;
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease 0.15s;
  pointer-events: none;
}
.before-tag {
  left: 36px;
}
.after-tag {
  right: 36px;
}

.arch-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to bottom,
    rgba(84, 25, 0, 0) 0%,
    rgba(84, 25, 0, 0.55) 100%
  );
  border-radius: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.swiper-slide-active .before-tag,
.swiper-slide-active .after-tag,
.swiper-slide-active .arch-fade {
  opacity: 1;
}
.swiper-slide-active .ba-divider {
  opacity: 1;
}
.swiper-slide-active .ba-wrap {
  cursor: ew-resize;
}

.swiper-slide:not(.swiper-slide-active) .ba-divider {
  opacity: 0;
}
.swiper-slide:not(.swiper-slide-active) .ba-handle {
  display: none;
}

.results-pagination {
  position: relative !important;
  margin-top: 20px;
  display: flex !important;
  justify-content: center;
  gap: 6px;
}
.results-pagination .swiper-pagination-bullet {
  background: var(--brown-mid) !important;
  opacity: 0.4;
  width: 10px;
  height: 10px;
}
.results-pagination .swiper-pagination-bullet-active {
  background: var(--brown-deep) !important;
  opacity: 1;
  width: 14px;
  height: 14px;
}

.testimonials {
  background: var(--cream);
  padding: 4rem 0;
  overflow: hidden;
}
.testimonials-container{
  width: 93vw;
  max-width: 100%;
  margin: auto 0 auto auto;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: minmax(640px, 1fr) 1.4fr;
  gap: 60px;
  align-items: flex-start;
}
.testimonials__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.testimonials__left .section-title {
  max-width: 700px;
}
.testimonials__title {
  font-size: 2.5vw;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.testimonials__left .section-subtitle {
  max-width: 567px;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.36px;
}

.patient-pills {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.pp {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  border: 4px solid var(--cream);
  overflow: hidden;
  margin-left: -23px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp:first-child {
  margin-left: 0;
}
.pp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pp--count {
  background: var(--brown-deep);
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

.testimonials__right {
  position: relative;
  min-width: 0;
  margin-right: -60px;
  clip-path: inset(0px -200vw 0px 0px);
}
.testimonialsSwiper {
  overflow: visible;
}
.t-card {
  background: var(--cream);
  border: 1px solid var(--brown-deep);
  padding: 48px 23px 34px;
  height: 319px;
  width: 415px !important;
}
.t-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #ccc;
  display: block;
}
.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-card__head h5 {
  font-size: 16px;
  font-weight: 400;
  color: #0a1f1a;
  margin: 0;
}
.t-card__body {
  font-size: 17px;
  line-height: 24px;
  color: #0a1f1a;
  font-weight: 300;
  margin: 33px 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-card__date {
  font-size: 14px;
  opacity: 0.8;
  color: #0a1f1a;
}
.testimonials__nav {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}
.testimonials__nav .slider-arrow {
  width: 60px;
  height: 60px;
  border-color: var(--brown-light);
  color: var(--brown-light);
}
.testimonials__nav .slider-arrow:hover {
  background: var(--brown-deep);
  border-color: var(--brown-deep);
  color: #fff;
}

.doctors {
  background: var(--brown-deep);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.doctors__deco {
  position: absolute;
  right: 0;
  top: 80px;
  width: 30vw;
  max-width: 520px;
  pointer-events: none;
  opacity: 1;
}
.doctors__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.doctors__title {
  font-size: clamp(26px, 2.5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.doctors__subtitle {
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: 30px;
  letter-spacing: -0.36px;
}
.doctorsSwiper {
  overflow: hidden;
  padding-bottom: 80px;
  width: 100%;
}
.doctor-card {
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.doctor-card img {
  width: 100%;
  height: auto;
  display: block;
}
.doctors-pagination {
  position: absolute !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
}

.numbers {
  background: var(--cream);
  padding: 4rem 0;
  position: relative;
}
.numbers::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28vw;
  height: 28vw;
  background: url('../images/number/1.svg') no-repeat left bottom / contain;
  pointer-events: none;
  z-index: 1;
}
.numbers__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.numbers__left .section-title {
  margin-top: 24px;
}
.numbers__left .section-subtitle {
    margin-bottom: 60px;
    font-size: clamp(14px, 0.9375vw, 18px);
    margin-top: 1rem;
}

.numbers__stats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: 64px;
  position: relative;
  padding: 20px 0 0;
}
.numbers__stats::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  transform: translateY(-55%);
  height: 1px;
  background: rgba(105, 56, 30, 0.3);
  pointer-events: none;
}


.num-stat--tl {
  grid-column: 1 / span 4;
}
.num-stat--tr {
  grid-column: 6 / span 5;
}
.num-stat--bl {
  grid-column: 3 / span 4;
}
.num-stat--br {
  grid-column: 8 / span 5;
}

.num-stat h3 {
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.33;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.num-stat p {
  font-size: clamp(13px, 0.833vw, 16px);
  line-height: 28px;
  color: var(--brown-deep);
  letter-spacing: 0.24px;
  margin: 0;
  max-width: 275px;
}

.begin-card {
  background: var(--brown-deep);
  color: #fff;
  padding: 45px;
  width: 565px;
  max-width: 100%;
  margin-left: auto;
}
.begin-card__eyebrow {
  color: var(--peach);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.begin-card__eyebrow .dash {
  background: var(--peach);
}
.begin-card__title {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 16px;
  color: #fff;
}
.begin-card hr {
  border: 0;
  border-top: 1px solid rgba(255, 197, 155, 0.25);
  margin: 0 0 16px;
}
.begin-card__desc {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 24px;
}
.begin-card__btn {
  display: block;
  width: 100%;
  height: 51px;
  border: 1px solid var(--peach);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  line-height: 49px;
  margin-bottom: 12px;
  transition: all 0.25s ease;
  background: transparent;
}
.begin-card__btn:hover {
  background: var(--peach);
  color: var(--brown-deep);
}

.faq {
  background: var(--cream);
  padding: 4rem 0;
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 28vw;
  height: 28vw;
  background: url('../images/faq/1.svg') no-repeat left top / contain;
  pointer-events: none;
  z-index: 0;
}
.faq__head {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.faq__title {
  font-size: clamp(26px, 2.5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.faq__subtitle {
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: 30px;
  letter-spacing: -0.36px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq__list .accordion-item {
  border: 1px solid var(--brown-light);
  border-radius: 0 !important;
  background: transparent;
  overflow: hidden;
}
.faq__list .accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 40px;
  font-size: clamp(15px, 0.9375vw, 18px);
  font-weight: 500;
  color: var(--brown-mid);
  line-height: 1.5;
  text-align: left;
  background: transparent;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: inherit;
}
.faq__list .accordion-button::after {
  display: none;
}
.faq__list .accordion-button:not(.collapsed) {
  background: var(--brown-deep);
  color: #fff;
  font-weight: 400;
  box-shadow: none !important;
}
.faq__list .accordion-item:has(.accordion-button:not(.collapsed)) {
  border: 0.5px solid var(--brown-light);
}
.faq__list .accordion-button .faq-plus {
  display: inline-block;
  font-size: 16px;
  color: var(--brown-light);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__list .accordion-button .faq-minus {
  display: none;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__list .accordion-button:not(.collapsed) .faq-plus {
  display: none;
}
.faq__list .accordion-button:not(.collapsed) .faq-minus {
  display: inline-block;
}
.faq__list .accordion-collapse {
  background: var(--brown-deep);
}
.faq__list .accordion-body {
  padding: 0 40px 21px;
}
.faq-divider {
  border: 0;
  border-top: 1px solid rgba(255, 197, 155, 0.25);
  margin: 0 0 21px;
}
.faq__list .accordion-body p {
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: 30px;
  color: #fff;
  margin: 0;
}

.faq__viewmore {
  margin-top: 40px;
  text-align: center;
}
.faq__viewmore .btn-rounded--outline {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--cream), var(--cream)) padding-box,
    linear-gradient(180deg, #541900 0%, #8F4D1E 35%, #FFC59B 65%, #541900 100%) border-box;
}
.faq__viewmore .btn-rounded--outline:hover {
  background:
    linear-gradient(var(--brown-deep), var(--brown-deep)) padding-box,
    linear-gradient(180deg, #541900 0%, #8F4D1E 35%, #FFC59B 65%, #541900 100%) border-box;
  color: #fff;
}

.final-cta {
  position: relative;
  padding: 120px 0;
  color: var(--brown-mid);
  overflow: hidden;
  text-align: center;
  background: var(--cream);
  min-height: 572px;
  display: flex;
  align-items: center;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
}
.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;

}

.final-container{
  width: 85vw;
  max-width: 100%;
  margin: auto;
}
.final-cta__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}
.final-cta .eyebrow {
  font-size: clamp(14px, 0.9375vw, 18px);
}
.final-cta__title {
  text-align: left;
}
.final-cta__title strong {
  font-style: italic;
  font-weight: 400;
  color: var(--brown-deep);
}
.final-cta__buttons {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 10px;
}
.final-cta__btn {
  min-width: 323px;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--cream), var(--cream)) padding-box,
    linear-gradient(180deg, #541900 0%, #8F4D1E 25%, #FFC59B 50%, #541900 75%, #8F4D1E 100%) border-box;
}
.final-cta__btn:hover {
  background:
    linear-gradient(var(--brown-deep), var(--brown-deep)) padding-box,
    linear-gradient(180deg, #541900 0%, #8F4D1E 25%, #FFC59B 50%, #541900 75%, #8F4D1E 100%) border-box;
  color: #fff;
}
.cta-star {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}
.final-cta__call {
  color: var(--brown-light);
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  background: var(--brown-deep);
  color: #fff;
  padding: 22px 0;
}
.footer__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  line-height: 1.7;
}
.footer__brand {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 500;
}
.footer__address {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
.footer__contact {
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.iniya-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.iniya-modal__dialog {
  box-sizing: border-box;
}
.iniya-modal__dialog * {
  box-sizing: border-box;
}
.iniya-modal.open {
  display: flex;
}
@media (max-height: 800px) {
  .iniya-modal {
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.iniya-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 6, 0, 0.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.25s ease;
}
.iniya-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--cream);
  box-shadow: 0 32px 80px rgba(84, 25, 0, 0.25), 0 0 0 1px rgba(84, 25, 0, 0.12);
  overflow: hidden;
  animation: popIn 0.35s cubic-bezier(0.2, 0.7, 0.3, 1.2);
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--brown-deep);
}
.iniya-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(84, 25, 0, 0.1);
  color: var(--brown-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 5;
  transition: all 0.2s ease;
  border: 1px solid rgba(84, 25, 0, 0.15);
  cursor: pointer;
}
.iniya-modal__close:hover {
  background: var(--brown-deep);
  color: #fff;
  transform: rotate(90deg);
}
.iniya-modal__inner {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.iniya-modal__right {
  padding: 36px 40px 38px;
  background: var(--cream);
  position: relative;
  overflow-y: auto;
  width: 100%;
}
.iniya-modal__right .form-card__begin {
  color: var(--brown-mid);
}
.iniya-modal__right .form-card__begin .dash {
  background: var(--brown-mid);
}
.iniya-modal__title {
  font-size: clamp(22px, 1.77vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown-deep);
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.3px;
}
.iniya-modal__desc {
  font-size: 13.5px;
  color: var(--brown-mid);
  margin: 0 0 4px;
  line-height: 1.6;
}
.iniya-modal__desc .accent {
  color: var(--brown-deep);
  font-weight: 500;
}
.iniya-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.iniya-modal__right .form-card__divider {
  border-top-color: rgba(84, 25, 0, 0.15);
}
.iniya-modal__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.iniya-modal.success .iniya-modal__form {
  display: none;
}
.iniya-modal.success .iniya-modal__desc {
  display: none;
}
.iniya-modal.success .iniya-modal__success {
  display: block;
}
.im-success-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--brown-deep);
  color: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  animation: pop 0.4s ease;
}
.iniya-modal__success h4 {
  font-size: 24px;
  color: var(--brown-deep);
  margin: 0 0 10px;
}
.iniya-modal__success p {
  color: var(--brown-mid);
  margin: 0 0 24px;
}
.im-close-success {
  height: 46px;
  padding: 0 30px;
  background: var(--brown-deep);
  color: #fff;
  border-radius: 0;
  font-weight: 500;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes pop {
  from {
    transform: scale(0);
  }
  60% {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}


@media (max-width: 1680px) {
  .section-wrap {
    padding: 0 60px;
  }
  .header-inner {
    padding: 0 60px;
  }
  .hero__inner {
    padding: 180px 60px 60px;
  }


}

@media (max-width: 1440px) {
  .section-title {
    font-size: clamp(26px, 2.9vw, 42px);
  }
  .hero__title {
    font-size: clamp(26px, 2.9vw, 42px);
  }
  .hero {
    min-height: max(100vh, 900px);
  }
  .hero__inner {
    gap: 40px;
    padding: 156px 40px 60px;
    align-items: flex-start;
  }
  .hero__content {
    width: 520px;
  }
  .hero__form-card {
    width: 500px;
    padding: 28px 30px;
  }
  .form-card__title {
    font-size: clamp(20px, 1.94vw, 28px);
  }
  .form-field input,
  .form-field select {
    height: 46px;
    font-size: 14px;
  }
  .form-field {
    margin-bottom: 12px;
  }
  .form-field-row {
    margin-bottom: 12px;
  }
  .t-card {
    width: 380px !important;
  }
  .problems__head {
    gap: 60px;
  }
  .testimonials__grid {
    grid-template-columns: minmax(500px, 1fr) 1.4fr;
    gap: 40px;
  }
}

@media (max-width: 1200px) {
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(84, 25, 0, 0.35) 0%,
      rgba(84, 25, 0, 0.55) 35%,
      rgba(84, 25, 0, 0.75) 65%,
      rgba(84, 25, 0, 0.90) 100%
    );
  }
  .section-wrap {
    padding: 0 40px;
  }
  .header-inner {
    padding: 0 40px;
  }
  .footer__inner {
    padding: 0 40px;
  }
  .hero__inner {
    flex-direction: column;
    padding: 150px 40px 60px;
    align-items: center;
  }
  .hero__content {
    width: 100%;
    max-width: 720px;
  }
  .hero__form-card {
    width: 100%;
    max-width: 600px;
  }
  .hero {
    min-height: auto;
  }
  .hero__title {
    font-size: clamp(24px, 3.8vw, 38px);
  }
  .section-title {
    font-size: clamp(26px, 3.8vw, 38px);
  }
  .problems__head {
    flex-direction: column;
    gap: 30px;
  }
  .problems__head-left,
  .problems__head-right {
    max-width: 100%;
  }
  .treatments__head,
  .results__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .treatments__slide--lg {
    width: 100% !important;
    height: 480px;
  }
  .treatments__slide {
    height: 480px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .testimonials__left .section-title,
  .testimonials__left .section-subtitle {
    max-width: 100%;
  }
  .numbers__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .begin-card {
    margin-left: 0;
    width: 100%;
    max-width: 600px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }
  .footer__address,
  .footer__contact {
    text-align: center;
  }
  .result-card--main {
    width: 580px;
    height: 620px;
  }
  .result-card--side {
    width: 380px;
    height: 430px;
  }
}



@media (max-width: 992px) {
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(84, 25, 0, 0.40) 0%,
      rgba(84, 25, 0, 0.60) 35%,
      rgba(84, 25, 0, 0.78) 65%,
      rgba(84, 25, 0, 0.92) 100%
    );
  }
  .final-container{
    width: 90vw;
  }
  .section-wrap {
    padding: 0 32px;
  }
  .header-inner {
    padding: 0 32px;
    min-height: 76px;
  }
  .footer__inner {
    padding: 0 32px;
  }
  .brand-img {
    height: 56px;
  }
  .site-header {
    padding: 4px 0;
  }
  .hero__inner {
    padding: 130px 32px 50px;
    gap: 40px;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__desc {
    font-size: 16px;
    line-height: 26px;
  }
  .hero__features {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .section-title {
    font-size: 32px;
    letter-spacing: -0.6px;
  }
  .section-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
  .btn-rounded {
    height: 54px;
    font-size: 16px;
  }
  .problems {
    padding: 3rem 0;
    overflow-x: hidden;
  }
  .custom-container {
    width: 90vw;
  }
  .problems__head {
    align-items: center;
    text-align: center;
  }
  .problems__head-left .eyebrow {
    justify-content: center;
  }
  .problems__head-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .problems__grid {
    overflow: hidden;
    position: relative;
  }
  .problems__grid .swiper-wrapper {
    display: flex !important;
    width: 100% !important;
    gap: 0;
  }
  .problems__grid .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
    height: auto !important;
  }
  .problems-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
  }
  .thin-divider {
    margin: 40px 0;
  }
  .treatments {
    padding: 60px 0 50px;
  }
  .treatments__tabs {
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 12px;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .treatments__tabs::-webkit-scrollbar {
    display: none;
  }
  .treatments__tabs li {
    white-space: nowrap;
    font-size: clamp(14px, 4vw, 16px);
  }
  .treatments__sliders {
    flex-direction: column;
    width: 100%;
    gap: 18px;
  }
  .treatments-main,
  .treatments-thumbs {
    flex: 1 1 auto;
    width: 100%;
  }

      .treatments-thumbs {
        display: none;
    }
  .treatments__slide,
  .treatments__slide--lg {
    width: 100% !important;
    height: 100%;
  }
  .treatments-thumbs .swiper-slide {
    height: 360px;
  }
  .slide-text {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }
  .slide-text h4 {
    font-size: clamp(16px, 5.5vw, 22px);
  }
  .slide-text p {
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.6;
  }
  .slider-arrow {
    width: 60px;
    height: 60px;
  }
  .journey {
    padding:3rem 0;
  }
  .journey::before,
  .journey::after {
    display: none;
  }
  .journey__intro {
    padding: 0 20px;
    max-width: 100%;
  }
  .journey__stage {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .journey__line {
    display: none;
  }
  .journey__step {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    background: #fff8f3;
    border: 1px solid rgba(143, 77, 30, 0.22);
    border-radius: 12px;
    padding: 20px 20px 24px;
    overflow: hidden;
    pointer-events: auto;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }
  .journey__step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(84, 25, 0, 0.10);
    border-color: rgba(143, 77, 30, 0.50);
  }
  .journey__step--3 { right: auto; }
  .journey__dot {
    display: none;
  }
  .journey__num {
    position: relative;
    left: auto !important;
    top: auto !important;
    right: auto;
    bottom: auto;
    display: block;
    font-size: clamp(56px, 18vw, 90px);
    line-height: 1;
    opacity: 0.10;
    margin: 0 0 10px 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .journey__step:hover .journey__num {
    opacity: 0.18;
  }
  .journey__text {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
  }
  .journey__text h4 {
    font-size: clamp(15px, 4.5vw, 20px);
    margin-bottom: 8px;
  }
  .journey__text p {
    font-size: clamp(13px, 3.8vw, 14px);
    line-height: 1.65;
    margin: 0;
  }
  .results {
    padding: 3rem 0;
  }
  .result-slide {
    gap: 14px;
    height: auto;
    padding-bottom: 30px;
  }
  .result-card--main {
    width: 75vw;
    max-width: 520px;
    height: 580px;
  }
  .result-card--side {
    width: 18vw;
    max-width: 160px;
    height: 380px;
    display: none;
  }
  .ba-handle {
    bottom: 60px;
    width: 64px;
    height: 64px;
  }
  .before-tag,
  .after-tag {
    bottom: 30px;
    font-size: 14px;
    padding: 7px 16px;
  }
  .before-tag {
    left: 40px;
  }
  .after-tag {
    right: 40px;
  }
  .testimonials {
    padding: 4rem 0;
  }
  .testimonials-container {
    width: 90vw;
    margin: auto;
  }
  .testimonials__title {
    font-size: clamp(22px, 6vw, 36px);
  }
  .t-card {
    width: 360px !important;
    height: 290px;
    padding: 36px 22px 26px;
  }
  .t-card__body {
    font-size: 15px;
    margin: 22px 0 12px;
  }
  .doctors {
    padding: 3rem 0;
  }
  .numbers {
    padding: 3rem 0;
  }
  .num-stat h3 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .num-stat p {
    font-size: 15px;
    line-height: 24px;
  }
  .numbers__stats {
    gap: 24px 30px;
  }
  .begin-card {
    padding: 32px;
  }
  .begin-card__title {
    font-size: 28px;
  }
  .faq {
    padding: 3rem 0;
  }
  .faq__list .accordion-button {
    padding: 18px 22px;
    font-size: 16px;
  }
  .faq__list .accordion-body {
    padding: 0 22px 18px;
  }
  .faq__list .accordion-body p {
    font-size: 15px;
    line-height: 26px;
  }
  .final-cta {
    padding: 80px 0;
    min-height: auto;
  }
  .final-cta__inner {
    gap: 22px;
  }
  .final-cta__buttons {
    gap: 20px;
  }
  .footer {
    padding: 1rem 0;
  }
}

@media (max-width: 768px) {
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(84, 25, 0, 0.45) 0%,
      rgba(84, 25, 0, 0.65) 30%,
      rgba(84, 25, 0, 0.80) 60%,
      rgba(84, 25, 0, 0.92) 100%
    );
  }
      .slider-arrow {
        width: 40px;
        height: 40px;
    }
    .testimonials__nav .slider-arrow {
    width: 40px;
    height: 40px;
}
  .stat-circle {
  width: 130px;
  height: 130px;
}
.numbers__left .section-subtitle {
    margin-bottom: 1rem;
}
.faq__head {
    margin-bottom: 1.2rem;
}
      .btn-rounded {

        font-size: 14px;
    }
  .section-wrap {
    padding: 0 24px;
  }
  .header-inner {
    padding: 0 20px;
    min-height: 64px;
  }
  .footer__inner {
    padding: 0 24px;
  }
  .brand-img {
    height: 48px;
  }
  .header-inner .btn-rounded {
    min-width: auto;
    padding: 0 18px;
    height: 44px;
    font-size: 14px;
  }
  body {
    padding-bottom: 56px;
  }
  .side-cta {
    display: flex;
    flex-direction: row;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
    z-index: 999;
    gap: 0;
  }
  .side-cta__item {
    flex: 1;
    flex-direction: row;
    height: 56px;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    border-radius: 0;
    border: none;
    border-top: 1px solid #8F4D1E;
  }
  .side-cta__item > span:first-child {
    writing-mode: horizontal-tb;
    transform: none;
    flex: unset;
  }
  .side-cta__icon {
    margin-top: 0;
  }
  .side-cta__icon i {
    font-size: 18px;
  }
  .side-icon-img {
    width: 22px;
    height: 22px;
  }
  .hero__inner {
    padding: 110px 20px 50px;
    gap: 32px;
  }
  .hero__title {
    font-size: 30px;
    line-height: 1.25;
  }
  .hero__desc {
    font-size: 15px;
    line-height: 24px;
  }
  .hero__stats-circles {
    transform: scale(0.8);
    transform-origin: left center;
  }
  .hero__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature-tick {
    font-size: 14px;
  }
  .hero__form-card {
    padding: 22px 20px;
  }
  .form-card__title {
    font-size: 24px;
  }
  .form-field-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }
  .form-field--small {
    flex: 1 !important;
  }
  .form-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ff-item {
    font-size: 12px;
  }
  .treatments__sliders {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }
  .treatments-main {
    flex: 1 1 auto;
    width: 100%;
  }
  .treatments-thumbs {
    display: none;
  }
  .treatments__slide,
  .treatments__slide--lg {
    width: 100% !important;
    height: 420px;
  }
  .slide-text h4 {
    font-size: clamp(15px, 5vw, 20px);
  }
  .slide-text p {
    font-size: clamp(13px, 3.5vw, 14px);
    line-height: 1.57;
  }
  .slide-link {
    font-size: clamp(12px, 3.5vw, 14px);
  }
  .treatments__head-right {
    width: 100%;
    max-width: 100%;
  }
  .results__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0px;
    margin-bottom: 32px;
  }
  .results__title {
    font-size: clamp(22px, 6vw, 32px);
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin-top: 16px;
  }

  .result-arch-slide {
    width: calc(100vw - 48px) !important;
    height: auto !important;
    aspect-ratio: 680 / 725;
  }
  .arch-inner {
    width: 100%;
    height: 100%;
  }
  .ba-before-mask .ba-before {
    width: calc(100vw - 48px);
  }

  .ba-handle {
    width: 48px;
    height: 48px;
    bottom: 28px;
    font-size: 10px;
    border-width: 3px;
  }
  .before-tag,
  .after-tag {
    bottom: 14px;
    font-size: 12px;
    padding: 5px 12px;
    letter-spacing: 0;
  }
  .before-tag {
    left: 16px;
  }
  .after-tag {
    right: 16px;
  }
  .testimonials__nav {
    justify-content: center;
  }
  .testimonials__right {
    margin-right: 0;
    clip-path: none;
    overflow: hidden;
    width: 100%;
  }
  .testimonialsSwiper {
    overflow: hidden !important;
  }
  .testimonialsSwiper .swiper-slide {
    width: 100% !important;
  }
  .t-card {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    min-height: 260px;
    padding: 28px 20px;
  }
  .doctors__deco {
    width: 45vw;
    top: 40px;
    opacity: 0.5;
  }
  .doctors .section-wrap { overflow: hidden; }
  .doctorsSwiper {
    overflow: hidden !important;
    padding-bottom: 50px;
  }
  .doctors-pagination {
    bottom: 10px !important;
  }
  .numbers__stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
  }

  .numbers__stats::after {
    display: none;
  }
  .num-stat--tl, .num-stat--tr,
  .num-stat--bl, .num-stat--br {
    grid-column: auto;
  }
  .numbers::before {
    width: 50vw;
    height: 50vw;
  }
  .num-stat h3 {
    font-size: 32px;
    line-height: 1.1;
  }
  .num-stat p {
    font-size: 13px;
    line-height: 20px;
  }
  .begin-card {
    padding: 26px 22px;
  }
  .begin-card__title {
    font-size: 24px;
  }
  .begin-card__desc {
    font-size: 14px;
  }
  .begin-card__btn {
    font-size: 15px;
    height: 48px;
    line-height: 46px;
  }
  .faq__list .accordion-button {
    padding: 16px 18px;
    font-size: 14px;
  }
  .faq__list .accordion-button .faq-plus,
  .faq__list .accordion-button .faq-minus {
    font-size: 14px;
  }
  .faq__list .accordion-body {
    padding: 0 18px 16px;
  }
  .faq__list .accordion-body p {
    font-size: 14px;
    line-height: 24px;
  }
  .faq-divider {
    margin-bottom: 14px;
  }
  .final-cta {
    padding: 60px 0;
  }
  .final-cta__inner {
    align-items: center;
    padding: 0 24px;
  }
  .final-cta__title {
    text-align: center;
  }
  .final-cta__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    max-width: 340px;
  }
  .final-cta__btn {
    min-width: 100%;
  }
  .final-cta__call {
    text-align: center;
  }
  .footer__inner {
    padding: 14px 24px;
    gap: 8px;
    font-size: 12px;
  }
  .footer__brand {
    font-size: 18px;
  }
  .footer__address,
  .footer__contact {
    font-size: 12px;
    line-height: 1.5;
  }
  .section-title {
    font-size: 28px;
  }
 
  .iniya-modal {
    padding: 10px;
  }
  .iniya-modal__dialog {
    max-width: 100%;
    width: 100%;
    max-height: calc(100vh - 20px);
  }
  .iniya-modal__right {
    padding: 24px 20px;
  }
  .iniya-modal__title {
    font-size: 22px;
  }
  .iniya-modal__close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(84, 25, 0, 0.55) 0%,
      rgba(84, 25, 0, 0.72) 30%,
      rgba(84, 25, 0, 0.88) 60%,
      rgba(84, 25, 0, 0.96) 100%
    );
  }
  .hero__inner {
    padding: 100px 2px 40px;
  }
  .hero__title {
    font-size: 26px;
  }
  .section-title {
    font-size: 24px;
  }
  .hero__stats-circles {
    transform: scale(0.65);
    transform-origin: left center;
  }
  .hero__divider {
    width: 100%;
  }
  .hero__rating {
    flex-wrap: wrap;
    gap: 6px;
  }
  .form-card__begin {
    font-size: 12px;
  }
  .testimonials__grid {
    gap: 36px;
  }
  .patient-pills {
    flex-wrap: nowrap;
  }
  .pp {
    width: 64px;
    height: 64px;
    margin-left: -18px;
    border-width: 3px;
  }
  .pp--count {
    font-size: 13px;
  }
  .treatments__slide,
  .treatments__slide--lg {
    height: 380px;
  }
  .result-card--main {
    height: 420px;
  }
  .ba-handle {
    width: 50px;
    height: 50px;
    bottom: 30px;
  }
  .before-tag,
  .after-tag {
    display: block;
    bottom: 14px;
    font-size: 11px;
    padding: 4px 10px;
  }
  .before-tag {
    left: 12px;
  }
  .after-tag {
    right: 12px;
  }
  .num-stat h3 {
    font-size: 28px;
  }
  .num-stat p {
    font-size: 12px;
    line-height: 18px;
  }
  .numbers__stats {
    gap: 18px 18px;
  }
  .begin-card {
    padding: 22px 18px;
  }
  .begin-card__title {
    font-size: 22px;
  }
  .footer__inner {
    font-size: 11px;
  }
}
