:root {
  --bg: #f2f3f7;
  --color-primary: #44abe1;
  --color-secondary: #c3c5c74d;
  --text-color-primary: #000403;
  --card-bg: #b1afc133;
  --color-divider: #3fe1f3;

  --button-bg: var(--color-primary);
  --button-color: #fff;
  --button-box-shadow: 0px 0px 20px 0px #22abe2;
  --button-box-shadow-hover: 0px 0px 10px 0px #22abe2;
  --button-border-radius: 320px;

  --button-secondary-bg: #c3c5c74d;
  --button-secondary-color: var(--text-color-primary);
  --button-secondary-bg-hover: #b1afc133;

  --button-secondary-color-border: #c3c5c7;
  --button-secondary-width-border-top: 0px;
  --button-secondary-width-border-right: 1px;
  --button-secondary-width-border-bottom: 2px;
  --button-secondary-width-border-left: 1px;
  --button-secondary-border-style: solid;

  --menu-link-color: var(--text-color-primary);
  --menu-link-color-active: #22abe2;
  --menu-link-color-hover: #44abe1;

  --container-max-width: 1072px;
  --container-small-max-width: 872px;
  --border-radius: 16px;
}

[data-theme="dark"] {
  --bg: #000403;
  --color-primary: #22abe2;
  --color-secondary: #c3c5c740;
  --text-color-primary: #fff;

  --button-bg: var(--color-primary);
  --button-color: #fff;
  --button-box-shadow: 0px 0px 20px 0px #22abe2;
  --button-box-shadow-hover: 0px 0px 10px 0px #22abe2;

  --button-secondary-bg: #c3c5c740;
  --button-secondary-bg-hover: #b1afc133;
  --button-secondary-color-border: #67717e;

  --menu-link-color: var(--text-color-primary);
  --menu-link-color-active: var(--color-primary);
  --menu-link-color-hover: var(--color-primary);
}

/* Reset */

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

* {
  margin: 0;
  padding: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

button,
input,
textarea,
select {
  font: inherit;
}

/* Typography */

h1,
.h1 {
  font-size: 45px;
  font-weight: 400;
  line-height: 55px;
  text-align: center;
}

h2,
.h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 35px;
}

p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 30px;
    line-height: 1;
    text-align: left;
  }

  h2,
  .h2 {
    text-align: left;
  }
}

/* Main */

body {
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 30px;
  background-color: var(--bg);
  color: var(--text-color-primary);
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  gap: 16px;
}

.container--small {
  max-width: var(--container-small-max-width);
}

.no-wrap {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .container {
    max-width: var(--container-small-max-width);
  }
}

@media (max-width: 767px) {
  .container {
    text-align: left;
  }

  .no-wrap {
    white-space: wrap;
  }
}

.main {
  padding-top: 72px;
}

.main ul,
.main ol {
  padding-left: 25px;
  list-style: disc;
}

/* 
.gradient {
  position: relative;
}

.gradient::before,
.gradient::after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.gradient::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.gradient::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

@media (max-width: 767px) {
  .gradient::before,
  .gradient::after {
    content: none;
  }
} */

/* Button */

.button {
  display: inline-block;
  width: fit-content;
  min-width: 209px;
  max-width: 500px;
  height: 48px;
  line-height: 48px;
  border-radius: var(--button-border-radius);
  background-color: var(--button-bg);
  text-align: center;
  color: var(--button-color);
  box-shadow: var(--button-box-shadow);
}

.button:hover {
  box-shadow: var(--button-box-shadow-hover);
}

.button:focus-visible {
  outline: none;
}

.button--secondary {
  background-color: var(--button-secondary-bg);
  color: var(--button-secondary-color);
  box-shadow: none;
  border-right: var(--button-secondary-width-border-right)
    var(--button-secondary-border-style) var(--button-secondary-color-border);
  border-bottom: var(--button-secondary-width-border-bottom)
    var(--button-secondary-border-style) var(--button-secondary-color-border);
  border-left: var(--button-secondary-width-border-left)
    var(--button-secondary-border-style) var(--button-secondary-color-border);
}

.button--secondary:hover {
  background-color: var(--button-secondary-bg-hover);
  border-color: var(--button-secondary-color-border);
  box-shadow: none;
}

@media (max-width: 767px) {
  .button {
    width: 100%;
    max-width: 350px;
  }
}

/* Header */

.header {
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10;
  background-color: var(--bg);
}

.header.logged-in {
  margin-top: 32px;
}

