@font-face {
  font-family: 'Montserrat';
  src:
    local('Montserrat Regular'),
    local('Montserrat-Regular'),
    url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src:
    local('Montserrat Medium'),
    local('Montserrat-Medium'),
    url('../fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src:
    local('Montserrat SemiBold'),
    local('Montserrat-SemiBold'),
    url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src:
    local('Montserrat Bold'),
    local('Montserrat-Bold'),
    url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  font-style: normal;
  line-height: normal;
}

ul,
ol {
  list-style: none;
}

body {
  background: #f9f7f0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-family: 'Montserrat';
}

.container {
  max-width: 1312px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 42px;
  padding-bottom: 63px;
  gap: 20px;
}

.header__menu-btn {
  border: 0;
  background: transparent;
  width: 30px;
  cursor: pointer;
}

.header__menu-icon {
  width: 100%;
  height: auto;
}

.btn {
  cursor: pointer;
  border: 0;
}

.btn--primary {
  border-radius: 24px;
  background: #a3e0e0;
  padding: 8px 24px;
  color: #000;

  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  max-width: 989.617px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  position: relative;
  padding: 0 16px;
}

.hero__title {
  transform: rotate(1deg);
  color: #464545;

  font-size: 43px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 2.15px;
  text-transform: uppercase;
}

.hero__title-highlight {
  background: #a3e0e0;
}

.hero__icon {
  width: 76px;
  position: absolute;
  top: -44px;
  left: -65px;
}

.hero-video {
  max-width: 894px;
  width: 100%;
  background-image: url(../images/video-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}

.hero-video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  overflow: hidden;
}

.mx-auto {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 110px;
}

.stats__item.stats__item--users {
  padding-right: 105px;
  border-right: 1px solid #000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stats__item.stats__item--users .stats__number,
.stats__item.stats__item--reviews .stats__number {
  color: #000;

  font-size: 43px;
  font-weight: 700;
}

.stats__item.stats__item--users .stats__text,
.stats__item.stats__item--reviews .stats__text {
  color: #000;

  font-size: 18px;
  font-weight: 400;
  max-width: 237px;
  width: 100%;
}

.stats__logos {
  padding: 0 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.stats__logo {
  width: 90px;
  height: auto;
}

.stats__item.stats__item--reviews {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 105px;
  border-left: 1px solid #000;
}

.stats__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats__stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stats__star {
  width: 25.055px;
}

.stats__rating-value {
  color: #000;

  font-size: 18px;
  font-weight: 400;
}

.stats__review-link {
  color: #000;

  font-size: 18px;
  font-weight: 400;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.section-title {
  color: #000;
  text-align: center;

  font-size: 43px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 16px;
  margin-right: auto;
  margin-left: auto;
}

.pb-100 {
  padding-bottom: 100px;
}

.mb-72 {
  margin-bottom: 72px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 8px;
}

.section-description {
  color: #000;

  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1.2px;
  max-width: 907px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 16px;
}

.section-description--secondary {
  max-width: 655px;
  font-size: 18px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 221px;
  margin-top: 64px;
  margin-bottom: 112px;
}

.comparison__title {
  color: #000;
  text-align: center;

  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.9px;
  margin-bottom: 8px;
}

.comparison__subtitle {
  color: #000;

  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.9px;
  margin-bottom: 16px;
  text-align: center;
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.capsule {
  max-width: 249px;
  width: 100%;
  margin: 64px auto;
  padding: 0 16px;
  display: block;
}

.ingredients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.ingredients__item {
  border-radius: 32px;
  background: #d8d8d8;
  display: flex;
  padding: 21px 37px 29px 22px;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  transition: width 0.3s ease;
}

.ingredients__item.ingredients__item--active {
  background: #a3e0e0;
}

.ingredients__title {
  color: #000;

  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ingredients__text {
  color: #000;

  font-size: 18px;
  font-weight: 400;
}

.note {
  color: #000;
  text-align: center;

  font-size: 24px;
  font-weight: 400;
  padding: 0 16px;
  margin: 0 auto;
  display: block;
  font-style: italic;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 660px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 64px auto 112px;
  padding: 0 16px;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.benefits__text {
  color: #353535;
  text-align: center;

  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  max-width: 66px;
  width: 100%;
}

.benefits__icon {
  width: 36px;
  height: auto;
}

.section-title--secondary {
  max-width: 782px;
  width: 100%;
  color: #000;
  text-align: center;

  font-size: 52.768px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 2.638px;
  text-transform: uppercase;
  padding: 0 16px;
  margin: 0 auto;
}

.timeline {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.timeline__column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.timeline__column.timeline__column-second {
  justify-items: end;
}

.timeline__item {
  max-width: 302px;
  width: 100%;
  padding: 24px 16px;
  border-radius: 24px;
  border: 1px solid #000;
  background: #d9d9d9;
  cursor: pointer;
  transition: background 0.3s ease;
}

.timeline__item.timeline__item--active {
  background: #a3e0e0;
}

.timeline__title {
  color: #000;

  font-size: 43px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 2.15px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline__text {
  color: #000;

  font-size: 18px;
  font-weight: 400;
}

.timeline__line {
  border-radius: 32px;
  border: 1px solid #000;
  background: #d9d9d9;
  height: 14px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.timeline__line::after {
  content: '';
  position: absolute;
  left: -1px;
  top: -1px;
  height: 100%;
  width: var(--progress-width);
  border-radius: 32px;
  border: 1px solid #000;
  background: #a3e0e0;
  transition: width 0.3s ease;
}

.logos {
  background: #a3e0e0;
  padding: 36px 0;
  margin: 112px 0;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
}

.logos__item {
  max-width: 166px;
  width: 100%;
}

.mx-w-655 {
  max-width: 655px;
}

.experts-section {
  margin-top: 112px;
  margin-bottom: 112px;
}

.experts-section__title {
  max-width: 1150px;
  margin-bottom: 64px;
}

.experts-section__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.experts-section__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.experts-section__image-wrapper {
  border-radius: 24px;
  border: 1px solid #000;
  background: #fff;
  height: 273px;
  overflow: hidden;
}

.experts-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experts-section__text {
  color: #000;

  font-size: 18px;
  font-weight: 400;
}

.faq {
  margin-bottom: 112px;
}

.faq__title {
  max-width: 100%;
  margin-bottom: 64px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.faq__item {
  border-radius: 36px;
  border: 1px solid #000;
  background: #fff;
  padding: 24px 116px 24px 24px;
  cursor: pointer;
}

.faq__question {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  transition: padding-bottom 0.3s ease;
  -webkit-transition: padding-bottom 0.3s ease;
  -moz-transition: padding-bottom 0.3s ease;
  -ms-transition: padding-bottom 0.3s ease;
  -o-transition: padding-bottom 0.3s ease;
}

.faq__item--active .faq__question {
  padding-bottom: 8px;
}

.faq__answer {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.9px;

  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  transition:
    max-height 0.3s ease,
    padding-top 0.3s ease;
}

.faq__item--active .faq__answer {
  max-height: 500px;
  padding-top: 8px;
  border-top: 1px solid #454545;
}

.product-section__title {
  max-width: 100%;
  margin-bottom: 48px;
}

.product-section__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 124px;
}

.product-section__product {
  border-radius: 48px;
  background: #a3e0e0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-section__image {
  max-width: 311px;
  width: 100%;
  height: auto;
}

.product-section__discount {
  width: 85px;
  height: 85px;
  background-color: #f9f7f0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;

  font-size: 24px;
  font-weight: 700;
  position: absolute;
  top: -27.5px;
  right: -27.5px;
}

.product-section__subtitle {
  color: #fb9266;
  font-size: 24px;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-section__name {
  color: #000;

  font-size: 75px;
  font-weight: 600;
  line-height: 85%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-section__description {
  color: #000;

  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 16px;
}

.product-section__reviews {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.product-section__stars {
  display: flex;
  align-items: center;
}

.product-section__star {
  width: 25px;
  height: auto;
}

.product-section__reviews-text {
  color: #000;

  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.9px;
}

.product-section__text {
  color: #000;

  font-size: 18px;
  font-weight: 400;
  margin-bottom: 34px;
}

.product-section__text i {
  font-style: italic;
}

.product-section__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.product-section__price {
  display: flex;
  flex-direction: column;
}

.product-section__price-old {
  color: #000;

  font-size: 24px;
  font-weight: 300;
  transform: rotate(3deg);
  position: relative;
}

.product-section__price-old::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.product-section__price-current {
  color: #000;

  font-size: 24px;
  font-weight: 700;
}

.product-section__timer {
  border-radius: 24px;
  border: 1px solid #000;
  padding: 8px 24px;
  color: #000;

  font-size: 24px;
  font-weight: 700;
}

.product-section__button {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-section__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 58px;
}

.product-section__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-section__benefit-text {
  color: #000;

  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.9px;
}

.benefits-strip {
  width: calc(100% - 40px);
  max-width: 1440px;
  margin: 40px auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  background: #ffffff;
  border-radius: 26px;

  padding: 34px 20px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.benefits-strip__item {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  text-align: center;

  padding: 10px 40px;
}

/* вертикальные линии между карточками */
.benefits-strip__item:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 20%;
  right: 0;

  width: 1px;
  height: 60%;

  background: rgba(0, 0, 0, 0.45);
}

/* круг под иконкой */
.benefits-strip__icon {
  width: 100px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border-radius: 50%;

  background: #c8f3f1;
}

/* сами SVG */
.benefits-strip__icon img {
  width: 52px;
  height: 52px;

  object-fit: contain;
}

.benefits-strip__title {
  margin: 0 0 10px;

  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;

  color: #111111;
}

.benefits-strip__text {
  max-width: 280px;

  margin: 0;

  font-size: 19px;
  line-height: 1.4;
  font-weight: 400;

  color: #373737;
}
/* ==========================================================
   PARAMD — A CLOSER LOOK
========================================================== */

.paramd-look {
  width: 100%;

  padding: 70px 28px 75px;

  background: #faf9f5;

  color: #111111;

  box-sizing: border-box;
}


.paramd-look *,
.paramd-look *::before,
.paramd-look *::after {
  box-sizing: border-box;
}


.paramd-look__container {
  width: 100%;
  max-width: 1380px;

  margin: 0 auto;
}


/* ==========================================================
   HEADER
========================================================== */

.paramd-look__header {
  max-width: 1000px;

  margin: 0 0 48px;

  text-align: left;
}


.paramd-look__title {
  margin: 0;

  font-size: 52px;
  line-height: 1.08;

  font-weight: 800;

  letter-spacing: -1.4px;

  color: #111111;
}


.paramd-look__title span {
  position: relative;

  color: #111111;
}


/*
   Highlight under ParaMD
*/

.paramd-look__title span::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  bottom: 4px;

  height: 13px;

  background: #c8f3f1;

  z-index: -1;
}


/*
   Small line under title
*/

.paramd-look__title-line {
  width: 92px;
  height: 4px;

  margin-top: 22px;

  background: #c8f3f1;

  border-radius: 20px;
}


.paramd-look__subtitle {
  max-width: 850px;

  margin: 28px 0 0;

  font-size: 21px;
  line-height: 1.5;

  color: #505050;
}


/* ==========================================================
   GRID
========================================================== */

.paramd-look__grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 22px;
}


/* ==========================================================
   CARD
========================================================== */

.paramd-look__card {
  position: relative;

  min-height: 380px;

  display: flex;
  flex-direction: column;

  align-items: center;

  padding: 38px 30px 32px;

  overflow: hidden;

  text-align: center;

  background: #ffffff;

  border: 1px solid #e3e8e7;
  border-radius: 22px;

  box-shadow:
          0 8px 28px rgba(0, 0, 0, 0.04);
}


/*
   Aqua line at top
*/

.paramd-look__card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 5px;

  background: #c8f3f1;
}


/* ==========================================================
   NUMBER
========================================================== */

.paramd-look__number {
  width: 72px;
  height: 72px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  background: #c8f3f1;

  border-radius: 50%;

  font-size: 22px;
  line-height: 1;

  font-weight: 800;

  color: #111111;
}


/* ==========================================================
   CARD TITLE
========================================================== */

.paramd-look__card-title {
  max-width: 260px;

  margin: 0;

  font-size: 24px;
  line-height: 1.22;

  font-weight: 750;

  letter-spacing: -0.35px;

  color: #111111;
}


/* ==========================================================
   SMALL LINE
========================================================== */

.paramd-look__card-line {
  width: 48px;
  height: 3px;

  margin: 20px auto;

  background: #c8f3f1;

  border-radius: 50px;
}


/* ==========================================================
   TEXT
========================================================== */

.paramd-look__card-text {
  max-width: 255px;

  margin: 0 auto;

  font-size: 17px;
  line-height: 1.55;

  color: #484848;
}


/* ==========================================================
   DECORATIVE ELEMENT
========================================================== */

.paramd-look__decor {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 6px;

  margin-top: auto;
  padding-top: 32px;
}


.paramd-look__decor span {
  display: block;

  width: 6px;
  height: 6px;

  background: #c8f3f1;

  border-radius: 50%;
}


.paramd-look__decor span:nth-child(2) {
  width: 9px;
  height: 9px;
}


/* ==========================================================
   BOTTOM MESSAGE
========================================================== */

.paramd-look__bottom {
  max-width: 900px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  margin: 36px auto 0;

  padding: 18px 26px;

  background: rgba(200, 243, 241, 0.28);

  border: 1px solid rgba(200, 243, 241, 0.95);
  border-radius: 16px;

  text-align: center;
}


.paramd-look__bottom p {
  margin: 0;

  font-size: 17px;
  line-height: 1.45;

  color: #383838;
}


.paramd-look__bottom strong {
  font-weight: 700;

  color: #111111;
}


.paramd-look__bottom-dot {
  width: 8px;
  height: 8px;

  flex: 0 0 8px;

  background: #c8f3f1;

  border-radius: 50%;
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) {

  .paramd-look__card {
    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            border-color 0.25s ease;
  }


  .paramd-look__number {
    transition:
            transform 0.25s ease;
  }


  .paramd-look__card:hover {
    transform: translateY(-5px);

    border-color: #c8f3f1;

    box-shadow:
            0 16px 38px rgba(0, 0, 0, 0.065);
  }


  .paramd-look__card:hover .paramd-look__number {
    transform: scale(1.05);
  }

}


/* ==========================================================
   SMALL DESKTOP
========================================================== */

@media (max-width: 1150px) {

  .paramd-look__title {
    font-size: 45px;
  }


  .paramd-look__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .paramd-look__card {
    min-height: 330px;
  }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 780px) {

  .paramd-look {
    padding: 52px 20px 58px;
  }


  .paramd-look__header {
    margin-bottom: 35px;

    text-align: center;
  }


  .paramd-look__title {
    font-size: 38px;

    letter-spacing: -0.7px;
  }


  .paramd-look__title-line {
    margin-left: auto;
    margin-right: auto;
  }


  .paramd-look__subtitle {
    margin-left: auto;
    margin-right: auto;

    font-size: 18px;
  }


  .paramd-look__card {
    padding: 30px 24px;

    min-height: 310px;
  }


  .paramd-look__number {
    width: 62px;
    height: 62px;

    margin-bottom: 22px;

    font-size: 20px;
  }


  .paramd-look__card-title {
    font-size: 21px;
  }


  .paramd-look__card-text {
    font-size: 15px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 580px) {

  .paramd-look {
    padding: 42px 14px 48px;
  }


  .paramd-look__title {
    font-size: 30px;
    line-height: 1.13;

    letter-spacing: -0.4px;
  }


  .paramd-look__title span::after {
    bottom: 2px;

    height: 9px;
  }


  .paramd-look__title-line {
    width: 65px;
    height: 3px;

    margin-top: 17px;
  }


  .paramd-look__subtitle {
    margin-top: 20px;

    font-size: 15px;
  }


  /* One column */

  .paramd-look__grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  /*
     On mobile cards become horizontal,
     so the page is not unnecessarily long.
  */

  .paramd-look__card {
    min-height: auto;

    display: grid;

    grid-template-columns: 58px 1fr;

    column-gap: 17px;

    align-items: center;

    padding: 22px 19px;

    text-align: left;

    border-radius: 17px;
  }


  .paramd-look__number {
    grid-row: 1 / span 3;

    width: 54px;
    height: 54px;

    margin: 0;

    font-size: 17px;
  }


  .paramd-look__card-title {
    max-width: none;

    font-size: 18px;
  }


  .paramd-look__card-line {
    width: 38px;

    margin: 9px 0 10px;
  }


  .paramd-look__card-text {
    max-width: none;

    margin: 0;

    font-size: 14px;
    line-height: 1.45;
  }


  .paramd-look__decor {
    display: none;
  }


  /* Bottom */

  .paramd-look__bottom {
    gap: 10px;

    margin-top: 22px;

    padding: 15px;
  }


  .paramd-look__bottom p {
    font-size: 13px;
  }


  .paramd-look__bottom-dot {
    width: 6px;
    height: 6px;

    flex-basis: 6px;
  }

}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media (max-width: 380px) {

  .paramd-look__title {
    font-size: 27px;
  }


  .paramd-look__card {
    grid-template-columns: 50px 1fr;

    column-gap: 13px;

    padding: 19px 15px;
  }


  .paramd-look__number {
    width: 47px;
    height: 47px;

    font-size: 15px;
  }


  .paramd-look__card-title {
    font-size: 16px;
  }


  .paramd-look__card-text {
    font-size: 13px;
  }

}
/* =========================================================
   PARAMD GUARANTEE
========================================================= */

.paramd-guarantee {
  width: 100%;
  padding: 65px 20px 70px;
  background: #faf9f5;
  box-sizing: border-box;
}

.paramd-guarantee *,
.paramd-guarantee *::before,
.paramd-guarantee *::after {
  box-sizing: border-box;
}

.paramd-guarantee__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}


/* =========================================================
   CARD
========================================================= */

.paramd-guarantee__card {
  position: relative;
  overflow: hidden;

  padding: 50px 60px 42px;

  background: #ffffff;

  border: 1px solid #e8eceb;
  border-radius: 24px;

  box-shadow:
          0 14px 40px rgba(0, 0, 0, 0.05);

  text-align: center;
}


/* turquoise top line */

.paramd-guarantee__card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 5px;

  background: #c8f3f1;
}


/* subtle background accent */

.paramd-guarantee__card::after {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  right: -110px;
  top: -120px;

  background: rgba(200, 243, 241, 0.22);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   ICON
========================================================= */

.paramd-guarantee__icon {
  position: relative;
  z-index: 1;

  width: 76px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 20px;

  background: #c8f3f1;

  border-radius: 50%;
}

.paramd-guarantee__shield {
  width: 38px;
  height: 38px;

  fill: none;

  stroke: #111111;
  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   EYEBROW
========================================================= */

.paramd-guarantee__eyebrow {
  margin: 0 0 10px;

  font-size: 13px;
  line-height: 1.2;

  font-weight: 750;

  letter-spacing: 1.7px;

  text-transform: uppercase;

  color: #5d6362;
}


/* =========================================================
   TITLE
========================================================= */

.paramd-guarantee__title {
  margin: 0;

  font-size: 42px;
  line-height: 1.13;

  font-weight: 800;

  letter-spacing: -0.9px;

  color: #111111;
}

.paramd-guarantee__title span {
  position: relative;
  z-index: 1;

  display: inline-block;
}

.paramd-guarantee__title span::after {
  content: "";

  position: absolute;

  left: -4px;
  right: -4px;

  bottom: 3px;

  height: 13px;

  background: #c8f3f1;

  z-index: -1;

  border-radius: 3px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.paramd-guarantee__description {
  max-width: 780px;

  margin: 22px auto 0;

  font-size: 18px;
  line-height: 1.65;

  font-weight: 400;

  color: #4c4c4c;
}


/* =========================================================
   BOTTOM DETAILS
========================================================= */

.paramd-guarantee__details {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 28px;

  margin-top: 34px;

  padding-top: 28px;

  border-top: 1px solid #eeeeee;
}

.paramd-guarantee__detail {
  min-width: 180px;

  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 5px;
}

.paramd-guarantee__detail strong {
  font-size: 14px;
  line-height: 1.2;

  font-weight: 800;

  letter-spacing: 0.5px;

  text-transform: uppercase;

  color: #111111;
}

.paramd-guarantee__detail span {
  font-size: 13px;
  line-height: 1.35;

  color: #6b6b6b;
}


/* separators */

.paramd-guarantee__separator {
  width: 1px;
  height: 34px;

  background: #e2e2e2;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .paramd-guarantee {
    padding: 52px 18px 58px;
  }

  .paramd-guarantee__card {
    padding: 44px 34px 38px;
  }

  .paramd-guarantee__title {
    font-size: 36px;
  }

  .paramd-guarantee__description {
    font-size: 16px;
  }

  .paramd-guarantee__details {
    gap: 20px;
  }

  .paramd-guarantee__detail {
    min-width: 150px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .paramd-guarantee {
    padding: 40px 14px 45px;
  }

  .paramd-guarantee__card {
    padding: 34px 20px 28px;

    border-radius: 18px;
  }

  .paramd-guarantee__icon {
    width: 62px;
    height: 62px;

    margin-bottom: 17px;
  }

  .paramd-guarantee__shield {
    width: 31px;
    height: 31px;
  }

  .paramd-guarantee__eyebrow {
    font-size: 11px;

    letter-spacing: 1.3px;
  }

  .paramd-guarantee__title {
    font-size: 29px;

    line-height: 1.15;
  }

  .paramd-guarantee__title span::after {
    height: 9px;
  }

  .paramd-guarantee__description {
    margin-top: 17px;

    font-size: 15px;
    line-height: 1.55;
  }


  /* stack bottom items */

  .paramd-guarantee__details {
    flex-direction: column;

    align-items: stretch;

    gap: 0;

    margin-top: 28px;
    padding-top: 16px;
  }

  .paramd-guarantee__detail {
    min-width: 0;

    padding: 15px 0;
  }

  .paramd-guarantee__separator {
    width: 100%;
    height: 1px;

    background: #ececec;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .paramd-guarantee__card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .paramd-guarantee__title {
    font-size: 26px;
  }

  .paramd-guarantee__description {
    font-size: 14px;
  }
}

/* ==========================================================
   PARAMD PRODUCT SECTION
========================================================== */

.paramd-product {
  width: 100%;

  padding: 70px 28px 75px;

  background: #faf9f5;

  color: #111111;

  box-sizing: border-box;
}


.paramd-product *,
.paramd-product *::before,
.paramd-product *::after {
  box-sizing: border-box;
}


.paramd-product__container {
  width: 100%;

  max-width: 1380px;

  margin: 0 auto;
}


/* ==========================================================
   HEADER
========================================================== */

.paramd-product__header {
  margin-bottom: 45px;
}


.paramd-product__section-title {
  margin: 0;

  font-size: 52px;
  line-height: 1.08;

  font-weight: 800;

  letter-spacing: -1.3px;

  color: #111111;
}


.paramd-product__section-title span {
  position: relative;

  z-index: 1;

  display: inline-block;
}


.paramd-product__section-title span::after {
  content: "";

  position: absolute;

  left: -3px;
  right: -3px;

  bottom: 4px;

  height: 13px;

  background: #c8f3f1;

  border-radius: 2px;

  z-index: -1;
}


.paramd-product__header-line {
  width: 90px;
  height: 4px;

  margin-top: 22px;

  background: #c8f3f1;

  border-radius: 10px;
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.paramd-product__main {
  display: grid;

  grid-template-columns:
        minmax(380px, 0.9fr)
        minmax(500px, 1.1fr);

  gap: 75px;

  align-items: center;
}


/* ==========================================================
   PRODUCT IMAGE
========================================================== */

.paramd-product__visual {
  width: 100%;
}


.paramd-product__image-bg {
  position: relative;

  width: 100%;

  min-height: 570px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 45px;

  overflow: hidden;

  background: #c8f3f1;

  border-radius: 36px;
}


/* soft decorative circle */

.paramd-product__image-bg::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 390px;
  height: 390px;

  transform: translate(-50%, -50%);

  background: rgba(255, 255, 255, 0.48);

  border-radius: 50%;
}


.paramd-product__image {
  position: relative;

  z-index: 2;

  display: block;

  width: auto;

  max-width: 90%;
  max-height: 500px;

  object-fit: contain;

  filter:
          drop-shadow(
                  0 22px 22px rgba(0, 0, 0, 0.13)
          );
}


/* ==========================================================
   CONTENT
========================================================== */

.paramd-product__content {
  width: 100%;

  max-width: 700px;
}


/* SMALL LABEL */

.paramd-product__eyebrow {
  margin: 0 0 12px;

  font-size: 15px;
  line-height: 1.2;

  font-weight: 750;

  letter-spacing: 1.8px;

  text-transform: uppercase;

  color: #527a78;
}


/* PRODUCT NAME */

.paramd-product__name {
  margin: 0;

  font-size: 76px;
  line-height: 0.98;

  font-weight: 850;

  letter-spacing: -2px;

  color: #111111;
}


/* TAGLINE */

.paramd-product__tagline {
  max-width: 610px;

  margin: 20px 0 0;

  font-size: 22px;
  line-height: 1.45;

  font-style: italic;

  color: #343434;
}


/* DIVIDER */

.paramd-product__divider {
  width: 100%;
  height: 1px;

  margin: 30px 0;

  background: #deded9;
}


/* DESCRIPTION */

.paramd-product__description {
  max-width: 650px;

  margin: 0;

  font-size: 18px;
  line-height: 1.65;

  color: #454545;
}


/* ==========================================================
   INFO NOTE
========================================================== */

.paramd-product__notice {
  max-width: 650px;

  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: 27px;

  padding: 15px 18px;

  background: rgba(200, 243, 241, 0.32);

  border: 1px solid #c8f3f1;

  border-radius: 14px;
}


.paramd-product__notice-icon {
  width: 30px;
  height: 30px;

  flex: 0 0 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1.5px solid #4d7e7b;

  border-radius: 50%;

  font-family: Georgia, serif;

  font-size: 17px;
  font-weight: 700;

  color: #315e5b;
}


.paramd-product__notice p {
  margin: 0;

  font-size: 14px;
  line-height: 1.45;

  color: #454545;
}


/* ==========================================================
   CTA BUTTON
========================================================== */

.paramd-product__button {
  width: fit-content;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  margin-top: 30px;

  padding: 17px 29px;

  background: #c8f3f1;

  border: 1px solid #b6e8e5;

  border-radius: 999px;

  text-decoration: none;

  font-size: 16px;
  line-height: 1;

  font-weight: 800;

  color: #111111;

  transition:
          transform 0.2s ease,
          background 0.2s ease,
          box-shadow 0.2s ease;
}


.paramd-product__button-arrow {
  width: 21px;
  height: 21px;

  fill: none;

  stroke: currentColor;

  stroke-width: 2;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.2s ease;
}


@media (hover: hover) {

  .paramd-product__button:hover {
    transform: translateY(-2px);

    background: #b9eeeb;

    box-shadow:
            0 10px 24px rgba(0, 0, 0, 0.07);
  }


  .paramd-product__button:hover
  .paramd-product__button-arrow {
    transform: translateX(3px);
  }
}


/* ==========================================================
   SMALL DESKTOP
========================================================== */

@media (max-width: 1150px) {

  .paramd-product__section-title {
    font-size: 45px;
  }


  .paramd-product__main {
    grid-template-columns:
            0.9fr 1.1fr;

    gap: 48px;
  }


  .paramd-product__image-bg {
    min-height: 500px;
  }


  .paramd-product__image {
    max-height: 430px;
  }


  .paramd-product__name {
    font-size: 64px;
  }


  .paramd-product__tagline {
    font-size: 19px;
  }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 800px) {

  .paramd-product {
    padding: 52px 20px 58px;
  }


  .paramd-product__header {
    margin-bottom: 34px;

    text-align: center;
  }


  .paramd-product__section-title {
    font-size: 38px;

    letter-spacing: -0.7px;
  }


  .paramd-product__header-line {
    margin-left: auto;
    margin-right: auto;
  }


  .paramd-product__main {
    grid-template-columns: 1fr;

    gap: 38px;
  }


  .paramd-product__image-bg {
    max-width: 580px;

    min-height: 440px;

    margin: 0 auto;

    border-radius: 28px;
  }


  .paramd-product__image {
    max-height: 370px;
  }


  .paramd-product__content {
    max-width: 620px;

    margin: 0 auto;

    text-align: center;
  }


  .paramd-product__eyebrow {
    font-size: 13px;
  }


  .paramd-product__name {
    font-size: 58px;
  }


  .paramd-product__tagline {
    margin-left: auto;
    margin-right: auto;

    font-size: 18px;
  }


  .paramd-product__description {
    margin-left: auto;
    margin-right: auto;

    font-size: 16px;
  }


  .paramd-product__notice {
    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 580px) {

  .paramd-product {
    padding: 42px 14px 48px;
  }


  /* HEADER */

  .paramd-product__header {
    margin-bottom: 27px;
  }


  .paramd-product__section-title {
    font-size: 30px;
    line-height: 1.15;
  }


  .paramd-product__section-title span::after {
    height: 9px;

    bottom: 2px;
  }


  .paramd-product__header-line {
    width: 65px;
    height: 3px;

    margin-top: 16px;
  }


  /* IMAGE */

  .paramd-product__image-bg {
    min-height: 350px;

    padding: 26px;

    border-radius: 22px;
  }


  .paramd-product__image-bg::before {
    width: 275px;
    height: 275px;
  }


  .paramd-product__image {
    max-width: 88%;

    max-height: 300px;
  }


  /* CONTENT */

  .paramd-product__main {
    gap: 30px;
  }


  .paramd-product__eyebrow {
    margin-bottom: 9px;

    font-size: 11px;

    letter-spacing: 1.3px;
  }


  .paramd-product__name {
    font-size: 48px;

    letter-spacing: -1px;
  }


  .paramd-product__tagline {
    margin-top: 14px;

    font-size: 16px;
  }


  .paramd-product__divider {
    margin: 21px 0;
  }


  .paramd-product__description {
    font-size: 15px;
    line-height: 1.55;
  }


  .paramd-product__notice {
    margin-top: 20px;

    padding: 13px 14px;
  }


  .paramd-product__notice p {
    font-size: 12px;
  }


  .paramd-product__button {
    width: 100%;

    margin-top: 22px;

    padding: 16px 22px;
  }

}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media (max-width: 380px) {

  .paramd-product__section-title {
    font-size: 27px;
  }


  .paramd-product__image-bg {
    min-height: 310px;
  }


  .paramd-product__image {
    max-height: 265px;
  }


  .paramd-product__name {
    font-size: 43px;
  }

}
/* ==========================================================
   RESEARCH FACTS SECTION
========================================================== */

.research-facts {
  width: 100%;

  padding: 70px 24px 75px;

  background: #faf9f5;

  box-sizing: border-box;
}


.research-facts *,
.research-facts *::before,
.research-facts *::after {
  box-sizing: border-box;
}


.research-facts__container {
  width: 100%;
  max-width: 1420px;

  margin: 0 auto;
}


/* ==========================================================
   HEADER
========================================================== */

.research-facts__header {
  max-width: 1000px;

  margin: 0 auto 45px;

  text-align: center;
}


/* SMALL TOP LABEL */

.research-facts__eyebrow {
  width: fit-content;

  margin: 0 auto 20px;

  padding: 9px 18px;

  background: rgba(200, 243, 241, 0.65);

  border-radius: 999px;

  font-size: 13px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: #317976;
}


/* TITLE */

.research-facts__title {
  margin: 0;

  font-size: 52px;
  line-height: 1.08;

  font-weight: 800;

  letter-spacing: -1.3px;

  text-transform: uppercase;

  color: #111111;
}


.research-facts__title span {
  position: relative;

  display: inline-block;

  z-index: 1;
}


.research-facts__title span::after {
  content: "";

  position: absolute;

  left: -4px;
  right: -4px;

  bottom: 3px;

  height: 13px;

  background: #c8f3f1;

  border-radius: 2px;

  z-index: -1;
}


/* DIVIDER */

.research-facts__divider {
  width: 90px;
  height: 3px;

  margin: 23px auto 20px;

  background: #c8f3f1;

  border-radius: 10px;
}


/* SUBTITLE */

.research-facts__subtitle {
  max-width: 880px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.6;

  color: #4b4b4b;
}


/* ==========================================================
   GRID
========================================================== */

.research-facts__grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 22px;
}


/* ==========================================================
   CARD
========================================================== */

.research-card {
  min-width: 0;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #e4e8e7;
  border-radius: 20px;

  box-shadow:
          0 10px 30px rgba(0, 0, 0, 0.04);
}


/* CARD MAIN CONTENT */

.research-card__top,
.research-card__title,
.research-card__text {
  margin-left: 24px;
  margin-right: 24px;
}


/* ==========================================================
   TOP — ICON + NUMBER
========================================================== */

.research-card__top {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  margin-top: 25px;
  margin-bottom: 20px;
}


/* ICON CIRCLE */

.research-card__icon {
  width: 76px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 76px;

  background: rgba(200, 243, 241, 0.58);

  border-radius: 50%;
}


.research-card__icon img {
  display: block;

  width: 44px;
  height: 44px;

  object-fit: contain;
}


/* NUMBER */

.research-card__number {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 42px;

  background: #c8f3f1;

  border-radius: 50%;

  font-size: 13px;
  line-height: 1;

  font-weight: 800;

  color: #111111;
}


/* ==========================================================
   CARD TITLE
========================================================== */

.research-card__title {
  margin-top: 0;
  margin-bottom: 14px;

  font-size: 20px;
  line-height: 1.25;

  font-weight: 800;

  text-transform: uppercase;

  color: #111111;
}


/* ==========================================================
   CARD TEXT
========================================================== */

.research-card__text {
  margin-top: 0;
  margin-bottom: 25px;

  font-size: 15px;
  line-height: 1.6;

  color: #343434;
}


.research-card__text strong {
  font-weight: 800;

  color: #278d89;
}


/* ==========================================================
   SOURCE BLOCK
========================================================== */

.research-card__source {
  margin-top: auto;

  padding: 20px 24px 22px;

  background: rgba(200, 243, 241, 0.28);

  border-top: 1px solid rgba(200, 243, 241, 0.8);
}


.research-card__source-name {
  margin-bottom: 4px;

  font-size: 14px;
  line-height: 1.25;

  font-weight: 800;

  color: #111111;
}


.research-card__source-type {
  margin-bottom: 12px;

  font-size: 12px;
  line-height: 1.3;

  color: #686868;
}


/* LINK */

.research-card__link {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  text-decoration: none;

  font-size: 13px;
  line-height: 1;

  font-weight: 750;

  color: #278d89;
}


.research-card__link span {
  font-size: 15px;

  transition: transform 0.2s ease;
}


@media (hover: hover) {

  .research-card {
    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            border-color 0.25s ease;
  }


  .research-card:hover {
    transform: translateY(-4px);

    border-color: #c8f3f1;

    box-shadow:
            0 15px 38px rgba(0, 0, 0, 0.065);
  }


  .research-card__link:hover span {
    transform: translate(2px, -2px);
  }

}


/* ==========================================================
   NOTICE
========================================================== */

.research-facts__notice {
  width: 100%;

  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 30px;

  padding: 17px 22px;

  background: rgba(200, 243, 241, 0.32);

  border: 1px solid rgba(200, 243, 241, 0.95);

  border-radius: 16px;
}


.research-facts__notice-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 38px;

  border: 1.5px solid #3c8d89;

  border-radius: 50%;

  font-family: Georgia, serif;

  font-size: 20px;
  font-weight: 700;

  color: #317976;
}


.research-facts__notice p {
  margin: 0;

  font-size: 13px;
  line-height: 1.5;

  color: #464646;
}


/* ==========================================================
   SMALL DESKTOP
========================================================== */

@media (max-width: 1150px) {

  .research-facts__title {
    font-size: 44px;
  }


  .research-facts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 780px) {

  .research-facts {
    padding: 52px 18px 58px;
  }


  .research-facts__header {
    margin-bottom: 34px;
  }


  .research-facts__title {
    font-size: 37px;

    letter-spacing: -0.7px;
  }


  .research-facts__subtitle {
    font-size: 16px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 580px) {

  .research-facts {
    padding: 42px 14px 48px;
  }


  .research-facts__eyebrow {
    margin-bottom: 15px;

    padding: 8px 14px;

    font-size: 10px;
  }


  .research-facts__title {
    font-size: 29px;
    line-height: 1.12;

    letter-spacing: -0.4px;
  }


  .research-facts__title span::after {
    height: 9px;

    bottom: 2px;
  }


  .research-facts__divider {
    width: 65px;

    margin: 17px auto;
  }


  .research-facts__subtitle {
    font-size: 14px;
    line-height: 1.5;
  }


  /* ONE COLUMN */

  .research-facts__grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  .research-card {
    border-radius: 17px;
  }


  .research-card__top {
    margin: 20px 19px 17px;
  }


  .research-card__icon {
    width: 62px;
    height: 62px;

    flex-basis: 62px;
  }


  .research-card__icon img {
    width: 36px;
    height: 36px;
  }


  .research-card__number {
    width: 36px;
    height: 36px;

    flex-basis: 36px;

    font-size: 11px;
  }


  .research-card__title,
  .research-card__text {
    margin-left: 19px;
    margin-right: 19px;
  }


  .research-card__title {
    font-size: 18px;
  }


  .research-card__text {
    font-size: 14px;

    margin-bottom: 20px;
  }


  .research-card__source {
    padding: 17px 19px 19px;
  }


  /* NOTICE */

  .research-facts__notice {
    align-items: flex-start;

    gap: 13px;

    margin-top: 22px;

    padding: 15px;
  }


  .research-facts__notice-icon {
    width: 32px;
    height: 32px;

    flex-basis: 32px;

    font-size: 17px;
  }


  .research-facts__notice p {
    font-size: 11px;
  }

}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .benefits-strip {
    width: calc(100% - 30px);
    padding: 28px 15px;
  }

  .benefits-strip__item {
    padding: 10px 20px;
  }

  .benefits-strip__icon {
    width: 82px;
    height: 82px;
  }

  .benefits-strip__icon img {
    width: 44px;
    height: 44px;
  }

  .benefits-strip__title {
    font-size: 21px;
  }

  .benefits-strip__text {
    font-size: 16px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

  .benefits-strip {
    width: calc(100% - 24px);

    grid-template-columns: 1fr;

    padding: 10px 20px;

    border-radius: 20px;
  }

  .benefits-strip__item {
    padding: 28px 10px;
  }

  /* убираем вертикальные линии */
  .benefits-strip__item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 10%;

    width: 80%;
    height: 1px;

    background: rgba(0, 0, 0, 0.15);
  }

  .benefits-strip__icon {
    width: 78px;
    height: 78px;

    margin-bottom: 16px;
  }

  .benefits-strip__icon img {
    width: 40px;
    height: 40px;
  }

  .benefits-strip__title {
    font-size: 21px;
  }

  .benefits-strip__text {
    max-width: 300px;

    font-size: 16px;
  }
}

@media (max-width: 1250px) {
  .stats__item.stats__item--users {
    padding-right: 20px;
  }

  .stats__item.stats__item--reviews {
    padding-left: 20px;
  }

  .stats__logos {
    padding: 0 20px;
  }

  .comparison {
    gap: 40px;
  }
}

@media (max-width: 1100px) {
  .hero__icon {
    display: none;
  }

  .product-section__content {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .ingredients {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats__logos {
    padding: 0;
    gap: 40px;
  }

  .stats__item.stats__item--users {
    border-right: 0;
    padding-right: 0;
    align-items: flex-end;
  }

  .stats__item.stats__item--reviews {
    border-left: 0;
    padding-left: 0;
  }

  .stats__item.stats__item--users .stats__text {
    text-align: right;
  }

  .section-title,
  .timeline__title,
  .hero__title {
    font-size: 28px;
  }

  .experts-section__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-section__content {
    grid-template-columns: 1fr;
  }

  .product-section__discount {
    top: 0;
    right: 0;
  }

  .logos {
    flex-wrap: wrap;
    margin: 56px 0;
  }

  .timeline__column {
    gap: 20px;
  }

  .timeline__item {
    max-width: 100%;
  }

  .timeline {
    gap: 32px;
    margin-top: 32px;
  }

  .timeline__text {
    font-size: 16px;
  }

  .faq__title,
  .faq__list,
  .product-section__title,
  .experts-section__title {
    margin-bottom: 32px;
  }

  .faq__item {
    padding: 24px;
  }

  .experts-section {
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .faq {
    margin-bottom: 56px;
  }
}
/* =====================================================
   PARAMD DAILY ROUTINE
   Accent color: #c8f3f1
===================================================== */

.paramd-routine {
  width: 100%;
  padding: 55px 20px 65px;
  background: #faf8f2;
  color: #171717;
  box-sizing: border-box;
}

.paramd-routine *,
.paramd-routine *::before,
.paramd-routine *::after {
  box-sizing: border-box;
}

.paramd-routine__container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.paramd-routine__header {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.paramd-routine__title {
  margin: 0;

  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.8px;

  color: #111111;
}

.paramd-routine__subtitle {
  max-width: 900px;
  margin: 16px auto 0;

  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;

  color: #252525;
}


/* =====================================================
   DECORATIVE DIVIDER
===================================================== */

.paramd-routine__divider {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;
  margin-top: 17px;
}

.paramd-routine__divider > span:not(.paramd-routine__leaf) {
  display: block;

  width: 62px;
  height: 2px;

  background: #c8f3f1;
}

.paramd-routine__leaf {
  display: block;

  width: 15px;
  height: 15px;

  background: #c8f3f1;

  border-radius: 100% 0 100% 0;

  transform: rotate(45deg);

  font-size: 0;
}


/* =====================================================
   MAIN CARD
===================================================== */

.paramd-routine__card {
  width: 100%;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(200, 243, 241, 0.8);
  border-radius: 18px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.025);
}


/* =====================================================
   BENEFIT ROW
===================================================== */

.paramd-routine__item {
  min-height: 118px;

  display: grid;
  grid-template-columns: 90px 1fr;

  align-items: center;
  column-gap: 26px;

  padding: 18px 30px;
}

.paramd-routine__item + .paramd-routine__item {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}


/* =====================================================
   ICON CIRCLE
===================================================== */

.paramd-routine__icon {
  width: 76px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  /*
     Более светлая версия #c8f3f1,
     чтобы PNG-иконка хорошо читалась
  */
  background: rgba(200, 243, 241, 0.55);

  border: 1px solid #c8f3f1;
  border-radius: 50%;
}

.paramd-routine__icon img {
  display: block;

  width: 43px;
  height: 43px;

  object-fit: contain;
}


/* =====================================================
   BENEFIT TEXT
===================================================== */

.paramd-routine__content {
  min-width: 0;
}

.paramd-routine__content h3 {
  margin: 0 0 7px;

  font-size: 23px;
  line-height: 1.2;
  font-weight: 700;

  /* оставляем темным ради контраста */
  color: #111111;
}

.paramd-routine__content p {
  max-width: 760px;
  margin: 0;

  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;

  color: #333333;
}


/* =====================================================
   IMPORTANT INFORMATION
===================================================== */

.paramd-routine__info {
  width: 100%;

  display: grid;
  grid-template-columns: 58px 1fr;

  align-items: center;
  column-gap: 22px;

  margin-top: 12px;
  padding: 17px 28px;

  background: rgba(200, 243, 241, 0.24);

  border: 1px solid #c8f3f1;
  border-radius: 15px;
}


/* WARNING ICON */

.paramd-routine__info-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: #c8f3f1;
  border-radius: 50%;
}

.paramd-routine__info-icon img {
  display: block;

  width: 30px;
  height: 30px;

  object-fit: contain;
}


/* INFORMATION TEXT */

.paramd-routine__info-content h3 {
  margin: 0 0 4px;

  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;

  color: #111111;
}

.paramd-routine__info-content p {
  max-width: 850px;
  margin: 0;

  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;

  color: #282828;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .paramd-routine {
    padding: 45px 20px 55px;
  }

  .paramd-routine__title {
    font-size: 36px;
  }

  .paramd-routine__subtitle {
    font-size: 18px;
  }

  .paramd-routine__item {
    grid-template-columns: 76px 1fr;

    column-gap: 20px;

    min-height: 105px;

    padding: 17px 24px;
  }

  .paramd-routine__icon {
    width: 66px;
    height: 66px;
  }

  .paramd-routine__icon img {
    width: 37px;
    height: 37px;
  }

  .paramd-routine__content h3 {
    font-size: 21px;
  }

  .paramd-routine__content p {
    font-size: 16px;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .paramd-routine {
    padding: 36px 14px 42px;
  }

  .paramd-routine__header {
    margin-bottom: 24px;
  }

  .paramd-routine__title {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.4px;
  }

  .paramd-routine__subtitle {
    margin-top: 13px;

    font-size: 15px;
    line-height: 1.45;
  }

  .paramd-routine__subtitle br {
    display: none;
  }


  /* DIVIDER */

  .paramd-routine__divider {
    margin-top: 15px;
  }

  .paramd-routine__divider > span:not(.paramd-routine__leaf) {
    width: 42px;
  }


  /* CARD */

  .paramd-routine__card {
    border-radius: 15px;
  }


  /* BENEFITS */

  .paramd-routine__item {
    min-height: auto;

    grid-template-columns: 55px 1fr;

    align-items: center;
    column-gap: 15px;

    padding: 18px 16px;
  }

  .paramd-routine__icon {
    width: 52px;
    height: 52px;
  }

  .paramd-routine__icon img {
    width: 29px;
    height: 29px;
  }

  .paramd-routine__content h3 {
    margin-bottom: 4px;

    font-size: 17px;
    line-height: 1.2;
  }

  .paramd-routine__content p {
    font-size: 14px;
    line-height: 1.4;
  }


  /* IMPORTANT INFORMATION */

  .paramd-routine__info {
    grid-template-columns: 42px 1fr;

    column-gap: 13px;

    margin-top: 10px;
    padding: 15px;

    border-radius: 13px;
  }

  .paramd-routine__info-icon {
    width: 38px;
    height: 38px;
  }

  .paramd-routine__info-icon img {
    width: 24px;
    height: 24px;
  }

  .paramd-routine__info-content h3 {
    font-size: 16px;
  }

  .paramd-routine__info-content p {
    font-size: 12px;
    line-height: 1.4;
  }
}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

  .paramd-routine {
    padding-left: 10px;
    padding-right: 10px;
  }

  .paramd-routine__title {
    font-size: 25px;
  }

  .paramd-routine__item {
    grid-template-columns: 48px 1fr;

    column-gap: 12px;

    padding: 16px 13px;
  }

  .paramd-routine__icon {
    width: 46px;
    height: 46px;
  }

  .paramd-routine__icon img {
    width: 26px;
    height: 26px;
  }

  .paramd-routine__content h3 {
    font-size: 16px;
  }

  .paramd-routine__content p {
    font-size: 13px;
  }
}
/* =========================================================
   COMMON SIGNS SECTION
========================================================= */

.signs-section {
  width: 100%;
  padding: 65px 30px 70px;
  background: #faf9f5;
  box-sizing: border-box;
}

.signs-section *,
.signs-section *::before,
.signs-section *::after {
  box-sizing: border-box;
}

.signs-container {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.signs-header {
  width: 100%;
  margin-bottom: 42px;
  text-align: center;
}

.signs-title {
  margin: 0;

  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.4px;

  color: #10151d;
}

.signs-title-accent {
  color: #36b8bd;
}


/* =========================================================
   DECORATIVE DIVIDER
========================================================= */

.signs-divider {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  margin: 25px 0 23px;
}

.signs-divider-line {
  width: 110px;
  height: 1px;

  background: #9fe5e2;
}

.signs-divider-leaf {
  width: 17px;
  height: 12px;

  display: block;

  background: #45c4c5;

  border-radius: 100% 0 100% 0;

  transform: rotate(-35deg);
}

.signs-subtitle {
  max-width: 1000px;

  margin: 0 auto;

  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;

  color: #4c515b;
}


/* =========================================================
   GRID
========================================================= */

.signs-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.sign-card {
  position: relative;

  display: grid;

  /*
     Фото занимает примерно 43% карточки,
     текст — остальные 57%.
  */
  grid-template-columns: 43% 57%;

  min-width: 0;
  min-height: 305px;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #ececeb;
  border-radius: 18px;

  box-shadow:
          0 8px 28px rgba(0, 0, 0, 0.055);
}


/* =========================================================
   IMAGE
========================================================= */

.sign-card-image {
  position: relative;

  width: 100%;
  height: 100%;

  min-width: 0;

  overflow: hidden;

  background: #eeeeec;
}

.sign-card-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* =========================================================
   CONTENT
========================================================= */

.sign-card-content {
  min-width: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 32px 30px;
}

.sign-card-content h3 {
  margin: 0;

  font-size: 24px;
  line-height: 1.22;
  font-weight: 750;

  letter-spacing: -0.3px;

  color: #111722;
}


/* SMALL TURQUOISE LINE */

.sign-card-line {
  display: block;

  width: 50px;
  height: 2px;

  margin: 18px 0 19px;

  background: #45c4c5;

  border-radius: 10px;
}


.sign-card-content p {
  margin: 0;

  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;

  color: #454b55;
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.signs-bottom {
  width: calc(100% - 180px);
  max-width: 1140px;

  display: flex;
  align-items: center;

  gap: 25px;

  margin: 32px auto 0;

  padding: 18px 35px;

  background: rgba(200, 243, 241, 0.35);

  border-radius: 14px;
}

.signs-bottom-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 50px;

  border: 1.5px solid #42bdc0;
  border-radius: 50%;

  color: #31b5ba;
}

.signs-bottom-icon span {
  position: relative;
  top: -1px;

  font-size: 28px;
  line-height: 1;
}

.signs-bottom p {
  margin: 0;

  font-size: 18px;
  line-height: 1.45;

  color: #424852;
}


/* =========================================================
   HOVER — DESKTOP ONLY
========================================================= */

@media (hover: hover) {

  .sign-card {
    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
  }

  .sign-card-image img {
    transition: transform 0.4s ease;
  }

  .sign-card:hover {
    transform: translateY(-3px);

    box-shadow:
            0 13px 34px rgba(0, 0, 0, 0.075);
  }

  .sign-card:hover .sign-card-image img {
    transform: scale(1.025);
  }
}


/* =========================================================
   SMALL DESKTOP / TABLET
========================================================= */

@media (max-width: 1150px) {

  .signs-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .signs-title {
    font-size: 44px;
  }

  .signs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sign-card {
    min-height: 280px;
  }

  .signs-bottom {
    width: 90%;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

  .signs-section {
    padding-top: 50px;
    padding-bottom: 55px;
  }

  .signs-header {
    margin-bottom: 32px;
  }

  .signs-title {
    font-size: 37px;
    letter-spacing: -0.8px;
  }

  .signs-subtitle {
    font-size: 17px;
  }

  .sign-card-content {
    padding: 25px 22px;
  }

  .sign-card-content h3 {
    font-size: 21px;
  }

  .sign-card-content p {
    font-size: 15px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .signs-section {
    padding: 40px 14px 45px;
  }


  /* HEADER */

  .signs-title {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.5px;
  }

  .signs-divider {
    margin: 17px 0;
  }

  .signs-divider-line {
    width: 60px;
  }

  .signs-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }


  /* ONE CARD PER ROW */

  .signs-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  /* CARD */

  .sign-card {
    grid-template-columns: 41% 59%;

    min-height: 210px;

    border-radius: 15px;
  }


  /* CONTENT */

  .sign-card-content {
    padding: 20px 18px;
  }

  .sign-card-content h3 {
    font-size: 18px;
    line-height: 1.2;
  }

  .sign-card-line {
    width: 36px;
    height: 2px;

    margin: 11px 0 12px;
  }

  .sign-card-content p {
    font-size: 14px;
    line-height: 1.45;
  }


  /* BOTTOM */

  .signs-bottom {
    width: 100%;

    gap: 14px;

    margin-top: 22px;

    padding: 15px 17px;
  }

  .signs-bottom-icon {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  .signs-bottom-icon span {
    font-size: 23px;
  }

  .signs-bottom p {
    font-size: 13px;
    line-height: 1.4;
  }
}
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

 .paramd-card {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 190px;
   padding: 18px 16px;
   background: rgba(18, 20, 24, 0.82);
   border-radius: 18px;
   box-shadow:
           0 20px 45px rgba(0, 0, 0, 0.28),
           0 5px 15px rgba(0, 0, 0, 0.18);
   text-decoration: none;
   font-family: Arial, sans-serif;
   position: absolute;
   top: 50%;
   right: 40px;
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transform: translateY(calc(-50% + 30px));
   transition:
           opacity 0.6s ease,
           transform 0.6s ease,
           visibility 0.6s ease;
 }
.paramd-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%);
  z-index: 1000;
}

.paramd-card img {
  width: 60px;
  height: auto;
  margin-bottom: 14px;
}

.paramd-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.paramd-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 16px;
}

.paramd-button {
  width: 100%;
  box-sizing: border-box;
  background: #2e7dff;
  color: #fff;
  padding: 12px 0;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

  animation: paramdPulse 2s ease-in-out infinite;
  transition:
          transform 0.2s ease,
          background 0.2s ease,
          box-shadow 0.2s ease;
}

.paramd-card:hover .paramd-button {
  background: #4b91ff;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(46, 125, 255, 0.5);
}
@media (max-width: 600px) {
  .paramd-card {
    width: 145px;
    padding: 12px 10px;

    right: 10px;
    top: 50%;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  }

  .paramd-card img {
    width: 35px;
    margin-bottom: 8px;
  }

  .paramd-name {
    font-size: 18px;
    margin-bottom: 3px;
  }

  .paramd-subtitle {
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 11px;
  }

  .paramd-button {
    padding: 10px 0;
    font-size: 12px;
    border-radius: 9px;
  }
}
@keyframes paramdPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 5px 18px rgba(46, 125, 255, 0.45);
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

  .signs-title {
    font-size: 27px;
  }

  .sign-card {
    grid-template-columns: 39% 61%;
    min-height: 195px;
  }

  .sign-card-content {
    padding: 17px 14px;
  }

  .sign-card-content h3 {
    font-size: 16px;
  }

  .sign-card-content p {
    font-size: 12.5px;
  }
}

@media (max-width: 768px) {
  .comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ingredients {
    grid-template-columns: 1fr;
  }

  .capsule {
    margin: 32px auto;
  }

  .stats {
    margin-bottom: 55px;
  }
}

@media (max-width: 500px) {
  .experts-section__list,
  .timeline__column {
    grid-template-columns: 1fr;
  }

  .product-section__footer {
    flex-wrap: wrap;
  }

  .product-section__benefits {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-section__name {
    font-size: 40px;
  }
}

.video {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.video > vturb-smartplayer {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 400px) {
  .stats__logo {
    width: 60px;
  }

  .hero-video__player {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
}

/* start popup */

.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
}

.popup--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-layout {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 24px 48px 48px 48px;
  border-radius: 48px;
  border: 2px solid #000;
  background: #f9f7f0;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  max-height: 95vh;
  overflow-y: auto;
  height: 100%;
}

.popup--active .popup-layout {
  transform: translateY(0);
}

.popup-layout__close {
  margin-left: auto;
  display: block;
  width: 55px;
  margin-bottom: 20px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.popup-layout__close img {
  width: 100%;
  height: auto;
}

.body.body--lock {
  overflow: hidden;
}

@media (max-width: 768px) {
  .popup-layout {
    padding: 20px;
  }

  .popup .product-section__image {
    max-width: 125px;
  }

  .popup .product-section__discount {
    width: 55px;
    height: 55px;
    font-size: 16px;
  }

  .popup-layout__close {
    width: 45px;
  }
}
/* end popup */


/* ==========================================================
   LEGAL / COMPLIANCE PAGES + FOOTER + COOKIE CONSENT
========================================================== */
.legal-body{background:#faf9f5;color:#111}.legal-site-header{background:#fff;border-bottom:1px solid #e7e7e2}.legal-site-header__inner{width:min(1180px,calc(100% - 40px));margin:0 auto;min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:24px}.legal-site-header__brand{font-size:25px;font-weight:800;color:#111;text-decoration:none}.legal-site-header__nav{display:flex;gap:24px;flex-wrap:wrap}.legal-site-header__nav a{font-size:14px;font-weight:600;color:#333;text-decoration:none}.legal-site-header__nav a:hover{text-decoration:underline}.legal-page{padding:62px 20px 76px}.legal-page__container{width:100%;max-width:940px;margin:0 auto}.legal-page__intro{padding-bottom:30px;border-bottom:1px solid #ddd}.legal-page__eyebrow{margin:0 0 10px;color:#347b78;font-size:13px;font-weight:800;letter-spacing:1.2px;text-transform:uppercase}.legal-page h1{margin:0;font-size:48px;line-height:1.1;letter-spacing:-1.2px}.legal-page__updated{margin:14px 0 0;color:#717171;font-size:13px}.legal-page__section{padding:32px 0;border-bottom:1px solid #e1e1dd}.legal-page__section h2{margin:0 0 16px;font-size:25px;line-height:1.25}.legal-page__section h3{margin:25px 0 8px;font-size:18px}.legal-page__section p,.legal-page__section li{font-size:16px;line-height:1.75;color:#383838}.legal-page__section a{color:#236f6c;text-decoration:underline}.legal-page__section ul{padding-left:22px}.legal-table-wrap{overflow-x:auto}.legal-table{width:100%;border-collapse:collapse;background:#fff}.legal-table th,.legal-table td{padding:14px;text-align:left;border:1px solid #ddd;font-size:14px;line-height:1.5}.legal-table th{background:#c8f3f1}.contact-layout{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:start}.contact-form,.contact-info-panel{background:#fff;border:1px solid #e2e5e4;border-radius:20px;padding:28px}.contact-form{display:grid;gap:15px}.contact-form label{display:grid;gap:7px;font-weight:650;font-size:14px}.contact-form input,.contact-form textarea{width:100%;padding:13px 14px;border:1px solid #cfd5d3;border-radius:10px;font:inherit;background:#fff}.consent-row{display:flex!important;grid-template-columns:none!important;align-items:flex-start;gap:10px!important;font-weight:400!important;line-height:1.45}.consent-row input{width:auto;margin-top:3px}.hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.form-error{display:none;color:#a53030;font-size:12px}.form-error.is-visible{display:block}.optional{font-weight:400;color:#777}.contact-info-panel p{line-height:1.6}.contact-demo-note{font-size:12px!important;color:#777!important}.map-container{margin-top:28px;border-radius:18px;overflow:hidden;border:1px solid #e2e5e4;background:#fff}.faq-static h3{margin-top:26px}.site-footer{background:#111817;color:#e6eeee;padding:50px 20px 28px}.site-footer__container{width:100%;max-width:1180px;margin:0 auto}.site-footer__top{display:grid;grid-template-columns:.8fr 1.2fr;gap:46px;align-items:start}.site-footer__brand{display:inline-block;color:#fff;text-decoration:none;font-size:27px;font-weight:800}.site-footer__summary{max-width:390px;margin:11px 0 0;color:#b8c5c3;font-size:14px;line-height:1.6}.site-footer__links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:13px 22px}.site-footer__links a{color:#e6eeee;text-decoration:none;font-size:13px}.site-footer__links a:hover{text-decoration:underline}.site-footer__disclaimer{margin-top:34px;padding-top:25px;border-top:1px solid #33403e;color:#acb9b7;font-size:12px;line-height:1.65}.site-footer__copyright{margin:20px 0 0;color:#879593;font-size:12px}.cookie-banner{position:fixed;left:18px;bottom:18px;z-index:1000;width:min(540px,calc(100% - 36px));padding:20px;background:#fff;border:1px solid #dce1df;border-radius:18px;box-shadow:0 20px 55px rgba(0,0,0,.18);transform:translateY(calc(100% + 40px));opacity:0;pointer-events:none;transition:.3s ease}.cookie-banner.is-visible{transform:none;opacity:1;pointer-events:auto}.cookie-banner p{margin:0;font-size:13px;line-height:1.55;color:#363636}.cookie-banner a{color:#266e6b}.cookie-actions{display:flex;gap:9px;flex-wrap:wrap;margin-top:15px}.legal-btn{border:1px solid #cfd8d6;background:#fff;color:#1b1b1b;border-radius:999px;padding:11px 16px;font:inherit;font-size:12px;font-weight:700;cursor:pointer}.cookie-modal{position:fixed;inset:0;z-index:1001;display:none;align-items:center;justify-content:center;padding:20px;background:rgba(0,0,0,.52)}.cookie-modal.is-visible{display:flex}.cookie-modal-box{width:min(520px,100%);padding:27px;background:#fff;border-radius:20px;box-shadow:0 25px 70px rgba(0,0,0,.24)}.cookie-modal-box h3{margin:0 0 10px;font-size:25px}.cookie-modal-box p{font-size:13px;line-height:1.55;color:#555}.cookie-modal-box label{display:flex;align-items:center;gap:10px;padding:10px 0;font-size:14px}.cookie-modal-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}.paramd-guarantee__policy-link{margin-top:12px}.paramd-guarantee__policy-link a{color:#266e6b;font-weight:700}
@media(max-width:760px){.legal-site-header__inner{width:min(100% - 28px,1180px);min-height:68px}.legal-site-header__nav{gap:12px}.legal-site-header__nav a{font-size:12px}.legal-page{padding:42px 14px 55px}.legal-page h1{font-size:34px}.legal-page__section{padding:25px 0}.legal-page__section h2{font-size:21px}.legal-page__section p,.legal-page__section li{font-size:14px}.contact-layout,.site-footer__top{grid-template-columns:1fr}.site-footer__links{grid-template-columns:repeat(2,minmax(0,1fr))}.cookie-banner{left:10px;bottom:10px;width:calc(100% - 20px)}.cookie-actions>*{flex:1 1 auto}.contact-form,.contact-info-panel{padding:20px}}
@media(max-width:420px){.legal-site-header__nav{display:none}.site-footer__links{grid-template-columns:1fr}.legal-page h1{font-size:30px}.cookie-modal-box{padding:20px}}

.footer-cookie-settings{padding:0;border:0;background:none;color:#e6eeee;text-align:left;font:inherit;font-size:13px;cursor:pointer}.footer-cookie-settings:hover{text-decoration:underline}


/* ==========================================================
   BREADCRUMBS
========================================================== */

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.4;
  color: #777;
}

.breadcrumbs a {
  color: #317976;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs__separator {
  color: #aaa;
}

@media (max-width: 580px) {
  .breadcrumbs {
    margin-bottom: 18px;
    font-size: 12px;
  }
}

/* Product overview refinements */
.benefits-strip__icon--text,
.paramd-routine__icon--text {
  font-weight: 800;
  color: #111;
  letter-spacing: .02em;
}
.benefits-strip__icon--text { font-size: 20px; }
.paramd-routine__icon--text { font-size: 17px; }
.paramd-routine__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #317976;
}
.paramd-routine__title span { color: #317976; }
.paramd-routine__info-content a { color: #317976; font-weight: 700; }


/* ==========================================================
   CONTACT RESOURCE LINKS
========================================================== */

.contact-resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-resource-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid #d9e4e2;
  border-radius: 999px;
  color: #245f5b;
  background: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.contact-resource-links a:hover {
  background: #eefaf9;
}
