/* Base Styles */
html {
  font-family: "Inter Tight", sans-serif;
  color: #372517;
  background-color: #f3e6ca;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Global scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* Typography */
h1 {
  font-size: 58px;
  line-height: normal;
  font-weight: 700;
  letter-spacing: -0.58px;
}

h2,
.section__top-container h3 {
  font-size: 48px;
  line-height: normal;
  font-weight: 700;
  letter-spacing: -0.48px;
}

h3 {
  color: #28261b;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.64px;
}

h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.24px;
}

p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.18px;
}

b {
  font-weight: 600;
}

img {
  border-radius: 8px;
}

/* Buttons */
.btn {
  border-radius: 40px;
  background: #372517;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 18px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: #ff4802;
}

/* Layout Components */
.wrapper {
  min-height: 100vh;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Header */
.header {
  background: #ad5129;
  position: relative;
  width: 100%;
  z-index: 999;
}

.header__top {
  background: #f3e6ca;
  padding: 12px 0;
}

.header__top-text {
  font-size: 16px;
  letter-spacing: -0.16px;
  text-align: center;
}

.header__top-text p {
  color: #372517;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.header__mid {
  display: flex;
  gap: 28px;
}

.header__link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  text-decoration: none;
}

.header__hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.header__hamburger-container {
  position: relative;
  width: 22px;
  height: 20px;
}

.header__hamburger-item {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background-color: #fff;
  transition: 0.3s ease;
}

.header__hamburger-item:nth-child(1) {
  top: 0;
}

.header__hamburger-item:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.header__hamburger-item:nth-child(3) {
  bottom: 0;
}

.header.active .header__hamburger-item:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header.active .header__hamburger-item:nth-child(2) {
  opacity: 0;
  right: 50%;
}

.header.active .header__hamburger-item:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.header__mobile-menu {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100vw;
  height: fit-content;
  transform: translateX(-100%);
  transition: all 250ms ease;
  background: #ad5129;
  z-index: 998;
}

.active .header__mobile-menu {
  transform: translateX(0%);
}

.header__mobile-menu .header__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.header__mobile-menu .header__button {
  display: inline-flex;
  width: fit-content;
}

