:root {
  --primary: #1e6ef2;
  --text-light: #ffffff;
  --text-dark: #1d1d1f;
  --text-muted: rgba(29, 29, 31, 0.7);
  --btn-ghost-bg: #f8f8f9;
  --btn-ghost-text: #1e1e1e;
  --hero-overlay: rgba(10, 30, 58, 0.6);
  --hero-overlay-soft: rgba(10, 30, 58, 0.25);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
}

section,
footer {
  scroll-margin-top: 96px;
}

.nowrap {
  white-space: nowrap;
}

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

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

.hero {
  min-height: 100vh;
  margin-top: 0;
  padding: 68px 0 0;
  color: var(--text-light);
  background-image:
    linear-gradient(110deg, var(--hero-overlay) 0%, var(--hero-overlay-soft) 55%, rgba(10, 30, 58, 0) 100%),
    url("assets/hero-adaptive.png");
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
}

.hero__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero__header {
  height: 68px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 240ms ease, backdrop-filter 240ms ease;
}

.hero__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hero__nav {
  display: none;
  align-items: center;
  gap: 8px;
}

.hero__nav-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  -webkit-font-smoothing: antialiased;
  color: var(--text-light);
  text-decoration: none;
  height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 180ms ease, opacity 180ms ease;
}

.hero__nav-link:hover {
  opacity: 0.85;
}

.hero__header.is-scrolled .hero__nav-link {
  color: var(--text-dark);
}

.hero__header.is-scrolled {
  background-color: rgba(240, 243, 247, 0.5);
  backdrop-filter: blur(150px);
  -webkit-backdrop-filter: blur(150px);
}

.hero__logo {
  height: 40px;
}

.hero__logo--desktop {
  display: none;
}

.hero__logo--adaptive {
  display: block;
  height: 40px;
}

.hero__header-cta {
  display: none;
}

.hero__burger {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 0;
  box-shadow: none;
  outline: none;
}

.hero__burger img {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
  align-items: flex-start;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(150px);
  -webkit-backdrop-filter: blur(150px);
  padding: 84px 16px 32px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__panel {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__link {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 8px;
}

.mobile-menu__cta {
  width: 100%;
}

body.is-menu-open {
  overflow: hidden;
}

.hero__content {
  margin-top: 16px;
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}

.hero__content h1 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}

.hero__content p {
  margin: 0 0 48px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.hero__actions .btn--primary {
  order: 0;
}

.hero__actions .btn--secondary {
  order: 1;
}

.btn {
  border-radius: 16px;
  padding: 0 32px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  height: 60px;
  width: 100%;
  white-space: nowrap;
  text-decoration: none;
}

.hero__header-cta.btn {
  min-height: 40px;
  height: 40px;
  padding: 0 16px;
  width: auto;
  min-width: 0;
}

.btn--primary {
  background: #0078ff;
  color: #ffffff;
  box-shadow: none;
}

.btn--ghost {
  background: var(--btn-ghost-bg);
  color: var(--btn-ghost-text);
}

.btn--secondary {
  background: #ffffff;
  color: var(--btn-ghost-text);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn--secondary:hover {
  background: #f5f5f6;
  border-color: rgba(0, 0, 0, 0.08);
}

.btn--secondary:active {
  background: #ededf0;
  border-color: rgba(0, 0, 0, 0.12);
}

.btn--secondary:focus-visible {
  outline: 2px solid rgba(30, 110, 242, 0.35);
  outline-offset: 2px;
}

.service {
  margin-top: 120px;
  padding: 0 0 120px;
  background-color: #ffffff;
}

.service__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.service__title {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: var(--text-dark);
}

.service__subtitle {
  margin: 0 auto 48px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-muted);
}

.service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service__slider {
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-card__icon {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.service-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: var(--text-dark);
}

.service-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-muted);
}

.service__cta {
  margin: 48px auto 0;
}

.value {
  margin-top: 120px;
  padding: 0 0 120px;
  background-color: #ffffff;
}

.operator {
  margin-top: 120px;
  padding: 0 0 120px;
  background-color: #ffffff;
}

.solutions {
  margin-top: 120px;
  padding: 0 0 120px;
  background-color: #ffffff;
}

.formats {
  margin-top: 120px;
  padding: 0 0 120px;
  background-color: #ffffff;
}

.formats__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.formats__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.formats-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.formats-card {
  background: #f8f8f9;
  border-radius: 32px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.formats-card--wide {
  padding: 0 0 0 24px;
  min-height: 310px;
  border-radius: 32px;
  position: relative;
}

.formats-card__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  align-items: stretch;
}

.formats-card__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px 28px 0;
}

