.cspd-hero {
  position: relative;
  padding: 40px 0 50px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff6e9 0%, #f5f5f5 100%);
}

.cspd-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 40px;
  width: min(100% - 32px, 1425px);
  margin: 0 auto;
}

.cspd-hero__title,
.cspd-hero__model {
  position: relative;
  z-index: 1;
}

.cspd-hero__title img,
.cspd-hero__model img {
  display: block;
  width: 100%;
  height: auto;
}

.cspd-hero__title img {
  max-width: 620px;
  margin-left: auto;
}

.cspd-hero__model img {
  max-width: 760px;
}

.cspd-hero__deal {
  position: relative;
  z-index: 10;
  width: min(100% - 32px, 1200px);
  margin: 42px auto 0;
  padding: 40px 60px;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 42px;
  box-shadow: 0 8px 12px rgb(191 147 78 / 27%);
}

.cspd-deal-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.cspd-deal-deco--ribbon {
  top: 0;
  left: 50%;
  max-width: 200px;
  transform: translate(-50%, -100%);
}

.cspd-deal-deco--gift-left {
  bottom: -20px;
  left: -50px;
  max-width: 110px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.cspd-deal-deco--gift-right {
  top: -75px;
  right: -108px;
  max-width: 180px;
  opacity: 0.8;
  filter: blur(4px);
}

.cspd-deal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.cspd-deal__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid #eee;
}

.cspd-deal__price-img {
  max-width: 280px;
  height: auto;
  margin-bottom: 25px;
}

.cspd-deal__timer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cspd-deal__timer-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.cspd-deal__countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cspd-deal__time-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.cspd-deal__time-sep {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
}

.cspd-deal__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cspd-deal__form .wpcf7-form br {
  display: none;
}

.cspd-deal__form .wpcf7-form p {
  margin: 0;
}

.cspd-deal__form input[type="text"],
.cspd-deal__form input[type="email"],
.cspd-deal__form input[type="tel"],
.cspd-deal__form select {
  width: 100%;
  padding: 14px 21px;
  margin-top: 12px;
  border: none;
  border-radius: 99px;
  outline: none;
  background: #e8e8e8;
  color: #333;
  font-family: "roboto";
  font-size: 15px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
}

.cspd-deal__form input:focus,
.cspd-deal__form select:focus {
  background: #f0f0f0;
}

.cspd-deal__form .deal-form-submit-wrapper {
  text-align: center;
}

.cspd-deal__form .wpcf7-submit {
  display: inline-block;
  padding: 14px 30px;
  margin-top: 5px;
  border: none;
  border-radius: 99px;
  background: linear-gradient(90deg, #a88143 0%, #d4ae70 50%, #a88143 100%);
  background-size: 200% auto;
  color: #fff;
  font-family: "Geomanist", var(--font-body);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #e8d9a8,
    inset -1px -1px 2px #e8d9a8;
  transition: all 0.4s ease;
}

.cspd-deal__form .wpcf7-submit:hover {
  background-position: right center;
  box-shadow: 0 15px 30px rgba(168, 129, 67, 0.6), inset 1px 1px 2px #e8d9a8,
    inset -1px -1px 2px #e8d9a8;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cspd-hero {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .cspd-hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100% - 30px, 430px);
    padding-top: 4.5rem;
  }

  .cspd-hero__title img {
    max-width: 100%;
    margin: 0 auto;
  }

  .cspd-hero__model img {
    max-width: 100%;
    margin: 0 auto;
  }

  .cspd-hero__model {
    margin-bottom: -40px;
  }

  .cspd-hero__deal {
    width: auto;
    margin: 50px 15px 0;
    padding: 27px 20px 17px;
    border-radius: 20px;
  }

  .cspd-deal-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cspd-deal__banner {
    padding-right: 0;
    padding-bottom: 25px;
    border-right: none;
    border-bottom: 2px dashed #eee;
  }

  .cspd-deal__price-img {
    max-width: 187px;
  }

  .cspd-deal__timer {
    gap: 10px;
  }

  .cspd-deal__timer-label {
    font-size: 14px;
  }

  .cspd-deal__time-box {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .cspd-deal__form {
    position: relative;
    top: -25px;
  }

  .cspd-deal__form .wpcf7-submit {
    position: relative;
    top: -9px;
    padding: 12px 36px;
    margin-top: 0;
    font-size: 21px;
    font-weight: 400;
    white-space: nowrap;
  }

  .cspd-deal__form .deal-form-submit-wrapper {
    position: absolute;
    bottom: -73px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
  }

  .cspd-deal-deco--ribbon {
    max-width: 150px;
  }

  .cspd-deal-deco--gift-left {
    bottom: -15px;
    left: -20px;
    max-width: 70px;
  }

  .cspd-deal-deco--gift-right {
    top: -42px;
    right: -32px;
    max-width: 100px;
  }
}

/* ==========================================================================
   REUSABLE SECTION TITLE
   ========================================================================== */
.cspd-section-title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cspd-section-title__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.cspd-section-title__sub {
  color: #b69655;
  text-align: center;
  font-family: "UVN SangSong";
  font-size: 121px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -2.42px;
}

.cspd-section-title__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4.5px 27px 0;
  border: 0.9px solid #fff;
  border-radius: 151.2px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 12.42px 0 rgba(255, 255, 255, 0.6) inset,
    0 4.05px 9.18px 0 rgba(191, 147, 78, 0.39);
  color: #7f6337;
  font-family: SVN-Famous;
  font-size: 49px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
  text-transform: uppercase;
}