.header__lang {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  letter-spacing: -0.32px;
  position: relative;
  z-index: 100000;
  margin-inline: 12px;
  /*margin-left: 36px;*/
}
.header__current-lang {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__list-lang {
  position: absolute;
  top: 50px;
  left: -24px;
  display: inline-flex;
  padding: 24px !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  z-index: -1;
  border-radius: 0px 0px 16px 16px;
  background: #372517;
  box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
}

.header__list-lang.active {
  opacity: 1;
  visibility: visible;
  transition: all 250ms ease;
  z-index: 99;
}

.header__item-lang a {
  color: #fff;
  text-decoration: none;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background: url("../images/bl1_bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out;
  will-change: transform;
  transform-origin: center center;
}

/* Mouse-based parallax effect */
.hero__overlay.mouse-parallax {
  transition: transform 0.1s ease-out;
}

.hero__overlay.mouse-parallax img {
  transition: transform 0.2s ease-out;
  animation: none !important;
}

/* Advantages mouse parallax styles */
.advantages__image-container.mouse-parallax .advantages__image.parallax {
  transition: transform 0.2s ease-out;
  animation: none !important;
}

/* Path mouse parallax styles */
.path__overlay.mouse-parallax img {
  transition: transform 0.2s ease-out;
  animation: none !important;
}

@media screen and (min-width: 1460px) {
  .path__overlay.mouse-parallax img {
    width: 100%;
    height: 100%;
  }
}

@media (hover: none) {
  .hero__overlay,
  .hero__overlay img {
    animation: none;
  }

  .hero__overlay.mouse-parallax {
    transition: transform 0.2s ease-out;
  }
}

.hero__content {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__left {
  width: 100%;
  max-width: 1000px;
}

.hero__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 24px;
}

.hero__info p {
  color: #f3e6ca;
  max-width: 588px;
}

.hero__title {
  color: #f3e6ca;
}

.hero__images {
  position: absolute;
  bottom: -103px;
  right: 0;
}

.hero__image1 {
  width: 254px;
  position: absolute;
  bottom: 0;
  left: -100px;
  z-index: 0;
  object-fit: contain;
}

.hero__image2 {
  position: relative;
  z-index: 2;
  width: 690px;
  object-fit: contain;
}

/* Form Styles */

.hero__form {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
}

.hero__image {
  width: 100%;
  max-width: 588px;
}

.form-container {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
  background: #f3e6ca;
  box-shadow: 0 15px 35px 0 rgba(134, 124, 93, 0.4);
  max-width: 384px;
  padding: 24px;
}

.form-container.last {
  width: 100%;
  max-width: 486px;
}

.form__title {
  color: #000;
  text-align: center;
  font-family: "Inter Tight";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.32px;
}

.form__price-wrapper {
  border-radius: 4px;
  border: 2px dashed #f00;
  background: rgba(255, 0, 0, 0.1);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #000;
  text-align: center;
  font-family: "Inter Tight";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.16px;
}

.form__price-discount {
  color: #fff;
  text-align: center;
  font-family: "Inter Tight";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.18px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #f00;
}

/* Section Layouts */
section {
  padding-top: 100px;
}

.section__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section__top-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.section__top-container p {
  max-width: 591px;
}

.section__bot-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 792px;
  margin-inline: auto;
}

.section__bot-container p {
  font-size: 16px;
  letter-spacing: -0.16px;
}

/* Why Section */
.why {
  padding-bottom: 50px;
}

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

.why__item {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.why__item-image {
  width: 100%;
  border-radius: 8px 8px 0 0;
  z-index: 2;
}

.why__item-text {
  /*border-radius: 0 0 8px 8px;*/
  /*border: 1px solid #e5e6e5;*/
  /*border-top: none;*/
  /*background: #fff;*/
  width: 282px;
  /*height: 108px;*/
  /*padding: 47px 15px 15px;*/
}

.why__item-text p {
  font-weight: 700;
}

.why__bot-container {
  max-width: 792px;
  margin-inline: auto;
}

/* Table Section */
.table__items-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* Comparison Table */

.table {
  background-color: #c1c1a6;
  padding-bottom: 50px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  border: 1px solid #f3e6ca;
}

.header-cell {
  padding: 16px;
  color: #fff;
  font-weight: 600;
  border-left: 1px solid #e5e6e5;
  background: #372517;
}

.header-cell:nth-child(1) {
  border-left: none;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.table-row.bg {
  background: #f6f6f6;
}

.cell {
  padding: 16px;

  border-left: 1px solid #372517;
  border-bottom: 1px solid #372517;
  background: #f3e6ca;
}

.cell:nth-child(5) {
  border-right: 1px solid #e5e6e5;
}

.table-row.last .cell:nth-child(1) {
  border-radius: 0 0 0 16px;
}

.table-row.last .cell:nth-child(5) {
  border-radius: 0 0 16px 0;
}

/* Corect Section */

.corect {
  background-color: #c1c1a6;
  padding-bottom: 100px;
}

.corect__items-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.corect__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.corect__card {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.corect__image {
  display: flex;
}

.corect__image img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.corect__text {
  border-radius: 0 0 8px 8px;

  background: #f3e6ca;
  padding: 15px;
  height: 100%;
}

.corect__text p {
  font-weight: 700;
}

.div1,
.div2,
.div3 {
  width: calc(33% - 14px);
}

.div4,
.div5 {
  width: calc(50% - 12px);
}

/* Scroll Section */

.scroll {
  padding-bottom: 100px;
}

.scroll__mid-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  margin-inline: auto;
  height: 400px;
  overflow-y: scroll;
}

/* Custom scrollbar for scroll container */
.scroll__mid-container::-webkit-scrollbar {
  width: 8px;
}

.scroll__mid-container::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 4px;
}

.scroll__mid-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.scroll__mid-container::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

.scroll__image {
  position: sticky;
  top: 0;
}

.scroll__item-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 588px;
}

.scroll__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: #e6d9c0;
}

.scroll__item ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: disc;
  padding-left: 24px;
}

.dark__bg {
  background: #e6d9c0;
}

.composition {
  padding-bottom: 100px;
}

/* Composition Section */
.composition * {
  /*color: #fff;*/
}

.composition h2 {
  max-width: 996px;
}

.composition h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 125% */
  letter-spacing: -0.96px;
}

.composition__mid-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  /*center items */
}

