* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #050505;
  background: #ffffff;
  overflow-x: hidden;
}

.site-header {
  width: 100%;
  background: #f1eeeb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(5, 5, 5, 0.06);
}

.floating-wa {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.floating-wa img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.navbar {
  width: min(1260px, calc(100% - 48px));
  min-height: 105px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.navbar__logo {
  display: block;
  width: 178px;
  height: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar__menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #050505;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.navbar__menu a:hover,
.navbar__menu a:focus-visible {
  color: #183f70;
}

.navbar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: #183f70;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 180ms ease;
}

.navbar__toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  background: #f1eeeb;
  padding: 16px 24px 18px;
}

.hero__inner {
  width: min(1162px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(430px, 500px);
  align-items: center;
  gap: 54px;
}

.hero__content {
  color: #0d376a;
}

.hero__content h1 {
  margin: 0 0 18px;
  color: #173867;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.08;
}

.hero__content h1 span,
.hero__subtitle strong {
  color: #ddb133;
}

.hero__subtitle,
.hero__program,
.hero__byline,
.hero__badge {
  margin: 0;
}

.hero__subtitle {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.hero__subtitle strong {
  font-weight: 800;
}

.hero__program {
  margin-top: 26px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.hero__byline {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 6px 20px;
  min-height: 39px;
  color: #153a6d;
  background: #ddb133;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.1;
}

.hero__media {
  justify-self: end;
  width: min(100%, 500px);
  position: relative;
    width: 100%;
    overflow: hidden;
}


.hero__media .slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity .8s ease;
}

.hero__media .slide.active{
    position: relative;
    opacity: 1;
}


.hero__media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(462px, calc(100% - 32px));
  min-height: 47px;
  margin: 16px auto 0;
  padding: 10px 24px;
  color: #ffffff;
  background: #05c56b;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.proof-slider {
  background: #f1eeeb;
  padding: 46px 24px 42px;
  border-top: 3px solid #efeeec;
}

.proof-slider__inner {
  width: min(1300px, 100%);
  margin: 0 auto;
}

.proof-slider__header {
  text-align: center;
}

.proof-slider__header h2 {
  width: min(1220px, 100%);
  margin: 0 auto 24px;
  color: #153a6d;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.12;
}

.proof-slider__header h2 span {
  color: #ddb133;
}

.proof-slider__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(970px, 100%);
  min-height: 45px;
  margin: 0 auto 25px;
  padding: 8px 26px;
  color: #ffffff;
  background: #153a6d;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.proof-slider__subtitle {
  margin: 0 auto 46px;
  color: #1a1a1a;
  font-size: 27px;
  line-height: 1.2;
}

.proof-carousel {
  width: min(1300px, 100%);
  margin: 0 auto;
}

.proof-carousel__track {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.proof-carousel__slide {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6666 / 2220;
  object-fit: contain;
}

/* button wa */

.wa-section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(640px, 100%);
  min-height: 54px;
  margin: 30px auto 0;
  padding: 11px 24px;
  color: #ffffff;
  background: #05c56b;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(5, 197, 107, 0.22);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
}

.wa-section-cta--blue {
  background: #05c56b;
  box-shadow: 0 10px 22px rgba(5, 197, 107, 0.22);
}

.wa-section-cta__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffffff;
}

.wa-section-cta__icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.program-mechanism .wa-section-cta,
.early-signs .wa-section-cta,
.screening-tests .wa-section-cta,
.proof-slider .wa-section-cta {
  display: flex;
}

.activity-banner {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6666 / 2220;
  object-fit: contain;
}

.benefits {
  background: #ffffff;
  border-top: 3px solid #efeeec;
}

.benefits__inner {
  width: min(1160px, calc(100% - 48px));
  min-height: 134px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 48px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit__icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f7f0ed;
}

.benefit__icon img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.benefit h2 {
  margin: 0;
  color: #050505;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.28;
}

.program-results-gallery {
  background: #ffffff;
  padding: 46px 24px;
}

.program-results-carousel {
  width: min(1300px, 100%);
  margin: 0 auto;
}

.program-results-carousel__track {
  position: relative;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
}

.program-results-carousel__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  /* max-height: 560px; */
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(5, 5, 5, 0.1);
  opacity: 0;
  transition: opacity 600ms ease;
}

.program-results-carousel__slide.is-active {
  position: relative;
  opacity: 1;
}

.program-results-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(21, 58, 109, 0.9);
  box-shadow: 0 8px 20px rgba(5, 5, 5, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.program-results-carousel__control:hover,
.program-results-carousel__control:focus-visible {
  background: #153a6d;
  transform: translateY(-50%) scale(1.05);
}

.program-results-carousel__control span {
  display: block;
  margin-top: -4px;
  font-size: 44px;
  line-height: 1;
}

.program-results-carousel__control--prev {
  left: 18px;
}

.program-results-carousel__control--next {
  right: 18px;
}

.program-results-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.program-results-carousel__dots button {
  width: 17px;
  height: 17px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #050505;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 180ms ease, transform 180ms ease;
}

.program-results-carousel__dots button.is-active {
  opacity: 1;
  transform: scale(1.06);
}

.medical-alert {
  background: #f1eeeb;
  color: #113a68;
  padding: 31px 24px 29px;
  text-align: center;
}

.medical-alert__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.medical-alert h2 {
  max-width: 1240px;
  margin: 0 auto;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.16;
}

.medical-alert h2 span {
  display: block;
  white-space: nowrap;
}

.medical-alert p {
  margin: 24px auto 20px;
  color: #113a68;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.18;
}

.medical-alert p strong {
  font-weight: 800;
}

.medical-alert a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 310px;
  min-height: 45px;
  padding: 9px 24px;
  color: #ffffff;
  background: #dfb235;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.conventional-treatment {
  background: #ffffff;
  padding: 62px 24px 48px;
}

.conventional-treatment__inner {
  width: min(1190px, 100%);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #113a68;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
}

.section-heading p {
  margin: 16px 0 0;
  color: #d8a72b;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.conventional-treatment__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.85fr);
  align-items: start;
  gap: 38px;
}

