:root {
  --color-bg: #F4FAF6;
  --color-surface: #f3f4f3;
  --color-white: #ffffff;
  --color-title: #222750;
  --color-text: #3b3b3b;
  --color-muted: #566766;
  --color-accent: #42dcc7;
  --color-accent-dark: #1bcab7;
  --color-border: #d9ddda;
  --color-tab: #dbdbdb;
  --color-dark-gradient-start: #1d1d1d;
  --color-dark-gradient-end: #013a35;
  --container-max: 1290px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 40px rgba(35, 50, 70, 0.08);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

* {
  min-width: 0;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #213635;
}

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

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.container.policy h3 {
  margin: 0;
font-family: "Adderley", Impact, sans-serif;
font-weight: 700;
letter-spacing: -0.01em;
text-transform: uppercase;
color: var(--color-title);
font-size: 1.5rem;
}

.container.text__on__page h1 {
  padding-top:60px;
  padding-bottom:30px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page {
  position: relative;
}

.container {
  width: 100%;
  max-width: calc(var(--container-max) + 40px);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title,
.hero__title,
.solution-card__title,
.audit__title {
  margin: 0;
  font-family: "Adderley", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-title);
}

.audit__title {
font-size: 40px;
line-height: 40px;
display: flex;
align-items: center;
color: #191B3D;
text-transform: none;
}




.section-title {
  font-size: 34px;
  line-height: 0.98;
  text-align: center;
}

.section-text,
.about__subtitle {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  text-align: center;
}

.button--accent {
  background: var(--color-accent);
  color: #24645c;
  transition: all 1.3s ease;
}

.button--accent:hover {
  background: var(--color-accent-dark);
  transition: all 1.3s ease;
}

.button--dark {
  background: linear-gradient(90deg, var(--color-dark-gradient-start), var(--color-dark-gradient-end));
  color: var(--color-white);
}

.button--hero,
.button--small,
.header__cta {
  min-height: 58px;
}

.header {
  position: relative;
  z-index: 20;
  padding: 22px 0 12px;
}



.header__container {
  display: flex;
  align-items: center;
}

.header__menu {
  margin-left: auto;
  margin-right: 32px; /* потом подгоним точнее под макет */
}

.menu__list {
  display: flex;
  align-items: center;
  gap: 32px;
}


.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.logo__text {
  font-size: 33px;
  line-height: 1;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.06em;
}

.logo__text-light {
  font-weight: 400;
}

.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: -20px;
}

.logo__mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.menu,
.header__cta {
  display: none;
}

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin-left: auto;
}

.burger__line {
  display: block;
  width: 30px;
  height: 3px;
  margin-left: auto;
  background: #1f1f1f;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.is-active .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.is-active .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: linear-gradient(86.53deg, #26CDA4 -7.06%, #60F6DF 114.92%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__dialog {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: linear-gradient(86.53deg, #26CDA4 -7.06%, #60F6DF 114.92%);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.mobile-menu__close {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.mobile-menu__close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 6.5px;
  background: #1a1a1a;
  transform-origin: center;
}

.mobile-menu__close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu__dropdown-link, .mobile-menu__link {
  line-height: 30px;
  font-size: 20px;
  font-weight: 400;
}

.mobile-menu__dropdown-item {padding:10px 0px;}
.mobile-menu__item.mobile-menu__item--solutions {margin-top:40px;}

.mobile-menu__nav {
  padding: 20px 0 40px;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-left: 0px;
}

.mobile-menu__link,

.mobile-menu__dropdown {
  padding-top: 12px;
  padding-left: 16px;
}

a.mobile-menu__dropdown-link, a.mobile-menu__link {transition:all 0.3s all ease-in-out;}
a.mobile-menu__dropdown-link:hover, a.mobile-menu__link:hover {
  color:#fff;
}

body.menu-open {
  overflow: hidden;
}
.mobile-menu__dropdown--static {
  display: block;
  padding-top: 12px;
  padding-left: 0;
  margin-top:-20px;
}

.mobile-menu__subtitle {
  margin-bottom: 12px;
}

.solutions {
  background: linear-gradient(
    to bottom,
    rgb(251, 251, 251) 0%,
    rgb(251, 251, 251) 5%,
    #F4FAF6 20%,
    #F4FAF6 100%
  );
}

.solutions__viewport {
  overflow: hidden;
  min-width: 0;
  touch-action: pan-y;
  cursor: grab;
}

.solutions__viewport:active {
  cursor: grabbing;
}

.solutions__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.solution-card {
  flex: 0 0 100%;
  width: 100%;
  user-select: none;
}

.solution-card img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}



.hero {
  padding: 42px 0 44px;
}
.header-mainpage, .hero-mainpage {background-color: #FBFBFB;}

.hero__container {
  display: grid;
  gap: 20px;
}

.hero__content {
  order: 1;
  z-index:3;
}

.hero__title {
  max-width: 620px;
  font-size: clamp(46px, 10.5vw, 88px);
  line-height: 0.94;
  font-family: 'Adderley';
  font-style: normal;
  font-weight: 700;
  font-size: 53px;
  line-height: 53px;
  display: flex;
  align-items: center;
  color: #191B3D;
}

.hero__text {
  max-width: 385px;
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.42;
  color: #373737;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin-top: 24px;
}

.hero__link {
  font-size: 14px;
  line-height: 1.25;
  color: #35bda7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero__visual {
  order: 2;
  width: 100%;
  z-index:1;
  margin-left:-90px;
  margin-top:-30px;
}

.hero__visual img {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.solutions {
  padding: 48px 0 54px;
}

.section-header {
  margin: 0 auto;
}

.solutions__header {
  max-width: 1060px;
}

.section-text {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.48;
  text-align: center;
  color: #556463;
}

.solutions__slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.solutions__viewport {
  overflow: hidden;
  min-width: 0;
}

.solutions__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.solution-card {
  flex: 0 0 100%;
  width: 100%;
}

.solutions__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.solutions__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  appearance: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.solutions__dot--active {
  background: #209175;
  transform: scale(1.1);
}

@media (max-width: 849px) {
  .solutions__slider {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-card__arrow {
    display: none;
  }
}

.solutions__tabs {
  display: none;
}

.solution-card {
  position: relative;
  margin-top: 34px;
  padding: 34px 22px 44px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(31, 216, 198, 0.95) 0%, rgba(26, 203, 190, 0.97) 100%);
  overflow: hidden;
}

.solution-card::before,
.audit__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 12%, rgba(255,255,255,0.1) 12.5%, transparent 13%),
    linear-gradient(35deg, transparent 0 28%, rgba(255,255,255,0.06) 28.3%, transparent 29%),
    linear-gradient(transparent 0 60%, rgba(255,255,255,0.06) 60.4%, transparent 60.8%);
  opacity: 0.9;
  pointer-events: none;
}