.composition__item {
  width: 100%;
  max-width: 384px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  overflow: hidden;
  background: var(--backgrounds-bg---2, #f3e6ca);
}

.composition__item img {
  z-index: 2;
  border-radius: 0;
}

.composition__item-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.composition__item-text h4 {
  margin-bottom: 4px;
}

.composition .section__bot-container {
  max-width: 588px;
  margin-inline: auto;
}

/* Advantages Section */
.advantages * {
  color: #fff;
}

.advantages .section__top-container {
  max-width: 996px;
  margin-inline: auto;
}

.advantages__image-container {
  position: relative;
  max-width: 996px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.advantages__image.main {
  position: relative;
}

.advantages__image-container .parallax {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.advantages__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.advantages__item-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.advantages__item ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: disc;
  padding-left: 24px;
}

.advantages .section__bot-container {
  max-width: 588px;
  margin-inline: auto;
}

/* Expert Section */

.expert {
  padding-block: 50px;
  background-color: #ad5129;
}

.expert h2,
.expert h3 {
  color: #fff;
}

.expert__top-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 996px;
  margin-inline: auto;
  color: #fff;
}

.expert__top-container ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.expert__mid-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 16px;
  background: #f3e6ca;
  overflow: hidden;
  max-width: 996px;
  margin-inline: auto;
}

.expert__text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}

.expert__image {
  width: 100%;
  max-width: 498px;
  object-fit: cover;
  border-radius: 0px;
}

.expert__button {
  max-width: fit-content;
  margin-inline: auto;
}

/* Review Section */
.review {
  padding-block: 50px;
  background-color: #ad5129;
}

.review h2 {
  color: #fff;
}

.comments__content {
  position: relative;
}

.comments__swiper {
  overflow: visible;
  margin-block: 32px;
}

.comments__swiper-slide {
  border-radius: 16px;
  background: #f3e6ca;
  min-height: 100% !important;
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  opacity: 0.3;
}

.comments__swiper-slide.swiper-slide-next,
.comments__swiper-slide.swiper-slide-active {
  opacity: 1;
}

.comments__rating img {
  border-radius: 0;
}

.comments__info-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.36px;
}

.comments__author {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 16px;
}

.comments__icon {
  border-radius: 50%;
  overflow: hidden;
  flex: 1 0 48px;
  height: 48px;
}

.comments__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comments__about-person {
  font-family: "Inter Tight";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.18px;
}

.comments__swiper-button-next,
.comments__swiper-button-prev {
  position: absolute;
  bottom: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.comments__swiper-button-next {
  transform: rotate(180deg);
  right: 45%;
}

.comments__swiper-button-prev {
  left: 45%;
}

.comments__swiper-button-next::after,
.comments__swiper-button-prev::after {
  display: none;
}

.comments__swiper-buttons {
  height: 48px;
}

.comments__swiper-pagination {
  display: inline-flex !important;
  width: auto !important;
  top: auto !important;
  bottom: 20px !important;
  left: 0 !important;
  right: auto !important;
  position: absolute;
}

.comments__swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.comments__swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

/* Solution Section */
.solution__mid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.solution__mid-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
}

.solution__mid-image,
.solution__image {
  border-radius: 8px 8px 0 0;
}

.solution__mid-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution__mid-text p {
  font-weight: 700;
}

.solution__mid-text ul {
  display: flex;
  flex-direction: column;
  list-style: disc;
  padding-left: 24px;
  gap: 4px;
  font-weight: 700;
}

.solution__border {
  border-radius: 4px;
  border: 2px dashed #f00;
  background: rgba(255, 0, 0, 0.1);
  padding: 23px;
}

.solution__border p {
  max-width: 100%;
  color: #f00;
  font-family: "Inter Tight";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.72px;
  text-align: left;
}

/* Path Section */
.path {
  margin-top: 100px;
  padding: 100px 0;
  background-image: url("../images/bl14_bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.path__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.path__form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.hero__overlay img {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: parallax 8s ease-in-out infinite;
}

.path .section__container {
  position: relative;
}

.path-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.path__title {
  color: var(--standart-black, #000);
  font-family: "Inter Tight";
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.58px;
  text-align: center;
}

.path__text {
  text-align: center;
}

.path__images {
  position: absolute;
  bottom: -102px;
  left: 200px;
}

.path__image {
  width: 100%;
  max-width: 588px;
}

.path__image1 {
  width: 792px;
  position: absolute;
  bottom: 0;
  z-index: -1;
  object-fit: contain;
}

.path__image2 {
  position: relative;
  z-index: -2;
  width: 324px;
  right: -700px;
  bottom: -2px;
  object-fit: contain;
}

/* Footer */
.footer {
  padding: 18px 0;
  background: #372517;
}

.footer * {
  color: #f3e6ca;
}

.footer__policy {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer__policy p {
  color: #f3e6ca;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.16px;
}

/* Utility Classes */
.bold {
  font-weight: 700;
}

.colored {
  color: #259ee4;
}

.left {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}

.last {
  /*order: 999;*/
}

/* Responsive Design */
@media screen and (max-width: 1330px) {
  /* Header adjustments */
  .header__mid,
  .header__button {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__lang {
    margin-left: auto;
  }

  /* Hero section adjustments */
  .hero__image2 {
    width: 500px;
  }

  .hero__image1 {
    width: 200px;
  }

  /* Why section adjustments */
  .why__items-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__item-text {
    width: 100%;
    height: auto;
  }

  /* Scroll section adjustments */
  .scroll__image {
    width: 50%;
  }

  /* Composition section adjustments */
  .composition__item img {
    width: 100%;
  }

  .expert__top-container {
    flex-direction: column;
    max-width: 498px;
    gap: 16px;
  }

  /* Expert section adjustments */
  .expert__mid-container {
    flex-direction: column;
    max-width: 498px;
    gap: 16px;
  }

  .expert__image {
    width: 100%;
  }

  .expert__text-container {
    padding: 0 15px 15px;
  }

  /* Solution section adjustments */
  .solution__mid-image,
  .solution__image {
    width: 100%;
  }

  /* Path section adjustments */
  .path__images {
    left: 300px;
  }

  .path__image1 {
    width: 600px;
  }

  .path__image2 {
    right: -500px;
  }

  .path__overlay.mouse-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 991px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2,
  .section__top-container h3 {
    font-size: 32px;
    letter-spacing: -0.32px;
  }

  h3 {
    font-size: 24px;
    text-align: left;
  }

  h4 {
    font-size: 24px;
    letter-spacing: -0.24px;
  }

  /* Hero section adjustments */
  .hero {
    padding-bottom: 0;
  }

  .hero__title {
    margin: 0;
  }

  .hero__content {
    flex-direction: column;
    align-items: center;
  }

  .hero__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__images {
    position: relative;
    bottom: 0;
  }

  /* Corect section adjustments */
  .div2 .corect__text,
  .div3 .corect__text {
    height: 73px;
  }

  /* Comments section adjustments */
  .comments__swiper-button-next {
    right: 42%;
  }

  .comments__swiper-button-prev {
    left: 42%;
  }

  .comments__swiper {
    overflow: hidden;
    margin-block: 16px;
  }

  /* Path section adjustments */
  .path {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: #828282;
  }
}

@media screen and (max-width: 600px) {
  /* Responsive overlay animations */
  .hero__overlay,
  .hero__overlay img {
    animation: none;
  }

  .hero__overlay.mouse-parallax {
    transition: transform 0.2s ease-out;
  }

  /* Header adjustments */
  .header__top-text p {
    font-size: 16px;
    letter-spacing: -0.16px;
  }

  .header__mobile-menu {
    top: 145px;
  }

  /* Section padding adjustments */
  .hero,
  .why,
  .table,
  .corect,
  .scroll,
  .composition,
  .advantages,
  .expert,
  .solution,
  .order {
    padding: 32px 0 32px;
  }

  /* Container adjustments */
  .section__container {
    gap: 16px;
  }

  .section__top-container {
    gap: 16px;
    text-align: left;
    align-items: flex-start;
  }

  /* Hero section mobile adjustments */
  .hero__image1 {
    width: 30%;
    left: -5px;
  }

  .hero__image2 {
    width: 90%;
    right: -50px;
  }

  .hero__title {
    color: var(--standart-black, #000);
    font-family: "Inter Tight";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.36px;
  }

  .hero__info {
    gap: 16px;
    margin-bottom: 16px;
  }

  .hero__overlay {
    width: 1920px;
  }

  /* Form adjustments */
  .form__title {
    color: var(--standart-black, #000);
    text-align: center;
    font-family: "Inter Tight";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.28px;
  }

  /* Why section mobile adjustments */
  .why__items-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .why__item-image {
    height: 220px;
    object-fit: cover;
  }

  /* Section bottom container adjustments */
  .section__bot-container p {
    text-align: left;
  }

  .section__bot-container .btn {
    width: 100%;
  }

  /* Corect section mobile adjustments */
  .div1,
  .div2,
  .div3,
  .div4,
  .div5 {
    width: 100%;
  }

  /* Table adjustments */

  .table-header,
  .table-row {
    min-width: 600px;
  }

  .comparison-table .cell {
    padding: 10px;
  }

  /* Order section adjustments */
  .order .section__top-container {
    align-items: flex-start;
  }

  .order .section__top-container * {
    text-align: left;
    margin: 0;
    max-width: 100%;
  }

  /* Composition section mobile adjustments */
  .composition__mid-container {
    grid-template-columns: repeat(1, 1fr);
  }

  /* Scroll section mobile adjustments */
  .scroll__mid-container,
  .scroll__item-container {
    width: 100%;
    flex-direction: column;
    height: unset;
  }

  .scroll__image {
    width: 100%;
  }

  /* Dark background adjustments */
  .dark__bg {
    border-radius: 16px;
  }

  /* Advantages section mobile adjustments */
  .advantages__image {
    width: 100%;
  }

  .parallax {
    width: 75%;
  }

  .advantages__item-container {
    grid-template-columns: repeat(1, 1fr);
  }

  /* Comments section mobile adjustments */
  .comments__swiper-button-next {
    right: 35%;
  }

  .comments__swiper-button-prev {
    left: 35%;
  }

  /* Expert section mobile adjustments */
  .expert__button {
    width: 100%;
  }

  /* Review section mobile adjustments */
  .review {
    /*margin-top: 32px;*/
    padding: 32px 0;
    /*border-radius: 16px;*/
  }

  .comments__swiper-slide {
    padding: 16px;
  }

  .comments {
    padding: 60px 0;
  }

  .comments__title {
    font-size: 32px;
  }

  .comments__text {
    font-size: 16px;
  }

  .comments__about-person {
    font-size: 16px;
  }

  /* Solution section mobile adjustments */
  .solution__mid-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .solution__mid-image {
    width: 100%;
  }

  .solution__mid-text {
    width: 100%;
  }

  /* Path section mobile adjustments */
  .path {
    margin-top: 32px;
    padding-top: 32px;
    padding-bottom: 0;
  }

  .path__overlay {
    width: 1020px;
    right: 0;
    left: unset;
  }

  .path-container {
    width: 100%;
    gap: 16px;
  }

  .path__title {
    color: var(--standart-black, #000);
    font-family: "Inter Tight";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.36px;
  }

  .path__images,
  .path__image1 {
    position: initial;
  }

  .path__image1 {
    width: 90%;
    position: relative;
    left: -50px;
    bottom: -2px;
  }

  .path__image2 {
    width: 120px;
    right: 0;
    bottom: 0;
    position: absolute;
  }

  /* Footer mobile adjustments */
  .footer {
    padding: 24px 0;
  }

  .footer__policy {
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* Final comments button adjustments */
  .comments__swiper-button-next {
    right: 33%;
  }

  .comments__swiper-button-prev {
    left: 33%;
  }

  /* Hide elements on mobile */
  .desk {
    display: none;
  }

  .mob {
    display: block;
  }
}

/* Swiper Overrides */
.swiper-button-disabled {
  transition: 0.3s ease;
  opacity: 0.3 !important;
  pointer-events: none !important;
}

/* Show desktop elements on larger screens */
@media screen and (min-width: 601px) {
  .desk {
    display: block;
  }

  .mob {
    display: none;
  }
}

/* Disable animations on mobile devices */
@media screen and (max-width: 768px) {
  /* Disable all animations */
  * {
    animation: none !important;
    transition: none !important;
  }

  /* Disable specific parallax animations */
  .hero__overlay img {
    animation: none !important;
  }

  .path__overlay img {
    animation: none !important;
  }

  /* Disable mouse parallax effects */
  .mouse-parallax {
    transform: none !important;
  }

  /* Disable hover effects on mobile */
  .btn:hover {
    transform: none !important;
  }

  /* Disable any other transitions */
  .header__mobile-menu {
    transition: none !important;
  }

  .header__mobile-menu.active {
    transition: none !important;
  }
  /* Mobile animation for advantages parallax images */
  .advantages__image-container.mouse-parallax .advantages__image.parallax {
    animation: mobile-float 6s ease-in-out infinite !important;
  }

  .advantages__image-container.mouse-parallax .advantages__image.parallax:nth-child(2) {
    animation-delay: -2s !important;
  }

  .advantages__image-container.mouse-parallax .advantages__image.parallax:nth-child(3) {
    animation-delay: -4s !important;
  }
}

/* Mobile floating animation keyframes */
@keyframes mobile-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  25% {
    transform: translate(-50%, -50%) translateY(-10px) translateX(5px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-5px) translateX(-3px);
  }
  75% {
    transform: translate(-50%, -50%) translateY(-15px) translateX(2px);
  }
}

.footer__links{
  display:flex;
  gap:16px;
}