* {
  box-sizing: border-box;
}

body {
  background-color: #e8e4e0;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

@font-face {
  font-family: "PPPaloma";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/PPPaloma/PPPaloma-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/Roboto/roboto-medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-light.woff2") format("woff2");
  font-display: swap;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 1.4rem 3.8rem;
  transition:
    background 0.3s ease-in-out,
    top 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;

  --header-link-color: #e8e4e0;
  --header-link-color-scrolled: #e8e4e0;
  --header-chevron-filter: brightness(0) saturate(100%) invert(94%) sepia(17%)
    saturate(422%) hue-rotate(303deg) brightness(106%) contrast(101%);
  --header-chevron-filter-scrolled: brightness(0) saturate(100%) invert(94%)
    sepia(17%) saturate(422%) hue-rotate(303deg) brightness(106%) contrast(101%);
  --header-scrolled-bg: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
  --header-scrolled-shadow: none;

  --header-open-bg: #f3eee3;
  --header-open-shadow: 0 1px 0 rgba(44, 42, 42, 0.05);
  --header-open-link-color: #272626;
  --header-open-chevron-filter: none;

  --mega-bg: #f3eee3;
}

.header-desktop--dark-scrolled {
  --header-link-color-scrolled: #272626;
  --header-chevron-filter-scrolled: none;
  --header-scrolled-bg: rgba(243, 238, 227, 0.96);
  --header-scrolled-shadow: 0 1px 0 rgba(44, 42, 42, 0.05);
}

header.scrolled {
  background: var(--header-scrolled-bg);
  box-shadow: var(--header-scrolled-shadow);
  margin-top: 0;
}

.header-desktop--mega-open,
.header-desktop--mega-open.scrolled {
  background: var(--header-open-bg);
  box-shadow: var(--header-open-shadow);
}

.header-desktop__nav {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-desktop__brand,
.header-desktop__center,
.header-desktop__right {
  display: flex;
  align-items: center;
}

.header-desktop__brand {
  justify-content: flex-start;
  min-width: 120px;
}

.header-desktop__center {
  justify-content: center;
  flex: 1;
  margin-top: 1.5rem;
  gap: 1.4rem;
}

.header-desktop__right {
  justify-content: flex-end;
  min-width: 120px;
  margin-top: 1.5rem;
  gap: 1rem;
}

.header-desktop__brand a {
  display: inline-flex;
  align-items: center;
}

.header-desktop__logo {
  width: 100px;
  height: auto;
  display: block;
  transition: width 0.3s ease-in-out;
}

header.scrolled .header-desktop__logo {
  width: 85px;
}

.header-desktop__item {
  position: relative;
}

.header-desktop__trigger {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: inherit;
}

.header-desktop__link-text,
.nav-link {
  color: var(--header-link-color);
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  transition: color 0.3s ease-in-out;
}

header.scrolled .header-desktop__link-text,
header.scrolled .nav-link {
  color: var(--header-link-color-scrolled);
}

.header-desktop--mega-open .header-desktop__link-text,
.header-desktop--mega-open .nav-link {
  color: var(--header-open-link-color);
}

.header-desktop__chevron,
.header-desktop__lang-chevron {
  display: block;
  object-fit: contain;
  filter: var(--header-chevron-filter);
  transition:
    transform 0.35s ease,
    filter 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

header.scrolled .header-desktop__chevron,
header.scrolled .header-desktop__lang-chevron {
  filter: var(--header-chevron-filter-scrolled);
}

.header-desktop--mega-open .header-desktop__chevron,
.header-desktop--mega-open .header-desktop__lang-chevron {
  filter: var(--header-open-chevron-filter);
}

.header-desktop__item.is-active .header-desktop__chevron {
  transform: rotate(180deg);
}

.lang-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  background-color: #34656d;
  color: #e8e4e0;
  text-decoration: none;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  border-radius: 4px;
}

.header-desktop__mega {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-desktop__mega-panel {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  background: var(--mega-bg);
  border-top: 1px solid rgba(44, 42, 42, 0.05);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  clip-path: inset(0 0 100% 0);
  overflow: hidden;
  z-index: 2;
  will-change: clip-path;
}

.header-desktop__mega-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 10.8rem 3.8rem 3.2rem 3.8rem;
}

.header-desktop__mega-layout {
  display: grid;
  grid-template-columns: minmax(420px, 760px) minmax(320px, 440px);
  justify-content: space-between;
  align-items: start;
  gap: 4.5rem;
}

.header-desktop__mega-main,
.header-desktop__mega-card-body {
  display: flex;
  flex-direction: column;
}

.header-desktop__mega-linkline {
  overflow: hidden;
  width: fit-content;
  margin-bottom: 0.14rem;
  padding-bottom: 0.2em;
}

.header-desktop__mega-service {
  display: inline-block;
  text-decoration: none;
  color: #2c2a2a;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: clamp(1.95rem, 2.15vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  transition: color 0.28s ease;
}

.header-desktop__mega-service:hover,
.header-desktop__mega-service:focus-visible,
.header-desktop__mega-service.is-active {
  color: #34656d;
}

.header-desktop__mega-service span {
  display: inline-block;
  will-change: transform, opacity;
}

.header-desktop__mega-card {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 440px;
}

.header-desktop__mega-card-image-wrap {
  overflow: hidden;
  border-radius: 1.6rem;
  margin-bottom: 1.3rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.header-desktop__mega-card-image {
  width: 100%;
  aspect-ratio: 1.42 / 1;
}

.header-desktop__mega-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.header-desktop__mega-card:hover .header-desktop__mega-card-image img {
  transform: scale(1.04);
}

.header-desktop__mega-card-title {
  margin: 0 0 0.7rem 0;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #2c2a2a;
}

.header-desktop__mega-card-text {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.58;
  color: #5f5955;
  max-width: 28rem;
}

.header-desktop__mega-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(20, 18, 17, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  cursor: default;
}

.header-desktop__mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 1280px) {
  .header-desktop__mega-layout {
    grid-template-columns: minmax(360px, 1fr) minmax(300px, 380px);
    gap: 3rem;
  }

  .header-desktop__mega-service {
    font-size: clamp(1.8rem, 2vw, 2.7rem);
  }

  .header-desktop__mega-card-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1100px) {
  .header-desktop__mega-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .header-desktop__mega-card {
    max-width: 560px;
  }
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.logo-mobile {
  width: 70px;
  height: auto;
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #e8e4e0;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #e8e4e0;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #e8e4e0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 20%;
  left: 1.4rem;
  padding: 30% 2rem 2rem 2rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  text-decoration: none;
  padding: 0.6rem 0;
  color: #272626;
  font-weight: 200;
  font-size: 1.6rem;
  line-height: 1.4rem;
}

.menu-mobile-services {
  display: flex;
  flex-direction: column;
}

.menu-mobile-services__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 0.6rem 0;
  border: 0;
  background: transparent;
  color: #272626;
  font-weight: 200;
  font-size: 1.6rem;
  line-height: 1.4rem;
  text-align: left;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
}

.menu-mobile-services__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.menu-mobile-services.is-open .menu-mobile-services__icon {
  transform: rotate(90deg);
}

.menu-mobile-services__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
}

.menu-mobile-services__panel-inner {
  min-height: 0;
}

.menu-mobile-services__panel a {
  display: block;
  padding: 0.4rem 0 0.4rem 1.25rem;
  font-size: 1.3rem;
  line-height: 1.45rem;
}

.menu-divider {
  display: block;
  margin: 2rem 2rem 0 auto;
  width: calc(100% - 4rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.language-switch {
  display: flex;
  color: #272626;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1.5rem;
}

.language-switch a {
  text-decoration: none;
  color: #272626;
  margin: 0 0.5rem;
  font-weight: 200;
  font-size: 1.2rem;
}

main.weight-page {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: visible;
  background-color: #e8e4e0;
  color: #272626;
}

.weight-page *,
.weight-page *::before,
.weight-page *::after {
  box-sizing: border-box;
}

.weight-page h1,
.weight-page h2,
.weight-page h3,
.weight-page p,
.weight-page ul,
.weight-page figure {
  margin-top: 0;
}

.weight-page h1 {
  margin: 0;
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.weight-page h2,
.weight-faq-section .faq-text h2 {
  margin: 0;
  color: #272626;
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.weight-page h3 {
  color: #272626;
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.weight-page p,
.weight-page li,
.weight-page a,
.weight-page span {
  font-family: "Roboto", sans-serif;
}

.weight-page p {
  color: rgba(39, 38, 38, 0.76);
  font-size: 1.12rem;
  font-weight: 200;
  line-height: 1.45;
}

.weight-kicker {
  display: block;
  margin-bottom: 0.55rem;
  color: #34656d;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.2;
}

.weight-kicker-light {
  color: rgba(232, 228, 224, 0.86);
}

.weight-hero {
  position: relative;
  min-height: 82vh;
  min-height: 82svh;
  padding: 20px;
  overflow: hidden;
  background-color: #e8e4e0;
  color: #e8e4e0;
}

.weight-hero-stage {
  position: relative;
  min-height: calc(82vh - 40px);
  min-height: calc(82svh - 40px);
  overflow: hidden;
  border-radius: 25px;
  isolation: isolate;
  background-color: #182136;
}

.weight-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.01);
  filter: brightness(70%);
}

.obj-hero-img {
  object-position: 50% 100% !important;
}

.weight-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.weight-breadcrumb {
  position: absolute;
  top: clamp(7rem, 13vh, 9rem);
  left: clamp(1.6rem, 4vw, 4rem);
  right: clamp(1.6rem, 4vw, 4rem);
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  color: rgba(232, 228, 224, 0.72);
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.2;
}

.weight-breadcrumb a,
.weight-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.weight-breadcrumb a:hover,
.weight-breadcrumb .is-current {
  color: #e8e4e0;
}

.weight-hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(82vh - 40px);
  min-height: calc(82svh - 40px);
  display: flex;
  align-items: flex-end;
  padding: clamp(10rem, 18vh, 13rem) clamp(1.6rem, 4vw, 4rem)
    clamp(3.5rem, 7vh, 5rem);
}

.weight-hero-copy {
  width: min(100%, 760px);
}

.weight-hero-copy h1,
.weight-hero h1 {
  max-width: 720px;
  color: #e8e4e0;
}

.weight-hero-copy p {
  max-width: 660px;
  margin: 1rem 0 0;
  color: rgba(232, 228, 224, 0.9);
  font-size: 1.14rem;
  font-weight: 200;
  line-height: 1.42;
}

.weight-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.weight-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(232, 228, 224, 0.28);
  background-color: rgba(8, 8, 8, 0.18);
  color: rgba(232, 228, 224, 0.88);
  font-family: "Roboto", sans-serif;
  font-size: 0.88rem;
  font-weight: 200;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.weight-hero-actions,
.weight-section-actions,
.weight-final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.weight-hero-facts,
.weight-hero-card,
.weight-hero-media,
.weight-hero-media figcaption {
  display: none !important;
}

.weight-page .main-cta {
  --arrow-size: 15px;
  --arrow-gap: 8px;
  position: relative;
  display: inline-flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.62rem 1rem;
  overflow: hidden;
  background-color: #34656d;
  color: #e8e4e0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.26);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.weight-page .main-cta:hover {
  transform: translateY(-2px);
  background-color: #27454a;
  color: #e8e4e0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.weight-page .cta-label {
  position: relative;
  z-index: 2;
  line-height: 1;
  white-space: nowrap;
}

.weight-page .cta-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--arrow-size);
  height: var(--arrow-size);
  flex: 0 0 auto;
  overflow: hidden;
}

.weight-page .cta-arrow::before {
  content: "";
  display: block;
  width: var(--arrow-size);
  height: var(--arrow-size);
  background-color: currentColor;
  -webkit-mask: url("/assets/icons/arrow-right.svg") center / contain no-repeat;
  mask: url("/assets/icons/arrow-right.svg") center / contain no-repeat;
  transition:
    transform 0.52s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.28s ease;
}

.weight-page .cta-arrow--incoming {
  width: 0;
  margin-right: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    margin-right 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.weight-page .cta-arrow--incoming::before {
  transform: translateX(-145%);
  opacity: 0;
}

.weight-page .cta-arrow--outgoing {
  margin-left: var(--arrow-gap);
  transition:
    width 0.48s cubic-bezier(0.22, 1, 0.36, 1) 0.16s,
    margin-left 0.48s cubic-bezier(0.22, 1, 0.36, 1) 0.16s,
    opacity 0.25s ease 0.16s;
}

.weight-page .cta-arrow--outgoing::before {
  transform: translateX(0);
  opacity: 1;
}

.weight-page .main-cta:hover .cta-arrow--outgoing {
  width: 0;
  margin-left: 0;
  opacity: 0;
}

.weight-page .main-cta:hover .cta-arrow--outgoing::before {
  transform: translateX(145%);
  opacity: 0;
}

.weight-page .main-cta:hover .cta-arrow--incoming {
  width: var(--arrow-size);
  margin-right: var(--arrow-gap);
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.12s;
}

.weight-page .main-cta:hover .cta-arrow--incoming::before {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.12s;
}

.weight-page .main-cta > img {
  width: 14px;
  height: auto;
  margin-left: 8px;
  filter: brightness(0) invert(1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.weight-page .main-cta:hover > img {
  transform: translateX(3px);
}

.weight-page .secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(232, 228, 224, 0.72);
  border-radius: 3px;
  color: #e8e4e0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.weight-page .secondary-cta:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(232, 228, 224, 0.95);
  background-color: rgba(255, 255, 255, 0.1);
}

.weight-page .weight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.62rem 1rem;
  border-radius: 3px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.weight-page .weight-btn-primary {
  gap: 8px;
  background-color: #34656d;
  color: #e8e4e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.26);
}

.weight-page .weight-btn-primary:hover {
  transform: translateY(-2px);
  background-color: #27454a;
  color: #e8e4e0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.weight-page .weight-btn-primary img {
  width: 14px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.weight-page .weight-btn-primary:hover img {
  transform: translateX(3px);
}

.weight-page .weight-btn-secondary,
.weight-page .weight-btn-secondary-light {
  border: 1px solid rgba(232, 228, 224, 0.72);
  color: #e8e4e0;
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.weight-page .weight-btn-secondary:hover,
.weight-page .weight-btn-secondary-light:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(232, 228, 224, 0.95);
  background-color: rgba(255, 255, 255, 0.1);
}

.weight-page .weight-section .secondary-cta,
.weight-page .weight-doctor-section .secondary-cta,
.weight-page .weight-section .weight-btn-secondary {
  color: #272626;
  border-color: rgba(39, 38, 38, 0.5);
  background-color: transparent;
  backdrop-filter: none;
}

.weight-page .weight-section .secondary-cta:hover,
.weight-page .weight-doctor-section .secondary-cta:hover,
.weight-page .weight-section .weight-btn-secondary:hover {
  color: #34656d;
  border-color: #34656d;
  background-color: rgba(52, 101, 109, 0.08);
}

.weight-section {
  padding: 6rem 8rem;
  background-color: #e8e4e0;
}

.weight-section-head {
  max-width: 760px;
}

.weight-section-head p {
  max-width: 720px;
  margin: 1rem 0 0;
}

.weight-copy {
  max-width: 820px;
}

.weight-copy p {
  margin-bottom: 1.1rem;
}

.weight-copy p:last-child {
  margin-bottom: 0;
}

.weight-two-col,
.weight-card-grid,
.weight-process-grid,
.weight-dark-grid,
.weight-doctor-grid,
.weight-final-cta-inner,
.weight-faq-section .faq-text,
.weight-faq-section .faq-wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
}

.weight-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.weight-two-col-list {
  align-items: stretch;
}

.weight-intro-section {
  padding: 6rem 8rem 4.5rem;
}

.weight-card-section {
  padding: 0 8rem 6rem;
}

.weight-card-grid {
  display: grid;
  gap: 18px;
}

.weight-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.weight-card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.weight-info-card {
  min-height: 100%;
  padding: 1.6rem;
  border: 1px solid rgba(39, 38, 38, 0.12);
  border-radius: 10px;
  background-color: #ebe3d5;
  box-shadow:
    0 1px 2px rgba(42, 41, 39, 0.04),
    0 8px 22px rgba(42, 41, 39, 0.08);
}

.weight-info-card > span {
  display: block;
  margin-bottom: 1.1rem;
  color: #34656d;
  font-size: 0.94rem;
  font-weight: 200;
}

.weight-info-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.55rem;
}

.weight-info-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.4;
}

.weight-indication-section {
  padding: 6rem 8rem;
}

.weight-list-card {
  padding: 1.8rem;
  border: 1px solid rgba(39, 38, 38, 0.12);
  border-radius: 10px;
  background-color: #ebe3d5;
  box-shadow:
    0 1px 2px rgba(42, 41, 39, 0.04),
    0 8px 22px rgba(42, 41, 39, 0.08);
}

.weight-list-card h3 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
}