.formats-card__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--text-dark);
}

.formats-card__title--small {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.formats-card__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #888888;
}

.formats-card__cta {
  align-self: stretch;
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

.formats-card__image {
  width: 100%;
  max-width: 310px;
  height: 310px;
  margin: 0 0 0 auto;
  object-fit: contain;
}

.formats-dimensions {
  margin: auto 0 0;
  display: grid;
  gap: 16px;
}

.formats-dimensions__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #888888;
  height: 24px;
}

.formats-dimensions__row dt {
  margin: 0;
  font-weight: 400;
  color: #888888;
}

.formats-dimensions__row dd {
  margin: 0;
  font-weight: 400;
}

.formats-card--metric {
  justify-content: space-between;
}

.formats-card__metric {
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
  color: var(--text-dark);
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 12px;
}

.formats-card__metric sup {
  font-size: 0.6em;
  line-height: 1;
  vertical-align: baseline;
  position: relative;
  top: -0.45em;
}

.formats-card__label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #888888;
  margin-top: auto;
}

.feedback {
  margin-top: 120px;
  padding: 0;
  background-color: #ffffff;
}

.feedback__panel {
  width: calc(100% - 32px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 16px;
  background-color: #f8f8f9;
  border-radius: 32px;
}

@media (max-width: 1023px) {
  .feedback__panel {
    padding: 32px 16px;
  }
}

.faq {
  margin-top: 120px;
  padding: 0 0 120px;
  background-color: #ffffff;
}

.feedback__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.feedback__title {
  margin: 0 0 40px;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: var(--text-dark);
}

.feedback__subtitle {
  margin: -24px 0 32px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
}

.feedback__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
}

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

.feedback__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.feedback__field--wide {
  grid-column: 1 / -1;
}

.feedback__label {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-muted);
}

