﻿@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --brand-navy: #30357a;
  --brand-violet: #7b59d8;
  --brand-violet-soft: #a48af0;
  --brand-red: #e24a3f;
  --surface: #ffffff;
  --surface-soft: #faf8fe;
  --surface-tint: #f5f1ff;
  --text-main: #2a2647;
  --text-muted: #76718a;
  --line: rgba(48, 53, 122, 0.1);
  --line-strong: rgba(48, 53, 122, 0.18);
  --offer-line: rgba(255, 255, 255, 0.16);
  --overlay-dark: rgba(53, 44, 120, 0.5);
  --fs-display: 54px;
  --fs-section-title: 48px;
  --fs-section-title-mobile: 34px;
  --fs-subsection-title: 36px;
  --fs-subsection-title-mobile: 28px;
  --fs-card-title: 24px;
  --fs-card-title-mobile: 20px;
  --fs-body-lg: 18px;
  --fs-body-md: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 12px;
  --section-pad-lg: 72px;
  --section-pad-md: 56px;
  --section-pad-mobile: 32px;
  --stack-xl: 32px;
  --stack-lg: 24px;
  --stack-md: 18px;
  --stack-sm: 12px;
  --content-inline: 10%;
  --content-inline-mobile: 10px;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: clip;
  background:
    radial-gradient(
      circle at top right,
      rgba(164, 138, 240, 0.16),
      transparent 30%
    ),
    linear-gradient(180deg, #fdfdff 0%, #f7f6fc 100%);
  color: var(--text-main);
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
}

.navigation-section {
  position: sticky;
  top: 0;
  z-index: 30;
}

.promotion-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  padding: 10px;
  font-size: var(--fs-body-sm);
  background: linear-gradient(
    90deg,
    var(--brand-red) 0%,
    var(--brand-violet) 46%,
    #565fb0 100%
  );
  text-transform: uppercase;
  font-weight: 500;
  color: white;
}

.promotion-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.navigation-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 10%;
  background-color: rgba(255, 255, 255, 0.94);
  align-items: center;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  text-decoration: none;
  font-weight: 900;
  font-size: 28px;
  color: var(--brand-navy);
  font-style: italic;
}

.logo span {
  color: var(--brand-red);
}

.logo img {
  width: 150px;
}

.menu-toggle {
  display: none;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  gap: 25px;
  text-decoration: none;
  align-items: center;
}

.nav-menu li {
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--brand-navy);
  font-size: var(--fs-body-lg);
  position: relative;
  font-weight: 500;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 5px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.nav-menu li a:hover::after {
  transform: scaleX(1);
}

.nav-menu li a.nav-cta::after {
  display: none;
}