.weight-list-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.weight-list-card li {
  position: relative;
  margin: 0 0 0.75rem;
  padding-left: 1.05rem;
  color: rgba(39, 38, 38, 0.76);
  font-size: 1.04rem;
  font-weight: 200;
  line-height: 1.38;
}

.weight-list-card li:last-child {
  margin-bottom: 0;
}

.weight-list-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background-color: #34656d;
}

.weight-dark-section {
  padding: 6rem 8rem;
  background-color: #182136;
  color: #e8e4e0;
}

.weight-dark-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.weight-media-frame {
  position: relative;
  width: 100%;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background-color: rgba(232, 228, 224, 0.12);
}

.weight-media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(232, 228, 224, 0.16),
    rgba(232, 228, 224, 0.04)
  );
}

.weight-media-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.weight-media-frame img[src=""] {
  opacity: 0;
}

.weight-dark-copy h2 {
  color: #e8e4e0;
}

.weight-dark-copy p {
  max-width: 760px;
  color: rgba(232, 228, 224, 0.82);
}

.weight-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 1.7rem;
}

.weight-detail-grid article {
  padding: 1.15rem;
  border: 1px solid rgba(232, 228, 224, 0.16);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
}

.weight-detail-grid h3 {
  margin: 0 0 0.45rem;
  color: #e8e4e0;
  font-size: 1.35rem;
}