.cspd-section-title__main {
  background: var(
    --unnamed,
    linear-gradient(0deg, #b69655 20.77%, #e3c871 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-family: SVN-Famous;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   SECTION: CONDITIONS
   ========================================================================== */
.cspd-conditions {
  position: relative;
  padding: 92px 0 86px;
  background: #f5f5f5;
}

.cspd-conditions__decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.cspd-conditions__decor--light-left {
  top: 4%;
  left: -12%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgb(191 147 78 / 50%) 0%,
    transparent 70%
  );
  filter: blur(60px);
}

.cspd-conditions__decor--light-right {
  right: -10%;
  bottom: 4%;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgb(191 147 78 / 46%) 0%,
    transparent 70%
  );
  filter: blur(80px);
}

.cspd-conditions__decor--star {
  top: -100px;
  right: -70px;
  width: 620px;
  opacity: 0.62;
}

.cspd-conditions__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(520px, 1fr);
  align-items: center;
  gap: 22px;
  width: min(100% - 32px, 1425px);
  margin: 0 auto;
}

.cspd-conditions__mobile-title {
  display: none;
}

.cspd-conditions__visual {
  position: relative;
  min-height: 430px;
  left: 27px;
}

.cspd-conditions__photo {
  position: absolute;
  top: 50%;
  left: 42%;
  width: 514px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.78);
  transition: opacity 0.7s ease, transform 0.7s ease, left 0.7s ease,
    filter 0.7s ease;
}

.cspd-conditions__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
}