.solution-card__arrow {
  display: none;
}

.solution-card__media {
  display: none;
}

.solution-card__content {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 0 auto;
  text-align: center;
}

.solution-card__title {
  font-size: clamp(48px, 10vw, 84px);
  line-height: 0.93;
}

.solution-card__text {
  margin: 26px auto 0;
  font-size: 17px;
  line-height: 1.46;
  color: #122326;
}

.button--small {
  min-width: 224px;
  margin-top: 34px;
  color: #414a48;
}

.solutions__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top:20px;
}

.solutions__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  appearance: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: all 0.3s ease-in-out;
}
.solutions__dot:hover {
  transition: all 0.3s ease-in-out;
  background: var(--color-accent);
}

.solutions__dot--active {
  background: var(--color-accent);
  transform: scale(1.1);
  width:62px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.about {
  padding: 52px 0 62px;
}

.about__header {
  max-width: 980px;
}

.about__subtitle {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  color: #556463;
  font-weight: 600;
}

.about__grid {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}

.about__visual {
  display: none;
}



.about__text + .about__text {
  margin-top: 30px;
}

.about__content .button {
  min-width: 234px;
  margin-top: 34px;
}


.audit__box {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.04);
}

.audit__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.audit__info,
.audit-form {
  position: relative;
  z-index: 1;
}

.audit {
  padding: 20px 0 60px;
}

.audit__box {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 44px 22px 34px;
  border-radius: 14px;
  background: #00DEC4;
  overflow: hidden;
}

.audit__title {
  font-size: clamp(36px, 9vw, 44px);
  line-height: 0.95;
  text-align: center;
  margin-top:10px;
}

.audit__text {
  max-width: 520px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #071517;
  font-weight: 600;
}

.audit-form {
  max-width: 540px;
  margin: 0 auto;
}

.audit-form__field + .audit-form__field {
  margin-top: 14px;
}

.audit-form__input {
  width: 100%;
  height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  color: #353535;
  font-size: 16px;
  margin-bottom:10px;
}

.audit-form__input::placeholder {
  color: #464646;
  opacity: 1;
}

.audit-form__agreement {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 18px;
}

.audit-form__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.audit-form__custom-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(14, 34, 36, 0.15);
}

.audit-form__checkbox:checked + .audit-form__custom-checkbox::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #0f504a;
  border-bottom: 2px solid #0f504a;
  transform: rotate(45deg);
}

.audit-form__agreement-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.03em;
  color: #424242;
}

.audit-form__agreement-text a {
  transition: all 0.3s ease;
 color:#013a35;
}

.audit-form__agreement-text a:hover {
  color: #1c9176;
  transition: all 0.3s ease;
}


.audit-form__agreement-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.audit-form__submit {
  width: 100%;
  min-height: 62px;
  margin-top: 20px;
  font-size: 18px;
  transition: all 0.53s ease;
  color:#fff;
  background-color: #062C23;
  border-radius: 30px;
}
.audit-form__submit:hover {
  color:#000;
  background: #f8fffd;
  background-color: #f8fffd;
  transition: all 0.53s ease;
}

.footer {
  padding: 42px 0 48px;
  background: #fff;
}

.footer__container {
  display: grid;
  gap: 34px;
}