.nav-cta {
  display: inline-block;
  padding: 10px 15px;
  background: linear-gradient(135deg, var(--brand-red) 0%, #f0342a 100%);
  color: #fff !important;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.nav-cta:hover {
  background: transparent;
  color: var(--brand-red) !important;
  border-color: var(--brand-red);
}

@media (max-width: 768px) {
  body {
    overflow-x: clip;
  }

  .navigation-section,
  .navigation-block {
    overflow-x: clip;
  }

  .navigation-block {
    padding: 15px 10px;
  }

  .promotion-block {
    font-size: 11px;
  }

  .logo {
    font-size: 24px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    content: "";
    width: 30px;
    height: 3px;
    background-color: var(--brand-navy);
  }

  .nav-menu {
    position: fixed;
    top: 30px;
    right: 0;
    width: 70%;
    max-width: 300px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(calc(100% + 24px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu li {
    margin: 15px 0;
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 0;
  }

  .nav-cta {
    display: inline-block !important;
    padding: 10px 15px !important;
    background: linear-gradient(135deg, var(--brand-red) 0%, #f0342a 100%);
    color: #fff !important;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-sizing: border-box;
  }

  .menu-toggle {
    z-index: 1000;
    position: relative;
    width: 30px;
    height: 24px;
  }

  .menu-toggle span {
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }

  .menu-toggle span:nth-child(1) {
    top: 0;
  }

  .menu-toggle span:nth-child(2) {
    top: 10px;
  }

  .menu-toggle span:nth-child(3) {
    top: 20px;
  }

  .menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
  }
}

.hero-section {
  width: 100%;
  height: auto;
  position: relative;
}

.hero-back {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-images-web {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-images-m {
  display: none;
}

.hero-title-block {
  position: absolute;
  top: 10%;
  left: 10%;
  color: white;
  max-width: 55%;
}

.hero-title {
  font-size: var(--fs-display);
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 40px;
  line-height: 1.35;
}

.hero-title-block p {
  font-size: var(--fs-subsection-title);
  line-height: 1.15;
}

.hero-title-slides {
  position: relative;
  height: 5em;
  overflow: hidden;
}

.hero-title-slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease;
  margin: 0;
}

.hero-title-slide.active {
  opacity: 1;
}

.order-button {
  background-color: white;
  color: var(--brand-navy);
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 35px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  transition: all 0.9s ease;
  box-shadow: 0 18px 45px rgba(23, 24, 76, 0.18);
  text-transform: uppercase;
}

.order-button:hover {
  background: linear-gradient(
    135deg,
    var(--brand-red) 0%,
    var(--brand-violet) 100%
  );
  color: white;
}

.order-button span {
  transition: transform 0.3s ease;
}

.order-button:hover span {
  transform: translateX(8px);
}

.hero-guarantee {
  width: 50%;
  display: flex;
  gap: 20px;
  font-size: var(--fs-body-sm);
  margin: 20px;
}

@media (max-width: 768px) {
  .hero-back {
    height: auto;
  }

  .hero-images-web {
    display: none;
  }

  .hero-images-m {
    display: block;
    width: 100%;
  }

  .hero-title-block {
    position: relative;
    top: 0;
    left: 0;
    color: var(--brand-navy);
    max-width: 100%;
    padding: 10px;
    text-align: center;
  }

  .hero-title {
    font-size: var(--fs-section-title-mobile);
    font-weight: 700;
  }

  .hero-subtitle {
    font-size: var(--fs-body-lg);
    margin-bottom: 20px;
  }

  .hero-title-block p {
    font-size: var(--fs-subsection-title-mobile);
    font-weight: 700;
  }

  .hero-title-slides {
    position: relative;
    height: 4em;
    overflow: hidden;
    font-size: var(--fs-subsection-title-mobile);
  }

  .order-button {
    background: linear-gradient(
      135deg,
      var(--brand-red) 0%,
      var(--brand-violet) 100%
    );
    color: white;
    font-size: 32px;
    padding: 10px 15px;
    gap: 5px;
  }

  .hero-guarantee {
    width: 90%;
    font-size: var(--fs-caption);
  }
}

.container {
  width: 80%;
  margin: auto;
}

.ingredients-section {
  padding: var(--section-pad-lg) 0 110px;
}

.ingredients-title {
  font-size: var(--fs-section-title);
  margin-top: 0;
  margin-bottom: var(--stack-lg);
  line-height: 1.05;
}

.ingredients-flex-block {
  display: flex;
  gap: 30px;
  position: relative;
  margin-top: var(--stack-xl);
}

.ingredients-block p {
  font-size: var(--fs-body-lg);
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.ingredients-button {
  font-size: var(--fs-body-lg);
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 35px;
  border: 2px solid var(--brand-navy);
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.5s ease;
}

.ingredients-button:hover {
  background: linear-gradient(
    135deg,
    var(--brand-violet) 0%,
    var(--brand-navy) 100%
  );
  border: 2px solid transparent;
  color: #fff;
}

.ingredients-button span {
  font-size: var(--fs-subsection-title-mobile);
}

.ingredients-flex-block img {
  flex-shrink: 1;
  width: 600px;
  border-radius: 5px;
}

.ingredients-modal-overlay,
.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1100;
  display: none;
}

.ingredients-modal-overlay.is-open,
.legal-modal-overlay.is-open {
  display: flex;
}

.ingredients-list {
  box-shadow: 0 24px 60px rgba(23, 24, 76, 0.2);
  width: 35%;
  height: auto;
  padding: 30px 50px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

.ingredients-list-title {
  position: relative;
}

.ingredients-list-title::after {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--brand-red) 0%,
    var(--brand-violet) 100%
  );
  position: absolute;
  margin: auto;
  top: 50px;
}

.ingredients-list-title h3 {
  font-size: 30px;
}

.close-ingredients-list,
.legal-modal-close {
  position: absolute;
  top: 5px;
  right: -20px;
  background-color: var(--brand-red);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.legal-modal-close {
  top: 24px;
  right: 24px;
  border: 0;
  padding: 0;
}

.close-ingredients-list:hover,
.legal-modal-close:hover {
  background-color: var(--brand-navy);
  transform: rotate(-90deg);
}

.close-ingredients-list:focus-visible,
.legal-modal-close:focus-visible,
.footer-legal a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.legal-modal {
  width: min(860px, 100%);
  max-height: min(88vh, 920px);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(23, 24, 76, 0.24);
  overflow: hidden;
}

.legal-modal-header {
  position: relative;
  padding: 30px 56px 22px;
  background:
    radial-gradient(
      circle at top right,
      rgba(164, 138, 240, 0.32),
      transparent 42%
    ),
    linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

.legal-modal-header::after {
  content: "";
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--brand-red) 0%,
    var(--brand-violet) 100%
  );
}

.legal-modal-header h3 {
  font-size: 32px;
  padding-right: 48px;
}

.legal-modal-content {
  max-height: calc(88vh - 110px);
  padding: 28px 56px 40px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.legal-modal-content h4 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--brand-navy);
}

.legal-modal-content p {
  font-size: var(--fs-body-md);
  line-height: 1.7;
  color: var(--text-main);
}

.description-composition {
  margin: 20px auto;
}

.description-composition p {
  margin-bottom: 5px;
}

.composition-table {
  width: 100%;
  text-align: left;
  font-size: var(--fs-body-sm);
  border-collapse: collapse;
  margin: 20px auto;
}

.composition-table th,
.composition-table td {
  padding: 5px;
  font-weight: normal;
  border-top: 1px solid var(--line-strong);
}

.composition p {
  margin-bottom: 10px;
}

.expiration-date {
  font-weight: 700;
  color: rgba(31, 26, 56, 0.72);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 var(--content-inline-mobile);
  }

  .ingredients-section {
    padding: 28px 0 0;
  }

  .ingredients-title {
    font-size: var(--fs-section-title-mobile);
    max-width: 100%;
    margin-bottom: var(--stack-md);
  }

  .ingredients-flex-block {
    flex-direction: column-reverse;
    margin-top: var(--stack-md);
    gap: 15px;
  }

  .ingredients-block {
    margin-top: 0;
  }

  .ingredients-block p {
    font-size: var(--fs-body-md);
    margin-bottom: 10px;
  }

  .ingredients-button {
    font-size: var(--fs-body-md);
    padding: 5px 10px;
    gap: 10px;
    margin-top: 10px;
  }

  .ingredients-button span {
    font-size: 24px;
  }

  .ingredients-flex-block img {
    width: 100%;
  }

  .ingredients-list {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin: auto 5px;
  }

  .ingredients-list-title::after {
    top: 35px;
  }

  .ingredients-list-title h3 {
    font-size: var(--fs-card-title-mobile);
  }

  .close-ingredients-list {
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
  }

  .description-composition {
    margin-top: 15px;
  }

  .description-composition p {
    font-size: var(--fs-body-sm);
  }

  .composition-table {
    font-size: var(--fs-caption);
  }

  .composition p {
    font-size: var(--fs-body-sm);
  }
}

.trust {
  background-color: #2a2647;
}

.trust-inner {
  width: 70%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 24px 0;
}
.trust-item {
  color: #fff;
  font-size: var(--fs-body-md);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.trust-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust {
    overflow: hidden;
  }

  .trust-inner {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 32px;
    padding: 20px 0;
  }

  .trust-inner.is-marquee-active {
    width: max-content;
    min-width: 100%;
    padding-inline: 16px;
    animation: trust-marquee var(--trust-duration, 16s) linear infinite;
  }

  .trust-item {
    font-size: var(--fs-body-sm);
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .trust-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .trust {
    overflow-x: auto;
  }

  .trust-inner.is-marquee-active {
    animation: none;
  }
}

@keyframes trust-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--trust-shift, 0px)));
  }
}