.feedback__input {
  height: 60px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 0 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.feedback__textarea {
  min-height: 120px;
  height: auto;
  padding: 14px 20px;
  resize: vertical;
}

.feedback__input:focus-visible {
  outline: 2px solid rgba(30, 110, 242, 0.35);
  outline-offset: 2px;
}

.feedback__submit {
  width: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  gap: 12px;
}

.feedback__submit-loader {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 160ms ease, transform 160ms ease;
}

.feedback__submit.is-loading .feedback__submit-loader {
  opacity: 1;
  transform: scale(1);
  animation: feedback-spin 0.9s linear infinite;
}

.feedback__submit.is-loading .feedback__submit-text {
  opacity: 0.7;
}

@keyframes feedback-spin {
  to {
    transform: rotate(360deg);
  }
}

.feedback__status {
  min-height: 22px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  background: #f6f7f9;
  color: var(--text-muted);
}

.feedback__status[data-status="success"] {
  background: #e8f6ee;
  color: #0b7a3d;
}

.feedback__status[data-status="error"] {
  background: #fdecec;
  color: #b42318;
}

.feedback__submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.feedback__legal {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(29, 29, 31, 0.55);
  text-align: center;
}

.feedback__legal-link {
  color: var(--text-dark);
  text-decoration: none;
}

.feedback__legal-link:hover {
  color: var(--primary);
}


.legal-page {
  min-height: 100vh;
  background: #ffffff;
  color: var(--text-dark);
}

.legal-page .hero__header {
  background-color: rgba(240, 243, 247, 0.85);
  backdrop-filter: blur(150px);
  -webkit-backdrop-filter: blur(150px);
}

.legal-page .hero__nav-link {
  color: var(--text-dark);
}

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

.legal__header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(245, 246, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.legal__header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal__logo {
  height: 28px;
}

.legal__back {
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
}

.legal__back:hover {
  text-decoration: underline;
}

.legal__content {
  width: 100%;
  margin: 0 auto;
  padding: 120px 20px 160px;
}

.legal__card {
  max-width: 704px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.legal__title {
  margin: 0 0 40px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.legal__updated {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.legal__section {
  margin-bottom: 48px;
}

.legal__section h2 {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.4;
}

.legal__section h2 + h3 {
  margin-top: 0;
}

.legal__section h3 {
  margin: 24px 0 16px;
  font-size: 18px;
  line-height: 1.4;
}

.legal__section p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.legal__section a {
  color: var(--text-dark);
  text-decoration: none;
}

.legal__section a:hover {
  color: var(--primary);
}

.legal__muted {
  color: #888888;
}

.legal__section p + p,
.legal__section p + ul,
.legal__section ul + p {
  margin-top: 12px;
}

.legal__section p + ul,
.legal__section h3 + ul {
  margin-top: 24px;
}

.legal__section ul {
  margin: 12px 0 0 20px;
  padding: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.legal__list--plain {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.legal__list--plain li::marker {
  content: "";
}

.legal__floating-back {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 12;
  width: auto;
  min-height: 52px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(14, 18, 28, 0.2);
}

.legal__floating-back:hover {
  filter: brightness(0.97);
}

.legal-page .footer {
  padding-bottom: 120px;
}

@media (max-width: 1023px) {
  .formats-card--wide {
    padding: 24px;
  }

  .formats-card--wide .formats-card__content {
    flex-direction: column;
    gap: 12px;
  }

  .formats-card--wide .formats-card__text {
    order: 1;
    padding: 0;
    gap: 8px;
  }

  .formats-card--wide .formats-card__image {
    order: 2;
    width: 100%;
    max-width: none;
    height: 343px;
    margin: 0;
  }

  .formats-card--wide .formats-card__cta {
    order: 3;
  }

  .formats-card--metric {
    min-height: 120px;
  }

  .formats-card__metric {
    font-size: 32px;
    line-height: 36px;
  }

  .formats-card--horizont-dim,
  .formats-card--rostok-dim {
    min-height: 204px;
  }

  .formats-card__title--small {
    margin-bottom: 16px;
  }

  .formats-dimensions {
    margin: 16px 0 0;
  }

  .formats-card__title,
  .formats-card__title--small,
  .formats-card--wide .formats-card__title {
    font-size: 32px;
    line-height: 36px;
  }

  .formats-card__image {
    margin: 0;
    align-self: flex-start;
  }

  .formats-card--horizont {
    order: 1;
  }

  .formats-card--horizont-dim {
    order: 2;
  }

  .formats-card--horizont-area {
    order: 3;
  }

  .formats-card--rostok {
    order: 4;
  }

  .formats-card--rostok-dim {
    order: 5;
  }

  .formats-card--rostok-area {
    order: 6;
  }

  .feedback__grid {
    grid-template-columns: 1fr;
  }

  .feedback__title {
    font-size: 32px;
    line-height: 36px;
  }

  .feedback__subtitle {
    margin: -16px 0 24px;
  }
}

.value__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  overflow: visible;
}

.operator__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.value__slider {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.value-card {
  background: #f8f8f9;
  border-radius: 24px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px #f8f8f9;
  pointer-events: none;
}

.value-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--text-dark);
}

.value-card__title--compact {
  font-size: 16px;
  line-height: 1.4;
}

.operator .value-card__title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.value-card__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: var(--media-height, 344px);
  width: 100%;
}

.value-card__media picture {
  display: block;
}
.value-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 24px 24px 0 0;
  box-shadow: none;
}

.value-card--template .value-card__media {
  justify-content: flex-start;
}

.value-card--template .value-card__photo {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left bottom;
}

@media (max-width: 1023px) {
  .value-card--template .value-card__media {
    overflow: hidden;
  }

  .value-card--template .value-card__photo {
    margin-bottom: -17px;
  }
}

.value-card__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.value-card--large {
  min-height: 0;
  padding-bottom: 0;
  gap: 16px;
}

.value-card--large .value-card__media {
  margin-bottom: 0;
}

.value-card--template {
  flex: 1;
}

.value-card--template .value-card__media {
  flex: 1;
  height: auto;
}

.value-card--compact {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  min-height: 0;
  height: auto;
}

.value-card--compact .value-card__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}

.value-card--compact-wide {
  min-height: 0;
}

.operator-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-dark);
  overflow-wrap: anywhere;
}