.header .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
}

/* Logo */

.logo__img--dark {
  display: none;
}

[data-theme="dark"] .logo__img--dark {
  display: inline-block;
}

[data-theme="dark"] .logo__img--light {
  display: none;
}

/* Header menu */

.header-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  line-height: 17px;
}

.header-menu__link {
  color: var(--menu-link-color);
  padding: 0 4px;
}

.header-menu__link:hover {
  color: var(--menu-link-color-hover);
}

.current-menu-item .header-menu__link {
  color: var(--menu-link-color-active);
  font-weight: 600;
}

.current-menu-item {
  position: relative;
  padding-right: 16px;
}

.current-menu-item::after {
  content: "";
  display: inline-block;
  width: 3.5px;
  height: 3.5px;
  background-color: var(--menu-link-color-active);
  position: absolute;
  top: calc(50% - 1px);
  right: 12px;
  border-radius: 50%;
}

/* Mobile menu */

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  width: 48px;
  min-width: 48px;
  max-width: 48px;
  height: 40px;
}

.header__burger span {
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__mobile {
  display: none;
  position: absolute;
  top: 72px;
  width: 100%;
  height: auto;
  padding-bottom: 12px;
  justify-content: center;
  align-items: center;
  background-color: var(--bg);
}

.header__mobile.active {
  display: flex;
}

@media (max-width: 991px) {
  .header__button,
  .header__nav--desktop {
    display: none;
  }

  .header__burger {
    display: flex;
  }
}

@media (max-width: 767px) {
  .header__nav--mobile .header-menu {
    flex-direction: column;
  }
  .header__mobile {
    justify-content: flex-start;
  }
  .header-menu {
    align-items: flex-start;
  }
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: flex-end;
  margin-top: 320px;
  background: var(--bg);
}

.hero__content::after {
  display: block;
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--bg));
}

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

.marta-operations-control-page .hero__media {
  filter: brightness(0.75);
}

