@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 1.8vh;
  color: #010e32;
  background: #F6FAFF;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.title-accent {
  background: linear-gradient(90deg, #1DAFF7 0%, #0059AA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 24px;
  border-radius: 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.btn--lg {
  padding: 16px 32px;
}
.btn--primary {
  background: #1daff7;
  color: #ffffff;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
}
.btn--primary:hover {
  opacity: 0.9;
}
.btn--ghost {
  padding: 12px 20px;
  background: #ffffff;
  color: #010e32;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
}
.btn--ghost:hover {
  color: #1daff7;
}
.btn--outline {
  background: #ffffff;
  color: #010e32;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
}
.btn--outline:hover {
  color: #1daff7;
}
.btn__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.header__bar {
  display: contents;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 14px 24px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
  overflow: visible;
}
.header__actions-inner {
  display: flex;
  flex-shrink: 0;
}
.header__logo {
  display: flex;
  flex-shrink: 0;
}
.header__logo-text {
  color: #010e32;
}
.header__logo-accent {
  color: #1daff7;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.header__burger:hover {
  background: rgba(29, 175, 247, 0.08);
}
.header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #010e32;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  color: #010e32;
  transition: color 0.2s;
}
.header__nav-link:hover {
  color: #1daff7;
}
.header__nav-chevron {
  width: 10px;
  height: 6px;
  margin-top: 2px;
  opacity: 0.6;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header__actions--menu {
  display: none;
}

.header__nav-item {
  position: relative;
}
.header__nav-item--dropdown .header__nav-link--dropdown {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}
@media (min-width: 1031px) {
  .header__inner {
    position: relative;
  }
}
.header__nav-chevron-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(1100px, 100vw - 48px);
  padding: 16px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(1, 14, 50, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(6px);
  z-index: 120;
}
.header__dropdown::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
}
.header__nav-item--dropdown.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 1031px) {
  .header__nav-item--dropdown.is-open .header__nav-chevron-wrap {
    transform: rotate(180deg);
  }
  .header__nav-item--dropdown.is-open .header__nav-link--dropdown {
    color: #1daff7;
  }
}
.header__dropdown-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.header__dropdown-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1030px) {
  .header__dropdown-backdrop {
    display: none;
  }
}
.header__dropdown-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.header__dropdown-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(1, 14, 50, 0.06);
  background: #ffffff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.header__dropdown-card:hover {
  box-shadow: 0 8px 24px rgba(29, 175, 247, 0.15);
  transform: translateY(-2px);
}
.header__dropdown-card-head {
  padding: 12px 14px;
  font-family: "Bounded", sans-serif;
  font-size: 1.35vh;
  font-weight: 700;
  line-height: 1.3;
  color: #010e32;
  border-bottom: 1px solid rgba(1, 14, 50, 0.06);
}
.header__dropdown-card-media {
  display: block;
  flex: 1;
  height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(29, 175, 247, 0.12) 0%, rgba(0, 89, 170, 0.08) 100%);
}
.header__dropdown-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.header__dropdown-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #f4f8fc;
  transition: background-color 0.2s;
}
.header__dropdown-banner:hover {
  background: #eaf4fb;
}
.header__dropdown-banner:hover .header__dropdown-banner-link {
  color: #0059aa;
}
.header__dropdown-banner-icon {
  flex-shrink: 0;
  display: flex;
  color: #1daff7;
}
.header__dropdown-banner-text {
  flex: 1;
  min-width: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4vh;
  font-weight: 500;
  line-height: 1.4;
  color: #363636;
}
.header__dropdown-banner-link {
  flex-shrink: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  color: #1daff7;
  white-space: nowrap;
  transition: color 0.2s;
}