.operator-card__media {
  margin-top: auto;
}

.operator-card--photo {
  --media-height: 320px;
  gap: 12px;
}

.operator-card--graphic {
  --media-height: 124px;
  gap: 12px;
}

.operator-card--photo .value-card__media,
.operator-card--graphic .value-card__media {
  margin-top: 24px;
  margin-left: -24px;
  margin-right: -24px;
  width: calc(100% + 48px);
}

.operator-card--photo .value-card__photo,
.operator-card--graphic .value-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0 0 24px 24px;
}

.operator-card--fill {
  flex: 1;
}

.operator-card--text {
  min-height: 198px;
  justify-content: space-between;
}

.operator-card--text .operator-card__text {
  margin-top: auto;
}

.value__slider {
  width: 100%;
}

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

.value-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  align-self: stretch;
}

.value__dots {
  margin-top: 24px;
}

.service__dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.solutions__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.solutions__title {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: var(--text-dark);
}

.solutions__subtitle {
  margin: 0 auto 48px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-muted);
}

.solutions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.solutions-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: #f8f8f9;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: left;
  height: 100%;
}

.solutions-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
  margin-bottom: 0;
  box-shadow: inset 0 0 0 4px #f8f8f9;
}

.solutions-card__body {
  display: flex;
  flex-direction: column;
  padding: 20px 24px 24px;
  flex: 1;
}

.solutions-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: var(--text-dark);
}

.solutions-card__subtitle {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #888888;
}

.solutions-card__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-dark);
}

.solutions-card__cta {
  margin-top: auto;
  width: 100%;
  min-width: 0;
}

.footer {
  margin-top: 120px;
  padding: 64px 0 72px;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
  line-height: 20px;
}

.footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer__title {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-muted);
}

.footer__telegram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  cursor: pointer;
}

.footer__telegram-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%);
}

.footer__telegram-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: inherit;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer__phone {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-dark);
}

.footer__email {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-dark);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  max-width: 420px;
}

.footer__legal-text {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-muted);
}

.footer__legal-item {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
}

.footer__telegram:hover,
.footer__phone:hover,
.footer__email:hover,
.footer__legal-item:hover {
  color: var(--primary);
}

.footer__telegram:hover .footer__telegram-icon {
  filter: brightness(0) saturate(100%) invert(33%) sepia(86%)
    saturate(2011%) hue-rotate(199deg) brightness(97%) contrast(101%);
}

.faq__inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.faq__title {
  margin: 0 0 40px;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: var(--text-dark);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  border-top: 1px solid #eef1f4;
}

.faq-item {
  border-bottom: 1px solid #eef1f4;
  padding: 0;
}

.faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background-image: url("assets/Open.svg");
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-item[open] .faq-item__icon {
  background-image: url("assets/Collaps.svg");
}

.faq-item__answer {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
  max-width: 900px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 280ms ease, opacity 200ms ease, margin-bottom 280ms ease;
  will-change: height, opacity;
}

.service__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: #c6c6c6;
  transition: width 360ms ease, background 360ms ease, transform 360ms ease;
}

.service__dot.is-active {
  width: 24px;
  height: 6px;
  background: var(--primary);
}