.weight-detail-grid p {
  margin: 0;
  color: rgba(232, 228, 224, 0.76);
  font-size: 0.98rem;
  line-height: 1.35;
}

.weight-process-section {
  padding: 6rem 8rem;
}

.weight-process-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.weight-process-head p {
  margin-left: auto;
  margin-right: auto;
}

.weight-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.2rem;
  border: 1px solid rgba(39, 38, 38, 0.22);
  border-radius: 10px;
  overflow: hidden;
  background-color: #ebe3d5;
}

.weight-process-grid article {
  padding: 1.6rem;
  border-right: 1px solid rgba(39, 38, 38, 0.16);
}

.weight-process-grid article:last-child {
  border-right: 0;
}

.weight-process-grid span {
  display: block;
  margin-bottom: 1rem;
  color: #34656d;
  font-size: 0.94rem;
  font-weight: 200;
}

.weight-process-grid h3 {
  margin: 0 0 0.8rem;
  font-size: 1.45rem;
}

.weight-process-grid p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.weight-components-section {
  padding: 0 8rem 6rem;
}

.weight-components-intro {
  margin-bottom: 2rem;
}

.weight-doctor-section {
  padding: 6rem 8rem;
  background-color: #e8e4e0;
}

.weight-doctor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.weight-doctor-copy p {
  max-width: 780px;
  margin-bottom: 1rem;
}