@media (max-width: 1030px) {
  .header__nav-item--dropdown {
    border-bottom: 1px solid rgba(1, 14, 50, 0.06);
    position: relative;
  }
  .header__nav-link--dropdown {
    width: 100%;
    justify-content: space-between;
    padding: 14px 24px;
    text-align: left;
  }
  .header__nav-chevron-wrap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(1, 14, 50, 0.1);
    border-radius: 50%;
    background: #ffffff;
  }
  .header__nav-item--dropdown.is-open .header__nav-chevron-wrap {
    transform: rotate(180deg);
  }
  .header__nav-item--dropdown.is-open .header__nav-link--dropdown {
    color: #1daff7;
  }
  .header__dropdown {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    z-index: auto;
    padding: 0 16px;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .header__dropdown::before {
    display: none;
  }
  .header__nav-item--dropdown.is-open .header__dropdown {
    max-height: 900px;
    padding: 0 16px 16px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .header__dropdown-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .header__dropdown-card-head {
    padding: 10px 12px;
    font-size: 1.4vh;
  }
  .header__dropdown-card-media {
    height: 160px;
  }
  .header__dropdown-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 12px 14px;
  }
  .header__dropdown-banner-link {
    white-space: normal;
  }
}
@media (max-width: 1280px) {
  .header__dropdown-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .header__dropdown-cards {
    grid-template-columns: 1fr;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 0 60px;
  background-image: url("../images/bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
}
.hero__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__content {
  width: 100%;
}
.hero__title {
  font-family: "Bounded", sans-serif;
  font-size: 5.5vh;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  color: #031B5E;
  margin-bottom: 24px;
}
.hero__text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.6;
  color: #010e32;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}
.hero__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.container.hero__inner {
  padding: 0px;
}

.problems {
  padding: 80px 0 100px;
}
.problems .accordion__trigger {
  justify-content: flex-start;
}
.problems__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.problems__title {
  font-family: "Bounded", sans-serif;
  font-size: 4.5vh;
  font-weight: 700;
  line-height: 1.15;
  color: #010e32;
}
.problems__title-accent {
  background: linear-gradient(90deg, #1daff7 0%, #0059aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.problems__title-icon {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 37px;
  margin: 0 8px;
}
.problems__desc {
  width: 30%;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.5;
  color: #010e32;
  padding-top: 8px;
}
.problems__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.problems__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
  background: #ffffff;
  border-radius: 40px;
  position: sticky;
  top: 130px;
}
.problems__chat {
  width: 100%;
  padding: 14px;
  border-radius: 28px;
  background: #d9e6f4;
}
.problems__quote {
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4vh;
  font-weight: 500;
  color: #010e32;
  padding: 23px 30px;
  border-radius: 20px;
  box-shadow: 0 0px 3px 0 rgba(16, 93, 226, 0.212);
  display: flex;
  gap: 20px;
}
.problems__chat-templates {
  display: none;
}

.chat {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  max-height: 62vh;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
}
.chat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(1, 14, 50, 0.08);
}
.chat__header-icon {
  display: flex;
  flex-shrink: 0;
}
.chat__header-title {
  font-family: "Bounded", sans-serif;
  font-size: 1.6vh;
  font-weight: 700;
  color: #010e32;
}
.chat__messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  overflow-y: auto;
}
.chat__msg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.5vh;
  font-weight: 500;
  line-height: 1.5;
  color: #010e32;
}
.chat__msg p {
  margin: 0;
}
.chat__msg strong {
  font-weight: 700;
}
.chat__msg--enter {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.chat__msg--enter.is-visible {
  opacity: 1;
  transform: none;
}
.chat__msg--user {
  align-self: flex-end;
  background: #f2f4f7;
  border-bottom-right-radius: 4px;
}
.chat__msg--user.chat__msg--enter {
  transform: translateY(10px) translateX(8px) scale(0.98);
}
.chat__msg--user.chat__msg--enter.is-visible {
  transform: none;
}
.chat__msg--ai {
  align-self: flex-start;
  max-width: 100%;
  background: rgba(29, 175, 247, 0.08);
  border-bottom-left-radius: 4px;
}
.chat__msg--ai.chat__msg--enter {
  transform: translateY(10px) translateX(-8px) scale(0.98);
}
.chat__msg--ai.chat__msg--enter.is-visible {
  transform: none;
}
.chat__msg--typing {
  gap: 10px;
  min-width: 72px;
  width: fit-content;
  max-width: 120px;
}
.chat__typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 2px 0;
}
.chat__typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7eb8df;
  animation: chat-typing-dot 1.2s ease-in-out infinite;
}
.chat__typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.chat__typing span:nth-child(3) {
  animation-delay: 0.3s;
}
.chat__msg-role {
  font-family: "Bounded", sans-serif;
  font-size: 1.3vh;
  font-weight: 700;
  color: #1daff7;
}
.chat__quote {
  margin: 0;
  padding: 8px 12px;
  border-left: 3px solid #1daff7;
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.7);
  font-style: italic;
  color: #363636;
}
.chat__link {
  color: #1daff7;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.chat__note {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(250, 223, 133, 0.28);
}
.chat__meta {
  font-size: 1.25vh;
  color: #6b7280;
  font-style: italic;
}
.chat__doc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
}
.chat__tag {
  color: #1daff7;
  font-size: 1.2vh;
}
.chat__file {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 10px;
  background: #ffffff;
}
.chat__file-label {
  font-family: "Bounded", sans-serif;
  font-weight: 700;
  color: #1daff7;
}
.chat__file-name {
  padding: 3px 8px;
  border-radius: 6px;
  background: #f2f4f7;
  font-size: 1.25vh;
}
.chat__cmd {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(29, 175, 247, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.3vh;
  color: #0059aa;
}
.chat__attach {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #ffffff;
}
.chat__attach-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1daff7 0%, #0059aa 100%);
}
.chat__attach-title {
  display: block;
  font-family: "Bounded", sans-serif;
  font-weight: 700;
}
.chat__attach-name {
  display: block;
  font-size: 1.2vh;
  color: #6b7280;
}
.chat__success {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(22, 175, 111, 0.14);
  color: #0f7a4d;
}
.chat__list {
  margin: 0;
  padding-left: 18px;
}
.chat__list li + li {
  margin-top: 4px;
}
.chat__footer {
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(1, 14, 50, 0.08);
}
.chat__input {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  border: none;
  outline: none;
  resize: none;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 1.5vh;
  font-weight: 500;
  line-height: 1.45;
  color: #010e32;
  max-height: 96px;
  overflow-y: auto;
}
.chat__input::placeholder {
  color: #9aa3b5;
}
.chat__attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}
.chat__attachments[hidden] {
  display: none;
}
.chat__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 8px;
  background: #f2f4f7;
  font-family: "DM Sans", sans-serif;
  font-size: 1.25vh;
  color: #363636;
}
.chat__chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat__chip-remove {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: rgba(1, 14, 50, 0.08);
  color: #5e6778;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}
.chat__chip-remove:hover {
  background: rgba(1, 14, 50, 0.14);
  color: #010e32;
}
.chat__footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.chat__upload {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4vh;
  color: #9aa3b5;
  cursor: pointer;
  transition: color 0.2s ease;
}
.chat__upload:hover {
  color: #1daff7;
}
.chat__send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #1daff7;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.chat__send:disabled {
  cursor: default;
  opacity: 0.45;
}
.chat__send:not(:disabled):hover {
  transform: scale(1.04);
}
.chat__cta {
  display: inline-flex;
  margin-top: 4px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #1daff7;
  color: #ffffff;
  font-family: "Bounded", sans-serif;
  font-size: 1.35vh;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s ease;
}
.chat__cta:hover {
  opacity: 0.9;
  color: #ffffff;
}