.cspd-conditions__photo.is-active {
  z-index: 4;
  left: 57%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cspd-conditions__photo.is-prev,
.cspd-conditions__photo.is-next {
  z-index: 2;
  opacity: 0.42;
  filter: saturate(0.7);
}

.cspd-conditions__photo.is-prev {
  left: -30px;
  transform: translate(-50%, -50%) scale(0.74);
}

.cspd-conditions__photo.is-next {
  right: -30px;
  transform: translate(-45%, -50%) scale(0.74);
}

.cspd-conditions__content-card {
  position: relative;
  z-index: 3;
  padding: 42px 52px 36px;
  border-radius: 34.364px;
  background: linear-gradient(283deg, #eed4aa 0.27%, #f5f5f5 71.04%);
  box-shadow: 0 4px 10px 0 rgba(191, 147, 78, 0.4);
}

.cspd-section-title--conditions {
  align-items: flex-start;
  text-align: left;
}

.cspd-section-title--conditions .cspd-section-title__row {
  justify-content: center;
  flex-wrap: nowrap;
}

.cspd-section-title--conditions .cspd-section-title__sub {
  margin-right: 15px;
  font-size: clamp(68px, 5.7vw, 104px);
  letter-spacing: -2px;
  white-space: nowrap;
}

.cspd-section-title--conditions .cspd-section-title__pill {
  flex: 0 0 auto;
  font-size: clamp(24px, 2vw, 36px);
  transform: translateY(13px);
}

.cspd-section-title--conditions .cspd-section-title__main {
  margin-top: 18px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.03;
}

.cspd-conditions__status-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 30px 0 34px;
  padding: 10px 28px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 12px rgba(191, 147, 78, 0.15) inset;
  color: #7f6337;
  font-family: "Geomanist", var(--font-body);
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cspd-conditions__status-pill.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.cspd-conditions__warning {
  max-width: 600px;
  margin: 0 auto 24px;
  color: #7f6337;
  font-family: "Geomanist", var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.cspd-conditions__cta-wrap {
  display: flex;
  justify-content: center;
}

.cspd-conditions__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 53px;
  padding: 22.714px 30.286px;
  gap: 45.429px;
  border: 0.757px solid rgba(255, 255, 255, 0.9);
  border-radius: 169.6px;
  background: linear-gradient(90deg, #a88143 0%, #d4ae70 50%, #a88143 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #e8d9a8,
    inset -1px -1px 2px #e8d9a8;
  color: #fff;
  font-family: "Geomanist", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: cspd-pulse-gentle 2.5s ease-in-out infinite;
}

.cspd-conditions__cta:hover {
  background-position: right center;
  box-shadow: 0 15px 30px rgba(168, 129, 67, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

@keyframes cspd-pulse-gentle {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #e8d9a8,
      inset -1px -1px 2px #e8d9a8, 0 0 0 0 rgba(191, 147, 78, 0.4);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #e8d9a8,
      inset -1px -1px 2px #e8d9a8, 0 0 0 8px rgba(191, 147, 78, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #e8d9a8,
      inset -1px -1px 2px #e8d9a8, 0 0 0 0 rgba(191, 147, 78, 0);
  }
}

@media (max-width: 991px) {
  .cspd-section-title__sub {
    font-size: 72px;
    letter-spacing: -1.44px;
  }

  .cspd-section-title__pill {
    font-size: 30px;
    padding: 4px 18px 0;
  }

  .cspd-section-title__main {
    font-size: 42px;
  }

  .cspd-conditions {
    padding: 0px 0 58px;
  }

  .cspd-conditions__decor {
    display: none;
  }

  .cspd-conditions__container {
    display: flex;
    flex-direction: column;
    width: min(100% - 32px, 430px);
    gap: 22px;
  }

  .cspd-conditions__mobile-title {
    display: block;
    width: 100%;
    order: 1;
  }

  .cspd-conditions__desktop-title {
    display: none;
  }

  .cspd-section-title--conditions {
    align-items: center;
    text-align: center;
  }

  .cspd-section-title--conditions .cspd-section-title__row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cspd-section-title--conditions .cspd-section-title__sub {
    width: 100%;
    margin-right: 0;
    font-size: clamp(68px, 20vw, 92px);
  }

  .cspd-section-title--conditions .cspd-section-title__pill {
    font-size: clamp(26px, 7.8vw, 34px);
    transform: translateY(-2px);
    margin-top: 20px;
  }

  .cspd-section-title--conditions .cspd-section-title__main {
    max-width: 390px;
    margin-top: 6px;
    font-size: clamp(39px, 11vw, 54px);
    line-height: 1.05;
  }

  .cspd-conditions__visual {
    order: 2;
    width: 100%;
    min-height: 392px;
  }

  .cspd-conditions__photo {
    top: 50%;
    left: 50%;
    width: min(82vw, 318px);
    border-radius: 28px;
  }

  .cspd-conditions__photo.is-active {
    left: 44%;
    transform: translate(-50%, -50%) scale(1);
  }

  .cspd-conditions__photo.is-prev {
    left: 0;
    transform: translate(-50%, -50%) scale(0.78);
  }

  .cspd-conditions__photo.is-next {
    left: 100%;
    transform: translate(-50%, -50%) scale(0.78);
  }

  .cspd-conditions__content-card {
    display: contents;
  }

  .cspd-conditions__status-pill {
    order: 3;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 19px;
  }

  .cspd-conditions__warning {
    order: 4;
    width: 100%;
    margin: 0;
    padding: 0 8px;
    font-size: 18px;
    line-height: 1.55;
    text-align: justify;
  }

  .cspd-conditions__cta-wrap {
    order: 5;
    width: 100%;
    margin-top: 4px;
  }

  .cspd-conditions__cta {
    height: 48px;
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* ==========================================================================
   PHUC HOI TITLE SYSTEM
   ========================================================================== */
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-section-title {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-section-title__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-section-title__sub {
  color: #b69655;
  text-align: center;
  font-family: "UVN SangSong";
  font-size: 121px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -2.42px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-section-title__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4.5px 27px 0;
  border: 0.9px solid #fff;
  border-radius: 151.2px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 12.42px 0 rgba(255, 255, 255, 0.6) inset,
    0 4.05px 9.18px 0 rgba(191, 147, 78, 0.39);
  color: #7f6337;
  font-family: SVN-Famous;
  font-size: 49px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
  text-transform: uppercase;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-section-title__main {
  background: linear-gradient(0deg, #b69655 20.77%, #e3c871 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: SVN-Famous;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 112%;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   SECTION: DOCTOR DIAGNOSIS
   ========================================================================== */
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis {
  position: relative;
  overflow: hidden;
  padding: 20px 0 80px;
  background: #f5f5f5;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__container {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__light {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__light--left {
  top: 195px;
  left: 0;
  width: min(33vw, 430px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__light--right {
  top: 176px;
  right: 0;
  width: min(35vw, 460px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__title {
  margin-bottom: 95px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-diagnosis__title
  .phuc-hoi-section-title__row:first-child {
  flex-wrap: nowrap;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-diagnosis__title
  .phuc-hoi-section-title__sub {
  font-size: clamp(74px, 6vw, 106px);
  letter-spacing: -2.12px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-diagnosis__title
  .phuc-hoi-section-title__pill {
  margin-left: 14px;
  font-size: clamp(24px, 2vw, 34px);
  transform: translateY(23px);
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-diagnosis__title
  .phuc-hoi-section-title__main {
  margin-top: 5px;
  font-size: clamp(42px, 4vw, 62px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__visual {
  position: relative;
  width: min(100%, 920px);
  min-height: 600px;
  margin: 0 auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__rings {
  position: absolute;
  z-index: 1;
  top: 52%;
  left: 50%;
  width: min(58vw, 610px);
  max-width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__model {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  display: block;
  width: min(42vw, 430px);
  max-width: 100%;
  height: auto;
  transform: translateX(-50%);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__reason {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 230px;
  color: #7f6337;
  font-family: "Geomanist", var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.24;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__reason-icon {
  flex: 0 0 auto;
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(127, 99, 55, 0.18));
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__reason--top {
  top: -63px;
  left: 50%;
  flex-direction: column-reverse;
  max-width: 170px;
  text-align: center;
  transform: translateX(-50%);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__reason--right-top {
  top: 205px;
  right: -37px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-diagnosis__reason--right-bottom {
  right: -35px;
  bottom: 158px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__reason--bottom {
  bottom: -75px;
  left: 50%;
  flex-direction: column;
  max-width: 150px;
  text-align: center;
  transform: translateX(-50%);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__reason--left-bottom {
  bottom: 152px;
  left: -29px;
  flex-direction: row-reverse;
  text-align: right;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__reason--left-mid {
  top: 210px;
  left: -30px;
  flex-direction: row-reverse;
  text-align: right;
}
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__reason > span {
  display: inline-block;
  font-size: 18px;
}
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__mobile-list {
  display: none;
}

@media (max-width: 991px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis {
    padding: 5px 0 44px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__container {
    width: min(100% - 24px, 430px);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__light {
    display: none;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__title {
    margin-bottom: 16px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-diagnosis__title
    .phuc-hoi-section-title__row:first-child {
    flex-wrap: nowrap;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-diagnosis__title
    .phuc-hoi-section-title__sub {
    font-size: clamp(58px, 17vw, 70px);
    letter-spacing: -1.4px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-diagnosis__title
    .phuc-hoi-section-title__pill {
    margin-left: 8px;
    padding: 3px 12px 0;
    font-size: clamp(17px, 8vw, 25px);
    transform: translateY(5px);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-diagnosis__title
    .phuc-hoi-section-title__main {
    width: min(100%, 340px);
    margin-top: 7px;
    font-size: clamp(35px, 9.9vw, 46px);
    line-height: 1.08;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__visual {
    width: 100%;
    min-height: 0;
    margin-bottom: 18px;
    aspect-ratio: 1 / 1.05;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__rings {
    top: 50%;
    width: 94%;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__model {
    bottom: 0;
    width: 74%;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__reason {
    display: none;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__mobile-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 44px;
    padding: 7px 14px 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      rgba(221, 182, 121, 0) 0%,
      #ddb679 101.64%
    );
    box-shadow: 0 4px 12px rgba(191, 147, 78, 0.12);
    color: #7f6337;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__mobile-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    transform: scale(2);
    object-fit: contain;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__mobile-text {
    font-family: "Geomanist", var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
    padding: 0.2rem 0.2rem 0 0.5rem;
  }
}

@media (max-width: 480px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__container {
    width: min(100% - 20px, 360px);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__visual {
    aspect-ratio: 1 / 1.08;
    margin-bottom: 14px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-diagnosis__model {
    width: 78%;
  }
}

/* ==========================================================================
   SECTION: PERSONALIZED SOLUTION
   ========================================================================== */
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution {
  position: relative;
  padding: 70px 0 30px;
  background: #f5f5f5;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__container {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__glow {
  position: absolute;
  z-index: 0;
  width: min(68vw, 760px);
  aspect-ratio: 1 / 1;
  border-radius: 1448px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(238, 180, 90, 0.42) 0%,
    rgba(191, 147, 78, 0) 100%
  );
  filter: blur(0px);
  pointer-events: none;
  user-select: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__glow--left {
  top: -160px;
  left: max(-280px, calc((100vw - 1240px) / 2 - 360px));
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__glow--right {
  right: max(-300px, calc((100vw - 1240px) / 2 - 380px));
  bottom: 81px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__decor--left {
  left: max(-40px, calc((100vw - 1240px) / 2 - 72px));
  bottom: -14px;
  width: min(22vw, 250px);
  z-index: 10;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__decor--right {
  top: 459px;
  right: max(-34px, calc((100vw - 1240px) / 2 - 39px));
  width: min(19vw, 220px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__title {
  margin-bottom: 12px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-solution__title
  .phuc-hoi-section-title__sub {
  font-size: clamp(74px, 6vw, 106px);
  letter-spacing: -2.12px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-solution__title
  .phuc-hoi-section-title__pill {
  margin-top: 24px;
  font-size: clamp(24px, 2.1vw, 34px);
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-solution__title
  .phuc-hoi-section-title__main {
  margin-top: 10px;
  font-size: clamp(42px, 4vw, 62px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__desc {
  max-width: 900px;
  margin: 0 auto 36px;
  color: #5f5142;
  font-family: "Geomanist", var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__body {
  position: relative;
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0 0 42px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__frame-line {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -6px;
  width: min(100%, 1100px);
  height: 478px;
  border: 3.009px solid #fff;
  border-radius: 60.287px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0 0 8.023px 0 #fff inset,
    0 4.011px 9.828px 0 rgba(173, 140, 87, 0.26);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__media {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: min(100%, 740px);
  margin: 0 auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 14px 28px rgba(127, 99, 55, 0.12);
  filter: brightness(0.5);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__image--active {
  filter: brightness(1);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__card {
  position: relative;
  z-index: 3;
  width: min(100% - 60px, 737px);
  margin: 45px auto 0;
  padding: 20px 34px 26px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(191, 147, 78, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 420px);
  margin: -52px auto 16px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b2b0ae;
  cursor: pointer;
  opacity: 0.72;
  filter: grayscale(0.15) brightness(0.75);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease;
  padding: 0.5rem 1.5rem;
}
#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-solution__tabs
  button:first-child {
  right: 67px;
  padding: 0.6rem 2.4rem;
}
#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-solution__tabs
  button:nth-child(2) {
  right: -67px;
  padding: 0.6rem 2.4rem;
}
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__tab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__tab--active {
  background: #bf934e;
  opacity: 1;
  filter: none;
  box-shadow: 0 8px 18px rgba(191, 147, 78, 0.24);
  transform: translateY(-2px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__tab--active::after {
  opacity: 0;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__tab-image {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.3);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__content {
  min-height: 58px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__text {
  margin: 0;
  color: #7f6337;
  font-family: "Geomanist", var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__text.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 53px;
  padding: 22.714px 30.286px;
  gap: 45.429px;
  border: 0.757px solid rgba(255, 255, 255, 0.9);
  border-radius: 169.6px;
  background: linear-gradient(90deg, #a88143 0%, #d4ae70 50%, #a88143 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #e8d9a8,
    inset -1px -1px 2px #e8d9a8;
  color: #fff;
  font-family: "Geomanist", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: phuc-hoi-cta-pulse 2.5s ease-in-out infinite;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-cta:hover {
  background-position: right center;
  box-shadow: 0 15px 30px rgba(168, 129, 67, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

@keyframes phuc-hoi-cta-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #e8d9a8,
      inset -1px -1px 2px #e8d9a8, 0 0 0 0 rgba(191, 147, 78, 0.4);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #e8d9a8,
      inset -1px -1px 2px #e8d9a8, 0 0 0 8px rgba(191, 147, 78, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #e8d9a8,
      inset -1px -1px 2px #e8d9a8, 0 0 0 0 rgba(191, 147, 78, 0);
  }
}

@media (max-width: 991px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__tab-image {
    transform: scale(1.7);
  }
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution {
    padding: 5px 0 48px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__container {
    width: min(100% - 28px, 430px);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__decor {
    display: none;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-solution__title
    .phuc-hoi-section-title__sub {
    font-size: clamp(58px, 17vw, 70px);
    letter-spacing: -1.4px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-solution__title
    .phuc-hoi-section-title__pill {
    max-width: 100%;
    margin-top: 15px;
    padding: 3px 14px 0;
    font-size: clamp(32px, 5vw, 22px);
    white-space: nowrap;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-solution__title
    .phuc-hoi-section-title__main {
    width: min(100%, 380px);
    margin-top: 7px;
    font-size: clamp(28px, 10.8vw, 36px);
    line-height: 1.08;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__desc {
    margin: 10px auto 22px;
    padding: 0 4px;
    font-size: 17px;
    line-height: 1.45;
    text-align: justify;
    color: #7f6337;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__body {
    width: 100%;
    padding-bottom: 0;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__frame-line {
    display: none;
  }
  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-solution__tabs
    button:first-child {
    right: 0px !important;
  }
  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-solution__tabs
    button:nth-child(2) {
    right: 0px !important;
  }
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__media {
    display: block;
    width: 100%;
    margin-bottom: 18px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__image {
    display: none;
    aspect-ratio: 1 / 0.88;
    border-radius: 28px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__image--active {
    display: block;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__card {
    width: 100%;
    margin: 0;
    padding: 10px 10px 18px;
    border-radius: 24px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__tabs {
    gap: 8px;
    width: 100%;
    margin: 0 0 14px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__text {
    padding: 0 6px;
    font-size: 17px;
    line-height: 1.48;
    text-align: justify;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__cta-wrap {
    margin-top: 18px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-cta {
    height: 48px;
    padding: 16px 27px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__container {
    width: min(100% - 20px, 360px);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__desc {
    text-align: left;
  }
}

/* ==========================================================================
   SECTION: PROCESS
   ========================================================================== */
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process {
  position: relative;
  overflow: hidden;
  padding: 10px 0 20px;
  background: #f5f5f5;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__container {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__title {
  margin-bottom: 34px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-process__title
  .phuc-hoi-section-title__sub {
  font-size: clamp(78px, 6.3vw, 112px);
  letter-spacing: -2.24px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-process__title
  .phuc-hoi-section-title__pill {
  margin-top: 26px;
  font-size: clamp(24px, 2.1vw, 34px);
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-process__title
  .phuc-hoi-section-title__main {
  margin-top: 7px;
  font-size: clamp(42px, 4vw, 62px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop {
  display: block;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-item {
  flex: 0 1 300px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-item--first {
  transform: translateY(0);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-item--second {
  transform: translateY(38px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-item--third {
  transform: translateY(0);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-item--fourth {
  transform: translateY(42px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-image {
  display: block;
  width: 100%;
  height: auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-content {
  width: 100%;
  margin-top: clamp(-34px, -2.1vw, -18px);
  padding: 0 clamp(4px, 0.6vw, 10px);
  position: relative;
  z-index: 2;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 0.9rem 0 1.1rem;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-number {
  flex: 0 0 auto;
  color: #b69655;
  font-family: "SVN-Famous", serif;
  font-size: 78px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -1.2px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-title {
  margin: 0;
  color: #9a7a42;
  font-family: "SVN-Famous", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.2px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop-desc {
  max-width: 205px;
  margin: 3px 0 0;
  color: #7f6337;
  font-family: Geomanist, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.1px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-process__desktop-item--second
  .phuc-hoi-process__desktop-content,
#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-process__desktop-item--fourth
  .phuc-hoi-process__desktop-content {
  margin-top: clamp(-30px, -1.8vw, -14px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile {
  display: none;
}

@media (max-width: 991px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process {
    padding: 0px 0 54px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__container {
    width: min(100% - 28px, 430px);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__title {
    margin-bottom: 26px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-process__title
    .phuc-hoi-section-title__sub {
    font-size: clamp(58px, 17vw, 70px);
    letter-spacing: -1.4px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-process__title
    .phuc-hoi-section-title__pill {
    max-width: 100%;
    margin-top: 16px;
    padding: 3px 14px 0;
    font-size: clamp(32px, 5vw, 22px);
    white-space: nowrap;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-process__title
    .phuc-hoi-section-title__main {
    margin-top: 6px;
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1.08;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__desktop {
    display: none;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile {
    display: block;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile-card {
    min-width: 0;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile-image {
    display: block;
    width: 100%;
    height: auto;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #7f6337;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile-list-number {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 45px;
    border-radius: 10px;
    background: #bf934e;
    color: #fff;
    font-family: "SVN-Famous";
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(191, 147, 78, 0.18);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile-list-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    font-family: "Geomanist", var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-process__mobile-list-text
    strong {
    color: #7f6337;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__container {
    width: min(100% - 20px, 360px);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile-grid {
    gap: 12px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile-list-item {
    gap: 14px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-process__mobile-list-text {
    font-size: 17px;
    padding-top: 0.4rem;
  }
  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-process__mobile-list-text
    strong {
    display: none;
  }
}

/* ==========================================================================
   SECTION: SOCIAL PROOF
   ========================================================================== */
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof {
  position: relative;
  overflow: hidden;
  padding: 72px 0 84px;
  background: #f5f5f5;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__container {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__decor--left {
  left: max(-30px, calc((93vw - 1177px) / 2 - 58px));
  bottom: 250px;
  width: min(13vw, 106px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__decor--right {
  right: max(-28px, calc((100vw - 1240px) / 2 - 52px));
  bottom: 112px;
  width: min(13vw, 160px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__title {
  margin-bottom: 38px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__title-row {
  gap: 10px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__title-number,
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__title-script {
  color: #b69655;
  font-family: "UVN SangSong";
  font-size: clamp(72px, 6.2vw, 112px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -2.24px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-proof__title
  .phuc-hoi-section-title__pill {
  margin-top: 18px;
  font-size: clamp(22px, 1.9vw, 31px);
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-proof__title
  .phuc-hoi-section-title__main {
  margin-top: 9px;
  font-size: clamp(38px, 3.6vw, 56px);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__slider {
  display: block;
  max-width: 1400px;
  margin: 0 auto 36px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__slider .splide__arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgb(255 255 255 / 28%);
  opacity: 1;
  box-shadow: 0 5px 16px rgba(127, 99, 55, 0.25);
  backdrop-filter: blur(8px);
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-proof__slider
  .splide__arrow
  svg {
  fill: #b69655;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__slide {
  padding: 8px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__card {
  height: 100%;
  padding: 17px 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 4px 10px 0 rgba(182, 150, 85, 0.4), 0 0 9.499px 0 #fff inset;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__ba {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__ba-item {
  min-width: 0;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__ba-label {
  display: block;
  margin-bottom: 6px;
  color: #7f6337;
  font-family: "Geomanist", var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__ba-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  border-radius: 13px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__ba-separator {
  position: absolute;
  z-index: 2;
  top: 55%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgb(255 255 255 / 28%);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  transform: translate(-50%, -50%);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__customer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__customer-label {
  color: #7f6337;
  font-family: "SVN-Famous";
  font-size: 26px;
  font-weight: 400;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__customer-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 18px 3px;
  border-radius: 999px;
  background: #fff;
  color: #bf934e;
  font-family: "SVN-Famous";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__condition {
  margin: 17px 0 0;
  color: #7f6337;
  font-family: "Geomanist", var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  padding: 0 1.3rem;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__mobile-list,
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__show-more {
  display: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 7px 44px 7px 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px 0 rgba(182, 150, 85, 0.4);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-decor {
  position: absolute;
  z-index: 3;
  width: clamp(48px, 5.4vw, 82px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-decor--top {
  top: -54px;
  left: -42px;
  transform: rotate(-12deg);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-decor--bottom {
  right: -28px;
  bottom: -44px;
  transform: rotate(14deg);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-image {
  display: block;
  width: 223px;
  height: auto;
  margin-top: -42px;
  margin-bottom: -28px;
  position: relative;
  bottom: -12px;
  left: -54px;
  transform: scale(1.2);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-text {
  margin: 0;
  color: #7f6337;
  font-family: "SVN-Famous";
  font-size: 35px;
  font-weight: 400;
  line-height: 1.25;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-text span {
  white-space: nowrap;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-percent {
  color: #bf934e;
  font-family: SVN-Famous;
  font-size: 125px;
  font-weight: 400;
  line-height: 1;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 991px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof {
    padding: 0px 0 52px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__container {
    width: min(100% - 20px, 360px);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__decor--left {
    left: max(47px, calc((75vw - 1158px) / 2 - 58px));
    bottom: 409px;
  }
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__decor--right {
    right: max(22px, calc((95vw - 1240px) / 2 - 52px));
    bottom: 85px;
  }
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__title {
    margin-bottom: 24px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__title-row {
    flex-direction: column;
    gap: 0;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__title-number,
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__title-script {
    font-size: clamp(54px, 16vw, 68px);
    letter-spacing: -1.36px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__title-script {
    margin-top: -12px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-proof__title
    .phuc-hoi-section-title__pill {
    max-width: 100%;
    padding: 4px 12px 1px;
    font-size: 31px;
    line-height: 1.25;
    white-space: normal;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-proof__title
    .phuc-hoi-section-title__main {
    margin-top: 8px;
    font-size: 46px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__slider {
    display: none;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__mobile-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__mobile-card--extra {
    display: none;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-proof__mobile-list.is-expanded
    .phuc-hoi-proof__mobile-card--extra {
    display: block;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__mobile-fade {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 2;
    height: 110px;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, #f5f5f5 82%);
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-proof__mobile-list.is-expanded
    .phuc-hoi-proof__mobile-fade {
    opacity: 0;
    visibility: hidden;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    height: 38px;
    margin: 0 auto 60px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 5px 13px rgba(191, 147, 78, 0.18);
    color: #bf934e;
    font-family: "Geomanist", var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    left: 33%;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__card {
    padding: 10px 10px 16px;
    border-radius: 16px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__ba {
    gap: 7px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__ba-label {
    font-size: 9px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__customer-name {
    font-size: 26px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__condition {
    font-size: 18px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 29px 18px 20px;
    margin-top: 140px;
    border-radius: 18px;
    text-align: center;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-decor {
    width: 74px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-decor--top {
    top: -72px;
    left: -2px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-decor--bottom {
    right: -7px;
    bottom: -36px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-image {
    width: 145px;
    position: absolute;
    top: -42px;
    left: 30%;
    transform: scale(1.6);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-text {
    max-width: 270px;
    font-size: 30px;
    line-height: 1.25;
    padding-top: 1.3rem;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-text span {
    display: block;
    margin-top: 7px;
    font-family: "UVN SangSong";
    font-size: 34px;
    line-height: 1;
    white-space: normal;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__deal-percent {
    font-size: 103px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-proof__cta-wrap {
    margin-top: 18px;
  }
}

/* ==========================================================================
   SECTION: CLINIC TRUST
   ========================================================================== */
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic {
  position: relative;
  overflow: hidden;
  padding: 10px 0 84px;
  background: #f5f5f5;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__title {
  width: min(100% - 32px, 1280px);
  margin: 0 auto 34px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-clinic__title
  .phuc-hoi-section-title__sub {
  font-size: clamp(76px, 6vw, 108px);
  letter-spacing: -2.16px;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-clinic__title
  .phuc-hoi-section-title__pill {
  margin-top: 9px;
  font-size: clamp(23px, 2vw, 39px);
  right: -185px;
  position: relative;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-clinic__title
  .phuc-hoi-section-title__main {
  max-width: 980px;
  margin-top: 14px;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.12;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__title--mobile {
  display: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop {
  display: block;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.74) 50%,
    rgba(255, 255, 255, 0.96) 100%
  );
  opacity: 0.82;
  pointer-events: none;
  transition: opacity 0.38s ease, height 0.38s ease;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-clinic__desktop-item:hover::after {
  height: 54%;
  opacity: 1;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop-image {
  display: block;
  width: 100%;
  height: auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop-caption {
  position: absolute;
  right: 0;
  bottom: 54px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 430px;
  min-height: 70px;
  padding: 0 20px;
  color: #7f6337;
  transform: translateY(62px);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-clinic__desktop-item:hover
  .phuc-hoi-clinic__desktop-caption {
  transform: translateY(0);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 70px;
}
@media screen and (min-width: 1919px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__short-title {
    font-size: 30px !important;
  }
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__number {
    font-size: clamp(47px, 7vw, 76px) !important;
  }
}
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop-desc {
  max-width: 390px;
  margin: 0;
  color: #7f6337;
  font-family: "Geomanist", var(--font-body);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 400;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.34s ease 0.08s, transform 0.38s ease 0.08s;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-clinic__desktop-item:hover
  .phuc-hoi-clinic__desktop-desc {
  opacity: 1;
  transform: translateY(0);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__number {
  flex: 0 0 auto;
  color: #b69655;
  font-family: SVN-Famous;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__short-title {
  display: -webkit-box;
  overflow: hidden;
  color: #7f6337;
  font-family: "SVN-Famous";
  font-size: 21px;
  font-weight: 400;
  line-height: 0.95;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile {
  display: none;
}

@media (max-width: 991px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic {
    padding: 5px 0 5px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__container {
    width: 100%;
    max-width: none;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__title {
    width: min(100% - 20px, 390px);
    margin-right: auto;
    margin-left: auto;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__title--desktop {
    display: none;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__title--mobile {
    display: flex;
    margin-bottom: 20px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-clinic__title
    .phuc-hoi-section-title__sub {
    font-size: clamp(58px, 15vw, 70px);
    letter-spacing: -1.4px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-clinic__title
    .phuc-hoi-section-title__pill {
    margin-top: 16px;
    padding: 3px 14px 0;
    font-size: clamp(17px, 12.9vw, 33px);
    white-space: nowrap;
    right: 0;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-clinic__title
    .phuc-hoi-section-title__main {
    width: min(100%, 360px);
    margin-top: 8px;
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.12;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop {
    display: none;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile {
    display: block;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-item {
    position: relative;
    min-height: 226px;
    overflow: hidden;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-image {
    display: block;
    width: 100%;
    height: auto;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-content {
    position: absolute;
    z-index: 2;
    top: 12%;
    width: 48%;
    color: #7f6337;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-clinic__mobile-item--text-left
    .phuc-hoi-clinic__mobile-content {
    left: 4%;
    text-align: left;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-clinic__mobile-item--image-left
    .phuc-hoi-clinic__mobile-content {
    right: 4%;
    text-align: left;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-heading {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 8px;
    width: 224px;
    padding: 0 1.5rem 0 0rem;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-number {
    flex: 0 0 auto;
    color: #b69655;
    font-family: SVN-Famous;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-short-title {
    color: #7f6337;
    font-family: "SVN-Famous";
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-desc {
    margin: 0;
    color: #5f5142;
    font-family: "Geomanist", var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-clinic__mobile-item--doctor
    .phuc-hoi-clinic__mobile-content {
    top: 13%;
    width: 47%;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-clinic__mobile-item--protocol
    .phuc-hoi-clinic__mobile-content {
    top: 16%;
    width: 48%;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-clinic__mobile-item--product
    .phuc-hoi-clinic__mobile-content,
  #cham-soc-phuc-hoi-da-landing-wrapper
    .phuc-hoi-clinic__mobile-item--equipment
    .phuc-hoi-clinic__mobile-content {
    top: 16%;
    width: 49%;
  }
}

@media (max-width: 480px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__container {
    width: 100%;
    max-width: none;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__title {
    width: min(100% - 16px, 360px);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-item {
    min-height: 204px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-number {
    font-size: 30px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-short-title {
    font-size: 17px;
  }
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__mobile-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
   SECTION: PRESS / AWARDS
   ========================================================================== */
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press {
  padding-top: 30px;
  background-color: #f5f5f5;
  overflow: hidden;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__container {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__title-col {
  flex: 0 0 400px;
  text-align: center;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__title-script {
  position: relative;
  z-index: 1;
  margin-bottom: 33px;
  color: #b69655;
  font-family: var(--font-accent-art);
  font-size: 115px;
  font-weight: 400;
  line-height: 0.6;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__title-pill {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 40px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.6) inset,
    0 4px 9px 0 rgba(191, 147, 78, 0.39);
  color: #7f6337;
  font-family: var(--font-heading-lux);
  font-size: 42px;
  font-weight: 500;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__desc {
  color: #7f6337;
  font-family: "Geomanist", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__slider-col {
  flex: 1;
  min-width: 0;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-press__slider
  .splide__slide
  img {
  display: block;
  width: 100%;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__bottom {
  position: relative;
  padding-bottom: 40px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__container--awards {
  position: relative;
  z-index: 10;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__podium {
  position: absolute;
  bottom: -300px;
  left: 50%;
  z-index: 4;
  width: 1920px;
  max-width: 100%;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__awards {
  display: flex;
  justify-content: center;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__awards-track {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__awards-group {
  display: flex;
  flex: 1;
  justify-content: space-between;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__award-item {
  padding: 0 15px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__award-item img {
  width: auto;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}
.phuc-hoi-press .splide__arrow {
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  width: 44px !important;
  height: 44px !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  z-index: 99 !important;
}
.phuc-hoi-press .splide__arrow--prev {
  left: -20px !important;
}
.phuc-hoi-press .splide__arrow--next {
  right: -20px !important;
}
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__desktop-only {
  display: block;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__desktop-only {
    display: none !important;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__mobile-only {
    display: flex !important;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__title-col {
    flex: auto;
    width: 100%;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__title-script {
    margin-bottom: 29px;
    font-size: 90px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__title-pill {
    margin-bottom: 20px;
    padding: 0 36px;
    font-size: 38px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__desc {
    font-size: 16px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__slider-col {
    width: 100%;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__awards {
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__awards-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    animation: phuc-hoi-press-marquee 10s linear infinite;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__awards-group {
    display: flex;
    flex: 0 0 auto;
    gap: 15px;
    padding-right: 15px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-press__award-item img {
    height: 200px;
  }

  @keyframes phuc-hoi-press-marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

/* ==========================================================================
   SECTION: PARTNERS
   ========================================================================== */
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners {
  overflow: hidden;
  padding-block: var(--space-8);
  background-color: #f5f5f5;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__container {
  width: 100%;
  padding-inline: var(--space-4);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__header {
  margin-bottom: var(--space-16);
  text-align: center;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__title-top {
  color: #b69655;
  font-family: var(--font-accent-art);
  font-size: 100px;
  font-weight: 400;
  line-height: 0.8;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__title-bottom {
  background: linear-gradient(
    360deg,
    rgba(182, 150, 85, 1) 0%,
    rgba(227, 200, 113, 1) 100%
  );
  -webkit-background-clip: text;
  color: transparent;
  font-family: var(--font-heading-lux);
  font-size: 80px;
  font-weight: 400;
  -webkit-text-fill-color: transparent;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__marquee {
  --marquee-duration: 8s;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__marquee-content {
  display: flex;
  gap: var(--space-12);
  min-width: 100%;
  padding-block: var(--space-4);
  animation: phuc-hoi-partners-marquee var(--marquee-duration) linear infinite;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__marquee-item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.6;
  transition: all 0.3s ease;
}

@keyframes phuc-hoi-partners-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__title-top {
    font-size: 64px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__title-bottom {
    font-size: 44px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__marquee-item {
    width: 120px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-partners__marquee-content {
    gap: var(--space-8);
  }
}

/* ========================================================================== 
   SECTION: VIDEO SHORTS
   ========================================================================== */
#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts {
  position: relative;
  overflow: hidden;
  padding: 36px 0 80px;
  background: #f5f5f5;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__container {
  width: min(100% - 32px, 1280px);
  margin: 0 0 80px 0;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__show-more {
  position: relative;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__content {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__item {
  position: relative;
  flex: 0 0 calc(20% - 16px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 24px;
  background: #bf934e;
  box-shadow: 0 10px 24px rgba(127, 99, 55, 0.16);
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__fade {
  position: absolute;
  right: 0;
  bottom: 58px;
  left: 0;
  z-index: 2;
  height: 110px;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, #f5f5f5 82%);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__btn {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 124px;
  margin: 30px auto 0;
  padding: 10px 26px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 13px rgba(191, 147, 78, 0.18);
  color: #bf934e;
  font-family: "Geomanist", var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__btn:hover {
  background: #bf934e;
  color: #fff;
}

#cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__label-less {
  display: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-video-shorts__show-more.is-expanded
  .phuc-hoi-video-shorts__fade,
#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-video-shorts__show-more.is-expanded
  .phuc-hoi-video-shorts__label-more {
  display: none;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-video-shorts__show-more.is-expanded
  .phuc-hoi-video-shorts__label-less {
  display: inline;
}

#cham-soc-phuc-hoi-da-landing-wrapper
  .phuc-hoi-video-shorts__show-more.is-expanded
  .phuc-hoi-video-shorts__btn
  svg {
  transform: rotate(180deg);
}

@media (min-width: 769px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__fade,
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__btn {
    display: none !important;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__content {
    max-height: none !important;
    overflow: visible !important;
  }
}

@media (max-width: 991px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__glow {
    width: 92vw;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__glow--left {
    top: -120px;
    left: -52vw;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-solution__glow--right {
    right: -56vw;
    bottom: 9px;
  }
}

@media (max-width: 768px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts {
    padding: 28px 0 50px;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__container {
    width: min(100% - 24px, 360px);
    margin: 0 auto;
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-video-shorts__item {
    flex: 0 0 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop-caption {
    bottom: 34px;
    transform: translateY(58px);
  }

  #cham-soc-phuc-hoi-da-landing-wrapper .phuc-hoi-clinic__desktop-desc {
    font-size: 13px;
    line-height: 1.38;
  }
}