.weight-doctor-copy p:last-of-type {
  margin-bottom: 0;
}

.weight-media-frame-light {
  background-color: #ebe3d5;
  box-shadow:
    0 1px 2px rgba(42, 41, 39, 0.04),
    0 8px 22px rgba(42, 41, 39, 0.08);
}

.weight-faq-section {
  padding: 6rem 8rem;
  background-color: #e8e4e0;
}

.weight-faq-section .faq-text {
  margin-bottom: 1.8rem;
}

.weight-faq-section .faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(39, 38, 38, 0.58);
  width: 100%;
  cursor: pointer;
}

.weight-faq-section .faq-item:first-child {
  border-top: 1px solid rgba(39, 38, 38, 0.58);
}

.weight-faq-section .faq-item h4 {
  margin: 2rem 0;
  color: #272626;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
}

.weight-faq-section .faq-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(39, 38, 38, 0.58);
  border-radius: 3px;
}

.weight-faq-section .faq-icon img {
  width: 15px;
  height: 15px;
}

.weight-faq-section .faq-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  color: #272626;
  transition:
    max-height 300ms ease,
    opacity 250ms ease;
}

.weight-faq-section .faq-content.open {
  opacity: 1;
}

.weight-faq-section .faq-content p {
  max-width: 960px;
  margin: 1rem 0 2rem;
  font-size: 1.08rem;
  line-height: 1.48;
}

.weight-faq-section .faq-item[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.weight-faq-section .faq-item[aria-expanded="true"] + .faq-content {
  border-bottom: 1px solid rgba(39, 38, 38, 0.58);
}

.weight-final-cta {
  padding: 0 8rem 6rem;
  background-color: #e8e4e0;
}

.weight-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: clamp(2.4rem, 5vw, 4rem);
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(24, 33, 54, 0.98) 0%,
    rgba(24, 33, 54, 0.94) 55%,
    rgba(52, 101, 109, 0.94) 100%
  );
  color: #e8e4e0;
  overflow: hidden;
}

.weight-final-cta h2 {
  max-width: 760px;
  color: #e8e4e0;
}

.weight-final-cta p {
  max-width: 700px;
  margin: 1rem 0 0;
  color: rgba(232, 228, 224, 0.82);
}