@keyframes chat-typing-dot {
  0%, 80%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .chat__msg--enter {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .chat__typing span {
    animation: none;
  }
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordion__hint {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  line-height: 1.5;
  color: #363636;
}
.accordion__item {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
  overflow: hidden;
}
.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 28px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.accordion__item-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.2745098039);
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, #1daff7 0%, #f5faff 48%, #0059aa 100%) border-box;
}
.accordion__item-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.accordion__title {
  font-family: "Bounded", sans-serif;
  font-size: 2vh;
  font-weight: 700;
  color: #010e32;
}
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}
.accordion__panel-inner {
  overflow: hidden;
}
.accordion__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 28px 28px;
}
.accordion__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion__block-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Bounded", sans-serif;
  font-size: 1.7vh;
  font-weight: 700;
  color: #010e32;
}
.accordion__block-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.accordion__block-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.accordion__block {
  border-radius: 15px;
  background: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.5;
  color: #010e32;
}
.accordion__block--problem {
  padding: 10px 20px;
  box-shadow: 0 1px 6px 0 rgba(250, 223, 133, 0.6);
}
.accordion__block--solution {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  overflow: hidden;
  box-shadow: 0 1px 6px 0 rgba(22, 175, 111, 0.55);
}
.accordion__solution-head {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 12px;
  background: rgba(29, 175, 247, 0.08);
}
.accordion__solution-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.7vh;
  font-weight: 500;
  color: #010e32;
  white-space: nowrap;
}
.accordion__solution-text {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.5;
  color: #363636;
}
.accordion__solution-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.accordion__solution-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.accordion__subtitle {
  margin: 0;
  font-family: "Bounded", sans-serif;
  font-size: 1.7vh;
  font-weight: 700;
  color: #1daff7;
}
.accordion__content--stack {
  gap: 24px;
}
.accordion__feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #f7f9fc;
}
.accordion__example {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.accordion__msg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.55;
  color: #010e32;
}
.accordion__msg p {
  margin: 0;
}
.accordion__msg strong {
  font-weight: 700;
}
.accordion__msg--user {
  align-self: flex-end;
  max-width: 90%;
  background: linear-gradient(135deg, rgba(29, 175, 247, 0.12) 0%, rgba(0, 89, 170, 0.08) 100%);
  border-bottom-right-radius: 6px;
}
.accordion__msg--ai {
  align-self: stretch;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(16, 93, 226, 0.1);
  border-bottom-left-radius: 6px;
}
.accordion__msg-role {
  font-family: "Bounded", sans-serif;
  font-size: 1.4vh;
  font-weight: 700;
  color: #1daff7;
}
.accordion__quote-law {
  margin: 0;
  padding: 10px 14px;
  border-left: 3px solid #1daff7;
  border-radius: 0 10px 10px 0;
  background: rgba(29, 175, 247, 0.06);
  font-style: italic;
  color: #363636;
}
.accordion__link {
  color: #1daff7;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.accordion__link:hover {
  color: #0059aa;
}
.accordion__note {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(250, 223, 133, 0.25);
}
.accordion__meta {
  font-size: 1.4vh;
  color: #6b7280;
  font-style: italic;
}
.accordion__doc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f9fc;
  border: 1px solid rgba(1, 14, 50, 0.06);
}
.accordion__tag {
  color: #1daff7;
  font-size: 1.3vh;
  font-weight: 500;
}
.accordion__file {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(29, 175, 247, 0.08);
  color: #010e32;
  text-decoration: none;
  transition: background 0.2s;
}
.accordion__file:hover {
  background: rgba(29, 175, 247, 0.14);
}
.accordion__file-label {
  font-family: "Bounded", sans-serif;
  font-weight: 700;
  color: #1daff7;
}
.accordion__file-name {
  padding: 4px 10px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(1, 14, 50, 0.08);
  font-size: 1.4vh;
}
.accordion__kb-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 20%, rgba(29, 175, 247, 0.08) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(0, 89, 170, 0.06) 0, transparent 35%), #eef6fc;
}
.accordion__kb-msg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  line-height: 1.5;
  color: #010e32;
  box-shadow: 0 1px 4px rgba(1, 14, 50, 0.06);
}
.accordion__kb-msg p {
  margin: 0;
}
.accordion__kb-msg--user {
  align-self: flex-end;
  background: #ffffff;
  border-bottom-right-radius: 4px;
}
.accordion__kb-msg--bot {
  align-self: flex-start;
  background: #ffffff;
  border-bottom-left-radius: 4px;
}
.accordion__kb-name {
  font-family: "Bounded", sans-serif;
  font-size: 1.3vh;
  font-weight: 700;
  color: #1daff7;
}
.accordion__kb-cmd {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(29, 175, 247, 0.1);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.4vh;
  color: #0059aa;
}
.accordion__kb-attach {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f7f9fc;
}
.accordion__kb-attach-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1daff7 0%, #0059aa 100%);
}
.accordion__kb-attach-title {
  display: block;
  font-family: "Bounded", sans-serif;
  font-weight: 700;
}
.accordion__kb-attach-name {
  display: block;
  font-size: 1.3vh;
  color: #6b7280;
}
.accordion__kb-success {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(22, 175, 111, 0.12);
  color: #0f7a4d;
}
.accordion__economy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion__economy-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.accordion__economy-title {
  margin: 0;
  font-family: "Bounded", sans-serif;
  font-size: 1.7vh;
  font-weight: 700;
  color: #010e32;
}
.accordion__economy-subtitle {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4vh;
  color: #6b7280;
}
.accordion__economy-heading {
  margin: 0;
  font-family: "Bounded", sans-serif;
  font-size: 1.5vh;
  font-weight: 700;
  color: #010e32;
}
.accordion__params {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.accordion__param {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(29, 175, 247, 0.07);
}
.accordion__param-value {
  font-family: "Bounded", sans-serif;
  font-size: 1.8vh;
  font-weight: 700;
  color: #1daff7;
}
.accordion__param-label {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3vh;
  line-height: 1.3;
  color: #363636;
}
.accordion__compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.accordion__compare-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(16, 93, 226, 0.1);
}
.accordion__compare-title {
  margin: 0;
  font-family: "Bounded", sans-serif;
  font-size: 1.4vh;
  font-weight: 700;
  color: #010e32;
}
.accordion__compare-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4vh;
}
.accordion__compare-before {
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-color: rgba(107, 114, 128, 0.5);
}
.accordion__compare-arrow {
  color: #1daff7;
}
.accordion__compare-after {
  font-weight: 700;
  color: #010e32;
}
.accordion__compare-effect {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(22, 175, 111, 0.12);
  color: #0f7a4d;
  font-family: "Bounded", sans-serif;
  font-size: 1.3vh;
  font-weight: 700;
}
.accordion__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.accordion__result {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(29, 175, 247, 0.12) 0%, rgba(0, 89, 170, 0.08) 100%);
}
.accordion__result-value {
  font-family: "Bounded", sans-serif;
  font-size: 2vh;
  font-weight: 700;
  color: #0059aa;
}
.accordion__result-text {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4vh;
  line-height: 1.4;
  color: #363636;
}
.accordion__scheme {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: stretch;
}
.accordion__scheme-col {
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(16, 93, 226, 0.1);
}
.accordion__scheme-head {
  padding: 10px 14px;
  font-family: "Bounded", sans-serif;
  font-size: 1.4vh;
  font-weight: 700;
  color: #ffffff;
}
.accordion__scheme-head--gis {
  background: linear-gradient(90deg, #0059aa 0%, #1daff7 100%);
}
.accordion__scheme-head--ai {
  background: linear-gradient(90deg, #16af6f 0%, #1daff7 100%);
}
.accordion__scheme-list {
  margin: 0;
  padding: 12px 14px 14px;
  list-style: none;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  line-height: 1.45;
  color: #363636;
}
.accordion__scheme-list li {
  position: relative;
  padding: 8px 10px 8px 12px;
  border-radius: 10px;
  background: #f7f9fc;
}
.accordion__scheme-list li + li {
  margin-top: 6px;
}
.accordion__scheme-gateway {
  background: rgba(29, 175, 247, 0.1) !important;
  color: #0059aa !important;
  font-family: "Bounded", sans-serif !important;
  font-weight: 700;
}
.accordion__scheme-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 72px;
  padding: 8px 4px;
}
.accordion__scheme-bridge-line {
  width: 2px;
  flex: 1;
  min-height: 16px;
  background: linear-gradient(180deg, rgba(29, 175, 247, 0.15), #1daff7, rgba(29, 175, 247, 0.15));
}
.accordion__scheme-bridge-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Bounded", sans-serif;
  font-size: 1.2vh;
  font-weight: 700;
  color: #1daff7;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.accordion__media {
  min-height: 0;
}
.accordion__scheme-preview {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 16px;
  background: #f7f9fc;
  box-shadow: 0 1px 8px rgba(16, 93, 226, 0.1);
}
.accordion__scheme-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.products {
  padding: 80px 0 100px;
}
.products__title {
  margin-bottom: 48px;
  font-family: "Bounded", sans-serif;
  font-size: 4.5vh;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  color: #010e32;
}
.products__title-accent {
  background: linear-gradient(90deg, #1daff7 0%, #0059aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.products__title-icon {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 55px;
  margin: 0 8px;
}

.product-tabs {
  overflow: hidden;
  border-radius: 28px;
}
.product-tabs:not(.is-first-tab) .product-slide {
  border-radius: 30px;
}
.product-tabs__nav-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.product-tabs__scroll-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  border: none;
  background: transparent;
  color: #9aa3b5;
  cursor: pointer;
}
.product-tabs__scroll-btn:hover {
  color: #1daff7;
}
.product-tabs__scroll-btn[hidden] {
  display: none;
}
.product-tabs__nav {
  display: flex;
  flex: 1;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.product-tabs__nav.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.product-tabs__nav::-webkit-scrollbar {
  display: none;
}
.product-tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 14px 18px;
  border: none;
  border-radius: 18px 18px 0 0;
  background: transparent;
  font-family: "Bounded", sans-serif;
  font-size: 1.8vh;
  font-weight: 700;
  color: #010e32;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}
.product-tabs__tab.is-active {
  background: #ffffff;
  box-shadow: 0 -2px 12px rgba(16, 93, 226, 0.08);
}
.product-tabs__tab-icon {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}
.product-tabs__tab.is-active .product-tabs__tab-icon {
  transform: scale(1.06);
}
.product-tabs__panels {
  position: relative;
  overflow: hidden;
}
.product-tabs__panel {
  display: none;
  opacity: 0;
  transform: translateX(0);
  will-change: opacity, transform;
}
.product-tabs__panel.is-active, .product-tabs__panel.is-animating-in, .product-tabs__panel.is-animating-out {
  display: block;
}
.product-tabs__panel.is-active:not(.is-animating-in):not(.is-animating-out) {
  opacity: 1;
  transform: none;
}
.product-tabs__panel.is-animating-out {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .product-tabs__tab,
  .product-tabs__tab-icon,
  .product-tabs__panel {
    transition: none !important;
  }
  .product-tabs__tab.is-active .product-tabs__tab-icon {
    transform: none;
  }
}
.product-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 46%);
  gap: 28px;
  align-items: center;
  padding: 40px;
  border-radius: 0 30px 30px 30px;
  background: #ffffff;
  transition: border-radius 0.2s ease;
}
.product-slide__content {
  min-width: 0;
}
.product-slide__title {
  margin-bottom: 14px;
  font-family: "Bounded", sans-serif;
  font-size: 2vh;
  font-weight: 700;
  color: #010e32;
}
.product-slide__lead {
  margin-bottom: 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.5;
  color: #5e6778;
}
.product-slide__list {
  margin: 0;
  padding-left: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.45;
  color: #363636;
}
.product-slide__list li + li {
  margin-top: 10px;
}
.product-slide__media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-slide__quote-text span {
  font-weight: 600;
}
.product-slide__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(16, 93, 226, 0.08);
  object-fit: cover;
}
.product-slide__quote {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0;
  padding: 23px 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 0 3px 0 rgba(16, 93, 226, 0.212);
  font-family: "DM Sans", sans-serif;
  font-size: 1.4vh;
  font-weight: 500;
  line-height: 1.45;
  color: #010e32;
}
.product-slide__quote-mark {
  flex-shrink: 0;
  display: flex;
  line-height: 0;
}