.footer__top,
.footer__bottom {
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.footer__address {
  font-size: 16px;
  line-height: 1.4;
  color: #1E2023;
  max-width:300px;
}


.footer__copy,
.footer__link,
.footer__made-by {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #5D5D5D;
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: #2a9d87;
  transition: all 0.3s ease;
}

.footer__contacts {
  display: grid;
  gap: 4px;
}

.footer__phone,
.footer__mail {
  font-size: 23.5px;
  line-height: 1.2;
  font-weight: 700;
  color: #1E2023;
  text-align: right;
  letter-spacing: -0.03em;
}

.footer__made-by a {
  color: #2a9d87;
  font-weight: 700;
}
.hero__actions__mobile {display:none;}
.mobile-menu__logo {display:none;}
.mobile-menu__nav {
  text-align: center;
}
.mobile-menu__close {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 15px;
}
.mobile-menu__nav li {list-style-type: none;}
.mobile-menu__item.mobile-menu__item--solutions .mobile-menu__subtitle {
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

  .container.policy {
    padding-bottom: 60px;
  }















.tm-faq {
  padding: 60px 0;
}

.tm-faq__container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.tm-faq .section-title {
  text-align: center;
}

.tm-faq__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tm-faq__item {
  border: 2px solid #35d9cd;
  border-radius: 14px;
  background: #00DEC4;
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.tm-faq__item.is-open {
  background: #fbfbfb;
}

.tm-faq__question {
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.tm-faq__icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.tm-faq__icon::before,
.tm-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

.tm-faq__icon::before {
  width: 24px;
  height: 4px;
  background: #ffffff;
}

.tm-faq__icon::after {
  width: 4px;
  height: 24px;
  background: #ffffff;
}

.tm-faq__item.is-open .tm-faq__icon::before,
.tm-faq__item.is-open .tm-faq__icon::after {
  background: #2d1b4e;
}

.tm-faq__item.is-open .tm-faq__icon::after {
  opacity: 0;
}

.tm-faq__question-text {
  display: block;
  font-weight: 600;
  font-size: clamp(20px, 1.5vw, 20px);
  line-height: 1.3;
  color: #2d1b4e;
}

.tm-faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.tm-faq__answer-inner {
  padding: 0 28px 30px 104px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(45, 27, 78, 0.78);
}

@media (hover: hover) {
  .tm-faq__question:hover .tm-faq__question-text {
    opacity: 0.85;
  }
}

@media (max-width: 991px) {
  .tm-faq {
    padding: 96px 0;
  }

  .tm-faq__question {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    min-height: 76px;
    padding: 20px 22px;
  }

  .tm-faq__answer-inner {
    padding: 0 22px 24px 82px;
    font-size: 17px;
  }

  .tm-faq__icon {
    width: 28px;
    height: 28px;
  }

  .tm-faq__icon::before {
    width: 20px;
  }

  .tm-faq__icon::after {
    height: 20px;
  }
}

@media (max-width: 767px) {
  .tm-faq {
    padding: 72px 0;
  }

  .tm-faq__container {
    width: min(100% - 32px, 1240px);
  }

  .tm-faq__list {
    margin-top: 30px;
    gap: 10px;
  }

  .tm-faq__item {
    border-radius: 12px;
  }

  .tm-faq__question {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    min-height: 68px;
    padding: 18px 16px;
  }

  .tm-faq__icon {
    width: 24px;
    height: 24px;
  }

  .tm-faq__icon::before {
    width: 18px;
    height: 3px;
  }

  .tm-faq__icon::after {
    width: 3px;
    height: 18px;
  }

  .tm-faq__question-text {
    font-size: 18px;
    line-height: 1.35;
  }

  .tm-faq__answer-inner {
    padding: 0 16px 20px 64px;
    font-size: 16px;
    line-height: 1.45;
  }
}








@media (max-width: 550px) {
.hero__title {font-size:45px; line-height: 48px;}
.hero__content {margin-top:30px;}
.hero__visual {
  margin-left:10vw;
  margin-top:-200px;
}
.hero__text {
  padding-right:25vw;
  font-size:16.5px;
  line-height: 19px;
}
.hero__actions {display:none;}
.hero__actions__mobile {
  display: block;
  position: absolute;
  z-index: 3;
  width:100%;
  top: 82vh;
  text-align: center;
}
.hero__actions__mobile .button--hero {margin-left:-10%;}
.about__content {margin-top:-20px;}
.solution-card__title {padding:30px 0px;}
.mainpage-button-container {
  margin-top:-20px;
  align-items: center;
}
.solutions {margin-top:90px;}
.audit__title {font-size: 30px;}
.audit__text {font-size:16px;}
  .footer__made-by {
    margin: 30px 0px 30px 0px;
  }
  .solution-card__text {padding-bottom:30px;}
  .button.button--accent.button--small {
    box-sizing: border-box;
    background: linear-gradient(90deg, #DBF9F1 0%, #EAFAFB 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
  }
  .button.button--accent.button--small:hover {
    box-sizing: border-box;
    background: #000;
    border: 2px solid rgba(10, 98, 89, 0.8);
    border-radius: 30px;
    color:#fff;
    transition: all 0.3s ease-in-out;
  }
}

@media (min-width: 551px) and (max-width: 850px) {
  .hero__visual {
    margin-left: 51px;
    margin-top: -168px;
  }
  .solution-card__title {padding:30px 0px;}
  .solution-card__text {padding-bottom:30px;}
  .button.button--accent.button--small {
    box-sizing: border-box;
    background: linear-gradient(90deg, #DBF9F1 0%, #EAFAFB 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
  }
  .button.button--accent.button--small:hover {
    box-sizing: border-box;
    background: #000;
    border: 2px solid rgba(10, 98, 89, 0.8);
    border-radius: 30px;
    color:#fff;
    transition: all 0.3s ease-in-out;
  }

}

@media (min-width: 550px) {
  .container {
    padding: 0 26px;
  }
  .hero__container {
    margin-top:60px;
  }
  .hero {
    padding-top: 52px;
  }

  .hero__text {
    max-width: 470px;
  }

  .solution-card {
    padding-left: 28px;
    padding-right: 28px;
  }

  .audit__box {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hero__actions__mobile {display:none;}
}

@media (min-width: 850px) {
  .logo__text {
    font-size: 22px;
  }
  .container {
    padding: 0 34px;
  }
  .hero__container {
    margin-top:-40px;
  }
  .hero__actions__mobile {display:block;}

  .header {
    padding-top: 30px;
  }

  .menu,
  .header__cta {
    display: block;
  }

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

  .menu__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #161616;
  }

.nav__item--has-dropdown {
  position: relative;
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__item--has-dropdown {
  position: relative;
}

.nav__item--has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  padding: 20px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 50;
  transition:
  opacity 0.3s ease,
  visibility 0.3s ease,
  transform 0.3s ease;
  border-radius:10px;
  box-shadow: 62px 55px 33px rgba(0, 0, 0, 0.01), 35px 31px 28px rgba(0, 0, 0, 0.05), 15px 14px 21px rgba(0, 0, 0, 0.09), 4px 3px 11px rgba(0, 0, 0, 0.04);
}

.nav__dropdown-item + .nav__dropdown-item {
  margin-top: 12px;
}


.nav__dropdown li {
  list-style-type: none;
  padding: 6px 20px;
}
.nav__dropdown-link {
  display: block;
}


.nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav__link-icon img {
  display: block;
  width: 14px;
  height: 14px;
}

.nav__item--has-dropdown:hover .nav__link-icon,
.nav__item--has-dropdown:focus-within .nav__link-icon {
  transform: rotate(180deg);
}


.nav__link,
.nav__dropdown-link,
.mobile-menu__link,
.mobile-menu__dropdown-link,
.menu__link {
  transition: color 0.3s ease;
}

.nav__link:hover,
.nav__dropdown-link:hover,
.mobile-menu__link:hover,
.mobile-menu__dropdown-link:hover,
.menu__link:hover {
  color: #209175;
}

  .header__cta {
    min-width: 223px;
    font-size: 16px;
    background: linear-gradient(86.53deg, #26CDA4 -7.06%, #60F6DF 114.92%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 17px 30px;
    transition: all 0.3s ease;
  } 


  .burger,
  .mobile-menu {
    display: none;
  }

  .hero {
    padding: 34px 0 88px;
  }

  .hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 620px);
    align-items: center;
    gap: 36px;
    position: relative;
  }

  .hero__container::before,
  .hero__container::after {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -10px;
    width: 1px;
    background: rgba(61, 73, 94, 0.008);
    pointer-events: none;
  }

  .hero__container::before {
    left: 16%;
  }

  .hero__container::after {
    left: 44%;
  }

  .hero__content {
    order: 0;
    padding: 0px 0 0 8px;
    width: 40vw;
    margin-top: -150px;  
  }

  .hero__visual {
    order: 0;
  }

  .hero__visual img {
    max-width: 620px;
    margin-right: 0;
  }

  .hero__title {
    max-width: 900px;
    width: 70vw;
    font-size: 63px;
    line-height: 62px;
  }

  .hero__text {
    margin-top: 20px;
    max-width: 800px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.03em; 
    color: #1E2023;
    width: 47vw;
  }
  .hero__visual {
    margin-left: 51px;
    margin-top: 58px;
  }

  .hero__actions {
    display:none;
  }

  .button--hero {
    min-width: 244px;
  }

  .solutions {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-title {
    font-size: 54px;
  }

  .section-text {
    font-size: 17px;
  }

  .solutions__tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 26px;
  }

  .solutions__tab {
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 4px;
    background: var(--color-tab);
    color: #606060;
    font-size: 17px;
    line-height: 1.2;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .solutions__tab.is-active {
    background: var(--color-accent);
    color: #ffffff;
  }

  .solution-card {
    display: grid;
    grid-template-columns: 320px minmax(320px, 430px) minmax(320px, 1fr) 60px;
    align-items: center;
    gap: 36px;
    margin-top: 24px;
    padding: 18px 0 8px;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .solution-card::before {
    display: none;
  }

  .solution-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #18d4c3;
    box-shadow: 0 10px 20px rgba(24, 212, 195, 0.24);
    scale:1;
    transition: all 0.3s ease-in-out;
    cursor:pointer;
  }

  .solution-card__arrow span {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }

  .solution-card__arrow--prev span {
    transform: rotate(-135deg);
    margin-left: 4px;
  }

  .solution-card__arrow--next span {
    transform: rotate(45deg);
    margin-right: 4px;
  }
  .solution-card__arrow:hover {
    scale:1.1;
    transition: all 0.3s ease-in-out;
  }

  .solution-card__media {
    display: block;
  }

  .solution-card__media img {
    width: 100%;
    max-width: 470px;
  }

  .solution-card__content {
    margin: 0;
    text-align: left;
  }

  .solution-card__title {
    font-size: 42px;
    line-height: 1.2em;
  }

  .solution-card__text {
    margin: 18px 0 0;
    max-width: 480px;
    font-size: 18px;
    color: #363636;
  }
  .tailormade .solutions__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 26px;
  }

  

  .button--small {
    min-width: 190px;
    min-height: 48px;
    margin-top: 26px;
    background: var(--color-accent);
    color: #24645c;
  }

  .about {
    padding: 68px 0 70px;
  }

  .about__subtitle {
    font-size: 16px;
  }

  .about__grid {
    align-items: center;
    gap: 54px;
    margin-top: 34px;
  }

  .about__visual {
    display:none;
  }

  .about__visual img {
    width: 100%;
  }

  .about__text {
    font-size: 17px;
  }

  .audit {
    padding-top: 8px;
    padding-bottom: 92px;
  }

  .audit__box {
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 560px);
    gap: 56px;
    padding: 54px 60px 48px;
    border-radius: 10px;
  }

  .audit__title,
  .audit__text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .audit__title {
    font-size: 34px;
  }

  .audit__text {
    max-width: 480px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #000000;
  }

  .audit-form {
    width: 100%;
    margin: 0;
    max-width: calc(100% - 80px);
  }

  .audit-form__submit {
    min-height: 54px;
    font-size: 16px;
  }

  .footer {
    padding: 44px 0 52px;
  }

  .footer__container {
    gap: 44px;
  }

  .footer__top {
    grid-template-columns: 1fr auto;
    align-items: end;
    justify-items: stretch;
    gap: 40px;
    text-align: left;
  }

  .footer__bottom {
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    justify-items: start;
    align-items: center;
    gap: 26px;
    text-align: left;
  }
  .footer__contacts {
    justify-items: end;
  }

  .footer__phone,
  .footer__mail {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 53px;
  }
    .hero__actions {
    display:block;
  }
  .hero__content {
    order: 0;
    padding: 0px 0 0 48px;
    width: 50vw;
    margin-top: -229px;
  }
  .hero__actions .hero__link {padding-left:10px;}
  .hero__container {
    gap: 4px;
  }

  .solution-card__title {
    font-size: 66px;
  }
  .solution-card__content {
    width: 45vw;
  }
  .about__grid {grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);}
  .about__visual {display:block;}
  .audit__title {
    font-size: 40px;
    text-transform: none;
    padding-top: 10px;
    line-height: 1.1em;
  }
  .audit-form {
    width: 100%;
    margin: 0;
    max-width: 100%;
  }
  .footer__bottom {
    grid-template-columns: repeat(4, auto);
  }

  .solution-card__title {
    font-size: 40px;
  }
  .hero__actions__mobile {display:none;}
}

@media (min-width: 1200px) {
  .logo__text {
    font-size: 34px;
  }
  .container {
    padding: 0 40px;
    padding-bottom: 70px;
  }
  .container.header__container.textpage-header {
    padding-bottom:0px;
  }
  .container.text__on__page {
    padding: 90px 0px 60px 0px;
  }
  .container.text__on__page h1 {
    padding-top:20px;
    padding-bottom:0px;
  }
  .hero__container {
    margin:0 auto;
    margin-bottom: -60px;
  }
  .hero__content {
    padding-left: 46px;
    margin-top: -52px;
    position: relative;
    top: -90px;
    left: 42px;
  }
  .hero__visual {
    margin-left: 10px;
    margin-top: -34px;
  }
  .section-title {
    font-size: 40px;
  }

  .solution-card {
    grid-template-columns: 470px 465px 1fr 70px;
    gap: 78px;
  }

  .solution-card__title {
    font-size: 70px;
  }

  .solution-card__title {
    font-size: 56px;
  }
  .audit__box {
    padding-left: 72px;
    padding-right: 72px;
  }
  .footer {
    padding: 63px 0px 0px;
  }
  .tailormade .solution-card {
    grid-template-columns: 1000px 459px 1fr 171px;
    gap: 78px;
    padding:60px;
  }
}

















.cases {
  padding: 120px 0;
}

.cases__container {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

.cases .section-title {
  text-align: center;
}

.cases__intro {
  max-width: 1120px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(45, 27, 78, 0.78);
}

.cases__slider {
  position: relative;
  margin-top: 56px;
}

.cases__viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.cases.is-dragging .cases__viewport,
.cases__viewport:active {
  cursor: grabbing;
}

.cases__track {
  display: flex;
  align-items: stretch;
  will-change: transform;
  margin: 0 -16px;
}

.cases__slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 0 16px;
  user-select: none;
}

.cases__slide img {
  -webkit-user-drag: none;
  user-select: none;
}

.cases-card {
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 72px 56px 64px;
  border-radius: 20px;
  background: rgba(222, 230, 224, 0.72);
}

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

.cases-card__image-wrap {
  width: 100%;
  max-width: 348px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  filter:
    drop-shadow(50px 51px 28px rgba(50, 169, 139, 0.01))
    drop-shadow(28px 29px 24px rgba(50, 169, 139, 0.05))
    drop-shadow(12px 13px 18px rgba(50, 169, 139, 0.09))
    drop-shadow(3px 3px 10px rgba(50, 169, 139, 0.1));
}

.cases-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.cases-card__meta {
  width: 100%;
  max-width: 320px;
  margin-top: 28px;
  font-size: 15.5px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #1e2023;
}

.cases-card__meta strong {
  font-weight: 700;
}

.cases-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #2d1b4e;
}

.cases-card__title {
  margin: 0 0 28px;
  font-size: 26px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #363838;
}

.cases-card__block + .cases-card__block {
  margin-top: 24px;
}

.cases-card__block h4 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #1e2023;
}

.cases-card__block p,
.cases-card__block li {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #1e2023;
}

.cases-card__block ul {
  margin: 0;
  padding-left: 28px;
}

.cases-card__block li + li {
  margin-top: 4px;
}

/* Стрелки: используем общие классы, но стилизуем только в .cases */
.cases .solution-card__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}