.weight-final-actions {
  justify-content: flex-end;
  margin-top: 0;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .weight-section,
  .weight-intro-section,
  .weight-card-section,
  .weight-indication-section,
  .weight-dark-section,
  .weight-process-section,
  .weight-components-section,
  .weight-doctor-section,
  .weight-faq-section {
    padding: 6rem 3rem;
  }

  .weight-card-section,
  .weight-components-section {
    padding-top: 0;
  }

  .weight-final-cta {
    padding: 0 3rem 6rem;
  }

  .weight-two-col,
  .weight-dark-grid,
  .weight-doctor-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .weight-card-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weight-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weight-process-grid article {
    border-right: 1px solid rgba(39, 38, 38, 0.16);
    border-bottom: 1px solid rgba(39, 38, 38, 0.16);
  }

  .weight-process-grid article:nth-child(2n) {
    border-right: 0;
  }

  .weight-process-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .weight-media-frame {
    min-height: 460px;
  }

  .weight-final-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .weight-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .weight-page h1 {
    font-size: 2.15rem;
    line-height: 1.03;
  }

  .weight-page h2,
  .weight-faq-section .faq-text h2 {
    font-size: 1.85rem;
  }

  .weight-page p {
    font-size: 1rem;
  }

  .weight-hero {
    min-height: 82vh;
    min-height: 82svh;
    padding: 12px;
  }

  .weight-hero-stage {
    min-height: calc(82vh - 24px);
    min-height: calc(82svh - 24px);
    border-radius: 18px;
  }

  .weight-breadcrumb {
    top: 5.8rem;
    left: 1.25rem;
    right: 1.25rem;
    font-size: 0.88rem;
  }

  .weight-hero-content {
    min-height: calc(82vh - 24px);
    min-height: calc(82svh - 24px);
    padding: 9rem 1.25rem 2.8rem;
  }

  .weight-hero-copy p {
    font-size: 1rem;
  }

  .weight-hero-meta {
    gap: 0.45rem;
  }

  .weight-hero-meta span {
    font-size: 0.82rem;
  }

  .weight-section,
  .weight-intro-section,
  .weight-card-section,
  .weight-indication-section,
  .weight-dark-section,
  .weight-process-section,
  .weight-components-section,
  .weight-doctor-section,
  .weight-faq-section {
    padding: 6rem 1rem;
  }

  .weight-card-section,
  .weight-components-section {
    padding-top: 0;
  }

  .weight-final-cta {
    padding: 0 1rem 6rem;
  }

  .weight-card-grid-three,
  .weight-card-grid-four {
    grid-template-columns: 1fr;
  }

  .weight-detail-grid {
    grid-template-columns: 1fr;
  }

  .weight-media-frame {
    min-height: 340px;
  }

  .weight-hero-actions,
  .weight-section-actions,
  .weight-final-actions {
    width: 100%;
    align-items: stretch;
  }

  .weight-page .main-cta,
  .weight-page .secondary-cta,
  .weight-page .weight-btn {
    width: 100%;
    min-height: 42px;
    font-size: 0.94rem;
  }

  .weight-info-card,
  .weight-list-card,
  .weight-process-grid article,
  .weight-detail-grid article {
    padding: 1.25rem;
  }

  .weight-process-grid {
    grid-template-columns: 1fr;
  }

  .weight-process-grid article,
  .weight-process-grid article:nth-child(2n),
  .weight-process-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(39, 38, 38, 0.16);
  }

  .weight-process-grid article:last-child {
    border-bottom: 0;
  }

  .weight-faq-section .faq-item h4 {
    font-size: 1.08rem;
    margin: 1.55rem 0;
    padding-right: 1rem;
  }

  .weight-faq-section .faq-icon {
    display: none;
  }

  .weight-final-cta-inner {
    padding: 1.6rem;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .weight-page h1 {
    font-size: 1.95rem;
  }

  .weight-page h2,
  .weight-faq-section .faq-text h2 {
    font-size: 1.75rem;
  }

  .weight-hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .weight-breadcrumb {
    left: 1rem;
    right: 1rem;
  }

  .weight-media-frame {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .weight-page .main-cta,
  .weight-page .secondary-cta,
  .weight-page .weight-btn,
  .weight-page .cta-arrow,
  .weight-page .cta-arrow::before,
  .weight-page .main-cta > img,
  .weight-page .weight-btn-primary img {
    transition: none !important;
  }
}
footer {
  background-color: #272626;
  padding: 2rem 8rem 1rem 8rem;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2rem;
  width: 30%;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links img {
  width: 40px !important;
  cursor: pointer;
}

.footer-logo img {
  width: 140px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  width: 70%;
}

.footer-links div {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  color: #e8e4e0;
  font-weight: 500;
  font-size: 1.1rem;
  font-family: "PPPaloma", sans-serif;
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: #e8e4e0;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.4rem;
}

.line-footer {
  background-color: #e8e4e080;
  width: 100%;
  height: 0.5px;
  margin: 4rem 0 1rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #e8e4e0;
  font-weight: 200;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom a {
  color: #e8e4e0;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .solo-img {
    --hero-img-side-padding: 1rem;
  }
  .hero-text {
    width: calc(100% - 4rem);
    bottom: 3rem;
    max-width: none;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }
  h1 {
    width: 100%;
    font-size: 2.1rem;
  }
  .hero-intro p {
    margin-top: 0;
  }
  .intro-section {
    padding: 6rem 1rem;
  }
  .intro-wrapper {
    width: 100%;
  }
  .intro-section h2 {
    font-size: 1.7rem;
  }
  .intro-section,
  .category-section,
  .bg-section,
  .process-section,
  .fit-section {
    padding: 2rem 1rem 6rem 1rem;
  }
  .category-wrapper {
    flex-direction: column;
  }
  .category-item {
    width: 100%;
    border-right: none;
  }
  .category-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .category-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .bg-section {
    padding: 6rem 1rem;
  }
  .pees-info-wrapper {
    flex-direction: column;
  }
  .bg-text,
  .bg-img {
    width: 100%;
  }
  .bg-text h2 {
    font-size: 1.7rem;
  }
  .services-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .services-outer h2 {
    font-size: 1.7rem;
  }
  .service-item {
    width: 100%;
    border-right: none;
  }
  .service-item:nth-child(1) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-item:nth-child(2) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-content h3 {
    font-size: 1.5rem;
  }
  .service-content p {
    font-size: 1.2rem;
  }
  .faq-section {
    padding: 6rem 1rem 4rem 1rem;
  }
  .faq-icon {
    display: none;
  }
  .faq-text h2 {
    font-size: 1.7rem;
  }
  .blog-section {
    padding: 6rem 1rem;
  }
  .blog-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-item {
    width: 100%;
    border-right: none;
  }
  .blog-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-content h3 {
    font-size: 1.5rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-layout {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .solo-img {
    --hero-img-side-padding: 3rem;
  }
  .menu-links a {
    font-size: 1.9rem;
    line-height: 2rem;
    padding: 0.8rem 0;
  }
  .menu-mobile-services__trigger {
    font-size: 1.9rem;
    line-height: 2rem;
    padding: 0.8rem 0;
  }
  .hero-text {
    width: calc(100% - 4rem);
    bottom: 3rem;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    padding: 12rem 3rem 2rem 3rem;
    flex-direction: column;
  }
  .hero-title {
    width: 100%;
  }
  .hero-intro {
    width: 100%;
    padding-top: 0;
  }
  .hero-intro .secondary-cta {
    display: none;
  }
  h1 {
    width: 100%;
    font-size: 2.4rem;
  }
  .hero-intro p {
    margin-top: 0;
  }
  .intro-section {
    padding: 6rem 3rem;
  }
  .intro-wrapper {
    width: 100%;
  }
  .intro-section h2 {
    font-size: 2rem;
  }
  .category-section {
    padding: 2rem 3rem 6rem 3rem;
  }
  .category-wrapper {
    flex-direction: column;
  }
  .category-item {
    width: 100%;
    border-right: none;
  }
  .category-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .category-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .bg-section {
    padding: 6rem 3rem;
  }
  .pees-info-wrapper {
    flex-direction: column;
  }
  .bg-text,
  .bg-img {
    width: 100%;
  }
  .bg-text h2 {
    font-size: 2rem;
  }
  .services-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .services-outer h2 {
    font-size: 2rem;
  }
  .service-item {
    width: 100%;
    border-right: none;
  }
  .service-item:nth-child(1) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-item:nth-child(2) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-content h3 {
    font-size: 1.7rem;
  }
  .service-content p {
    font-size: 1.2rem;
  }
  .faq-section {
    padding: 6rem 3rem 4rem 3rem;
  }
  .faq-icon {
    display: none;
  }
  .faq-text h2 {
    font-size: 2rem;
  }
  .blog-section {
    padding: 6rem 3rem;
  }
  .blog-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-item {
    width: 100%;
    border-right: none;
  }
  .blog-content {
    gap: 1rem;
  }
  .blog-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-content h3 {
    font-size: 1.7rem;
    min-height: inherit;
  }
  .blog-content p {
    min-height: inherit;
  }
  footer {
    padding: 2rem 3rem 1rem 3rem;
  }
  .footer-layout {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .header-desktop {
    padding: 1.8rem 2.5%;
  }
  .hero-text {
    bottom: 10%;
    left: 5%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .hero-text h1 {
    font-size: 2.6rem;
  }

  .hero-intro {
    align-self: flex-end;
    padding-top: 0;
  }
  .intro-section {
    padding: 6rem;
  }
  .category-section {
    padding: 2rem 6rem 6rem 6rem;
  }
  .bg-section {
    padding: 6rem;
  }
  .faq-section {
    padding: 6rem;
  }
  .blog-section {
    padding: 6rem;
  }
  .process-section {
    padding: 6rem;
  }
  .fit-section {
    padding: 0 6rem 6rem 6rem;
  }
  footer {
    background-color: #272626;
    padding: 2rem 6rem 1rem 6rem;
  }
}

body {
  background-color: #e8e4e0;
}

main.weight-page {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
  color: #272626;
  background-color: #e8e4e0;
}

.weight-page img[src=""] {
  display: none;
}

.weight-page h1,
.weight-page h2,
.weight-page h3,
.weight-page p {
  margin-top: 0;
}

.weight-page h1,
.weight-page h2,
.weight-page h3 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
}

.weight-page h1 {
  max-width: 780px;
  margin: 0 0 1rem 0;
  color: #e8e4e0;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.weight-page h2 {
  margin: 0 0 1rem 0;
  color: #272626;
  font-size: 2.4rem;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.weight-page h3 {
  margin: 0 0 0.75rem 0;
  color: #272626;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.weight-page p,
.weight-page li {
  color: rgba(39, 38, 38, 0.74);
  font-family: "Roboto", sans-serif;
  font-size: 1.08rem;
  font-weight: 200;
  line-height: 1.45;
}

.weight-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #34656d;
  font-family: "Roboto", sans-serif;
  font-size: 0.98rem;
  font-weight: 200;
  line-height: 1.2;
}

.weight-kicker-light {
  color: rgba(232, 228, 224, 0.82);
}

.weight-section,
.weight-dark-section,
.weight-doctor-section,
.weight-faq-section,
.weight-final-cta {
  padding-left: clamp(1rem, 7.5vw, 8rem);
  padding-right: clamp(1rem, 7.5vw, 8rem);
}

.weight-section {
  padding-top: 5.8rem;
  padding-bottom: 5.8rem;
}

.weight-card-section,
.weight-components-section,
.weight-faq-section,
.weight-final-cta {
  padding-top: 0;
}

.weight-two-col,
.weight-dark-grid,
.weight-doctor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5.2rem);
  align-items: start;
}

.weight-two-col-list {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  align-items: stretch;
}

.weight-components-intro {
  margin-bottom: 2rem;
}

.weight-section-head p,
.weight-copy p,
.weight-doctor-copy p,
.weight-dark-copy p,
.weight-final-cta p {
  max-width: 820px;
  margin-bottom: 1rem;
}

.weight-copy p:last-child,
.weight-doctor-copy p:last-child,
.weight-dark-copy p:last-child {
  margin-bottom: 0;
}

.weight-hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  padding: 20px;
  overflow: hidden;
  background-color: #e8e4e0;
  color: #e8e4e0;
}

.weight-hero-stage {
  position: relative;
  min-height: calc(88vh - 40px);
  min-height: calc(88svh - 40px);
  overflow: hidden;
  border-radius: 25px;
  isolation: isolate;
  background-color: #182136;
}

.weight-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.weight-breadcrumb {
  position: absolute;
  top: clamp(7.2rem, 14vh, 9.2rem);
  left: clamp(1.4rem, 4vw, 4rem);
  right: clamp(1.4rem, 4vw, 4rem);
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  align-items: center;
  color: rgba(232, 228, 224, 0.7);
  font-size: 0.95rem;
  font-weight: 200;
}

.weight-breadcrumb a,
.weight-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.weight-breadcrumb a:hover,
.weight-breadcrumb .is-current {
  color: #e8e4e0;
}

.weight-hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(88vh - 40px);
  min-height: calc(88svh - 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: clamp(10rem, 20vh, 13rem) clamp(1.4rem, 4vw, 4rem)
    clamp(2rem, 6vh, 4rem);
}

.weight-hero-copy p {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(232, 228, 224, 0.88);
  font-size: 1.15rem;
  line-height: 1.43;
}

.weight-hero-actions,
.weight-section-actions,
.weight-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.7rem;
}

.weight-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.76rem 1.1rem;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.weight-btn:hover {
  transform: translateY(-2px);
}

.weight-btn img {
  width: 12px;
  height: auto;
}

.weight-btn-primary {
  background-color: #34656d;
  color: #e8e4e0;
}

.weight-btn-primary:hover {
  background-color: #27454a;
  color: #e8e4e0;
}

.weight-btn-secondary {
  border: 1px solid rgba(232, 228, 224, 0.66);
  color: #e8e4e0;
  background-color: transparent;
}

.weight-btn-secondary-light {
  border: 1px solid rgba(232, 228, 224, 0.66);
  color: #e8e4e0;
  background-color: transparent;
}

.weight-btn-secondary:hover,
.weight-btn-secondary-light:hover {
  border-color: #34656d;
  color: #34656d;
}

.weight-hero-facts {
  display: grid;
  gap: 0.7rem;
}

.weight-hero-facts article {
  padding: 1rem;
  border: 1px solid rgba(232, 228, 224, 0.18);
  background-color: rgba(232, 228, 224, 0.07);
  backdrop-filter: blur(8px);
}

.weight-hero-facts span {
  display: block;
  margin-bottom: 0.5rem;
  color: #87aab1;
  font-size: 0.86rem;
  font-weight: 300;
}

.weight-hero-facts strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #e8e4e0;
  font-family: "PPPaloma", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.06;
}

.weight-hero-facts p {
  margin: 0;
  color: rgba(232, 228, 224, 0.78);
  font-size: 0.98rem;
  line-height: 1.35;
}

.weight-card-grid {
  display: grid;
  gap: 1rem;
}

.weight-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.weight-card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.weight-info-card,
.weight-list-card {
  border: 1px solid rgba(39, 38, 38, 0.12);
  border-radius: 12px;
  background-color: #ebe3d5;
  box-shadow:
    0 1px 2px rgba(42, 41, 39, 0.04),
    0 8px 22px rgba(42, 41, 39, 0.06);
}

.weight-info-card {
  min-height: 260px;
  padding: clamp(1.25rem, 2vw, 1.8rem);
}

.weight-info-card > span,
.weight-process-grid article > span {
  display: block;
  margin-bottom: 1.35rem;
  color: #34656d;
  font-weight: 300;
}

.weight-info-card p,
.weight-process-grid p,
.weight-detail-grid p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.weight-list-card {
  padding: clamp(1.3rem, 2.1vw, 2rem);
}

.weight-list-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.weight-list-card li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.76rem;
}