.conventional-treatment__copy {
  font-size: 21px;
  line-height: 1.42;
  text-align: justify;
}

.conventional-treatment__copy p {
  margin: 0;
}

.conventional-treatment__copy p + p {
  margin-top: 22px;
}

.conventional-treatment__copy strong {
  color: #123866;
  font-weight: 800;
}

.text-gold {
  color: #d7a431;
}

.conventional-treatment__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.conventional-treatment__image {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 18px;
}

.side-effects {
  width: min(100%, 430px);
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 22px;
}

.side-effect {
  text-align: center;
}

.side-effect img {
  display: block;
  width: 66px;
  height: 66px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.side-effect p {
  margin: 0;
  color: #d7a431;
  font-size: 17px;
  line-height: 1.18;
}

.references {
  background: #f1eeeb;
  padding: 18px 24px 17px;
}

.references__inner {
  width: min(1185px, 100%);
  margin: 0 auto;
  color: #0e3868;
  font-size: 14px;
  font-style: italic;
  line-height: 1.35;
}

.references p {
  margin: 0;
}

.references p + p {
  margin-top: 4px;
}

.references strong {
  font-weight: 800;
}

.autoimmune-education {
  background: #ffffff;
  padding: 31px 24px 52px;
}

.autoimmune-education__inner {
  width: min(1152px, 100%);
  margin: 0 auto;
}

.autoimmune-education__header {
  text-align: center;
}

.autoimmune-education__header h2 {
  margin: 0;
  color: #113a68;
  font-size: 37px;
  font-weight: 800;
  line-height: 1.18;
}

.autoimmune-education__header h2 span {
  color: #d8a72b;
}

.education-topics {
  margin: 78px auto 54px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 30px;
}

.education-topic {
  text-align: center;
}

.education-topic img {
  display: block;
  width: 74px;
  height: 74px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.education-topic p {
  margin: 0;
  color: #082f61;
  font-size: 20px;
  line-height: 1.18;
}

.autoimmune-definition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 505px);
  align-items: center;
  gap: 54px;
}

.autoimmune-definition__copy {
  color: #082f61;
}

.autoimmune-definition__copy h3 {
  margin: 0 0 18px;
  color: #d8a72b;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}

.autoimmune-definition__copy p {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  text-align: justify;
}

.autoimmune-definition__copy p + p {
  margin-top: 25px;
}

.autoimmune-definition__copy strong {
  font-weight: 800;
}

.autoimmune-definition__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.autoimmune-analogy {
  background: #ffffff;
  padding: 16px 24px 54px;
}

.autoimmune-analogy__inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  text-align: center;
}

.autoimmune-analogy h2 {
  margin: 0 0 14px;
  color: #113a68;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.autoimmune-analogy h2 span {
  color: #d8a72b;
}

.analogy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
}

.analogy-card {
  min-width: 0;
  color: #173867;
}

.analogy-card h3 {
  margin: 0 0 12px;
  color: #173867;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.analogy-card img,
.analogy-summary img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.analogy-card p {
  min-height: 34px;
  margin: 9px 0 0;
  color: #173867;
  font-size: 14px;
  line-height: 1.15;
}

.analogy-card--normal p {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  text-decoration: underline;
}

.analogy-card--danger h3,
.analogy-card--danger p {
  color: #b40000;
}

.analogy-summary {
  width: min(660px, 100%);
  margin: 34px auto 0;
}

.analogy-summary figcaption {
  margin-top: 10px;
  color: #173867;
  font-size: 15px;
  line-height: 1.2;
}

.analogy-summary strong {
  font-weight: 800;
}

.autoimmune-danger {
  background: #ffffff;
  padding: 16px 24px 56px;
}

.autoimmune-danger__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.autoimmune-danger__header {
  text-align: center;
}

.autoimmune-danger__header h2 {
  margin: 0;
  color: #113a68;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.12;
}

.autoimmune-danger__header h2 span,
.organ-specific h3 span,
.systemic-autoimmune h3 span {
  color: #d8a72b;
}

.autoimmune-danger__header p {
  margin: 18px 0 0;
  color: #082f61;
  font-size: 21px;
  line-height: 1.27;
}

.organ-specific {
  margin-top: 55px;
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(540px, 1fr);
  align-items: end;
  gap: 46px;
}

.organ-specific h3,
.systemic-autoimmune h3 {
  margin: 0;
  color: #07566a;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
}

.organ-specific__copy p {
  margin: 9px 0 0;
  color: #082f61;
  font-size: 21px;
  line-height: 1.2;
}

.organ-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 28px;
}

.organ-list article,
.disease-grid article {
  text-align: center;
}

.organ-list img {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 7px;
  object-fit: contain;
}

.organ-list p {
  margin: 0;
  color: #d8a72b;
  font-size: 18px;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.systemic-autoimmune {
  margin-top: 40px;
  text-align: center;
}

.systemic-autoimmune p {
  margin: 16px 0 0;
  color: #082f61;
  font-size: 21px;
  line-height: 1.2;
}

.disease-grid {
  width: min(780px, 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px 42px;
}

.disease-grid img {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  object-fit: cover;
  border-radius: 14px;
}

.disease-grid p {
  margin: 0;
  color: #082f61;
  font-size: 19px;
  line-height: 1.18;
}

.disease-grid strong {
  font-weight: 800;
}

.sle-section {
  background: #d7aa31;
  padding: 40px 24px 42px;
}

.sle-section__inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  color: #082f61;
  text-align: center;
}

.sle-section__header h2 {
  margin: 0;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.22;
}

.sle-organs {
  width: min(610px, 100%);
  margin: 30px auto 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 28px;
}

.sle-organs article,
.sle-symptoms article {
  text-align: center;
}

.sle-organs img {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto 13px;
  object-fit: contain;
}

.sle-organs p {
  margin: 0;
  color: #082f61;
  font-size: 18px;
  line-height: 1.15;
}

.sle-section h3 {
  margin: 0 0 34px;
  color: #082f61;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
}

.sle-symptoms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.sle-symptoms img {
  display: block;
  width: 190px;
  height: 130px;
  margin: 0 auto 16px;
  object-fit: cover;
  border-radius: 25px;
}

.sle-symptoms p {
  margin: 0;
  color: #082f61;
  font-size: 20px;
  line-height: 1.16;
}

.autoimmune-causes {
  background: #ffffff;
  padding: 45px 24px 42px;
}

.autoimmune-causes__inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  text-align: center;
}