.cases .solution-card__arrow span {
  position: absolute;
  inset: 0;
  left: 13px;
  top: 14px;
}

.cases .solution-card__arrow span::before,
.cases .solution-card__arrow span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  transform-origin: center;
}

.cases .solution-card__arrow--prev {
  left: -18px;
}

.cases .solution-card__arrow--next {
  right: -18px;
}

.cases .solution-card__arrow--prev span::before {
  transform: translate(-55%, -4px) rotate(-45deg);
}

.cases .solution-card__arrow--prev span::after {
  transform: translate(-55%, 4px) rotate(45deg);
}

.cases .solution-card__arrow--next span::before {
  transform: translate(-45%, -4px) rotate(45deg);
}

.cases .solution-card__arrow--next span::after {
  transform: translate(-45%, 4px) rotate(-45deg);
}

/* Точки: используем общие классы, но стилизуем только в .cases */
.cases .solutions__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.cases .solutions__dot {
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background-color 0.25s ease,
    opacity 0.25s ease;
}

@media (hover: hover) {
  .cases .solution-card__arrow:hover {
    background: #12c1b3;
  }

  .cases .solutions__dot:hover {
    opacity: 0.85;
  }
}

@media (max-width: 1199px) {
  .cases-card {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    padding: 56px 44px;
  }

  .cases-card__meta {
    font-size: 18px;
  }

  .cases-card__block p,
  .cases-card__block li {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .cases {
    padding: 96px 0;
  }

  .cases__intro {
    margin-top: 20px;
    font-size: 18px;
  }

  .cases__slider {
    margin-top: 40px;
  }

  .cases-card {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 28px;
  }

  .cases-card__media {
    align-items: flex-start;
  }

  .cases-card__image-wrap {
    max-width: 280px;
  }

  .cases-card__meta {
    max-width: none;
    font-size: 18px;
  }

  .cases .solution-card__arrow {
    width: 46px;
    height: 46px;
  }

  .cases .solution-card__arrow--prev {
    left: -8px;
  }

  .cases .solution-card__arrow--next {
    right: -8px;
  }
}

@media (max-width: 767px) {
  .cases {
    padding: 36px 0;
  }

  .cases__container {
    width: min(100% - 32px, 1360px);
  }

  .cases__intro {
    font-size: 16px;
    line-height: 1.5;
  }

  .cases__slider {
    margin-top: 32px;
  }

  .cases__track {
    margin: 0 -8px;
  }

  .cases__slide {
    padding: 0 8px;
  }

  .cases-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 18px 24px;
    border-radius: 16px;
  }

  .cases-card__media {
    align-items: center;
  }

  .cases-card__image-wrap {
    max-width: 220px;
  }

  .cases-card__meta {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
  }

  .cases-card__title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 28px;
  }

  .cases-card__block + .cases-card__block {
    margin-top: 18px;
  }

  .cases-card__block h4 {
    font-size: 18px;
  }

  .cases-card__block p,
  .cases-card__block li {
    font-size: 15px;
    line-height: 1.45;
  }

  .cases-card__block ul {
    padding-left: 22px;
  }

  .cases .solution-card__arrow {
    top: auto;
    bottom: -72px;
    transform: none;
    width: 42px;
    height: 42px;
  }

  .cases .solution-card__arrow--prev {
    left: calc(50% - 96px);
  }

  .cases .solution-card__arrow--next {
    right: calc(50% - 96px);
  }

  .cases .solutions__dots {
    margin-top: 36px;
  }

  .cases .solutions__dot {
    width: 12px;
    height: 12px;
  }

  .cases .solutions__dot--active {
    width: 52px;
  }
}
















.tm-media {
  padding: 60px 0;
}

.tm-media__container {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

.tm-media .section-title {
  text-align: center;
}

.tm-media__video-wrap {
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.tm-media__video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

.tm-media__gallery {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 20px;
}

.tm-media__item {
  width: calc((100% - 20px) / 2);
  margin: 0;
}

.tm-media__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.tm-media__thumb-wrap {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #ececec;
}

.tm-media__thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 278 / 160;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.tm-media__caption {
  margin-top: 10px;
  text-align: center;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #445E58;
}

@media (hover: hover) {
  .tm-media__button:hover .tm-media__thumb {
    transform: scale(1.06);
  }
}

.tm-media__button:focus-visible,
.tm-media-modal__close:focus-visible,
.tm-media-modal__arrow:focus-visible {
  outline: 2px solid #17d0c2;
  outline-offset: 3px;
}

/* 3 колонки от 551px */
@media (min-width: 551px) {
  .tm-media__item {
    width: calc((100% - 40px) / 3);
  }
}

/* Модалка */
  .tm-media-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;            
  align-items: center;      
  justify-content: center;  
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.tm-media-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tm-media-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 24, 28, 0.96); /* было 0.84 */
}

.tm-media-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1240px);
  max-height: calc(100vh - 48px);
  margin: 0;
  padding: 64px 72px 28px;
  border-radius: 20px;
  background: transparent;
  box-shadow:none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.tm-media-modal__content {
  width: 100%;
  min-width: 0;
}

.tm-media-modal__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(100vh - 180px);
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
}

.tm-media-modal__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 180px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.tm-media-modal__caption {
  margin-top: 16px;
  text-align: center;
  font-size: 18px;
  line-height: 1.35;
  color: #f1f1f1;
}

.tm-media-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 208, 194, 0.72);
  cursor: pointer;
}

.tm-media-modal__close span,
.tm-media-modal__arrow span {
  position: absolute;
  inset: 0;
}

.tm-media-modal__close span::before,
.tm-media-modal__close span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #1e2023;
}

.tm-media-modal__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.tm-media-modal__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.tm-media-modal__arrow {
  position: relative;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #19d3c5;
  box-shadow: 0 10px 24px rgba(25, 211, 197, 0.28);
  cursor: pointer;
}

.tm-media-modal__arrow span::before,
.tm-media-modal__arrow span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transform-origin: center;
}

.tm-media-modal__arrow--prev span::before {
  transform: translate(-55%, -4px) rotate(-45deg);
}

.tm-media-modal__arrow--prev span::after {
  transform: translate(-55%, 4px) rotate(45deg);
}

.tm-media-modal__arrow--next span::before {
  transform: translate(-45%, -4px) rotate(45deg);
}

.tm-media-modal__arrow--next span::after {
  transform: translate(-45%, 4px) rotate(-45deg);
}

.tm-media-modal__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

body.tm-media-lock {
  overflow: hidden;
}

@media (hover: hover) {
  .tm-media-modal__close:hover {
    background: rgba(23, 208, 194, 0.98);
  }

  .tm-media-modal__arrow:hover {
    background: #12c1b3;
  }
}

@media (max-width: 991px) {
  .tm-media {
    padding: 96px 0;
  }

  .tm-media__video-wrap {
    margin-top: 48px;
  }

  .tm-media__gallery {
    margin-top: 40px;
    gap: 24px 16px;
  }

  .tm-media__caption {
    font-size: 16px;
  }

  .tm-media-modal__dialog {
    width: min(100% - 32px, 1240px);
    padding: 56px 20px 24px;
    gap: 16px;
  }

  .tm-media-modal__arrow {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 767px) {
  .tm-media {
    padding: 0px 0px 60px 0px;
  }

  .tm-media__container {
    width: min(100% - 32px, 1360px);
  }

  .tm-media__video-wrap {
    margin-top: 36px;
  }

  .tm-media__video {
    border-radius: 12px;
  }

  .tm-media__gallery {
    margin-top: 32px;
    gap: 20px 12px;
  }

  .tm-media__item {
    width: calc((100% - 12px) / 2);
  }

  .tm-media__caption {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.3;
  }

  .tm-media-modal__dialog {
    display: block;
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    padding: 56px 12px 20px;
    border-radius: 16px;
  }

  .tm-media-modal__content {
    width: 100%;
  }

  .tm-media-modal__image-wrap {
    max-height: calc(100vh - 160px);
    border-radius: 12px;
  }

  .tm-media-modal__image {
    max-height: calc(100vh - 160px);
  }

  .tm-media-modal__caption {
    margin-top: 12px;
    font-size: 15px;
  }

  .tm-media-modal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .tm-media-modal__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
  }

  .tm-media-modal__arrow--prev {
    left: 8px;
  }

  .tm-media-modal__arrow--next {
    right: 8px;
  }
}
.tm-media-modal__image {
  transition: opacity 0.3s ease;
  opacity: 1;
}

.tm-media-modal__image.is-fading {
  opacity: 0;
}

.tm-results {
  padding: 30px 0;
  margin-bottom:-30px;
}