.weight-list-card li:last-child {
  margin-bottom: 0;
}

.weight-list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #34656d;
}

.weight-dark-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #182136;
}

.weight-dark-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  align-items: center;
}

.weight-dark-copy h2,
.weight-dark-copy h3,
.weight-dark-copy p {
  color: #e8e4e0;
}

.weight-dark-copy p {
  color: rgba(232, 228, 224, 0.82);
}

.weight-media-frame {
  height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(232, 228, 224, 0.1);
}

.weight-media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.weight-media-frame-light {
  background-color: rgba(39, 38, 38, 0.08);
}

.obj-b {
  object-position: 50% 50%;
}

.weight-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.weight-detail-grid article {
  padding: 1rem;
  border: 1px solid rgba(232, 228, 224, 0.16);
  border-radius: 10px;
  background-color: rgba(232, 228, 224, 0.06);
}

.weight-detail-grid h3 {
  color: #e8e4e0;
  font-size: 1.25rem;
}

.weight-detail-grid p {
  color: rgba(232, 228, 224, 0.78);
}

.weight-process-head {
  max-width: 900px;
  margin-bottom: 2rem;
}

.weight-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(39, 38, 38, 0.16);
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(235, 227, 213, 0.45);
}

.weight-process-grid article {
  min-height: 250px;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border-right: 1px solid rgba(39, 38, 38, 0.14);
}