.calculator {
  padding: 0 0 72px;
}
.calculator__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: 0 8px 32px rgba(1, 14, 50, 0.06);
}
.calculator__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 24px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e8eef5;
}
.calculator__head-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.calculator__title {
  font-family: "Bounded", sans-serif;
  font-size: clamp(22px, 2.4vh, 32px);
  font-weight: 700;
  line-height: 1.15;
  color: #010e32;
}
.calculator__title-accent {
  color: #1daff7;
}
.calculator__subtitle {
  max-width: 420px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(13px, 1.35vh, 15px);
  font-weight: 500;
  line-height: 1.4;
  color: #363636;
}
.calculator__section-title {
  margin-bottom: 8px;
  font-family: "Bounded", sans-serif;
  font-size: clamp(13px, 1.35vh, 15px);
  font-weight: 700;
  line-height: 1.3;
  color: #010e32;
}
.calculator__hint {
  margin: 0;
  flex-shrink: 0;
  max-width: 260px;
  text-align: right;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(12px, 1.25vh, 14px);
  font-weight: 500;
  line-height: 1.35;
  color: #6b7280;
}
.calculator__hint.is-warning {
  color: #c2410c;
}
.calculator__hint.is-success {
  color: #15803d;
}
.calculator__setup {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e8eef5;
}
.calculator__setup-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calculator__setup-assistants {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.calculator__cost-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  list-style: none;
}
.calculator__cost-item {
  padding: 8px 10px;
  border: 1px solid #d8e3ef;
  border-radius: 10px;
  background: #f9fcff;
}
.calculator__check {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  cursor: pointer;
}
.calculator__check input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: #1daff7;
  cursor: pointer;
}
.calculator__check .calculator__cost-price {
  grid-column: 2;
  margin-top: 2px;
}
.calculator__cost-static, .calculator__field--inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calculator__check-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.calculator__check-title {
  font-family: "Bounded", sans-serif;
  font-size: clamp(12px, 1.25vh, 13px);
  font-weight: 700;
  color: #010e32;
}
.calculator__check-desc {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(10px, 1.1vh, 12px);
  font-weight: 500;
  line-height: 1.3;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.calculator__cost-price {
  font-family: "Bounded", sans-serif;
  font-size: clamp(12px, 1.25vh, 13px);
  font-weight: 700;
  color: #1daff7;
}
.calculator__input--cost {
  width: 100%;
  padding: 6px 8px;
}
.calculator__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.calculator__chip {
  padding: 5px 11px;
  border: 1px solid #d8e3ef;
  border-radius: 14px;
  background: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(12px, 1.2vh, 13px);
  font-weight: 500;
  line-height: 1.2;
  color: #010e32;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.calculator__chip:hover {
  border-color: #1daff7;
}
.calculator__chip.is-active {
  background: #1daff7;
  border-color: #1daff7;
  color: #ffffff;
}
.calculator__params-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calculator__params-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.calculator__params-head .calculator__section-title {
  margin-bottom: 0;
}
.calculator__field--salary {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 220px;
}
.calculator__field--salary .calculator__field-label {
  white-space: nowrap;
}
.calculator__field--salary .calculator__input {
  width: 110px;
}
.calculator__params {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calculator__params-empty {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(12px, 1.25vh, 14px);
  color: #6b7280;
}
.calculator__params-group {
  padding: 10px 12px;
  border: 1px solid #e8eef5;
  border-radius: 10px;
  background: #fafcfe;
}
.calculator__params-title {
  margin-bottom: 8px;
  font-family: "Bounded", sans-serif;
  font-size: clamp(12px, 1.3vh, 14px);
  font-weight: 700;
  color: #010e32;
}
.calculator__fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 10px;
}
.calculator__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calculator__field--wide {
  grid-column: 1/-1;
}
.calculator__field-label {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(11px, 1.15vh, 12px);
  font-weight: 500;
  line-height: 1.3;
  color: #363636;
}
.calculator__input {
  width: 100%;
  padding: 7px 9px;
  border: 1px solid #d8e3ef;
  border-radius: 8px;
  background: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(13px, 1.3vh, 14px);
  font-weight: 500;
  color: #010e32;
  outline: none;
  transition: border-color 0.15s;
}
.calculator__input::placeholder {
  color: #9ca3af;
}
.calculator__input:focus {
  border-color: #1daff7;
}
.calculator__results-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calculator__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.calculator__result-card {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid rgba(29, 175, 247, 0.25);
  border-radius: 12px;
  background: #f9fcff;
}
.calculator__result-title {
  margin-bottom: 4px;
  font-family: "Bounded", sans-serif;
  font-size: clamp(13px, 1.35vh, 14px);
  font-weight: 700;
  line-height: 1.25;
  color: #010e32;
}
.calculator__result-lead {
  margin-bottom: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(11px, 1.15vh, 12px);
  font-weight: 500;
  line-height: 1.35;
  color: #363636;
}
.calculator__result-lead strong {
  display: inline;
  margin-left: 4px;
  font-size: clamp(13px, 1.35vh, 14px);
  font-weight: 600;
  color: #1daff7;
}
.calculator__result-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  flex: 1;
}
.calculator__result-list li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 2px 8px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(11px, 1.15vh, 12px);
  font-weight: 500;
  line-height: 1.35;
  color: #363636;
}
.calculator__result-list li strong {
  font-weight: 600;
  color: #010e32;
  text-align: right;
}
.calculator__result-modules {
  display: block !important;
  width: 100%;
  font-size: clamp(10px, 1.05vh, 11px) !important;
  color: #6b7280 !important;
  padding: 0;
}
.calculator__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 8px 12px;
  width: 100%;
  font-size: clamp(12px, 1.25vh, 13px);
  text-align: center;
  text-decoration: none;
}