.autoimmune-causes__header h2 {
  margin: 0;
  color: #113a68;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.18;
}

.autoimmune-causes__header h2 span {
  color: #d8a72b;
}

.autoimmune-causes__header p {
  margin: 22px 0 0;
  color: #082f61;
  font-size: 21px;
  line-height: 1.22;
}

.causes-list {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 42px;
}

.causes-list article {
  text-align: center;
}

.causes-list img {
  display: block;
  width: 98px;
  height: 98px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.causes-list p {
  margin: 0;
  color: #d7a431;
  font-size: 20px;
  line-height: 1.18;
}

.early-signs {
  background: #ffffff;
  padding: 28px 24px 48px;
}

.early-signs__inner {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}

.early-signs__header h2 {
  margin: 0;
  color: #113a68;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.16;
}

.early-signs__header h2 span {
  color: #d8a72b;
}

.early-signs-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 39px 42px;
  align-items: start;
}

.early-signs-grid article {
  grid-column: span 3;
  text-align: center;
}

.early-signs-grid article:nth-child(5) {
  grid-column: 2 / span 3;
}

.early-signs-grid article:nth-child(6),
.early-signs-grid article:nth-child(7) {
  grid-column: span 3;
}

.early-signs-grid img {
  display: block;
  width: 141px;
  height: 160px;
  margin: 0 auto 22px;
  object-fit: cover;
  border-radius: 23px;
}

.early-signs-grid p {
  margin: 0;
  color: #082f61;
  font-size: 20px;
  line-height: 1.15;
}

.screening-tests {
  background: #ffffff;
  padding: 8px 24px 31px;
}

.screening-tests__inner {
  width: min(885px, 100%);
  margin: 0 auto;
  text-align: center;
}

.screening-tests h2 {
  margin: 0 0 40px;
  color: #113a68;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.14;
}

.screening-tests h2 span {
  color: #d8a72b;
}

.test-list {
  display: grid;
  gap: 14px;
}

.test-card {
  min-height: 84px;
  padding: 10px 19px 12px;
  border: 2px solid #d8a72b;
  border-radius: 16px;
  text-align: left;
}

.test-card h3 {
  margin: 0;
  color: #d8a72b;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.02;
}

.test-card p {
  margin: 2px 0 0;
  color: #082f61;
  font-size: 20px;
  line-height: 1.12;
}

.test-card--featured {
  background: #173f70;
  border-color: #173f70;
}

.test-card--featured h3 {
  color: #ffffff;
}

.test-card--featured p {
  color: #f1b928;
}

.screening-tests__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(462px, 100%);
  min-height: 47px;
  margin-top: 24px;
  padding: 10px 24px;
  color: #ffffff;
  background: #05c56b;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.program-mechanism {
  background: #173f70;
  padding: 46px 24px 60px;
}

.program-mechanism__inner {
  width: min(1138px, 100%);
  margin: 0 auto;
  color: #ffffff;
}

.program-mechanism__header {
  text-align: center;
}

.program-mechanism__header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.16;
}

.program-mechanism__header h2 span {
  color: #d8a72b;
}

.program-mechanism__header p {
  margin: 24px 0 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.18;
}

.program-mechanism__header strong {
  font-weight: 800;
}

.mechanism-step {
  margin-top: 40px;
}

.mechanism-step__title {
  min-height: 110px;
  padding: 13px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f1eeeb;
  border-radius: 17px;
  color: #082f61;
}

.mechanism-step__title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.14;
}

.mechanism-step__title p {
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 1.18;
}

.mechanism-cards {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.mechanism-cards--two {
  grid-template-columns: 1fr 1fr;
}

.mechanism-cards--split {
  grid-template-columns: 0.82fr 1.18fr;
}

.mechanism-card {
  min-height: 158px;
  padding: 28px 32px;
  border: 2px solid #d8a72b;
  border-radius: 17px;
  color: #ffffff;
}

.mechanism-card h4,
.mechanism-card h5 {
  margin: 0 0 19px;
  color: #d8a72b;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.1;
}

.mechanism-card h5 {
  margin-top: 24px;
  color: #ffffff;
  font-size: 25px;
}

.mechanism-card ul {
  margin: 0;
  padding-left: 22px;
}

.mechanism-card li {
  font-size: 20px;
  line-height: 1.18;
}

.mechanism-video {
  min-height: 235px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #082f61;
  font-size: 29px;
  font-style: italic;
  line-height: 1;
}

.mechanism-video--closing {
  margin-top: 44px;
  min-height: 250px;
}

.program-video {
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  margin: 34px auto 34px;
}

.program-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.mechanism-summary {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 18px;
}

.mechanism-summary__card {
  padding: 28px 30px;
  border: 2px solid #f1eeeb;
  border-radius: 16px;
  color: #ffffff;
}

.mechanism-summary__card h3 {
  margin: 16px 0 18px;
  color: #d8a72b;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.14;
}

.mechanism-summary__card h3:first-child {
  margin-top: 0;
}

.mechanism-summary__card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
  text-align: justify;
}

.mechanism-summary__card ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.mechanism-summary__card li {
  font-size: 20px;
  line-height: 1.18;
}

.mechanism-summary__card strong {
  font-weight: 800;
}

.food-restrictions {
  background: #173f70;
  padding: 20px 24px 20px;
}

.food-restrictions__inner {
  width: min(1110px, 100%);
  margin: 0 auto;
  color: #ffffff;
}

.food-restrictions__header {
  text-align: center;
}

.food-restrictions__header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.15;
}

.food-restrictions__header h2 span {
  color: #d8a72b;
}

.food-restrictions__header p,
.food-restrictions__note {
  margin: 18px auto 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.18;
  text-align: justify;
}

.restricted-foods {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 48px;
  text-align: center;
}

.restricted-foods img {
  display: block;
  width: 86px;
  height: 86px;
  margin: 0 auto 15px;
  object-fit: contain;
}

.restricted-foods p {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.18;
}

.food-restrictions__note {
  margin-top: 34px;
}

.food-restrictions__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(462px, 100%);
  min-height: 47px;
  margin: 36px auto 0;
  padding: 10px 24px;
  color: #ffffff;
  background: #05c56b;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.patient-story {
  background: #ffffff;
  padding: 42px 24px 56px;
}

.patient-story__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  color: #082f61;
}

.patient-story__label {
  display: inline-flex;
  align-items: center;
  min-height: 43px;
  margin: 0 0 34px;
  padding: 8px 17px;
  color: #ffffff;
  background: #d8a72b;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.patient-story__header {
  text-align: center;
}

.patient-story__header h2 {
  margin: 0;
  color: #082f61;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.patient-story__header h2 span {
  color: #d8a72b;
}

.patient-story__header p {
  margin: 24px 0 0;
  color: #082f61;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.patient-story__header p span {
  color: #c90000;
}

.patient-story__overview {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 0.8fr 1.22fr;
  gap: 32px;
  align-items: stretch;
  min-width: 0;
}

.patient-profile,
.initial-complaints {
  min-width: 0;
  border: 2px solid #082f61;
  border-radius: 15px;
  padding: 18px 27px 22px;
}

.patient-profile h3,
.initial-complaints h3 {
  margin: 0 0 20px;
  color: #082f61;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.patient-profile dl,
.patient-profile div,
.patient-profile dt,
.patient-profile dd {
  margin: 0;
}

.patient-profile div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 8px;
  color: #082f61;
  font-size: 20px;
  line-height: 1.18;
}

.patient-profile dt {
  font-weight: 800;
}

.initial-complaints {
  text-align: center;
}

.initial-complaints h3 {
  color: #c90000;
}

.complaints-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 24px;
}