.weight-process-grid article:last-child {
  border-right: none;
}

.weight-process-grid h3 {
  font-size: 1.42rem;
}

.weight-doctor-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.weight-doctor-grid {
  align-items: center;
}

.weight-doctor-copy p {
  max-width: 780px;
}

.weight-doctor-copy .weight-btn-secondary-light {
  color: #272626;
  border-color: rgba(39, 38, 38, 0.5);
}

.weight-faq-section {
  padding-bottom: 5.5rem;
  background-color: #e8e4e0;
}

.weight-faq-section .faq-text h2 {
  margin-top: 0.45rem;
  color: #272626;
  font-family: "PPPaloma", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.weight-faq-section .faq-wrapper {
  width: 100%;
}

.weight-faq-section .faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(39, 38, 38, 0.48);
  cursor: pointer;
}

.weight-faq-section .faq-item:first-child {
  border-top: 1px solid rgba(39, 38, 38, 0.48);
  margin-top: 2rem;
}

.weight-faq-section .faq-item h4 {
  margin: 2.2rem 0;
  color: #272626;
  font-family: "Roboto", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
}

.weight-faq-section .faq-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1.5px solid rgba(39, 38, 38, 0.55);
  border-radius: 4px;
}

.weight-faq-section .faq-icon img {
  width: 14px;
  height: 14px;
}