@media (min-width: 768px) {
  .hero {
    min-height: 680px;
    margin-top: 0;
    padding: 68px 0 0;
    background-image:
      linear-gradient(140deg, rgba(20, 52, 96, 0.78) 0%, rgba(20, 52, 96, 0.35) 55%, rgba(20, 52, 96, 0) 100%),
      url("assets/hero-adaptive.png");
  }

  .hero__inner {
    padding: 0 40px;
  }

  .hero__header {
    height: 68px;
  }

  .hero__header-inner {
    padding: 0 40px;
  }

  .hero__content {
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 520px;
    padding-bottom: 24px;
    flex: 1;
  }

  .hero__content h1 {
    font-size: 32px;
    line-height: 36px;
  }

  .hero__content p {
    font-size: 18px;
    line-height: 1.4;
  }

  .hero__actions {
    gap: 16px;
    margin-top: auto;
  }

  .service__inner {
    padding: 0 32px;
  }

  .service__subtitle {
    font-size: 18px;
  }

  .service__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .solutions__inner {
    padding: 0 32px;
  }

  .formats__inner {
    padding: 0 32px;
  }

  .formats-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .formats-card--wide {
    grid-column: span 2;
  }

  .operator__inner {
    padding: 0 32px;
  }

  .solutions__subtitle {
    font-size: 18px;
  }

  .faq__inner {
    padding: 0 32px;
  }

  .footer__inner {
    padding: 0 32px;
  }

  .value__inner {
    padding: 0;
  }

  .value__slider {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .value__track {
    grid-template-columns: repeat(3, 384px);
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  .operator .value-card__title {
    font-size: 32px;
    line-height: 36px;
  }

  .operator .value-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }


  .value__track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: stretch;
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding: 0 16px;
  }

  .value__track::-webkit-scrollbar {
    display: none;
  }

  .value-column {
    flex: 0 0 min(384px, calc(100% - 32px));
    width: min(384px, calc(100% - 32px));
    max-width: min(384px, calc(100% - 32px));
    scroll-snap-align: start;
    scroll-snap-stop: always;
    gap: 8px;
    justify-content: space-between;
    align-self: stretch;
  }

  .value-column--middle .value-card--template {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .value-column--middle .value-card__media {
    height: auto;
  }

  .value-card--template {
  }

  .value-card__media {
    justify-content: flex-start;
    height: auto;
  }

  .value-card__photo {
    width: 303px;
    height: 344px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left bottom;
  }

  .value-card--template .value-card__photo {
    height: 464px;
  }

  .service__grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .service__grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(0.98);
    will-change: transform;
  }

  .service-card.is-active {
    transform: scale(1);
  }

  .service__dots {
    display: flex;
  }

  .faq-item__summary {
    padding: 20px 0;
  }

  .faq-item__question {
    font-size: 18px;
  }

  .faq-item__answer {
    margin-bottom: 20px;
  }

  .footer {
    margin-top: 80px;
    padding: 48px 0 56px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 80px;
  }

  .footer__contacts,
  .footer__legal {
    align-items: flex-start;
    text-align: left;
  }

  .footer__telegram {
    justify-content: flex-start;
  }

  .footer__legal {
    max-width: 520px;
  }
}

@media (max-width: 374px) {
  .value-card__media {
    height: auto;
  }

  .value-card__photo {
    width: 100%;
    height: auto;
  }

  .value-card--template .value-card__photo {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 820px;
    padding: 68px 0 0;
    background-image:
      linear-gradient(110deg, rgba(12, 26, 45, 0.7) 0%, rgba(12, 26, 45, 0.3) 55%, rgba(12, 26, 45, 0) 100%),
      url("assets/hero-desktop.png");
  }

  .hero__inner {
    max-width: 1280px;
    padding: 0 40px;
  }

  .hero__logo--desktop {
    display: block;
  }

  .hero__logo--adaptive {
    display: none;
  }

  .hero__header-cta {
    display: inline-flex;
  }

  .hero__burger {
    display: none;
  }

  .hero__nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .mobile-menu {
    display: none;
  }

  .hero__content {
    margin-top: auto;
    margin-bottom: 0;
    text-align: left;
    margin-left: 0;
    max-width: 685px;
    padding-bottom: 80px;
    flex: 0 0 auto;
  }

  .hero__content h1 {
    font-size: 48px;
    line-height: 1.2;
  }

  .hero__content p {
    font-size: 18px;
    line-height: 1.4;
  }

  .hero__actions {
    flex-direction: row;
    width: auto;
    gap: 16px;
  }

  .btn {
    width: auto;
    min-width: 200px;
  }

  .hero__actions .btn--primary {
    order: 0;
  }

  .hero__actions .btn--secondary {
    order: 1;
  }

  .service__inner {
    padding: 0 40px;
  }

  .service__title {
    font-size: 48px;
    line-height: 56px;
  }

  .service__subtitle {
    font-size: 18px;
  }

  .service__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .service__subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
    max-width: 480px;
  }

  .service__cta {
    margin-top: 40px;
  }

  .solutions__inner {
    padding: 0 40px;
  }

  .formats__inner {
    padding: 0 40px;
  }

  .formats-group {
    grid-template-columns: 588px 282px 282px;
    justify-content: center;
  }

  .formats-card--wide {
    grid-column: auto;
    height: 310px;
    padding: 24px 300px 24px 24px;
  }

  .formats-card:not(.formats-card--wide) {
    height: 310px;
  }

  .formats-card__content {
    flex-direction: row;
    align-items: center;
  }

  .formats-card__text {
    flex: 1;
  }

  .formats-card__image {
    flex: 0 0 310px;
    width: 310px;
    max-width: 310px;
    margin: 0;
    height: 100%;
  }

  .formats-card--wide .formats-card__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
  }