.complaints-list img {
  display: block;
  width: 62px;
  height: 62px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.complaints-list p {
  margin: 0;
  color: #c90000;
  font-size: 17px;
  line-height: 1.1;
}

.patient-story__subheading {
  margin: 32px 0 24px;
  color: #c90000;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.14;
  text-align: center;
}

.patient-story__image {
  display: block;
  width: min(945px, 100%);
  margin: 0 auto;
  height: auto;
}

.patient-story--muted {
  background: #f1eeeb;
}

.patient-story__inner--narrow {
  width: min(1024px, 100%);
}

.patient-story__label--blue {
  background: #173f70;
}

.patient-story__overview--compact {
  width: min(865px, 100%);
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr 1.02fr;
}

.complaints-list--three {
  width: min(330px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.complaints-list--three img {
  width: 77px;
  height: 77px;
  object-fit: cover;
  border-radius: 7px;
}

.patient-story__image--lab {
  width: min(760px, 100%);
}

.patient-result {
  margin-top: 42px;
  text-align: center;
}

.patient-result h3 {
  margin: 0;
  color: #082f61;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.14;
}

.patient-result h3 span,
.patient-result__subheading span {
  color: #d8a72b;
}

.patient-improvements {
  width: min(865px, 100%);
  margin: 18px auto 44px;
  padding: 14px 30px 12px;
  border: 2px solid #d8a72b;
  border-radius: 15px;
}

.patient-improvements h4 {
  margin: 0 0 18px;
  color: #d8a72b;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.1;
}

.improvements-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 30px;
}

.improvements-list img {
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.improvements-list p {
  margin: 0;
  color: #123866;
  font-size: 16px;
  line-height: 1.18;
}

.patient-improvements--compact {
  width: min(565px, 100%);
  margin-top: 40px;
  padding: 13px 28px 18px;
}

.improvements-list--three {
  width: min(410px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

.improvements-list--three img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.improvements-list--three p {
  font-size: 17px;
}

.patient-result__subheading {
  margin-bottom: 30px;
  color: #07566a;
}

.medical-proof {
  width: min(1005px, 100%);
  margin: 42px auto 0;
  padding: 11px 25px 19px;
  border: 2px solid #d8a72b;
  border-radius: 15px;
  text-align: center;
}

.medical-proof h3 {
  margin: 0 0 12px;
  color: #173f70;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.12;
}

.medical-proof h3 span {
  color: #d8a72b;
}

.medical-proof p {
  margin: 0;
  color: #173f70;
  font-size: 20px;
  line-height: 1.16;
  text-align: justify;
}

.medical-proof strong {
  font-weight: 800;
}

.psoriasis-story {
  background: #173f70;
  padding: 17px 24px 0;
}

.psoriasis-story__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  color: #ffffff;
}

.psoriasis-story__header {
  margin-top: 39px;
  text-align: center;
}

.psoriasis-story__header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.15;
}

.psoriasis-story__header h2 span {
  color: #d8a72b;
}

.psoriasis-story__header p {
  margin: 22px 0 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.psoriasis-story__header p span,
.psoriasis-condition h3,
.psoriasis-story__subheading {
  color: #c90000;
}

.psoriasis-condition {
  margin: 41px auto 0;
  padding: 22px 31px;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 30px;
  border: 2px solid #f1eeeb;
  border-radius: 16px;
}

.psoriasis-condition img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.psoriasis-condition h3 {
  margin: 0 0 7px;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.1;
}

.psoriasis-condition p {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.18;
  text-align: justify;
}

.psoriasis-story__subheading {
  margin: 32px 0 40px;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.psoriasis-story__image {
  display: block;
  width: min(716px, 100%);
  margin: 0 auto;
  height: auto;
}

.psoriasis-story__image--vulgaris {
  width: min(565px, 100%);
}

.psoriasis-story__image--bullosa {
  width: min(760px, 100%);
}

.psoriasis-result {
  margin-top: 36px;
  padding-bottom: 54px;
  text-align: center;
}

.psoriasis-result > h3 {
  margin: 0 0 35px;
  color: #ffffff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.14;
}

.psoriasis-result > h3 span,
.psoriasis-story__subheading--gold,
.psoriasis-proof h3 span {
  color: #d8a72b;
}

.psoriasis-change {
  padding: 23px 33px;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 30px;
  border: 2px solid #f1eeeb;
  border-radius: 16px;
  text-align: left;
}

.psoriasis-change img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.psoriasis-change h4 {
  margin: 0 0 7px;
  color: #d8a72b;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.12;
}

.psoriasis-change p {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.18;
  text-align: justify;
}

.psoriasis-story__subheading--gold {
  margin-top: 21px;
}

.psoriasis-proof {
  width: min(990px, 100%);
  margin: 28px auto 0;
  padding: 13px 24px 19px;
  border: 2px solid #d8a72b;
  border-radius: 15px;
  text-align: center;
}

.psoriasis-proof h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.12;
}

.psoriasis-proof p {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
  text-align: justify;
}

.psoriasis-proof strong {
  font-weight: 800;
}

.faq-section {
  background: #f1eeeb;
  padding: 14px 24px 32px;
}

.faq-section__inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  color: #082f61;
}

.faq-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 39px;
  margin: 0 0 22px;
  padding: 8px 20px;
  color: #ffffff;
  background: #d8a72b;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.faq-section h2 {
  margin: 0 0 28px;
  color: #082f61;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list article {
  border: 2px solid #d8a72b;
  border-radius: 15px;
  overflow: hidden;
}

.faq-item__button {
  display: block;
  width: 100%;
  min-height: 94px;
  padding: 19px 28px 21px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-item__question {
  display: block;
  padding-right: 54px;
  margin: 0;
  color: #d8a72b;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.12;
}

.faq-item__button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: #d8a72b;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 220ms ease, background 180ms ease;
}

.faq-item__button.is-open::after {
  content: "-";
  background: #082f61;
  transform: translateY(-50%) rotate(180deg);
}

.faq-item__answer {
  display: block;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #082f61;
  font-size: 17px;
  line-height: 1.18;
  opacity: 0;
  transition: max-height 260ms ease, margin-top 260ms ease, opacity 200ms ease;
}

.faq-item__button.is-open .faq-item__answer {
  max-height: 140px;
  margin-top: 5px;
  opacity: 1;
}

.faq-item__button:focus-visible {
  outline: 3px solid rgba(216, 167, 43, 0.38);
  outline-offset: -5px;
}

.doctors-section {
  background: #d7b37d;
  padding: 57px 24px 55px;
}

.doctors-section__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 78px;
}

.doctors-section h2 {
  margin: 0;
  color: #173f70;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.38;
  text-align: center;
}

.doctor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.doctor-cards article {
  min-height: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(5, 5, 5, 0.2);
  overflow: hidden;
  color: #050505;
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
}

.doctor-cards img {
  display: block;
  width: 100%;
  max-width: 210px;
  height: 280px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.consult-section {
  background: #173f70;
  padding: 29px 24px 42px;
  color: #ffffff;
  text-align: center;
}

.consult-section__inner {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.consult-section h2 {
  margin: 0;
  color: #ffffff;
  font-size: 57px;
  font-weight: 800;
  line-height: 1.15;
}

.consult-section p {
  margin: 10px 0 0;
  font-size: 25px;
  line-height: 1.34;
}

.consult-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 60px;
  margin-top: 42px;
  padding: 10px 28px;
  color: #ffffff;
  background: #22c628;
  border-radius: 17px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.whatsapp-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #ffffff;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.consult-section .consult-section__visit {
  margin-top: 61px;
  font-size: 25px;
}

.site-footer {
  background: #000000;
  padding: 36px 24px 62px;
  color: #ffffff;
}

.site-footer__inner {
  width: min(1130px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 0.78fr;
  gap: 78px;
  align-items: start;
}

.footer-location__logo {
  display: block;
  width: 164px;
  height: auto;
  margin-bottom: 58px;
}

.footer-map {
  width: 374px;
  max-width: 100%;
  height: 220px;
  overflow: hidden;
  border: 1px solid #ffffff;
  border-radius: 17px;
  background: #000000;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-location h2 {
  margin: 32px 0 23px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 2px;
  text-align: center;
}

.footer-location address {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: 1px;
  text-align: center;
}

.footer-links {
  padding-top: 122px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 43px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.footer-links a {
  display: block;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.42;
  text-decoration: none;
}

.footer-contact {
  padding-top: 140px;
}

.footer-contact h2 {
  margin-bottom: 31px;
  font-weight: 400;
  letter-spacing: 4px;
}

.footer-contact h2 + .footer-socials,
.footer-contact .footer-phone + h2 {
  margin-top: 45px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.footer-phone span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #ffffff;
  border-radius: 50%;
  font-size: 26px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
}

.footer-socials img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-socials__link--tiktok {
  background: #ffffff;
  border-radius: 50%;
}

.footer-socials__link--tiktok img {
  width: 26px;
  height: 26px;
}

.patient-results__carousel {
  position: relative;
  width: min(100%, 1010px);
  aspect-ratio: 1600 / 2300;
  overflow: hidden;
  border-radius: 24px;
}

.patient-results__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms ease;
}

.patient-results__slide.is-active {
  opacity: 1;
}

.patient-results {
  background: #ffffff;
  padding: 2rem 0 2.7rem;
}

.patient-results__inner {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
}


.patient-results__control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
}

.patient-results__control::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #5f743c;
  border-right: 3px solid #5f743c;
}

.patient-results__control--prev {
  left: 16px;
}

.patient-results__control--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.patient-results__control--next {
  right: 16px;
}

.patient-results__control--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.patient-results__dots {
  display: flex;
  justify-content: center;
  gap: 1.05rem;
  margin: 1.55rem 0 2.25rem;
}

.patient-results__dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #050505;
  cursor: pointer;
  opacity: 1;
}

.patient-results__dots button.is-active {
  transform: scale(1.05);
}