.weight-faq-section .faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 300ms ease,
    opacity 250ms ease;
}

.weight-faq-section .faq-content.open {
  opacity: 1;
}

.weight-faq-section .faq-content p {
  max-width: 940px;
  margin: 1rem 0 2rem;
  color: rgba(39, 38, 38, 0.74);
  font-size: 1.08rem;
}

.weight-faq-section .faq-item[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.weight-faq-section .faq-item[aria-expanded="true"] + .faq-content {
  border-bottom: 1px solid rgba(39, 38, 38, 0.48);
}

.weight-final-cta {
  padding-bottom: 6rem;
}

.weight-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.8rem);
  border-radius: 16px;
  background-color: #182136;
  color: #e8e4e0;
}

.weight-final-cta h2,
.weight-final-cta p {
  color: #e8e4e0;
}

.weight-final-cta p {
  max-width: 780px;
  color: rgba(232, 228, 224, 0.82);
}

.weight-final-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 1280px) {
  .weight-card-grid-four,
  .weight-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weight-process-grid article:nth-child(2n) {
    border-right: none;
  }

  .weight-process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.14);
  }
}

@media (max-width: 1024px) {
  .weight-hero-content,
  .weight-two-col,
  .weight-two-col-list,
  .weight-dark-grid,
  .weight-doctor-grid,
  .weight-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .weight-hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .weight-card-grid-three,
  .weight-card-grid-four {
    grid-template-columns: 1fr;
  }

  .weight-media-frame {
    min-height: 420px;
  }

  .weight-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .weight-page h1 {
    font-size: 2.2rem;
    line-height: 1.04;
  }

  .weight-page h2,
  .weight-faq-section .faq-text h2 {
    font-size: 1.85rem;
  }

  .weight-page h3 {
    font-size: 1.35rem;
  }

  .weight-page p,
  .weight-page li {
    font-size: 1rem;
  }

  .weight-hero {
    min-height: auto;
    padding: 12px;
  }

  .weight-hero-stage {
    min-height: calc(100svh - 24px);
    border-radius: 18px;
  }

  .weight-hero-content {
    min-height: calc(100svh - 24px);
    padding: 7rem 1.25rem 1.5rem;
  }

  .weight-breadcrumb {
    top: 6rem;
    left: 1.25rem;
    right: 1.25rem;
    font-size: 0.86rem;
  }

  .weight-hero-facts,
  .weight-detail-grid,
  .weight-process-grid {
    grid-template-columns: 1fr;
  }

  .weight-hero-actions,
  .weight-section-actions,
  .weight-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .weight-btn {
    width: 100%;
  }

  .weight-section,
  .weight-dark-section,
  .weight-doctor-section,
  .weight-faq-section,
  .weight-final-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .weight-section,
  .weight-dark-section,
  .weight-doctor-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .weight-card-section,
  .weight-components-section,
  .weight-faq-section,
  .weight-final-cta {
    padding-top: 0;
  }

  .weight-process-grid article,
  .weight-process-grid article:nth-child(2n),
  .weight-process-grid article:nth-child(-n + 2) {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(39, 38, 38, 0.14);
  }

  .weight-process-grid article:last-child {
    border-bottom: none;
  }

  .weight-media-frame {
    min-height: 320px;
  }

  .weight-faq-section .faq-icon {
    display: none;
  }

  .weight-faq-section .faq-item h4 {
    margin: 1.45rem 0;
    font-size: 1.1rem;
  }
}