.benefits-section {
  padding: 0 0 var(--section-pad-md);
}

.benefits-title {
  font-size: var(--fs-section-title);
  line-height: 1.05;
  margin: 0 var(--content-inline) var(--stack-md);
  max-width: 720px;
}

.benefits-description {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  margin: 0 var(--content-inline) var(--stack-xl);
}

.benefits-description p {
  font-size: var(--fs-body-lg);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 620px;
}

.benefits-container {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.benefits-block {
  width: 100%;
  overflow: visible;
  margin: 0 auto var(--stack-lg);
}

.benefits-card {
  height: 250px !important;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.benefits-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 0;
  display: block;
}

.benefits-card-text {
  padding: 22px 20px 20px;
  color: #fff;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.65) 100%;

  z-index: 1;
}

.benefits-card-text h3 {
  font-size: var(--fs-card-title);
  line-height: 1.15;
  margin-bottom: 12px;
}

.benefits-ingredient-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: var(--brand-red);
}

.benefits-card-copy {
  margin-top: 14px;
  line-height: 1.45;
}

.benefits-controls {
  display: flex;
  justify-content: end;
  gap: 18px;
  padding-right: 10%;
}

.benefits-controls .arrow-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--brand-navy);
  cursor: pointer;
  transition: all 0.3s ease;
}