@media (max-width: 980px) {
  .navbar {
    position: relative;
    width: min(100% - 32px, 1260px);
    min-height: 58px;
  }

  .navbar__logo {
    width: 118px;
  }

  .navbar__toggle {
    display: block;
  }

  .navbar__menu {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0 18px;
    background: #f1eeeb;
    border-top: 1px solid rgba(5, 5, 5, 0.08);
    box-shadow: 0 14px 24px rgba(5, 5, 5, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .navbar__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .navbar__menu a {
    width: 100%;
    padding: 10px 16px;
    font-size: 17px;
  }

  .hero {
    padding: 28px 16px 32px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__content h1 {
    font-size: 28px;
  }

  .hero__subtitle,
  .hero__program {
    font-size: 23px;
  }

  .hero__byline {
    font-size: 20px;
  }

  .hero__badge {
    font-size: 20px;
  }

  .hero__media {
    justify-self: center;
    max-width: 560px;
  }

  .proof-slider {
    padding: 38px 16px 34px;
  }

  .proof-slider__header h2 {
    font-size: 25px;
  }

  .proof-slider__pill {
    font-size: 22px;
  }

  .proof-slider__subtitle {
    margin-bottom: 30px;
    font-size: 22px;
  }

  .proof-carousel__control {
    width: 38px;
    height: 38px;
  }

  .proof-carousel__control span {
    font-size: 34px;
  }

  .proof-carousel__control--prev {
    left: 8px;
  }

  .proof-carousel__control--next {
    right: 8px;
  }

  .benefits__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 36px;
    padding: 28px 0;
  }

  .program-results-gallery {
    padding: 38px 16px;
  }

  .program-results-carousel__slide {
    max-height: 460px;
  }

  .program-results-carousel__control {
    width: 38px;
    height: 38px;
  }

  .program-results-carousel__control span {
    font-size: 34px;
  }

  .program-results-carousel__control--prev {
    left: 8px;
  }

  .program-results-carousel__control--next {
    right: 8px;
  }

  .medical-alert h2 {
    font-size: 28px;
  }

  .medical-alert h2 span {
    white-space: normal;
  }

  .medical-alert p {
    font-size: 19px;
  }

  .conventional-treatment {
    padding: 46px 16px 42px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading p {
    font-size: 20px;
  }

  .conventional-treatment__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .conventional-treatment__copy {
    font-size: 19px;
  }

  .conventional-treatment__image {
    max-width: 560px;
  }

  .references {
    padding: 18px 16px;
  }

  .autoimmune-education {
    padding: 34px 16px 44px;
  }

  .autoimmune-education__header h2 {
    font-size: 31px;
  }

  .education-topics {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    margin: 46px auto 42px;
  }

  .education-topic p {
    font-size: 18px;
  }

  .autoimmune-definition {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .autoimmune-definition__visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .autoimmune-analogy {
    padding: 12px 16px 42px;
  }

  .autoimmune-analogy h2 {
    font-size: 27px;
  }

  .analogy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .autoimmune-danger {
    padding: 24px 16px 44px;
  }

  .autoimmune-danger__header h2 {
    font-size: 32px;
  }

  .autoimmune-danger__header p,
  .organ-specific__copy p,
  .systemic-autoimmune p {
    font-size: 19px;
  }

  .organ-specific {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .organ-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }

  .disease-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sle-section {
    padding: 34px 16px 38px;
  }

  .sle-section__header h2 {
    font-size: 27px;
  }

  .sle-section h3 {
    font-size: 28px;
  }

  .sle-symptoms {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 28px;
  }

  .autoimmune-causes {
    padding: 38px 16px;
  }

  .autoimmune-causes__header h2 {
    font-size: 31px;
  }

  .autoimmune-causes__header p {
    font-size: 19px;
  }

  .causes-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 24px;
    margin-top: 42px;
  }

  .causes-list p {
    font-size: 18px;
  }

  .early-signs {
    padding: 34px 16px 42px;
  }

  .early-signs__header h2 {
    font-size: 31px;
  }

  .early-signs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 28px;
  }

  .early-signs-grid article,
  .early-signs-grid article:nth-child(5),
  .early-signs-grid article:nth-child(6),
  .early-signs-grid article:nth-child(7) {
    grid-column: auto;
  }

  .early-signs-grid article:last-child {
    grid-column: 1 / -1;
  }

  .screening-tests {
    padding: 22px 16px 34px;
  }

  .screening-tests h2 {
    margin-bottom: 30px;
    font-size: 31px;
  }

  .test-card h3 {
    font-size: 27px;
  }

  .test-card p {
    font-size: 18px;
  }

  .program-mechanism {
    padding: 38px 16px 46px;
  }

  .program-mechanism__header h2 {
    font-size: 28px;
  }

  .program-mechanism__header p {
    font-size: 19px;
  }

  .program-mechanism__header p br {
    display: none;
  }

  .mechanism-step__title {
    padding: 18px 22px;
  }

  .mechanism-step__title h3 {
    font-size: 25px;
  }

  .mechanism-step__title p,
  .mechanism-card li {
    font-size: 18px;
  }

  .mechanism-cards--two,
  .mechanism-cards--split {
    grid-template-columns: 1fr;
  }

  .mechanism-card h4 {
    font-size: 25px;
  }

  .mechanism-card h5 {
    font-size: 22px;
  }

  .mechanism-summary {
    grid-template-columns: 1fr;
  }

  .mechanism-summary__card h3 {
    font-size: 25px;
  }

  .mechanism-summary__card p,
  .mechanism-summary__card li {
    font-size: 18px;
  }

  .food-restrictions {
    padding: 34px 16px 28px;
  }

  .food-restrictions__header h2 {
    font-size: 31px;
  }

  .food-restrictions__header p,
  .food-restrictions__note {
    font-size: 18px;
  }

  .restricted-foods {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 24px;
  }

  .patient-story {
    padding: 36px 16px 46px;
  }

  .patient-story__header h2 {
    font-size: 32px;
  }

  .patient-story__header p {
    font-size: 24px;
  }

  .patient-story__overview {
    grid-template-columns: 1fr;
  }

  .patient-profile div {
    grid-template-columns: 170px 1fr;
  }

  .patient-result h3,
  .patient-result__subheading {
    font-size: 25px;
  }

  .improvements-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 20px;
  }

  .improvements-list--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .medical-proof p {
    font-size: 18px;
  }

  .psoriasis-story {
    padding: 24px 16px 0;
  }

  .psoriasis-story__header h2 {
    font-size: 31px;
  }

  .psoriasis-story__header p {
    font-size: 23px;
  }

  .psoriasis-condition {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .psoriasis-condition img {
    margin: 0 auto;
  }

  .psoriasis-result > h3 {
    font-size: 25px;
  }

  .psoriasis-change {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .psoriasis-change img {
    margin: 0 auto;
  }

  .psoriasis-proof p {
    font-size: 18px;
  }

  .faq-section {
    padding: 24px 16px 32px;
  }

  .faq-section h2 {
    font-size: 31px;
  }

  .faq-item__question {
    font-size: 23px;
  }

  .doctors-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .doctors-section h2 {
    font-size: 48px;
    line-height: 1.15;
  }

  .doctor-cards {
    width: min(100%, 620px);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .doctor-cards article {
    min-height: 0;
    padding: 8px;
    overflow: hidden;
    border-radius: 8px;
  }

  .doctor-cards img {
    max-width: none;
    height: auto;
  }

  .consult-section h2 {
    font-size: 42px;
  }

  .consult-section p {
    font-size: 21px;
  }

  .consult-section p br {
    display: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-location__logo {
    margin: 0 auto 32px;
  }

  .footer-map {
    margin: 0 auto;
  }

  .footer-links,
  .footer-contact {
    padding-top: 0;
    text-align: center;
  }

  .footer-socials,
  .footer-phone {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .proof-slider__header h2 {
    font-size: 22px;
  }

  .proof-slider__pill {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 18px;
  }

  .proof-slider__subtitle {
    font-size: 18px;
  }

  .proof-carousel__dots {
    gap: 10px;
  }

  .proof-carousel__dots button {
    width: 13px;
    height: 13px;
  }

  .patient-story {
    padding-left: 12px;
    padding-right: 12px;
  }

  .patient-story__inner,
  .patient-story__inner--narrow {
    width: 100%;
  }

  .patient-story__header h2 {
    font-size: 28px;
  }

  .patient-story__header p,
  .patient-story__subheading {
    font-size: 24px;
  }

  .patient-story__overview,
  .patient-story__overview--compact {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .patient-profile,
  .initial-complaints {
    width: 100%;
    padding: 18px 14px;
  }

  .patient-profile div {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    font-size: 18px;
  }

  .patient-profile dd {
    overflow-wrap: anywhere;
  }

  .complaints-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .complaints-list article:last-child {
    grid-column: 1 / -1;
  }

  .complaints-list--three {
    grid-template-columns: 1fr;
  }

  .complaints-list--three article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
.patient-results__control {
    width: 34px;
    height: 34px;
  }

  .patient-results__control--prev {
    left: 8px;
  }

  .patient-results__control--next {
    right: 8px;
  }
}

@media (max-width: 420px) {
  .navbar {
    width: min(100% - 24px, 1260px);
    min-height: 56px;
  }

  .navbar__logo {
    width: 112px;
  }

  .navbar__menu {
    top: 56px;
  }

  .hero__content h1 {
    font-size: 24px;
  }

  .hero__subtitle,
  .hero__program {
    font-size: 20px;
  }

  .hero__badge,
  .hero__cta {
    font-size: 16px;
  }

  .proof-slider__header h2 {
    font-size: 19px;
  }

  .proof-slider__pill,
  .proof-slider__subtitle {
    font-size: 16px;
  }


  .wa-section-cta {
    gap: 10px;
    min-height: 50px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .wa-section-cta__icon {
    width: 28px;
    height: 28px;
  }

  .wa-section-cta__icon img {
    width: 21px;
    height: 21px;
  }

  .benefits__inner {
    width: min(100% - 32px, 1160px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit__icon {
    width: 70px;
    height: 70px;
  }

  .benefit__icon img {
    width: 50px;
    height: 50px;
  }

  .benefit h2 {
    font-size: 18px;
  }

  .program-results-gallery {
    padding: 28px 12px;
  }

  .program-results-carousel__track {
    min-height: 190px;
  }

  .program-results-carousel__slide {
    max-height: 360px;
  }

  .program-results-carousel__dots {
    gap: 10px;
  }

  .program-results-carousel__dots button {
    width: 13px;
    height: 13px;
  }

  .medical-alert {
    padding: 28px 16px;
  }

  .medical-alert h2 {
    font-size: 23px;
  }

  .medical-alert p {
    font-size: 17px;
  }

  .medical-alert h2 br,
  .medical-alert p br {
    display: none;
  }

  .medical-alert a {
    min-width: 0;
    width: 100%;
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .section-heading p {
    font-size: 18px;
  }

  .conventional-treatment__copy {
    font-size: 17px;
    text-align: left;
  }

  .side-effects {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .side-effect p {
    font-size: 16px;
  }

  .autoimmune-education__header h2 {
    font-size: 25px;
  }

  .autoimmune-education__header h2 br {
    display: none;
  }

  .education-topics {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .education-topic img {
    width: 66px;
    height: 66px;
  }

  .autoimmune-definition__copy h3 {
    font-size: 26px;
  }

  .autoimmune-definition__copy p {
    font-size: 17px;
    text-align: left;
  }

  .autoimmune-analogy h2 {
    font-size: 24px;
  }

  .analogy-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .analogy-card h3 {
    font-size: 15px;
  }

  .analogy-card p,
  .analogy-summary figcaption {
    font-size: 13px;
  }

  .autoimmune-danger__header h2 {
    font-size: 27px;
  }

  .autoimmune-danger__header p br,
  .systemic-autoimmune p br {
    display: none;
  }

  .organ-specific h3,
  .systemic-autoimmune h3 {
    font-size: 26px;
  }

  .organ-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .organ-list article:last-child {
    grid-column: 1 / -1;
  }

  .disease-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .disease-grid p {
    font-size: 18px;
  }

  .sle-section__header h2 {
    font-size: 23px;
  }

  .sle-section__header h2 br {
    display: none;
  }

  .sle-organs {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 18px;
  }

  .sle-organs article:last-child {
    grid-column: 1 / -1;
  }

  .sle-section h3 {
    font-size: 24px;
  }

  .sle-symptoms {
    grid-template-columns: 1fr;
  }

  .sle-symptoms img {
    width: min(100%, 220px);
  }

  .sle-symptoms p {
    font-size: 18px;
  }

  .autoimmune-causes__header h2 {
    font-size: 25px;
  }

  .autoimmune-causes__header h2 br {
    display: none;
  }

  .causes-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .causes-list img {
    width: 86px;
    height: 86px;
  }

  .early-signs__header h2 {
    font-size: 25px;
  }

  .early-signs__header h2 br {
    display: none;
  }

  .early-signs-grid {
    grid-template-columns: 1fr;
  }

  .early-signs-grid article:last-child {
    grid-column: auto;
  }

  .early-signs-grid p {
    font-size: 18px;
  }

  .screening-tests h2 {
    font-size: 25px;
  }

  .test-card {
    padding: 12px 14px;
  }

  .test-card h3 {
    font-size: 23px;
  }

  .test-card p {
    font-size: 16px;
  }

  .screening-tests__cta {
    font-size: 16px;
  }

  .program-mechanism__header h2 {
    font-size: 23px;
  }

  .program-mechanism__header h2 br {
    display: none;
  }

  .mechanism-step__title {
    min-height: 0;
    padding: 16px;
  }

  .mechanism-step__title h3,
  .mechanism-card h4 {
    font-size: 22px;
  }

  .mechanism-step__title p,
  .mechanism-card li {
    font-size: 16px;
  }

  .mechanism-card {
    padding: 20px 18px;
  }

  .mechanism-video {
    min-height: 160px;
    font-size: 22px;
  }

  .mechanism-video--closing {
    min-height: 170px;
  }

  .mechanism-summary__card {
    padding: 20px 18px;
  }

  .mechanism-summary__card h3 {
    font-size: 22px;
  }

  .mechanism-summary__card p,
  .mechanism-summary__card li {
    font-size: 16px;
    text-align: left;
  }

  .food-restrictions__header h2 {
    font-size: 25px;
  }

  .restricted-foods {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .restricted-foods p {
    font-size: 18px;
  }

  .food-restrictions__cta {
    font-size: 16px;
  }

  .patient-story__label {
    font-size: 16px;
  }

  .patient-story__header h2 {
    font-size: 26px;
  }

  .patient-story__header p,
  .patient-story__subheading {
    font-size: 21px;
  }

  .patient-profile,
  .initial-complaints {
    padding: 18px 16px;
  }

  .patient-profile h3,
  .initial-complaints h3 {
    font-size: 24px;
  }

  .patient-profile div {
    grid-template-columns: 1fr;
    gap: 1px;
    font-size: 17px;
  }

  .complaints-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .complaints-list article:last-child {
    grid-column: 1 / -1;
  }

  .complaints-list--three {
    grid-template-columns: 1fr;
  }

  .complaints-list--three article:last-child {
    grid-column: auto;
  }

  .patient-improvements {
    padding: 16px;
  }

  .patient-improvements h4 {
    font-size: 22px;
  }

  .improvements-list {
    grid-template-columns: 1fr;
  }

  .improvements-list--three {
    grid-template-columns: 1fr;
  }

  .medical-proof {
    padding: 16px;
  }

  .medical-proof h3 {
    font-size: 22px;
  }

  .medical-proof p {
    font-size: 16px;
    text-align: left;
  }

  .psoriasis-story__header h2 {
    font-size: 25px;
  }

  .psoriasis-story__header p,
  .psoriasis-story__subheading {
    font-size: 21px;
  }

  .psoriasis-condition {
    padding: 18px 16px;
  }

  .psoriasis-condition h3 {
    font-size: 24px;
  }

  .psoriasis-condition p {
    font-size: 16px;
    text-align: left;
  }

  .psoriasis-result > h3,
  .psoriasis-proof h3 {
    font-size: 22px;
  }

  .psoriasis-change {
    padding: 18px 16px;
  }

  .psoriasis-change h4 {
    font-size: 23px;
  }

  .psoriasis-change p,
  .psoriasis-proof p {
    font-size: 16px;
    text-align: left;
  }

  .faq-section__label {
    font-size: 16px;
  }

  .faq-section h2 {
    font-size: 25px;
  }

  .faq-item__button {
    padding: 16px;
  }

  .faq-item__question {
    padding-right: 42px;
    font-size: 20px;
  }

  .faq-item__button::after {
    right: 16px;
    width: 30px;
    height: 30px;
    font-size: 24px;
  }

  .faq-item__answer {
    font-size: 16px;
  }

  .doctors-section {
    padding: 36px 16px;
  }

  .doctors-section h2 {
    font-size: 42px;
    line-height: 1.12;
  }

  .doctor-cards {
    grid-template-columns: 1fr;
    width: min(100%, 280px);
    gap: 18px;
  }

  .doctor-cards article {
    min-height: 0;
    font-size: 20px;
  }

  .consult-section {
    padding: 32px 16px 38px;
  }

  .consult-section h2 {
    font-size: 34px;
  }

  .consult-section p,
  .consult-section .consult-section__visit {
    font-size: 18px;
  }

  .consult-section a {
    width: 100%;
    font-size: 20px;
  }

  .site-footer {
    padding: 32px 16px 44px;
  }

  .footer-location h2 {
    font-size: 22px;
  }

  .footer-location address {
    font-size: 16px;
  }

  .footer-links h2,
  .footer-contact h2 {
    font-size: 25px;
  }

  .footer-links a {
    font-size: 22px;
  }

  .footer-phone {
    font-size: 20px;
  }

  .footer-socials {
    justify-content: center;
    gap: 28px;
  }

  .footer-socials a {
    width: 40px;
    height: 40px;
  }

  .footer-socials img {
    width: 32px;
    height: 32px;
  }

  .footer-socials__link--tiktok img {
    width: 24px;
    height: 24px;
  }

  .patient-results__carousel {
    border-radius: 14px;
  }
}