.how-it-works {
  padding: 80px 0 100px;
}
.how-it-works__title {
  margin-bottom: 12px;
  font-family: "Bounded", sans-serif;
  font-size: 4.5vh;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  color: #010e32;
}
.how-it-works__title-accent {
  background: linear-gradient(90deg, #1daff7 0%, #0059aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.how-it-works__subtitle {
  margin-bottom: 48px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #5e6778;
}
.how-it-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-it-works__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 93, 226, 0.08);
}
.how-it-works__card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.how-it-works__step {
  position: relative;
  width: fit-content;
  padding: 6px 20px;
  border-radius: 19px;
  background: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  color: #1daff7;
  white-space: nowrap;
  isolation: isolate;
}
.how-it-works__step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(135deg, #1daff7 0%, #f5faff 48%, #0059aa 100%);
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.how-it-works__name {
  font-family: "Bounded", sans-serif;
  font-size: 2.3vh;
  font-weight: 700;
  line-height: 1.15;
  color: #010e32;
}
.how-it-works__points {
  margin: 0;
  padding-left: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.45;
  color: #363636;
}
.how-it-works__points li + li {
  margin-top: 12px;
}
.how-it-works__points strong {
  font-weight: 600;
  color: #010e32;
}

.faq {
  padding: 80px 0 100px;
}
.faq__title {
  margin-bottom: 48px;
  font-family: "Bounded", sans-serif;
  font-size: 4.5vh;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  color: #010e32;
}
.faq__title-accent {
  background: linear-gradient(90deg, #1daff7 0%, #0059aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.faq__groups {
  width: 60%;
  margin: 0 auto;
}
.faq__group + .faq__group {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(1, 14, 50, 0.12);
}
.faq__group-title {
  margin: 0 0 24px;
  font-family: "Bounded", sans-serif;
  font-size: clamp(18px, 2.6vh, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: #010e32;
}
.faq__list {
  margin: 12px 0 0;
  padding: 0 0 0 1.15em;
  list-style: disc;
}
.faq__list li + li {
  margin-top: 8px;
}
.faq__list strong {
  font-weight: 600;
  color: #010e32;
}
.faq__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.faq__cta {
  padding: 10px 16px;
  font-size: 1.5vh;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}
.faq .accordion {
  gap: 12px;
  width: 100%;
  margin: 0;
}
.faq .accordion__item {
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.faq .accordion__item.is-open {
  border-color: rgba(29, 175, 247, 0.45);
}
.faq .accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
}
.faq .accordion__trigger {
  padding: 24px 28px;
}
.faq .accordion__icon {
  flex-shrink: 0;
  width: 14px;
  height: 8px;
  color: #010e32;
  transition: transform 0.3s ease;
}
.faq .accordion__answer {
  padding: 0 28px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.6;
  color: #363636;
}
.faq .accordion__answer > p {
  margin: 0;
}

.footer {
  padding: 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.4fr;
  gap: 40px;
  padding: 48px 56px;
  border-radius: 40px 40px 0 0;
  background: #ffffff;
  box-shadow: 0 -4px 24px rgba(1, 14, 50, 0.04);
}
.footer__logo {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: "Bounded", sans-serif;
  font-size: 2.2vh;
  font-weight: 700;
  line-height: 1.2;
}
.footer__logo-text {
  color: #010e32;
}
.footer__logo-accent {
  background: linear-gradient(90deg, #1daff7 0%, #0059aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.footer__desc {
  max-width: 280px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.6;
  color: #363636;
}
.footer__heading {
  margin-bottom: 20px;
  font-family: "Bounded", sans-serif;
  font-size: 1.7vh;
  font-weight: 700;
  line-height: 1.3;
  color: #010e32;
}
.footer__links, .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.footer__link, .footer__contact {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.5;
  color: #363636;
  transition: color 0.2s;
}
.footer__link:hover, .footer__contact:hover {
  color: #1daff7;
}
.footer__form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
}
.footer__input {
  flex: 1;
  min-width: 0;
  padding: 12px 20px;
  border: none;
  border-radius: 60px;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  color: #010e32;
  outline: none;
}
.footer__input::placeholder {
  color: #9aa8b8;
}
.footer__submit {
  flex-shrink: 0;
  padding: 12px 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--left {
  transform: translateX(-32px);
}
.reveal--right {
  transform: translateX(32px);
}
.reveal--scale {
  transform: translateY(20px) scale(0.97);
}
.reveal.is-visible.reveal--left, .reveal.is-visible.reveal--right, .reveal.is-visible.reveal--scale {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
.container {
  padding: 0 60px;
}

.page {
  min-height: 100vh;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
  .hero {
    padding-left: 40px;
    align-items: center;
  }
  .hero__visual {
    width: 100%;
  }
  .header__nav {
    gap: 24px;
  }
  .problems__desc {
    width: 40%;
  }
  .product-slide {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 44%);
    gap: 20px;
    padding: 22px;
  }
  .how-it-works__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq .accordion {
    width: 100%;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 40px;
  }
  .footer__col--subscribe {
    grid-column: 1/-1;
  }
}
@media (max-width: 1030px) {
  .container {
    padding: 0 20px;
  }
  .hero {
    height: auto;
    min-height: auto;
    padding: 150px 32px 60px;
    align-items: center;
  }
  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .hero__content {
    width: 100%;
  }
  .hero__text {
    max-width: 100%;
  }
  .hero__visual {
    width: 100%;
    justify-content: center;
  }
  .container.hero__inner {
    padding: 0;
  }
  .header__container {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px;
    margin: 0 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
    z-index: 2;
  }
  .header.is-menu-open {
    z-index: 200;
    padding-top: 0;
    background: #ffffff;
  }
  .header.is-menu-open .header__container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 210;
    margin: 0;
    padding: 20px 20px 14px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 1px 0 rgba(1, 14, 50, 0.06);
    max-width: 100%;
  }
  .header.is-menu-open .header__inner {
    background: #ffffff;
  }
  .header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .header__inner {
    width: 100%;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    z-index: 2;
  }
  .header__logo,
  .header__burger {
    position: relative;
    z-index: 3;
  }
  .header__burger {
    display: flex;
    background: transparent;
  }
  .header.is-menu-open .header__burger {
    background: transparent;
  }
  .header__menu {
    position: fixed;
    top: var(--header-offset, 72px);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - var(--header-offset, 72px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 0;
    padding-bottom: 32px;
    background: #ffffff;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 200;
  }
  .header__menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .header__nav-link {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(1, 14, 50, 0.06);
  }
  .header__nav-link--dropdown {
    border-bottom: none;
  }
  .header__actions-inner {
    display: none;
  }
  .header__actions--menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 16px 24px 0;
    margin-top: auto;
  }
  .header__actions--menu .btn {
    width: 100%;
    justify-content: center;
  }
  .problems {
    padding: 60px 0 80px;
  }
  .problems__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }
  .problems__desc {
    width: 100%;
    padding-top: 0;
  }
  .problems__body {
    grid-template-columns: 1fr;
  }
  .problems__left {
    position: static;
  }
  .chat {
    min-height: 360px;
    max-height: none;
  }
  .products {
    padding: 60px 0 80px;
  }
  .product-slide {
    grid-template-columns: 1fr;
  }
  .calculator__card {
    padding: 18px 20px;
  }
  .calculator__head {
    flex-direction: column;
    gap: 8px;
  }
  .calculator__hint {
    max-width: none;
    text-align: left;
  }
  .calculator__subtitle {
    width: 100%;
    max-width: none;
  }
  .calculator__cost-list {
    grid-template-columns: 1fr 1fr;
  }
  .calculator__fields {
    grid-template-columns: 1fr 1fr;
  }
  .calculator__field--salary {
    width: 100%;
    justify-content: space-between;
  }
  .calculator__field--salary .calculator__input {
    width: 120px;
  }
  .calculator__results {
    grid-template-columns: 1fr;
  }
  .how-it-works {
    padding: 60px 0 80px;
  }
  .how-it-works__list {
    grid-template-columns: 1fr;
  }
  .faq {
    padding: 60px 0 80px;
  }
  .faq__groups,
  .faq__banner {
    width: 100%;
  }
  .faq__banner-benefits {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 36px 32px;
  }
}
@media (max-width: 760px) {
  .container {
    padding: 0 20px;
  }
  .hero {
    padding: 120px 0px 0px;
  }
  .hero__title {
    font-size: 5vh;
  }
  .hero__content {
    padding: 0 20px;
  }
  .header {
    padding-top: 12px;
  }
  .header__container {
    padding: 12px 16px;
  }
  .problems {
    padding: 48px 0 64px;
  }
  .problems__left {
    padding: 16px;
    border-radius: 24px;
  }
  .problems__quote {
    flex-direction: column;
    padding: 20px;
  }
  .accordion__trigger {
    padding: 16px 20px;
    align-items: flex-start;
  }
  .accordion__content {
    padding: 0 20px 20px;
  }
  .accordion__block--solution {
    flex-direction: column;
    align-items: stretch;
  }
  .accordion__solution-title {
    white-space: normal;
  }
  .accordion__scheme {
    grid-template-columns: 1fr;
  }
  .accordion__scheme-bridge {
    flex-direction: row;
    min-width: 0;
    padding: 4px 0;
  }
  .accordion__scheme-bridge-line {
    width: auto;
    height: 2px;
    flex: 1;
    min-height: 0;
    background: linear-gradient(90deg, rgba(29, 175, 247, 0.15), #1daff7, rgba(29, 175, 247, 0.15));
  }
  .accordion__scheme-bridge-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .accordion__params,
  .accordion__compare,
  .accordion__results {
    grid-template-columns: 1fr;
  }
  .accordion__msg--user {
    max-width: 100%;
  }
  .products {
    padding: 48px 0 64px;
  }
  .products__title svg {
    width: 60%;
  }
  .product-tabs__tab {
    padding: 12px 14px;
  }
  .product-slide {
    padding: 18px;
    border-radius: 20px;
  }
  .product-slide__title {
    font-size: 18px;
  }
  .product-slide__quote {
    font-size: 12px;
  }
  .calculator {
    padding-bottom: 48px;
  }
  .calculator__title {
    font-size: clamp(20px, 4vh, 28px);
  }
  .calculator__card {
    padding: 16px;
    border-radius: 18px;
  }
  .calculator__fields {
    grid-template-columns: 1fr;
  }
  .calculator__result-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .calculator__result-list li strong {
    text-align: left;
  }
  .how-it-works {
    padding: 48px 0 64px;
  }
  .how-it-works__card {
    padding: 24px;
    border-radius: 20px;
  }
  .faq {
    padding: 48px 0 64px;
  }
  .faq__group + .faq__group {
    margin-top: 36px;
    padding-top: 32px;
  }
  .faq__group-title {
    margin-bottom: 18px;
  }
  .faq .accordion__trigger {
    padding: 18px 20px;
  }
  .faq .accordion__answer {
    padding: 0 20px 18px;
  }
  .faq__banner {
    margin-top: 48px;
    padding: 28px 20px;
  }
  .faq__actions {
    flex-direction: column;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 20px;
    border-radius: 24px 24px 0 0;
  }
  .footer__desc {
    max-width: 100%;
  }
  .footer__form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    padding: 12px;
  }
  .footer__input {
    padding: 12px 16px;
  }
  .footer__submit {
    width: 100%;
    justify-content: center;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */
