/* LIGHT */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Light.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-LightItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* REGULAR */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* MEDIUM */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* SEMIBOLD */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-SemiboldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* BOLD */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-BoldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --general-sans: "General Sans";
  --rock: #686a6c;
  --accent: #00ffc3;
  --charcoal: #404040;
  --gondola: #363636;
}

body {
  font-family: var(--general-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.container {
  max-width: 1410px;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
  position: relative;
}

.main {
  min-height: 100vh;
}

.title {
  font-size: 48px;
  line-height: 48px;
  font-weight: 500;
  color: #000;
}

.title-light {
  font-weight: 300;
  font-style: italic;
}

strong {
  color: black !important;
  font-size: 600;
}

.descr {
  color: var(--rock);
}

.header {
  position: fixed;
  top: 0;
  z-index: 50;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  padding: 20px 32px;
  background: white;
  border-bottom: 1px solid #E7EAEE;
}

.header-skelet {
  width: 100vw;
  height: 98px;
}

.nav-auth {
  display: flex;
  gap: 8px;
}

.logo-link {
  padding-right: 166px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background-color: var(--accent);
  /*height: 53px;*/
  padding: 0 30px;
  min-width: 322px;
  width: auto;
  color: #000;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
}

.btn-secondary {
  border: 0.5px solid #000;
  background-color: transparent;
}

.mini-btn {
  font-size: 14px;
  line-height: 14px;
  min-width: auto;
  /*height: 40px;*/
  padding: 11px 26px;
  max-width: none;
  width: auto;
}

/* HEADER */

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.navbar {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 50px;
}

.navbar-list {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: start;
}

.header-logo {
  width: 84px;
  height: 21px;
  object-fit: contain;
}

/* HERO */

.hero-section {
  padding-top: 80px;
  margin-bottom: 80px;
}

.title-block-wrapper {
  display: flex;
  gap: 5%;
  margin-bottom: 60px;
}

.title-block {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title-hero {
  font-family: var(--general-sans);
  font-weight: 500;
  font-size: 62px;
  line-height: 62px;
  max-width: 712px;
  margin: 0 0 40px;
}

.title-hero-secondary {
  font-size: 32px;
  margin-bottom: 24px;
}

.description-hero {
  font-size: 14px;
  margin-bottom: 40px;
}

.descr-hero {
  max-width: 872px;
  margin: 0 auto;
  text-align: center;
}

.img-hero {
  flex-grow: 1;
  max-width: 50%;
  border-radius: 24px;
  object-fit: cover;
  padding: 0;
}

.hero-brands {
  display: flex;
  align-items: center;
}

.hero-brand {
  flex-grow: 1;
  padding: 36px 0;
  filter: opacity(0.5);
  transition: filter 0.3s;
  border: 1px solid #E7EAEE;
  margin: 0 auto;
}

.hero-brand > img {
  margin: 0 auto;
}

.brand:hover {
  filter: opacity(1);
}

.hero-btn {
  width: fit-content;
  padding-left: 80px;
  padding-right: 80px;
  font-size: 24px;
  line-height: 24px;
}

/* FEATURES SECTION */

.features-section {
  margin-bottom: 80px;
}

.title-features {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}

.features-list {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

.features-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.features-image {
  border-radius: 24px;
  overflow: hidden;
}

.features-item:nth-child(odd) .features-image {
  order: 1;
}

.features-item:nth-child(odd) .features-description {
  order: 2;
}

.features-image,
.features-description {
  width: 50%;
}

.features-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 26px;
}

.features-text-item {
  font-size: 14px;
  line-height: 19px;
  color: var(--rock);
}

/* HOW IT WORKS */

.hiw-section {
  margin-bottom: 80px;
}

.title-hiw {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.description-hiw {
  max-width: 800px;
  text-align: center;
  font-size: 14px;
  margin: 0 auto 40px;
}

.hiw-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.hiw-item {
  background: transparent;
  border-radius: 24px;
  border: 1px solid #DFDFDF;
  padding: 32px 20px;
}

.hiw-numero {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 50px;
}

.hiw-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin-bottom: 50px;
  overflow: hidden;
}

.hiw-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 26px;
}

.hiw-text-item {
  font-size: 14px;
  line-height: 19px;
  color: var(--rock);
}

/* BENEFITS SECTION */

.benefits-section {
  margin-bottom: 80px;
}

.title-benefits {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.description-benefits {
  margin-bottom: 20px;
}

.benefits-list {
  display: flex;
  flex-flow: column;
  margin-bottom: 20px;
}

.benefits-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.benefits-item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 400px;
}

.benefits-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: black;
  width: 60px;
  height: 60px;
  margin-bottom: 26px;
}

.benefits-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  margin-bottom: 26px;
}

.benefits-text-item {
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: var(--rock);
}

/* PRICING */

.pricing-section {
  max-width: 800px;
  margin-bottom: 80px;
}

.title-pricing {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.description-pricing {
  max-width: 800px;
  text-align: center;
  font-size: 14px;
  margin: 0 auto 40px;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-block {
  display: flex;
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
  flex-direction: column;
  gap: 24px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.1);
}

.weekly {
  background-color: transparent;
}

.monthly {
  background: linear-gradient(45deg, white 15%, rgba(13, 229, 179, 0.75) 100%);
}

.pricing-title-small {
  line-height: 1;
  font-size: 20px;
}

.pricing-highlight-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-highlight-price {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.pricing-highlight-cross {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: line-through;
  color: rgba(42,42,42,1);
}

.pricing-highlight-period {
  font-size: 18px;
  line-height: 1;
  color: rgba(42,42,42,0.5);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-list-item {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
}

.pricing-list-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.05);
}

.pricing-list-item-usp {}

.pricing-buy-btn {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  width: 100%;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  background-color: #EEEEEE;
  color: #000000;
  white-space: nowrap;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  height: 53px;
  padding: 0 35px;
}

.pricing-buy-btn.primary {
  background-color: #000000;
  color: #ffffff;
}

.pricing-buy-btn.secondary {
  background-color: #EEEEEE;
}

.pricing-buy-btn.primary:hover {
  background-color: rgba(0, 0, 0, .9);;
}

.pricing-buy-btn.secondary:hover {
  background-color: #D1D5DB;
}

.pricing-buy-btn:active {
  background-color: rgb(229, 231, 235);
}

.pricing-buy-btn:disabled {
  pointer-events: none;
  opacity: 0.35;
}

.pricing-buy-info {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: rgba(42,42,42,0.5);
}

/* RELATED FEATURES */

.feedback-section {
  margin-bottom: 80px;
}

.feedback {
  max-width: 1380px;
}

.title-feedback {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.description-feedback {
  max-width: 800px;
  text-align: center;
  font-size: 14px;
  margin: 0 auto 40px;
}

.feedback-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  border: 1px solid #DFDFDF;
  border-radius: 24px;
}

.feedback-item {
  padding: 32px 20px;
}

.feedback-item.first {
  border-right: 1px solid #DFDFDF;
}

.feedback-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: black;
  width: 60px;
  height: 60px;
  margin-bottom: 80px;
}

.feedback-number {
  color: #00FFC3;
  font-size: 24px;
  font-weight: 500;
}

.feedback-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 26px;
}

.feedback-text-item {
  font-size: 14px;
  line-height: 19px;
  color: var(--rock);
  margin-bottom: 24px;
}

.feedback-link {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

/* GET STARTED */

.get-started-section {
  margin-bottom: 80px;
}

.title-get-started {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.description-get-started {
  max-width: 800px;
  text-align: center;
  font-size: 14px;
  margin: 0 auto 40px;
}

/* ACC */

.acc-section {
  margin-bottom: 80px;
}

.container-acc {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 32px;
}

.acc-content {
  max-width: 342px;
  width: 100%;
  flex-shrink: 0;
}

.acc-block {
  max-width: 820px;
  width: 100%;
  flex-shrink: 0;
}

.acc-list {
  display: flex;
  flex-direction: column;
}
.acc-item {
  display: flex;
  flex-direction: column;
}

.acc-header {
  padding: 20px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  cursor: pointer;
}

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

.acc-icon {
  width: 16px;
  height: 20px;
  object-fit: contain;
}

.acc-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

.acc-item input {
  display: none;
}

.acc-item {
  border-top: 1px solid #dfdfdf;
}

.acc-item:first-child {
  border-top: none;
}
.acc-arrow {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  transform: rotate(180deg);
}

.acc-descr {
  padding: 14px 0 32px 70px;
}

.acc-body {
  height: 0;
  overflow: hidden;
}

.acc-item input:checked ~ .acc-body {
  height: auto;
}

.acc-item input:checked ~ .acc-header .acc-arrow {
  transform: rotate(0deg);
}

/* RELATED FEATURES */

.related-features-section {
  margin-bottom: 45px;
}

.title-related-features {
  text-align: center;
  font-size: 36px;
  margin-bottom: 32px;
}

.description-related-features {
  max-width: 800px;
  text-align: center;
  font-size: 14px;
  margin: 0 auto 40px;
}

.related-features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.related-features-item {
  background: transparent;
  border-radius: 24px;
  border: 1px solid #DFDFDF;
  padding: 32px 20px;
}

.related-features-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: black;
  width: 60px;
  height: 60px;
  margin-bottom: 80px;
}

.related-features-number {
  color: #00FFC3;
  font-size: 18px;
  font-weight: 500;
}

.related-features-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
}

.related-features-text-item {
  font-size: 14px;
  line-height: 19px;
  color: var(--rock);
  margin-bottom: 20px;
}

.related-features-link {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

/* FOOTER */

.footer {
  padding: 60px 0 0;
  background: #252525;
  border-top-left-radius: 37px;
  border-top-right-radius: 37px;
}

.footer-content {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-title,
.footer-mark-text,
.footer-copyright-text {
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  font-weight: 400;
  color: #ffffff4d;
  font-style: italic;
}

.footer-list {
  display: flex;
  justify-content: start;
  gap: 24px;
  align-items: center;
}

.footer-link {
  color: white;
}

.footer-social {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 6px;
}

.footer-social-link {
  background: #363636;
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 40px;
}

.footer-copyright {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 36px 0 40px;
  border-top: 1px solid var(--charcoal);
  justify-content: space-between;
  align-items: center;
}

.footer-mark-text,
.footer-copyright-text {
  font-size: 16px;
  font-style: normal;
}

.footer-copyright-block {
  display: flex;
  justify-content: end;
  align-items: center;
}

.footer-standwith {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.footer-stand-text {
  font-size: 16px;
  color: white;
  line-height: 1;
}

.footer-logos {
  height: 300px;
  display: flex;
  align-items: center;
}

.scroll-container {
  overflow: hidden;
  white-space: nowrap;
}

.scroll-content {
  display: inline-flex;
  gap: 36px;
  flex-shrink: 0;
  animation: scroll 20s linear infinite;
}

.footer-logo {
  display: inline-block;
  height: 143px;
  width: auto;
  aspect-ratio: 549/143;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.footer-logos {
  position: relative;
}
.footer-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  background: linear-gradient(
    90deg,
    #252525 0%,
    rgba(37, 37, 37, 0) 20%,
    rgba(37, 37, 37, 0) 80%,
    #252525 100%
  );
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
    line-height: 18px;
  }

  .title {
    font-size: 28px;
    line-height: 28px;
    font-weight: 500;
    color: #000;
  }

  .header {
    position: fixed;
    top: 0;
    z-index: 50;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 75px;
    background: white;
  }

  .header-skelet {
    width: 100vw;
    height: 75px;
  }

  .navbar-list {
    display: none;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  .mini-btn {
    min-width: auto;
  }

  .hero-section {
    padding-top: 45px;
    margin-bottom: 45px;
  }

  .title-block-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .title-hero {
    font-size: 26px;
    margin: 0 0 24px;
  }

  .title-hero-secondary {
    font-size: 22px;
  }

  .img-hero {
    max-width: none;
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 0;
    margin-bottom: 32px;
  }

  .hero-brands {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    border: 1px solid #DFDFDF;
    border-radius: 24px;
  }

  .hero-brand {
    width: 100%;
    padding: 36px 0;
    filter: opacity(0.5);
    border: none;
  }

  .hero-brand.first {
    border-right: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
  }

  .hero-brand.second {
    border-bottom: 1px solid #DFDFDF;
  }

  .hero-brand.third {
    border-right: 1px solid #DFDFDF;
  }

  .hero-btn {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 24px;
  }

  /* FEATURES SECTION */

  .features-section {
    margin-bottom: 45px;
  }

  .title-features {
    font-size: 20px;
    text-align: center;
    margin-bottom: 32px;
  }

  .features-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
  }

  .features-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .features-item:nth-child(odd) .features-image,
  .features-item:nth-child(odd) .features-description {
    order: 0;
  }

  .features-image,
  .features-description {
    width: 100%;
  }

  .features-title {
    font-size: 18px;
    margin-bottom: 26px;
  }

  .features-text-item {
    font-size: 14px;
  }

  /* HOW IT WORKS */

  .hiw-section {
    margin-bottom: 45px;
  }

  .title-hiw {
    text-align: center;
    font-size: 20px;
    margin-bottom: 32px;
  }

  .hiw-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: 20px;
  }

  .hiw-item {
    background: transparent;
    border-radius: 24px;
    border: 1px solid #DFDFDF;
    padding: 32px 20px;
  }

  .hiw-numero {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
  }

  .hiw-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 25px;
  }

  .hiw-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .hiw-text-item {
    font-size: 14px;
    line-height: 19px;
    color: var(--rock);
  }

  /* BENEFITS SECTION */

  .benefits-section {
    margin-bottom: 45px;
  }

  .title-benefits {
    text-align: center;
    font-size: 20px;
    margin-bottom: 32px;
  }

  .benefits-list {
    display: flex;
    flex-flow: column;
    margin-bottom: 20px;
  }

  .benefits-row {
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 20px;
  }

  .benefits-item {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
  }

  .benefits-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: black;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .benefits-title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
  }

  .benefits-text-item {
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: var(--rock);
  }

  /* PRICING */

  .pricing-section {
    max-width: none;
    margin-bottom: 45px;
  }

  .title-pricing {
    text-align: center;
    font-size: 20px;
    margin-bottom: 32px;
  }

  .description-pricing {
    max-width: none;
    text-align: center;
    font-size: 14px;
    margin: 0 auto 32px;
  }

  .pricing-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* FEEDBACK */

  .feedback-section {
    margin-bottom: 45px;
  }

  .title-feedback {
    text-align: center;
    font-size: 20px;
    margin-bottom: 32px;
  }

  .feedback-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    border: 1px solid #DFDFDF;
    border-radius: 24px;
  }

  .feedback-item.feedback-item {
    padding: 32px 20px;
    border: none;
    border-bottom: 1px solid #DFDFDF;
  }

  .feedback-item:last-child {
    border: none;
  }

  .feedback-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: black;
    width: 48px;
    height: 48px;
    margin-bottom: 32px;
  }

  .feedback-number {
    color: #00FFC3;
    font-size: 20px;
    font-weight: 500;
  }

  .feedback-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 26px;
  }

  .feedback-text-item {
    font-size: 14px;
    line-height: 19px;
    color: var(--rock);
    margin-bottom: 24px;
  }

  .feedback-link {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
  }

  /* ACC */

  .acc-section {
    margin-bottom: 45px;
  }

  .container-acc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
  }

  .acc-header {
    padding: 16px 0 16px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    cursor: pointer;
  }

  .acc-title {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .acc-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }

  /* RELATED FEATURES */

  .related-features-section {
    margin-bottom: 45px;
  }

  .title-related-features {
    text-align: center;
    font-size: 20px;
    margin-bottom: 32px;
  }

  .description-related-features {
    max-width: 800px;
    text-align: center;
    font-size: 14px;
    margin: 0 auto 40px;
  }

  .related-features-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: 20px;
  }

  .related-features-item {
    background: transparent;
    border-radius: 24px;
    border: 1px solid #DFDFDF;
    padding: 32px 20px;
  }

  .related-features-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: black;
    width: 60px;
    height: 60px;
    margin-bottom: 80px;
  }

  .related-features-number {
    color: #00FFC3;
    font-size: 18px;
    font-weight: 500;
  }

  .related-features-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .related-features-text-item {
    font-size: 14px;
    line-height: 19px;
    color: var(--rock);
    margin-bottom: 20px;
  }

  .related-features-link {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
  }

  .footer {
    padding: 50px 0 0;
    background: #252525;
    border-top-left-radius: 37px;
    border-top-right-radius: 37px;
  }

  .footer-content {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--charcoal);
    display: flex;
    gap: 24px;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }

  .footer-list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }

  .footer-social {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .footer-social-link {
    background: transparent;
    border-radius: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
  }

  .footer-copyright {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 0 26px;
    gap: 20px;
    border-top: 1px solid var(--charcoal);
    justify-content: space-between;
    align-items: center;
  }
}
