/* 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);
}

.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 Styles */
:root {
  --header-height: 75px;
}

@media (min-width: 577px) {
  :root {
    --header-height: 98px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 73px;
  background: white;
  transition: transform 0.3s ease;
}

.header-hidden {
  transform: translateY(-100%);
}

.header-spacer {
  height: 73px;
  width: 100%;
}

.header-container {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 5;
  background: white;
}

/* Header Left */
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
}

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

/* Burger Menu */
.burger-menu {
  display: none;
  position: relative;
  width: 20px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 3px;
}

.burger-line {
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  left: 0;
}

.burger-line-top {
  top: 0;
}

.burger-line-middle-left,
.burger-line-middle-right {
  top: 50%;
  transform: translateY(-50%);
}

.burger-line-bottom {
  bottom: 0;
}

.menu-open .burger-menu {
  transform: rotate(-45deg);
}

.menu-open .burger-line-top {
  transform: translateY(7px);
}

.menu-open .burger-line-bottom {
  transform: translateY(-7px);
}

.menu-open .burger-line-middle-left,
.menu-open .burger-line-middle-right {
  transition-delay: 0.2s;
}

.menu-open .burger-line-middle-right {
  transform: translateY(-50%) rotate(-90deg);
}

/* Desktop Navigation */
.navbar-desktop {
  display: flex;
  justify-content: center;
}

.navbar-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-item {
  position: relative;
}

.navbar-link {
  color: black !important;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  /* padding: 8px 12px; */
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 400 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s ease;
}

.navbar-link:hover {
  opacity: 0.7;
}

/* Dropdown */
.dropdown {
  position: relative;
}

header .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px;
  min-width: 200px;
  height: 76px !important;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

header .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

header .dropdown-link {
  display: block;
  padding: 4px 10px;
  color: black;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

header .dropdown-link:hover {
  background-color: #f3f4f6;
}

/* Header Right */
.header-right {
  display: flex;
  justify-content: flex-end;
}

/* Button Styles */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background-color: #00ffc3;
  color: black;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

.mini-btn {
  font-size: 14px;
  line-height: 14px;
  height: 40px;
  padding: 0 20px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: white;
  border-radius: 0 0 24px 24px;
  z-index: 1;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  /* box-shadow: 0 4px 37px rgba(0, 0, 0, 0.25); */
}

.menu-open .mobile-menu {
  transform: translateY(0);
}

.mobile-menu-content {
  padding: 20px 16px 36px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3);
  font-style: italic;
  text-transform: uppercase;
  margin: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  font-size: 22px;
  line-height: 1;
}

.mobile-nav-link {
  color: black;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
}

/* Mobile Dropdown */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding-left: 24px;
  margin-top: 12px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: flex;
}

.mobile-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-link {
  color: black;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 0;
}

.mobile-cta {
  margin-top: 16px;
  margin-bottom: 20px;
}

/* Mobile Social */
.mobile-social {
  display: flex;
  gap: 12px;
}

.mobile-social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
}

.header-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px !important;
  width: 48px;
  height: 32px;
  background: #eee;
}

.header-social-img {
  filter: invert(1);
}

.mobile-social-link:hover {
  background: rgba(0, 0, 0, 0.1);
}

.mobile-social-link svg {
  width: 18px;
  height: 18px;
}

.mobile-social-link svg path {
  fill: black;
}

/* Utility Classes */
.desktop-only {
  display: inline-flex;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar-desktop {
    display: none;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 576px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }

  .burger-menu {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .header-right {
    display: none;
  }
}

/* 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 {
  font-size: 14px;
}
.description-hero {
  font-size: 14px;
  margin-bottom: 40px;
}

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

.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(5, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.hiw-list-4 {
  grid-template-columns: repeat(4, 1fr);
}

.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;
  align-items: flex-start;
  gap: 20px;
}

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

.benefits-img {
  border-radius: 12px;
  margin-bottom: 20px;
}

.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);
}

.title-block-complex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.title-block-complex-top {
  align-items: flex-start;
}

.title-benefits-complex {
  font-size: 36px;
  text-align: center;
  max-width: 522px;
  text-align: left;
}

.title-benefits-complex-wide {
  max-width: 620px;
}

.description-benefits-complex {
  max-width: 400px;
  width: 100%;
}

.description-benefits-complex-wide {
  max-width: 500px;
  width: 100%;
}
.benefits-complex-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.benefits-complex-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 20px;
  border-radius: 24px;
  border: 1px solid rgba(223, 223, 223, 1);
}

.benefits-icon {
  margin-bottom: 0px;
}

.benefits-complex-title {
  margin-bottom: 0px !important;
  text-align: left !important;
}

.benefits-text-item-complex {
  text-align: left !important;
}

.benefits-complex-image {
  width: 100%;
  height: 550px;
  border-radius: 24px;
  object-fit: cover;
}

/* 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, 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-list-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

.feedback-item:not(:last-child) {
  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 {
  color: white;
  max-width: 800px;
  text-align: center;
  font-size: 14px;
  margin: 0 auto 40px;
}

/* CALL TO ACTION SECTION */

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

.cta {
  background: #094a3d;
  background: linear-gradient(
    352deg,
    rgba(9, 74, 61, 1) 0%,
    rgba(36, 36, 36, 1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
  padding: 120px;
}

.title-cta {
  color: white;
  text-align: center;
  max-width: 640px;
  font-size: 62px;
  line-height: 62px;
  font-weight: 400;
  margin-bottom: 60px;
}

.cta-btn {
  font-size: 24px;
  padding: 16px 60px;
}

/* 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 {
  display: block;
  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 Styles */
.footer {
  position: relative;
  background-color: rgba(25, 27, 29, 1);
  margin-top: 80px;
}

.footer .container {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top Content Section */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  gap: 40px;
}

.footer-nav {
  flex: 1;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list-item {
  font-size: 16px;
  line-height: 1;
  color: white;
  position: relative;
}

.footer-link {
  color: white !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit !important;
  font-size: 16px !important;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.footer-link:hover {
  opacity: 0.7;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.dropdown-toggle span {
  margin-right: 4px;
}

.dropdown-arrow {
  width: 8px;
  height: 8px;
  transition: transform 0.2s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #2a2c2e;
  border-radius: 6px;
  padding: 4px;
  min-width: 200px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  margin-bottom: 8px;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

.dropdown-link {
  display: block;
  padding: 8px 16px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.dropdown-link:hover {
  background-color: #f3f4f6;
  color: #111827;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.social-link svg path {
  fill: white;
}

/* Huge Logo */
.footer-huge-logo {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom Section */
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 24px 0 24px;
}

.footer-copyright-left {
  display: flex;
  justify-content: flex-start;
}

.footer-ukraine {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright-right {
  display: flex;
  justify-content: flex-end;
}

.footer-copyright-text {
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.ukraine-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.ukraine-link:hover {
  opacity: 0.7;
}

.ukraine-link svg {
  width: 24px;
  height: 16px;
  flex-shrink: 0;
}

/* Mobile specific classes */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

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

.title-chill-simple {
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-list {
    gap: 16px;
  }
}

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

  .footer-nav {
    padding-left: 16px;
  }

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

  .footer-social {
    width: 100%;
    justify-content: center;
    padding: 0 16px;
  }

  .footer-bottom {
    padding: 24px 0 32px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
    justify-content: center;
    padding-bottom: 32px;
  }

  .dropdown-menu {
    left: 0;
    min-width: 250px;
  }
}

.footer-social-link {
  background: transparent !important;
  border-radius: 1000px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  width: 70px !important;
  height: 40px !important;
}

@media (max-width: 576px) {
  .footer {
    margin-top: 40px;
  }

  .footer-nav {
    padding-left: 0;
  }

  .footer-content {
    padding: 24px 0;
  }

  .footer-bottom {
    padding: 20px 0 20px;
  }
}

@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);
  }

  .title-block-complex {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
  }

  .title-benefits-complex {
    font-size: 36px;
    text-align: center;
    max-width: 522px;
    text-align: left;
  }

  .description-benefits-complex {
    max-width: 400px;
    width: 100%;
  }

  .benefits-complex-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .benefits-complex-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
    border-radius: 24px;
    border: 1px solid rgba(223, 223, 223, 1);
  }

  .benefits-icon {
    margin-bottom: 0px;
  }

  .benefits-complex-title {
    margin-bottom: 0px !important;
    text-align: left !important;
  }

  .benefits-text-item-complex {
    text-align: left !important;
  }

  .benefits-complex-image {
    width: 100%;
    height: 350px;
    border-radius: 24px;
    object-fit: cover;
  }

  /* 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;
  }

  /* CALL TO ACTION SECTION */

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

  .cta {
    padding: 100px 20px;
  }

  .title-cta {
    color: white;
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 32px;
  }

  .cta-btn {
    padding: 16px 60px;
  }

  /* 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;
  }
}