.marta-operations-control-page .hero__content {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.marta-operations-control-page .hero__content .container {
  gap: 62px;
}

.marta-operations-control-page .hero__media {
  width: 100%;
  height: calc(100vh - 72px);
}

.marta-operations-control-page .hero__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* clients */

.clients {
  padding: 48px 0;
}

.clients__title {
  color: var(--color-primary);
  font-size: 30px;
  text-align: center;
  padding: 0 24px 48px;
}

.logo-item__image--dark {
  display: none;
}

[data-theme="dark"] .logo-item__image--light {
  display: none;
}

[data-theme="dark"] .logo-item__image--dark {
  display: block;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 140px;
  animation: scroll 20s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo-item img {
  height: 40px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Info cards */

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

.cards-section__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.info-card {
  display: flex;
  flex-direction: row;
  gap: 71px;
  align-items: center;
  padding-bottom: 56px;
}

.info-card__content {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.info-card__title {
  text-align: left;
}

.info-card__media {
  width: 560px;
  height: auto;
  flex-shrink: 0;
}

.info-card__text p {
  margin-bottom: 14px;
}

.front-page .info-card {
  border-bottom: 1px solid var(--color-divider);
}

.front-page .info-card:nth-child(even) .info-card__content {
  order: 1;
}

.front-page .info-card:nth-child(3n) {
  border: none;
  margin-top: 100px;
}

.products-page .info-card:first-child {
  border-top: 1px solid var(--color-divider);
  padding-top: 36px;
}

.products-page .cards-section__list {
  gap: 36px;
}

.marta-operations-control-page .info-card {
  gap: 32px;
}

.marta-operations-control-page .info-card:nth-child(2) .info-card__content {
  order: 1;
}

@media (max-width: 1440px) {
  .info-card__media {
    width: 400px;
  }
}

@media (max-width: 767px) {
  .info-card {
    flex-direction: column;
  }

  .info-card__media {
    width: 100%;
    height: auto;
  }

  .marta-operations-control-page .info-card:nth-child(2) .info-card__content {
    order: 0;
  }
}

/* Reviews */

.reviews {
  padding: 32px 0;
}

.reviews__title {
  margin-bottom: 56px;
}

.reviews-slider .swiper-slide {
  width: auto;
  height: auto;
}

.review-card {
  width: auto;
  height: 100%;
  max-width: 520px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  padding: 24px;
  border-radius: var(--border-radius);
  background-color: var(--card-bg);
}

.review-card__logo img {
  height: 40px;
  object-fit: contain;
}

.logo-dark {
  display: none;
}

[data-theme="dark"] .logo-light {
  display: none;
}

[data-theme="dark"] .logo-dark {
  display: block;
}

@media (max-width: 767px) {
  .reviews {
    margin: 0 32px;
  }

  .review-card {
    max-width: none;
  }
}

/* News section */
.news-section {
  padding: 32px 0 72px;
}

.news-section__title {
  text-align: center;
  margin-bottom: 56px;
}

.news-section__slider {
  overflow: visible;
}

.news-section__slider .swiper-slide {
  width: 336px;
  height: auto;
  display: flex;
}

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

.news-card {
  padding: 32px;
  height: 100%;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
}

.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  gap: 15px;
  text-decoration: none;
  color: var(--text-color-primary);
}

.news-card__image {
  height: 213px;
}

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

.news-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: left;
}

.news-card__title {
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__more {
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 767px) {
  .news-section__slider .swiper-slide:nth-child(n + 5) {
    display: none;
  }

  .news-section__slider {
    margin-left: 24px;
    margin-right: 24px;
  }
  .news-section__slider {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .news-section__slider .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    transform: none !important;
  }

  .news-section__slider .swiper-slide {
    width: 100% !important;
    max-width: 400px;
    margin: 0 auto;
  }

  .news-section__grid {
    grid-template-columns: 1fr;
  }
}

/* Cta section */

.cta-section {
  width: 100%;
  padding: 190px 42px 70px;
  margin-bottom: 50px;
  background-image: url("/wp-content/uploads/2026/06/cta_bg_for_light.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

html[data-theme="dark"] .cta-section {
  background-image: url("/wp-content/uploads/2026/06/cta_bg_for_dark.svg");
}

.cta-section__title {
  font-size: 45px;
  line-height: 55px;
  font-weight: 400;
}

.cta-section__buttons {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
}

.cta-section__buttons .button--secondary {
  color: #fff;
}

@media (max-width: 767px) {
  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-section {
    padding: 0 0 30%;
    background-image: url("/wp-content/uploads/2026/06/cta_bg_for_light_mobile.svg");
    background-size: contain;
  }

  html[data-theme="dark"] .cta-section {
    background-image: url("/wp-content/uploads/2026/06/cta_bg_for_dark_mobile.svg");
  }

  .cta-section__buttons .button--secondary {
    color: var(--button-secondary-color);
  }
}

/* History */
.history {
  padding: 44px 0 32px;
}

.history__title {
  margin-bottom: 48px;
}

.history__timeline {
  display: flex;
  flex-direction: row;
  gap: 72px;
}

.history__line {
  display: flex;
  flex: 1 0 48px;
  position: relative;
}

.history__line::after {
  content: "";
  width: 48px;
  height: 48px;
  background-image: url("/wp-content/uploads/2026/06/icon_logo_for_light.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

html[data-theme="dark"] .history__line::after {
  background-image: url("/wp-content/uploads/2026/07/icon_logo_for_dark.svg");
}

.history__line::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
}

.history__item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.history__year-block {
  flex: 0 0 40%;
  max-width: 350px;
}

.history__year {
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .history__year-block {
    max-width: 230px;
  }
}

@media (max-width: 767px) {
  .history__timeline {
    gap: 18px;
  }
  .history__item {
    flex-direction: column;
  }
}

/* Expertise */

.expertise__list {
  display: flex;
  flex-direction: row;
  gap: 24px;
  text-align: left;
}

.expertise__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 12px;
  flex: 1;
}

.expertise__icon {
  display: block;
  width: 56px;
  height: 56px;
  background-image: url("/wp-content/uploads/2026/07/icon-target.png");
  background-size: cover;
  flex: 0 0 56px;
}

.expertise__icon--like {
  background-image: url("/wp-content/uploads/2026/07/icon-like.png");
}

.expertise__icon--arrow {
  background-image: url("/wp-content/uploads/2026/07/icon-growth-arrow.png");
}

.expertise__icon--cup {
  background-image: url("/wp-content/uploads/2026/07/icon-cup.png");
}

@media (max-width: 767px) {
  .expertise__list {
    flex-direction: column;
  }

  .expertise__item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}

/* Values */

.values {
  padding: 58px 0;
  background-color: #22abe21a;
}

.values__wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}

.values__nav {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.values__title {
  text-align: left;
}

.values__link {
  padding-left: 44px;
  display: block;
  background: none;
  border: none;
  color: #00040366;
  cursor: pointer;
  position: relative;
}

html[data-theme="dark"] .values__link {
  color: #ffffff66;
}

.values__link.is-active,
html[data-theme="dark"] .values__link.is-active {
  color: var(--text-color-primary);
}

.values__link::before {
  content: "";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  width: 32px;
  height: 32px;
  background-image: url("/wp-content/uploads/2026/07/icon-menu-arrow.svg");
  filter: invert(1);
}

html[data-theme="dark"] .values__link::before {
  filter: invert(0);
}

.values__link.is-active::before {
  opacity: 1;
}

.values__content {
  display: flex;
  flex-direction: column;
  gap: 150px;
  text-align: left;
}

.values__title--mobile {
  display: none;
}

@media (max-width: 767px) {
  .values__wrapper {
    grid-template-columns: 100%;
  }

  .values__nav {
    display: none;
  }

  .values__content {
    gap: 30px;
  }

  .values__title--mobile {
    display: inline-block;
    margin-bottom: 30px;
  }
}

/* About summary  */
.about-summary {
  width: 100%;
  padding: 70px 0 140px;
  margin-bottom: 70px;
  background-image: url("/wp-content/uploads/2026/07/value_bg_for_light.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

html[data-theme="dark"] .about-summary {
  background-image: url("/wp-content/uploads/2026/07/value_bg_for_dark.svg");
}

.about-summary p {
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

@media (max-width: 767px) {
  .about-summary {
    background-image: url("/wp-content/uploads/2026/07/value_bg_for_light_mobile.svg");
  }

  html[data-theme="dark"] .about-summary {
    background-image: url("/wp-content/uploads/2026/07/value_bg_for_dark_mobile.svg");
  }

  .about-summary p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
  }
}

/* Resource */

.resources {
  padding: 56px 0;
}

.resource {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #22abe21a;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  padding: 16px;
  text-align: left;
}

.resource:hover {
  border: 2px solid var(--color-primary);
}

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

.resource--large {
  grid-column: 1 / -1;
}

.resource__logo {
  height: 48px;
  width: auto;
}

.resource__logo .logo-light,
.resource__logo .logo-dark {
  height: 100%;
}

.resource .doc-link {
  text-decoration: underline;
}

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

.resource__doc {
  font-size: 14px;
  line-height: 1;
}

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

/* Products benefit */
.products-benefits {
  padding: 40px 0 120px;
}

.products-benefits .products-benefits__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.products-benefits__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 494px;
  background-color: var(--card-bg);
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: left;
}

.products-benefits__item:nth-child(odd) {
}

.products-benefits__item:nth-child(even) {
  align-self: flex-end;
}

.products-benefits__item:last-child {
  margin-top: 71px;
  max-width: none;
  width: 100%;
}

.products-benefits__icon {
  width: 120px;
  height: 120px;
  background-size: contain;
}

.products-benefits__icon--credit-card {
  background-image: url("/wp-content/uploads/2026/07/icon-credit-card.png");
}

.products-benefits__icon--rocket {
  background-image: url("/wp-content/uploads/2026/07/icon-rocket.png");
}

.products-benefits__icon--lamp {
  background-image: url("/wp-content/uploads/2026/07/icon-lamp.png");
}

.products-benefits__icon--medal {
  background-image: url("/wp-content/uploads/2026/07/icon-medal.png");
}

.products-benefits__icon--bank {
  background-image: url("/wp-content/uploads/2026/07/icon-bank.png");
}

.products-benefits__title {
  text-align: left;
}

@media (max-width: 1024px) {
  .products-benefits .products-benefits__list {
    gap: 32px;
  }

  .products-benefits__item:last-child {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .products-benefits__item {
    padding: 16px;
  }
}

/* Products features */

.products-features {
  padding: 58px 0;
}

.products-features__header {
  margin-bottom: 36px;
}

.products-features__slider {
  overflow: hidden;
  max-width: 700px;
}

.products-features__slider .swiper-slide {
  background-color: var(--bg);
}

.products-feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  background-color: var(--card-bg);
  padding: 32px;
  text-align: left;
}

.products-feature-card__title {
  text-align: left;
}

@media (max-width: 1024px) {
  .products-features__slider {
    max-width: none;
    width: 100%;
  }
}

/* Highlights */
.highlights {
  width: 100%;
  height: 490px;
}

.highlights .highlights__list {
  padding: 0;
  display: flex;
  /* gap: 21px; */
}

.highlights__item.swiper-slide {
  height: fit-content;
}

.highlights__card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--color-secondary);
  padding: 18px;
  border-radius: var(--border-radius);

  transform: scale(0.67);
  transition: transform 0.3s ease;
}

.swiper-slide-active .highlights__card {
  transform: scale(1);
}

/* Product monitoring */
.product-monitoring {
  padding: 142px 0;
}

.product-monitoring .highlights__card::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-image: url("/wp-content/uploads/2026/07/icon-check.svg");
  background-size: cover;
  flex-shrink: 0;
}

/* Marta Deployment */
.marta-deployment {
  padding: 56px 0;
}

.marta-deployment__content {
  text-align: left;
}

/* Marta Steps */
.marta-steps {
  padding: 56px 0;
}

.marta-steps .container {
  gap: 56px;
}

.marta-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  place-items: center;
}

.marta-steps__card {
  background-color: var(--color-secondary);
  padding: 16px;
  border-radius: var(--border-radius);
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  max-width: 400px;
  width: 100%;
}

.marta-steps__card:last-child {
  background-color: var(--color-primary);
  justify-content: center;
}

.marta-steps__icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url("/wp-content/uploads/2026/07/icon-dialog.png");
  background-size: cover;
  margin-bottom: 20px;
}

.marta-steps__card:nth-child(2) .marta-steps__icon {
  background-image: url("/wp-content/uploads/2026/07/icon-folder.png");
}

.marta-steps__card:nth-child(3) .marta-steps__icon {
  background-image: url("/wp-content/uploads/2026/07/icon-briefcase.png");
}

.marta-steps__card:nth-child(4) .marta-steps__icon {
  background-image: url("/wp-content/uploads/2026/07/icon-terminal.png");
}

.marta-steps__card:nth-child(5) .marta-steps__icon {
  background-image: url("/wp-content/uploads/2026/07/icon-wi-fi.png");
}

.marta-steps__title {
  margin: 0;
  text-align: left;
}

.marta-steps__desc {
  text-align: left;
}

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

@media (max-width: 767px) {
  .marta-steps__grid {
    grid-template-columns: 1fr;
  }
}

/* Marta insider lists */
.insider-answers {
  padding: 61px 0;
}

.insider-answers__title {
  margin-bottom: 56px;
}

.insider-answers__carousel {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.insider-answers_carousel.dragging .carousel-track {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: grab;
  padding: 80px 0;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.answer {
  width: 387px;
  flex-shrink: 0;
  padding: 24px;
  border-radius: var(--border-radius);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  user-select: none;
  -webkit-user-select: none;
}

.answer.is-center {
  transform: scale(1.5);
  margin-inline: 96px;
  z-index: 2;
}

.answer__title {
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
}

.answer__text {
  margin: 0;
}

@media (max-width: 1024px) {
  .carousel-track {
    padding: 40px 0;
  }

  .answer {
    width: 340px;
    transform: scale(0.85);
  }

  .answer.is-center {
    transform: scale(1);
    margin-inline: 40px;
  }
}

@media (max-width: 767px) {
  .answer {
    width: calc(100vw - 40px);
    transform: scale(1);
  }

  .answer.is-center {
    margin: 0;
  }
}

/* Footer */

.footer {
  padding: 32px 0;
}

.footer,
.footer p {
  font-size: 14px;
  line-height: 1;
}

.footer .container {
  flex-direction: column;
  gap: 56px;
  text-align: left;
}

.footer__logo {
  max-width: 153px;
}

.footer-content {
  display: flex;
  flex-direction: row;
  gap: 12px;
  color: var(--text-color-primary);
}

.footer-content__column {
  max-width: 272px;
  min-width: 136px;
}

.footer__support {
  flex: 1;
}

.footer-content__title {
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-content__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  padding: 0;
}

.footer-content__link {
  color: var(--text-color-primary);
}

.footer-content__icons {
  display: flex;
  gap: 16px;
}

[data-theme="dark"] .footer-content__icons svg {
  filter: invert();
}

.footer__bottom-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.footer__bottom-link,
.footer__bottom-item {
  color: #00040399;
}

[data-theme="dark"] .footer__bottom-link,
[data-theme="dark"] .footer__bottom-item {
  color: #c3c5c740;
}

@media (max-width: 1200px) {
  .footer-content__column {
    max-width: 172px;
    min-width: 59px;
  }

  .footer__bottom-list {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
  }
}