.formats-card--wide .formats-card__text {
  max-width: 264px;
  padding: 0;
  gap: 8px;
  flex: 1;
  height: 100%;
}

  .formats-card--wide .formats-card__title {
    font-size: 40px;
    line-height: 48px;
  }

  .formats-card__title--small {
    font-size: 40px;
    line-height: 48px;
  }

  .formats-card--wide .formats-card__image {
    position: absolute;
    right: 0;
    top: 0;
    width: 310px;
    height: 310px;
    margin: 0;
    flex: 0 0 auto;
  }

  .formats-card__cta {
    width: 215px;
    min-height: 60px;
    height: 60px;
    padding: 18px 32px;
    border-radius: 16px;
    background: #ffffff;
    align-self: flex-start;
  }

  .operator__inner {
    padding: 0 40px;
  }

  .solutions__title {
    font-size: 48px;
    line-height: 56px;
  }

  .solutions__subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
    max-width: 480px;
  }

  .solutions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .solutions-card {
    padding: 0;
  }

  .faq__inner {
    padding: 0 40px;
  }

  .footer__inner {
    padding: 0 40px;
  }

  .faq-item__summary {
    padding: 32px 0;
  }

  .faq-item__question {
    font-size: 22px;
  }

  .value__inner {
    padding: 0;
  }

  .value__slider {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .value-card--large {
    gap: 24px;
  }

  .operator-card--photo,
  .operator-card--graphic {
    gap: 12px;
  }
}

.cookie-snackbar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 16px;
  margin: 0 auto;
  width: fit-content;
  max-width: calc(100vw - 24px);
  padding: 6px 8px 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ffffff;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  font-size: 12px;
  line-height: 16px;
  color: rgba(29, 29, 31, 0.7);
  opacity: 0;
  transform: translate(-50%, 8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 20;
}

.cookie-snackbar.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
  pointer-events: auto;
}

.cookie-snackbar__text {
  margin: 0;
}

.cookie-snackbar__link {
  color: var(--text-dark);
  text-decoration: none;
}

.cookie-snackbar__close {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.cookie-snackbar__close img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.cookie-snackbar__link:hover,
.cookie-snackbar__close:hover img {
  color: var(--primary);
  opacity: 1;
}

@media (max-width: 1023px) {
.hero__header-cta {
  display: none;
  min-height: 40px;
  height: 40px;
  padding: 0 16px;
}

  .hero__burger {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .hero__burger img {
    filter: brightness(0) saturate(100%);
  }
}

@media (min-width: 1440px) {
  .hero {
    padding: 0;
  }

  .hero__content {
    max-width: 685px;
  }
}

@media (max-width: 767px) {
  .legal__card {
    padding: 0;
    border-radius: 0;
    max-width: 100%;
  }

  .legal__title {
    font-size: 28px;
  }

  .legal__content {
    padding: 96px 16px 140px;
  }

  .legal__floating-back {
    width: calc(100% - 32px);
  }

}