.benefits-controls .arrow-btn:hover {
  color: var(--brand-red);
}

@media (min-width: 1024px) {
  .benefits-section {
    padding: 0 0 72px;
  }

  .benefits-container {
    width: 80%;
    margin: 0 auto;
  }

  .benefits-title {
    max-width: 980px;
    margin-bottom: var(--stack-lg);
    margin-left: 0;
    margin-right: 0;
  }

  .benefits-description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .benefits-description p {
    max-width: 720px;
  }

  .benefits-description .ingredients-button {
    flex: 0 0 auto;
    align-self: center;
  }

  .benefits-block {
    width: 100%;
    max-width: none;
  }

  .benefits-block .swiper-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 24px;
    align-items: stretch;
    transform: none !important;
    margin: 0;
  }

  .benefits-card {
    width: calc((100% - 48px) / 3) !important;
    max-width: none;
    min-height: 260px !important;
  }

  .benefits-card-text {
    padding: 20px;
  }

  .benefits-controls {
    display: none;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 28px 0 0;
  }
  .benefits-title {
    font-size: var(--fs-section-title-mobile);
    line-height: normal;
    margin: 0 10px 12px;
  }

  .benefits-description {
    font-size: var(--fs-body-md);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 16px;
    justify-content: left !important;
    margin: 0 10px 18px;
  }

  .benefits-description p {
    grid-column: 1 / -1;
    font-size: var(--fs-body-md);
    line-height: 1.45;
  }

  .benefits-description .ingredients-button {
    grid-column: 1 / 2;
    width: auto;
    max-width: max-content;
    align-self: flex-start;
  }

  .benefits-description .benefits-controls {
    grid-column: 2 / 3;
    margin-left: auto;
    justify-content: flex-end;
    padding-right: 0;
    gap: 16px;
  }

  .benefits-block {
    margin: 0 auto;
  }

  .benefits-card {
    width: 95% !important;
    height: 270px !important;
  }

  .benefits-card-text {
    padding: 16px 14px;
    width: 100%;
    height: 100%;
  }

  .benefits-card-text h3 {
    font-size: var(--fs-card-title-mobile);
    margin-bottom: 8px;
  }

  .benefits-card-text p {
    font-size: var(--fs-body-md);
  }

  .benefits-controls {
    justify-content: center;
    gap: 24px;
    padding-right: 0;
  }

  .benefits-controls .arrow-btn {
    font-size: 24px;
  }
}

.experts-section {
  background-color: #2a2647;
  padding: 30px 0 var(--section-pad-md);
  overflow-x: clip;
}

.experts-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
  margin: 0 auto var(--stack-lg);
}

.experts-title {
  font-size: var(--fs-section-title);
  color: #fff;
}

.experts-intro {
  font-size: var(--fs-body-lg);
  line-height: 1.1;
  color: #fff;
}

.experts-carousel {
  width: 80%;
  margin: 0 auto;
}

.experts-card {
  border-radius: 5px;
  position: relative;
  color: #fff;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.92;
  min-height: 300px;
  height: auto;
  box-sizing: border-box;
}

.experts-card-content {
  position: absolute;
  inset: auto 0 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 48, 0) 0%,
    rgba(20, 18, 48, 0.12) 22%,
    rgba(20, 18, 48, 0.72) 62%,
    rgba(20, 18, 48, 0.94) 100%
  );
  backdrop-filter: blur(14px) saturate(140%);
  z-index: 1;
}

.experts-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 5px;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.experts-card-name {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.experts-card-quote {
  margin: 0;
  font-size: clamp(15px, 0.96vw, 18px);
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.96);
}

.experts-card-role {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(12px, 0.76vw, 14px);
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.82);
  z-index: 2;
  order: 2;
}

.experts-card p {
  padding: 0;
}

.experts-card-content .experts-card-role {
  margin-top: auto;
}

.experts-main {
  overflow: hidden;
  border-radius: 5px;
}

.experts-main .swiper-wrapper {
  align-items: stretch;
}

.experts-main .swiper-slide {
  height: auto;
}

.experts-thumbs {
  display: none;
  margin-bottom: 10px;
}

.experts-thumb {
  height: 54px;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0.55;
  cursor: pointer;
}

.experts-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experts-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid rgba(221, 29, 23, 0.38);
  outline-offset: 2px;
}

.experts-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}
.experts-controls .arrow-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--brand-red);
  cursor: pointer;
}

.detox-section {
  padding: var(--section-pad-lg) 0;
  background-color: var(--surface);
}

.detox-shell {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: stretch;
}

.detox-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(226, 74, 63, 0.12);
  color: var(--brand-red);
  font-size: var(--fs-body-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.detox-title {
  font-size: var(--fs-section-title);
  line-height: 1;
  margin-bottom: 20px;
  color: var(--text-main);
}

.detox-subtitle {
  font-size: 22px;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.detox-copy p {
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: var(--text-main);
}

.detox-copy p + p {
  margin-top: 16px;
}

.detox-panel {
  padding: 36px 30px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(48, 53, 122, 0.96) 0%, #23204c 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(23, 24, 76, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detox-panel-title {
  font-family: "Manrope", sans-serif;
  font-size: var(--fs-subsection-title-mobile);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 22px;
}

.detox-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.detox-list li {
  position: relative;
  padding: 0 0 0 22px;
  font-size: var(--fs-body-lg);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.detox-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 6px rgba(255, 138, 91, 0.14);
}

@media (min-width: 769px) {
  .experts-thumbs {
    display: none;
  }

  .experts-carousel {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 clamp(20px, 6vw, 88px);
    box-sizing: border-box;
    overflow: hidden;
  }

  .experts-main {
    width: 100%;
    max-width: 100%;
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 768px) {
  .experts-section {
    padding: 36px 0 8px;
  }
  .experts-header {
    display: block;
    max-width: 100%;
    padding: 0 14px;
    margin: 0 auto 18px;
  }
  .experts-title {
    font-size: var(--fs-section-title-mobile);
    line-height: 1.02;
    margin-bottom: 12px;
    max-width: none;
  }
  .experts-intro {
    font-size: var(--fs-body-md);
    line-height: 1.35;
    max-width: none;
  }
  .experts-card-name {
    top: 18px;
    left: 18px;
    right: 18px;
    font-size: 18px;
  }
  .experts-card-role {
    font-size: 12px;
  }
  .experts-card-quote {
    font-size: var(--fs-body-md);
    line-height: 1.5;
  }

  .experts-carousel {
    width: 100%;
    padding: 0 14px 18px;
    box-sizing: border-box;
  }

  .experts-thumbs {
    display: block;
    overflow: hidden;
    margin-bottom: 14px;
  }

  .experts-thumb {
    height: 105px;
    border-radius: 8px;
  }

  .experts-main,
  .experts-card,
  .experts-card-content,
  .experts-card-image {
    border-radius: 8px;
  }

  .experts-card-content {
    height: auto;
    padding: 10px;
  }

  .experts-card {
    aspect-ratio: 0.84;
    min-height: 365px;
  }

  .experts-controls {
    display: none;
  }

  .detox-section {
    padding: 32px 10px;
  }

  .detox-shell {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .detox-panel {
    padding: 22px 18px;
  }

  .detox-title {
    font-size: var(--fs-section-title-mobile);
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .detox-copy p,
  .detox-list li {
    font-size: var(--fs-body-md);
  }

  .detox-subtitle {
    font-size: var(--fs-body-lg);
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .detox-panel-title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

.offers-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(164, 138, 240, 0.32),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(226, 74, 63, 0.14),
      transparent 24%
    ),
    linear-gradient(135deg, #40478f 0%, #565fb0 56%, #7b59d8 100%);
  color: white;
  padding: 0;
}

.offers-section-end {
  background:
    radial-gradient(
      circle at bottom right,
      rgba(226, 74, 63, 0.16),
      transparent 26%
    ),
    linear-gradient(135deg, #40478f 0%, #565fb0 56%, #8971df 100%);
  color: white;
  position: relative;
  padding: var(--section-pad-lg) 0;
  z-index: 10;
}

.offers-block {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "head image"
    "offer image";
  gap: 0;
  min-height: 720px;
  align-items: stretch;
}

.offers-block-end {
  width: min(980px, 88%);
  margin: 0 auto;
  display: block;
}

.offers-head-end {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.offers-head {
  grid-area: head;
  max-width: 760px;
  margin: 0;
  padding: 72px clamp(32px, 7vw, 96px) 28px;
  align-self: end;
}

.offers-title {
  font-size: var(--fs-section-title);
  line-height: 1;
  max-width: none;
  margin: 0 0 14px;
}

.offers-subtitle {
  font-size: var(--fs-body-md);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.offers-title-end {
  font-size: var(--fs-section-title);
  line-height: 1;
  margin: 0 auto 14px;
  text-align: center;
}

.offers-subtitle-end {
  font-size: var(--fs-body-md);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.offer-switch,
.offer-switch-end {
  position: relative;
  height: auto;
}

.offer-switch {
  grid-area: offer;
  padding: 0 clamp(32px, 7vw, 96px) 72px;
}

.switch-panel {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  will-change: opacity, transform;
}

.switch-panel.is-leaving {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.switch-panel.is-entering {
  opacity: 0;
  transform: translateY(20px);
}

.switch-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.offer-course {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  justify-content: end;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-course:first-child {
  padding-top: 0;
  border-top: none;
}

.offer-course:last-of-type {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 26px;
}

.offer-course-copy {
  min-width: 0;
}

.offer-course-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-course-pack {
  font-family: "Manrope", sans-serif;
  font-size: var(--fs-card-title);
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
}

.offer-course-price-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
  align-self: end;
}

.offer-course-price {
  font-size: var(--fs-card-title);
  line-height: 1;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.offer-course-old {
  color: rgba(255, 255, 255, 0.46);
  text-decoration: line-through;
  font-size: var(--fs-body-lg);
  font-weight: 500;
  margin-right: 10px;
}

.offer-course-note {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-body-sm);
  line-height: 1.35;
}

.offer-course--featured .offer-course-pack {
  color: #ffffff;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-badge--accent {
  background: rgba(255, 226, 138, 0.14);
  color: #ffe28a;
}

.switch-panel-end {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  will-change: opacity, transform;
}

.switch-panel-end.is-leaving {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.switch-panel-end.is-entering {
  opacity: 0;
  transform: translateY(20px);
}

.switch-panel-end.is-active {
  opacity: 1;
  transform: translateY(0);
}

.product-line,
.course-line,
.economy-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 40px;
}

.product-line,
.course-line {
  border-bottom: 1px solid var(--offer-line);
}

.economy-line {
  margin-bottom: 32px;
}

.product-name,
.course-label,
.economy-label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.old-price {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.new-price,
.economy-value {
  color: #ffffff;
  font-size: var(--fs-body-lg);
  font-weight: 600;
}

.course-value {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}

.cta-button {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-red) 0%, #f16e5f 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 18px 32px;
  font-size: 28px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.9s ease;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(221, 29, 23, 0.26);
  text-transform: uppercase !important;
}

.cta-button span {
  transition: transform 0.3s ease;
}

.offers-section .cta-button {
  background: linear-gradient(135deg, #ffffff 0%, #f3efff 100%);
  color: var(--brand-navy);
  box-shadow: 0 18px 36px rgba(23, 24, 76, 0.16);
  margin-bottom: 18px;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}

.offers-section-end .cta-button {
  background: linear-gradient(135deg, #ffffff 0%, #f3efff 100%);
  color: var(--brand-navy);
  box-shadow: 0 18px 36px rgba(23, 24, 76, 0.16);
  margin-bottom: 18px;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}

.cta-button:hover {
  background: linear-gradient(
    135deg,
    var(--brand-red) 0%,
    var(--brand-violet) 100%
  );
  color: #ffffff;
}

.offers-section .cta-button:hover {
  background: linear-gradient(
    135deg,
    var(--brand-red) 0%,
    var(--brand-violet) 100%
  );
  color: #ffffff;
}

.offers-section-end .cta-button:hover {
  background: linear-gradient(
    135deg,
    var(--brand-red) 0%,
    var(--brand-violet) 100%
  );
  color: #ffffff;
}

.cta-button:hover span {
  transform: translateX(8px);
}

.back-button {
  width: 100%;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.back-button:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 100px;
  justify-content: center;
}

.benefits li {
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--fs-body-sm);
}

.offers-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--fs-body-sm);
}

.order-title {
  color: #ffffff;
  font-size: var(--fs-body-lg);
  font-weight: 600;
  margin: 0 0 14px;
}

.order-form-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row:last-of-type {
  border-bottom: none;
}

.field-label {
  display: block;
  color: #e0e0e0;
  font-size: var(--fs-body-sm);
  margin: 0 0 8px;
  font-weight: 400;
}

.order-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: var(--fs-body-md);
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.order-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.order-input:focus {
  border-color: rgba(245, 245, 245, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.form-hint {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-caption);
  margin: 10px auto;
  line-height: 1.35;
}

.offers-image {
  grid-area: image;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 768px) {
  .offers-section,
  .offers-section-end {
    padding: 32px 0 0;
  }
  .offers-block {
    width: 100%;

    grid-template-areas:
      "head"
      "image"
      "offer";
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .offers-title,
  .offers-title-end {
    font-size: var(--fs-section-title-mobile);
    max-width: 100%;
    margin: 0 auto var(--stack-lg);
    padding: 0 var(--content-inline-mobile);
  }

  .offers-head {
    margin: 0 auto 18px;
    padding: 0;
  }

  .offers-head-end {
    margin: 0 auto 18px;
    padding: 0;
  }

  .offers-subtitle {
    font-size: var(--fs-body-md);
    line-height: 1.45;
    padding: 0 var(--content-inline-mobile);
  }

  .offers-subtitle-end {
    font-size: var(--fs-body-md);
    line-height: 1.45;
    padding: 0 var(--content-inline-mobile);
  }

  .offers-block-end {
    width: 100%;
  }

  .offer-switch,
  .offer-switch-end {
    height: auto;
    margin-top: 0;
  }

  .offer-switch {
    padding: 0;
  }

  .switch-panel,
  .switch-panel-end {
    max-width: 100%;
    margin: var(--stack-lg) auto 0;
  }

  .switch-panel {
    padding: 0 var(--content-inline-mobile) 18px;
  }

  .switch-panel-end {
    padding: 0 var(--content-inline-mobile) 18px;
  }

  .offers-image {
    width: 100%;
  }

  .product-name,
  .course-label {
    font-size: var(--fs-body-sm);
    max-width: 180px;
  }

  .old-price {
    font-size: 13px;
  }

  .new-price {
    font-size: var(--fs-body-md);
  }

  .offer-course {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .offer-course-pack,
  .offer-course-price {
    font-size: var(--fs-card-title-mobile);
  }

  .offer-course-price-block {
    text-align: left;
  }

  .offer-course-old {
    font-size: var(--fs-body-md);
  }

  .offer-course-note {
    font-size: var(--fs-body-sm);
  }

  .offer-badge {
    font-size: 10px;
  }

  .offers-meta {
    gap: 8px 16px;
  }
}
.quality-section {
  position: relative;
  overflow-x: clip;
}

.section-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.content-column {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: 20%;
  margin-top: 50px;
  padding-right: 32px;
}

.section-heading {
  font-size: var(--fs-section-title);
  margin-bottom: var(--stack-lg);
  line-height: 1.05;
}

.content-block {
  margin-bottom: var(--stack-lg);
}

.content-block p {
  font-size: var(--fs-body-lg);
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.accordion {
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid rgba(23, 24, 76, 0.12);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-title {
  font-size: var(--fs-body-lg);
  font-weight: 600;
  color: var(--text-main);
  flex: 1;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-violet);
  font-size: 2rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0;
  padding-bottom: 0;
}

.accordion-text p {
  margin-bottom: 10px;
}

.accordion-text li {
  list-style: inside;
  margin-bottom: 5px;
}

.accordion-content.active {
  margin-bottom: 10px;
}

.image-column {
  position: relative;
  min-width: 0;
}

.quality-image {
  display: block;
  width: 100%;
  height: auto;
}

.quality-image.is-fixed {
  position: fixed;
  top: 100px;
  z-index: 5;
}

.image-placeholder {
  width: 100%;
  height: 0;
  visibility: hidden;
}

.image-placeholder.active {
  height: auto;
}

.faq-section {
  position: relative;
  z-index: 10;
}

.how-to-use-section {
  padding: 0 0 72px;
}
.how-to-use-content {
  margin: 0 var(--content-inline);
}

.how-to-use-content h2 {
  font-size: var(--fs-section-title);
  margin-bottom: var(--stack-md);
  font-weight: 700;
  line-height: 1.05;
}

.how-to-use-flex {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: var(--stack-xl);
}

.how-to-use-text {
  width: 50%;
  font-size: var(--fs-body-lg);
  line-height: 1.8;
  color: var(--text-muted);
}

.how-to-use-text p {
  margin-bottom: 15px;
}

.how-to-use-image-block {
  text-align: center;
}
.how-to-use-image {
  width: 600px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .how-to-use-section {
    padding: 32px 0 0;
  }

  .quality-section {
    padding: 32px 0 0;
  }

  .how-to-use-content {
    margin: 0 var(--content-inline-mobile);
  }

  .how-to-use-content h2 {
    font-size: var(--fs-section-title-mobile);
    margin-bottom: 30px;
    font-weight: 700;
  }

  .how-to-use-flex {
    flex-direction: column;
    margin-top: var(--stack-md);
    gap: 20px;
  }

  .how-to-use-text {
    width: 100%;
  }

  .how-to-use-image-block {
    width: 100%;
  }

  .how-to-use-image {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .section-heading {
    font-size: var(--fs-section-title-mobile);
  }
  .section-inner {
    grid-template-columns: 1fr;
  }

  .image-column {
    order: 1;
  }

  .content-column {
    order: -1;
    margin-left: 0;
    padding: 10px;
  }

  .quality-image.is-fixed {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

.reviews-section {
  padding: var(--section-pad-lg) 0 var(--section-pad-md);
  position: relative;
  z-index: 10;
  background-color: var(--surface-soft);
  overflow-x: clip;
}

.reviews-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;

  margin: 0 auto var(--stack-lg);
  padding-top: 0;
}

.reviews-title {
  font-size: var(--fs-section-title);
}

.reviews-flex p {
  font-size: var(--fs-body-lg);
  line-height: 1.1;
  color: var(--text-muted);
}

.reviews-slider {
  margin: 0 auto;
  padding-bottom: 20px;
}

.reviews-card {
  border-radius: 5px;
}
.reviews-card-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
}
.reviews-card-name {
  font-size: var(--fs-card-title-mobile);
  font-weight: 600;
  margin-bottom: 10px;
}

.reviews-card p:last-child {
  font-size: var(--fs-body-md);
  line-height: 1.5;
}

.reviews-main {
  overflow: hidden;
  border-radius: 5px;
}

.reviews-thumbs {
  display: none;
  margin-bottom: 10px;
}

.reviews-thumb {
  height: 90px !important;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0.55;
  cursor: pointer;
}

.reviews-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid rgba(221, 29, 23, 0.38);
  outline-offset: 2px;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.reviews-controls .arrow-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--brand-violet);
  cursor: pointer;
}

@media (min-width: 769px) {
  .reviews-thumbs {
    display: none;
  }

  .reviews-slider {
    width: 80%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
  }

  .reviews-main {
    width: 100%;
    max-width: 100%;
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 32px 0 0;
  }
  .reviews-flex {
    max-width: 100%;
    padding: 0 var(--content-inline-mobile);
    margin: 0 auto var(--stack-md);
  }
  .reviews-title {
    font-size: var(--fs-section-title-mobile);
    margin-bottom: 10px;
  }
  .reviews-card-name {
    font-size: var(--fs-card-title-mobile);
    font-weight: 600;
  }

  .reviews-card p:last-child {
    font-size: var(--fs-body-md);
    line-height: 1.5;
  }

  .reviews-card-image {
    height: 450px;
  }

  .reviews-slider {
    width: 100%;
    padding: 0 var(--content-inline-mobile);
    box-sizing: border-box;
  }

  .reviews-thumbs {
    display: block;
    overflow: hidden;
  }

  .reviews-controls {
    display: none;
  }
}

.faq-section {
  background-color: var(--surface-soft);
}

.faq-layout {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 96px;
  padding: 0 0 var(--section-pad-lg);
}

.faq-header {
  width: 100%;
  line-height: 1.05;
}

.faq-header h2 {
  font-size: var(--fs-section-title) !important;
}

.faq-list {
  max-width: 50%;
}

@media (max-width: 768px) {
  .faq-layout {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 32px var(--content-inline-mobile) 0;
  }

  .faq-header {
    width: 100%;
    font-size: var(--fs-section-title-mobile);
  }

  .faq-list {
    max-width: 600px;
  }
}

.footer {
  background-color: #2a2647;
  width: 100%;
  position: relative;
  z-index: 10;
  color: white;
  padding: var(--section-pad-md) 0 12px;
}

.footer-brand {
  font-size: 28px;
  padding: 0 0 var(--stack-lg);
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  color: #565fb0;
  font-style: italic;
  font-weight: 900;
}

.footer-brand span {
  color: var(--brand-red);
}

.footer p {
  font-size: var(--fs-caption);
  width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-brand img {
  width: 150px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  text-align: center;
  padding: var(--stack-md) 15px 0;
}

.footer-legal p {
  font-size: var(--fs-body-md);
  width: auto;
  margin: 0;
}

.footer-legal a {
  font-size: var(--fs-body-md);
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 0 12px;
  }

  .footer-brand {
    padding-bottom: var(--stack-md);
  }

  .footer p {
    font-size: var(--fs-caption);
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .ingredients-modal-overlay,
  .legal-modal-overlay {
    padding: 16px 10px;
  }

  .legal-modal {
    border-radius: 22px;
  }

  .legal-modal-header {
    padding: 24px 22px 18px;
  }

  .legal-modal-header::after {
    left: 22px;
    right: 22px;
  }

  .legal-modal-header h3 {
    font-size: 26px;
    padding-right: 34px;
  }

  .legal-modal-close {
    top: 18px;
    right: 18px;
  }

  .legal-modal-content {
    max-height: calc(88vh - 92px);
    padding: 22px 22px 28px;
  }

  .legal-modal-content h4 {
    margin-top: 22px;
    font-size: 18px;
  }
}

.iti {
  display: block !important;
}