.tm-results__container {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

.tm-results .section-title {
  text-align: center;
}

.tm-results__intro {
  max-width: 980px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(45, 27, 78, 0.78);
}

.tm-results__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.tm-results-card {
  box-sizing: border-box;
  min-height: 318px;
  height: 100%;
  padding: 42px 32px 34px;
  border-radius: 10px;
  background:    #00ebd0;
  background-blend-mode: luminosity, normal;
  box-shadow:
    0 89px 36px rgba(7, 151, 134, 0.01),
    0 50px 30px rgba(7, 151, 134, 0.05),
    0 22px 22px rgba(7, 151, 134, 0.09),
    0 6px 12px rgba(7, 151, 134, 0.1);
  display: flex;
  flex-direction: column;
}

.tm-results-card__title {
  margin: 0 0 28px;
  font-weight: 700;
  font-size: 21px;
  line-height: 26px;
  letter-spacing: -0.03em;
  color: #000000;
}

.tm-results-card__text {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #1e2023;
}

.tm-results-card__text p {
  margin: 0;
}

.tm-results-card__text p + p,
.tm-results-card__text ul + p,
.tm-results-card__text p + ul {
  margin-top: 10px;
}

.tm-results-card__text ul {
  margin: 0;
  padding-left: 22px;
}

.tm-results-card__text li + li {
  margin-top: 4px;
}

@media (min-width: 551px) {
  .tm-results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .tm-results {
    padding: 96px 0;
  }

  .tm-results__intro {
    margin-top: 20px;
    font-size: 18px;
  }

  .tm-results__grid {
    margin-top: 40px;
    gap: 20px;
  }

  .tm-results-card {
    min-height: 280px;
    padding: 34px 24px 28px;
  }

  .tm-results-card__title {
    margin-bottom: 22px;
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .tm-results {
    padding: 72px 0;
  }

  .tm-results__container {
    width: min(100% - 32px, 1360px);
  }

  .tm-results__intro {
    font-size: 16px;
    line-height: 1.5;
  }

  .tm-results__grid {
    margin-top: 32px;
    gap: 16px;
  }

  .tm-results-card {
    min-height: auto;
    padding: 26px 18px 22px;
  }

  .tm-results-card__title {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.2;
  }

  .tm-results-card__text {
    font-size: 15px;
    line-height: 1.45;
  }
}













.tm-steps {
  padding: 120px 0;
  margin-bottom:-20px;
}

.tm-steps__container {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

.tm-steps .section-title {
  text-align: center;
}

.tm-steps__intro {
  max-width: 980px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(45, 27, 78, 0.78);
}

.tm-steps__list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tm-steps-card {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  padding: 42px 44px;
  background: #e7eef6;
  border: 1px solid #ffffff;
  box-shadow:
    224px 45px 91px rgba(75, 129, 120, 0.01),
    126px 25px 77px rgba(75, 129, 120, 0.05),
    56px 11px 57px rgba(75, 129, 120, 0.09),
    14px 3px 31px rgba(75, 129, 120, 0.1);
  border-radius: 6px;
}

.tm-steps-card--reverse {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.tm-steps-card--reverse .tm-steps-card__content {
  order: 1;
}

.tm-steps-card--reverse .tm-steps-card__media {
  order: 2;
}

.tm-steps-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-steps-card__media img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
}

.tm-steps-card__content {
  min-width: 0;
}

.tm-steps-card__title {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #3b2b2f;
}

.tm-steps-card__text {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #3d3d3d;
}

.tm-steps-card__text p {
  margin: 0;
}

.tm-steps-card__text p + p,
.tm-steps-card__text p + ul,
.tm-steps-card__text ul + p {
  margin-top: 10px;
}

.tm-steps-card__text ul {
  margin: 0;
  padding-left: 22px;
}

.tm-steps-card__text li + li {
  margin-top: 4px;
}

@media (max-width: 991px) {
  .tm-steps {
    padding: 96px 0;
  }

  .tm-steps__intro {
    margin-top: 20px;
    font-size: 18px;
  }

  .tm-steps__list {
    margin-top: 40px;
    gap: 16px;
  }

  .tm-steps-card,
  .tm-steps-card--reverse {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    padding: 30px 28px;
  }

  .tm-steps-card--reverse {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .tm-steps-card__media img {
    max-width: 200px;
  }

  .tm-steps-card__title {
    font-size: 22px;
  }
}

@media (max-width: 650px) {
  .tm-steps {
    padding: 0px 0;
    margin-bottom: 10px;
  }

  .tm-steps__container {
    width: min(100% - 32px, 1360px);
  }

  .tm-steps__intro {
    font-size: 16px;
    line-height: 1.5;
  }

  .tm-steps__list {
    margin-top: 32px;
    gap: 14px;
  }

  .tm-steps-card,
  .tm-steps-card--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px;
  }

  .tm-steps-card__content,
  .tm-steps-card--reverse .tm-steps-card__content {
    display: contents;
    order: initial;
  }

  .tm-steps-card__title {
    order: 1;
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
  }

  .tm-steps-card__media,
  .tm-steps-card--reverse .tm-steps-card__media {
    order: 2;
    justify-content: center;
  }

  .tm-steps-card__media img {
    max-width: 180px;
  }

  .tm-steps-card__text {
    order: 3;
    font-size: 15px;
    line-height: 1.45;
  }
}

.tm-platform {
  padding: 30px 0;
}

.tm-platform__container {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

.tm-platform .section-title {
  text-align: center;
}

.tm-platform__intro {
  max-width: 1100px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(45, 27, 78, 0.78);
}

.tm-platform__top {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 580px;
  gap: 48px;
  align-items: center;
}

.tm-platform__text {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #4a3d46;
}

.tm-platform__text p {
  margin: 0;
}

.tm-platform__text p + p {
  margin-top: 22px;
}

.tm-platform__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.tm-platform__features {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.tm-platform-card {
  box-sizing: border-box;
  min-height: 170px;
  padding: 26px 24px 24px;
  border-radius: 10px;
  background:
    url("images/integrating-financial-technology-with-business-analysis-for-strategic-success-vector.jpg") center center / cover no-repeat,
    #00ebd0;
  background-blend-mode: luminosity, normal;
  box-shadow:
    0 89px 36px rgba(7, 151, 134, 0.01),
    0 50px 30px rgba(7, 151, 134, 0.05),
    0 22px 22px rgba(7, 151, 134, 0.09),
    0 6px 12px rgba(7, 151, 134, 0.1);
  display: flex;
  flex-direction: column;
}

.tm-platform-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tm-platform-card__icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tm-platform-card__icon svg {
  display: block;
  width: 25px;
  height: 25px;
}

.tm-platform-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111111;
}

.tm-platform-card__text {
  margin-top: 18px;
  padding-left: 39px;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #1e2023;
}

@media (max-width: 1199px) {
  .tm-platform__top {
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 36px;
  }

  .tm-platform__features {
    gap: 24px;
  }

  .tm-platform-card__title {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .tm-platform {
    padding: 96px 0;
  }

  .tm-platform__intro {
    margin-top: 20px;
    font-size: 18px;
  }

  .tm-platform__top {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tm-platform__media {
    order: -1;
  }

  .tm-platform__features {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tm-platform-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .tm-platform {
    padding: 72px 0;
  }

  .tm-platform__container {
    width: min(100% - 32px, 1360px);
  }

  .tm-platform__intro {
    font-size: 16px;
    line-height: 1.5;
  }

  .tm-platform__text {
    font-size: 15px;
    line-height: 1.45;
  }

  .tm-platform__text p + p {
    margin-top: 18px;
  }

  .tm-platform__features {
    margin-top: 32px;
    gap: 16px;
  }

  .tm-platform-card {
    padding: 22px 18px 20px;
  }

  .tm-platform-card__head {
    gap: 12px;
  }

  .tm-platform-card__title {
    font-size: 19px;
    line-height: 1.15;
  }

  .tm-platform-card__text {
    margin-top: 14px;
    padding-left: 37px;
    font-size: 15px;
    line-height: 1.4;
  }
}
.solutions.menace  {
    background: rgba(231, 238, 236, 1);
    padding:90px 0px 30px 0px;
    margin-bottom:90px;
}
.solutions.menace .solutions__tab.is-active {
  background: #9F3737;
}
.solutions.menace .solutions__dot--active {
  background: #9F3737;
}
.solutions.menace .solutions__dot:hover {
  background: #d44f4f;
}
@media (min-width: 850px) {
  .solutions.menace .solutions__tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .solutions.menace .solution-card__arrow { 
    background: #CD2626;
    box-shadow: 0 10px 20px rgba(130, 22, 22, 0.24);
  }
}
.menace .solution-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.menace .menace-slide {
  width: 100%;
  min-height: 100%;
}

.menace .menace-slide__tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.menace .menace-slide__tab {
  min-height: 48px;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  background: rgba(86, 52, 58, 0.12);
  font: inherit;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #5d4348;
  cursor: default;
}

.menace .menace-slide__tab--active {
  background: #b63333;
  color: #ffffff;
}

.menace .menace-slide__content {
  margin-top: 88px;
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}

.menace .menace-slide__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #b63333;
}

.menace .menace-slide__lead {
  margin-top: 28px;
  max-width: 980px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #3f3538;
}

.menace .menace-slide__bottom {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: start;
}

.menace .menace-slide__subtitle {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #3f3538;
}

.menace .menace-slide__list,
.menace .menace-slide__text {
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: #4a3f42;
}

.menace .menace-slide__list {
  margin: 0;
  padding-left: 28px;
}

.menace .menace-slide__list li + li {
  margin-top: 4px;
}

.menace .menace-slide__text {
  max-width: 430px;
}

@media (max-width: 1199px) {
  .menace .menace-slide__tabs {
    gap: 8px;
  }

  .menace .menace-slide__tab {
    min-height: 44px;
    padding: 8px 12px;
    font-size: 16px;
  }

  .menace .menace-slide__content {
    margin-top: 64px;
  }

  .menace .menace-slide__title {
    font-size: 32px;
  }

  .menace .menace-slide__lead,
  .menace .menace-slide__list,
  .menace .menace-slide__text {
    font-size: 18px;
  }

  .menace .menace-slide__bottom {
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .menace .menace-slide__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .menace .menace-slide__tab {
    min-height: 42px;
    font-size: 15px;
  }

  .menace .menace-slide__content {
    margin-top: 36px;
  }

  .menace .menace-slide__title {
    font-size: 26px;
    line-height: 1.12;
  }

  .menace .menace-slide__lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.45;
  }

  .menace .menace-slide__bottom {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menace .menace-slide__subtitle {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .menace .menace-slide__list,
  .menace .menace-slide__text {
    font-size: 16px;
    line-height: 1.45;
  }

  .menace .menace-slide__text {
    max-width: none;
  }
}
.menace .solution-card {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  align-items: initial !important;
  justify-items: initial !important;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.menace .solution-card .menace-slide {
  width: 100%;
}
@media (min-width:1024px) {
.hero__container.inner .hero__text {
  max-width:40vw;
}
}
@media (max-width:550px) {
  .hero__container.inner .hero__visual {display:none;}
  .hero__container.inner .hero__actions__mobile {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
    top: 10px;
    text-align: left;
    left: 40px; 
  }
}

@media (min-width: 551px) and (max-width: 850px) {
  .hero__container.inner .hero__visual {
    margin-left: 131px;
    margin-top: -177px;
  }

}

.cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.cookie-banner__text {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #1f1f1f;
}

.cookie-banner__text a {
    color: #1f1f1f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    min-width: 130px;
    height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid #1f1f1f;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #1f1f1f;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-banner__btn:hover {
    background: #1f1f1f;
    color: #ffffff;
}

.cookie-banner__btn--accept {
    background: #1f1f1f;
    color: #ffffff;
}

.cookie-banner__btn--accept:hover {
    background: #000000;
    border-color: #000000;
}

@media (max-width: 767px) {
    .cookie-banner {
        right: 16px;
        bottom: 16px;
        left: 16px;
        max-width: none;
        padding: 20px;
        border-radius: 16px;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__btn {
        width: 100%;
    }
}
.audit-form__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.form-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 10, 10, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.form-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.form-modal__box {
    max-width: 520px;
    width: 100%;
    padding: 28px 24px;
    border-radius: 20px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.form-modal__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #111111;
}