:root {
  --accent: #44c4a1;
  --accent-light: #51c8a8;
  --accent-dark: #2f9d7f;
  --bg-light: #f5f6fa;
  --bg-mid: #e9eaed;
  --text: #1a2332;
  --text-muted: #5c6b7a;
  --card: #ffffff;
  --border: rgba(68, 196, 161, 0.28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  background-color: #f5f6fa;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background-color: #f5f6fa;
  background-image:
    radial-gradient(circle at 14% 6%, rgba(68, 196, 161, 0.14), transparent 30%),
    radial-gradient(circle at 88% 3%, rgba(81, 200, 168, 0.08), transparent 26%),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f9fc 5%,
      var(--bg-light) 12%,
      #e3e7ee 22%,
      #c5ccd6 34%,
      #9aa4b0 46%,
      #727c88 58%,
      #4f5863 70%,
      #343b44 82%,
      #1c2026 92%,
      #0a0b0b 100%
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page {
  width: min(1200px, 100%);
  min-width: 0;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-inline: clamp(12px, 2.4vw, 28px);
  text-align: center;
}

.site-header {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  text-align: left;
}

.logo-wrap {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  width: clamp(140px, 28vw, 280px);
  max-width: 100%;
}

.site-header .logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(26, 35, 50, 0.1));
  display: block;
}

.logo {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(26, 35, 50, 0.1));
  display: block;
}

.menu-toggle {
  display: none;
  margin: 0;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--accent);
  padding: 14px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(68, 196, 161, 0.12);
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

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

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header-contact__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent-dark);
}

.header-contact:hover .header-contact__icon {
  color: var(--accent);
}

.header-phone .header-contact__text {
  white-space: nowrap;
}

.menu {
  list-style: none;
  display: flex;
  gap: 10px;
  width: auto;
  justify-content: flex-end;
}

.menu-link {
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(26, 35, 50, 0.1);
  background: rgba(255, 255, 255, 0.75);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.menu-link:hover,
.menu-link.active {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: rgba(68, 196, 161, 0.1);
}

.logo {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(26, 35, 50, 0.1));
  display: block;
}

.bars-icon,
.bars-icon::before,
.bars-icon::after {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bars-icon {
  position: relative;
}

.bars-icon::before,
.bars-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.bars-icon::before {
  top: -8px;
}

.bars-icon::after {
  top: 8px;
}

.menu-toggle[aria-expanded="true"] .bars-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .bars-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .bars-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 16px 48px rgba(26, 35, 50, 0.08);
  min-width: 0;
  max-width: 100%;
}

.badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.lead {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}

.progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(26, 35, 50, 0.08);
  overflow: hidden;
  margin-bottom: 28px;
}

.progress-bar {
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
  animation: pulse 2.4s ease-in-out infinite;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.contact-link {
  color: var(--text);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(26, 35, 50, 0.1);
  background: var(--bg-light);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.contact-link:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: rgba(68, 196, 161, 0.08);
  transform: translateY(-1px);
}

.card.hardware {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0a0b0b;
  border-color: rgba(68, 196, 161, 0.18);
  color: #f4f4f4;
  padding: clamp(48px, 6vw, 90px) clamp(24px, 3vw, 40px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.hardware__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hardware__bg-layer {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
}

.hardware__bg-layer--far {
  animation: hardwareBgDriftFar 64s ease-in-out infinite;
  opacity: 0.72;
}

.hardware__bg-layer--near {
  animation: hardwareBgDriftNear 38s ease-in-out infinite reverse;
  opacity: 0.95;
}

.hardware__bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 42%, rgba(10, 11, 11, 0.45) 74%, #0a0b0b 90%);
  pointer-events: none;
}

.hardware > :not(.hardware__bg) {
  position: relative;
  z-index: 1;
}

.hardware {
  --hardware-gap: 25px;
  --hardware-radius: 30px;
  --hardware-bg: #0a0b0b;
  --hardware-card: #191919;
  --hardware-text: #f4f4f4;
  --hardware-text-muted: #bcbcbc;
  --hardware-shadow: rgba(0, 0, 0, 0.4);

  display: grid;
  gap: clamp(28px, 4vw, 40px);
  text-align: left;
}

.hardware__header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hardware__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.15;
  color: var(--hardware-text);
  font-weight: 500;
}

.hardware__description {
  margin: 0;
  color: var(--hardware-text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 300;
}

.hardware__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  gap: var(--hardware-gap);
  align-items: stretch;
}

.hardware__item.i1 {
  grid-column: 1 / 5;
  grid-row: 1;
}

.hardware__item.i2 {
  grid-column: 1 / 5;
  grid-row: 2;
}

.hardware__item.i3 {
  grid-column: 5 / 9;
  grid-row: 1 / 3;
}

.hardware__item.i4 {
  grid-column: 9 / 13;
  grid-row: 1;
}

.hardware__item.i5 {
  grid-column: 9 / 13;
  grid-row: 2;
}

.hardware__item.i6 {
  grid-column: 1 / 9;
  grid-row: 3;
}

.hardware__note {
  grid-column: 9 / 13;
  grid-row: 3;
  text-align: left;
}

.hardware__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 24px 22px 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--hardware-radius);
  background: var(--hardware-card);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hardware__note {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 24px 22px;
  border: 0;
  border-radius: var(--hardware-radius);
  background: linear-gradient(145deg, #2f9d7f 0%, #44c4a1 52%, #51c8a8 100%);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hardware__item:hover {
  transform: translateY(-2px);
  border-color: rgba(68, 196, 161, 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.hardware__note:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(68, 196, 161, 0.22);
}

.hardware__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(68, 196, 161, 0.16), transparent 58%);
  pointer-events: none;
}

.hardware__item-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.hardware__item-title {
  margin: 0 0 14px;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--hardware-text);
  position: relative;
  z-index: 2;
  text-align: center;
  font-weight: 500;
}

.hardware__note-title {
  margin: 0 0 14px;
  font-size: 1.08rem;
  line-height: 1.4;
  color: #ffffff;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.hardware__note-text {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  position: relative;
  z-index: 2;
  max-width: 100%;
  font-weight: 300;
}

.hardware__note-img {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: min(140px, 55%);
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.hardware__item-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 -8px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  order: 2;
  flex: 1 1 auto;
  min-height: 0;
}

.hardware__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(180px, 24vh);
  object-fit: contain;
  object-position: bottom;
  transform: scale(1);
  transform-origin: bottom center;
  transition: transform 0.35s ease;
  -webkit-filter: drop-shadow(-5px 10px 15px var(--hardware-shadow));
  filter: drop-shadow(-5px 10px 15px var(--hardware-shadow));
}

.hardware__item.i3 .hardware__item-body {
  margin-top: 0;
  justify-content: center;
}

.hardware__item.i3 .hardware__item-image {
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  margin: 8px 0 16px;
}

.hardware__item.i3 .hardware__item-image img {
  max-height: min(460px, 56vh);
  object-position: center;
}

.hardware__item.i6 .hardware__item-image {
  margin-bottom: 0;
}

.hardware__item.i6 .hardware__item-image img {
  max-height: min(200px, 26vh);
}

.hardware__item-link {
  order: 1;
  align-self: center;
  margin: 0;
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    max-height 0.3s ease,
    margin 0.3s ease,
    color 0.2s ease,
    text-shadow 0.2s ease;
}

@media (hover: hover) {
  .hardware__item:hover .hardware__item-link,
  .hardware__item:focus-within .hardware__item-link {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 2em;
    margin-bottom: 12px;
    overflow: visible;
    pointer-events: auto;
  }

  .hardware__item:hover .hardware__item-image img,
  .hardware__item:focus-within .hardware__item-image img {
    transform: scale(0.86);
  }
}

@media (hover: none) {
  .hardware__item-link {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: none;
    margin-bottom: 12px;
    overflow: visible;
    pointer-events: auto;
  }
}

.hardware__item-link:hover {
  color: var(--accent-light);
  background: transparent;
  box-shadow: none;
  text-shadow:
    0 0 12px rgba(68, 196, 161, 0.55),
    0 0 28px rgba(68, 196, 161, 0.35);
}

.hardware__note-message {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.hardware__note-message-label {
  font-weight: 700;
  color: #ffffff;
}

.hardware__note-message-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hardware__note-social {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-dark);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.hardware__note-social svg {
  width: 20px;
  height: 20px;
}

.hardware__note-social:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: rgba(68, 196, 161, 0.08);
  box-shadow: 0 14px 30px rgba(68, 196, 161, 0.18);
}

.hardware__note-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hardware__note-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid rgba(26, 35, 50, 0.1);
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.hardware__note-link:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: rgba(68, 196, 161, 0.08);
  transform: translateY(-1px);
}

.hardware__note-link--accent {
  border-color: transparent;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(68, 196, 161, 0.24);
}

.hardware__note-link--accent:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
}

.about-content {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  text-align: left;
}

.about-content__image {
  display: block;
  margin: 0;
}

.about-content__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(26, 35, 50, 0.08);
}

.about-content__title {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  line-height: 1.35;
  color: var(--text);
}

.about-content__description {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-content__quote {
  margin: 0;
  padding: 18px 20px 18px 22px;
  border-left: 4px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: linear-gradient(90deg, rgba(68, 196, 161, 0.1), rgba(68, 196, 161, 0.03));
}

.about-content__quote p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 500;
}

.card.advantages {
  background: #0a0b0b;
  border-color: rgba(68, 196, 161, 0.18);
  color: #f4f4f4;
  padding: clamp(48px, 6vw, 90px) clamp(24px, 3vw, 40px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.advantages {
  margin-top: 24px;
  text-align: left;
}

.advantages__header {
  margin-bottom: 28px;
  text-align: center;
}

.advantages__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  color: #f4f4f4;
  font-weight: 500;
}

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

.advantages__item {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  background: #191919;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.advantages__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(68, 196, 161, 0.14), transparent 58%);
  pointer-events: none;
}

.advantages__item:hover {
  border-color: rgba(68, 196, 161, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.advantages__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--accent);
  background: rgba(68, 196, 161, 0.16);
}

.advantages__icon svg {
  width: 24px;
  height: 24px;
}

.advantages__item-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #f4f4f4;
  font-weight: 500;
}

.advantages__item-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #bcbcbc;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 300;
}

.advantages__action {
  margin-top: 28px;
  text-align: center;
}

.advantages__button {
  display: inline-block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.advantages__button:hover {
  color: var(--accent);
  background: transparent;
  box-shadow: none;
  text-shadow:
    0 0 12px rgba(68, 196, 161, 0.55),
    0 0 28px rgba(68, 196, 161, 0.35);
}

.clients {
  margin-top: 24px;
  text-align: left;
}

.clients__header {
  margin-bottom: 24px;
  text-align: center;
}

.clients__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--text);
}

.clients__slider {
  display: grid;
  gap: 14px;
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.clients__slider::before,
.clients__slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 56px;
  width: 24px;
  z-index: 1;
  pointer-events: none;
}

.clients__slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--card) 15%, rgba(255, 255, 255, 0));
}

.clients__slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--card) 15%, rgba(255, 255, 255, 0));
}

.clients__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  min-width: 0;
  max-width: 100%;
  padding: 4px 2px 8px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.clients__track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.clients__track.is-dragging .clients__item {
  pointer-events: none;
}

.clients__scrollbar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clients__scrollbar-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(68, 196, 161, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f3fbf8 100%);
  color: var(--accent-dark);
  box-shadow: 0 6px 16px rgba(68, 196, 161, 0.14);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.clients__scrollbar-btn svg {
  width: 18px;
  height: 18px;
}

.clients__scrollbar-btn:hover {
  border-color: var(--accent);
  background: rgba(68, 196, 161, 0.12);
  box-shadow: 0 8px 20px rgba(68, 196, 161, 0.22);
  transform: translateY(-1px);
}

.clients__scrollbar-btn:active {
  transform: translateY(0);
}

.clients__scrollbar-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.clients__scrollbar-rail-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  padding: 6px 0;
}

.clients__scrollbar-rail {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 50%, rgba(68, 196, 161, 0.14), transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(81, 200, 168, 0.1), transparent 55%),
    linear-gradient(90deg, rgba(68, 196, 161, 0.06), rgba(81, 200, 168, 0.03) 50%, rgba(68, 196, 161, 0.06));
  border: 1px solid rgba(68, 196, 161, 0.2);
  box-shadow:
    inset 0 2px 6px rgba(26, 35, 50, 0.07),
    inset 0 -1px 0 rgba(255, 255, 255, 0.65);
}

.clients__scrollbar-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  min-width: 64px;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, transparent 42%),
    linear-gradient(90deg, var(--accent-dark), var(--accent) 45%, var(--accent-light) 100%);
  box-shadow:
    0 4px 16px rgba(68, 196, 161, 0.38),
    0 0 0 1px rgba(47, 157, 127, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transform: translateY(-50%);
  cursor: grab;
  transition: box-shadow 0.2s ease, height 0.2s ease, filter 0.2s ease;
}

.clients__scrollbar-thumb:hover {
  height: 14px;
  filter: brightness(1.03);
  box-shadow:
    0 6px 22px rgba(68, 196, 161, 0.45),
    0 0 0 1px rgba(47, 157, 127, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.clients__scrollbar-thumb.is-dragging {
  height: 15px;
  cursor: grabbing;
  filter: brightness(1.05);
}

.clients__scrollbar.is-hidden {
  opacity: 0.35;
  pointer-events: none;
}

.clients__scrollbar.is-at-start .clients__scrollbar-btn--prev,
.clients__scrollbar.is-at-end .clients__scrollbar-btn--next {
  opacity: 0.35;
  pointer-events: none;
}

.clients__item {
  flex: 0 0 min(300px, 82vw);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.clients__item:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 35, 50, 0.08);
}

.clients__image {
  display: block;
}

.clients__image img {
  display: block;
  width: 100%;
  height: 96px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
}

.clients__text {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.card.brands {
  margin-top: 24px;
  background: #0a0b0b;
  border-color: rgba(68, 196, 161, 0.18);
  color: #f4f4f4;
  overflow: hidden;
  padding: clamp(40px, 5vw, 56px) clamp(24px, 3vw, 40px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.brands__header {
  margin-bottom: clamp(28px, 4vw, 36px);
  text-align: center;
}

.brands__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  color: #f4f4f4;
  font-weight: 500;
}

.brands__slider {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.brands__row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brands__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: brandsMarquee 48s linear infinite;
  will-change: transform;
}

.brands__track--alt {
  animation-duration: 54s;
}

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  flex-shrink: 0;
  margin-right: 10px;
  min-height: 52px;
}

.brands__image {
  display: block;
  width: 100%;
}

.brands__image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 44px;
  margin: 0 auto;
  object-fit: contain;
}

@keyframes brandsMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .brands__row {
    mask-image: none;
    overflow: visible;
  }

  .brands__slider {
    gap: 12px;
  }
}

.site-footer {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
  padding: 0 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #f4f4f4;
  text-align: left;
}

.site-footer::before {
  content: "";
  display: block;
  width: min(720px, 88%);
  height: 3px;
  margin: 0 auto 32px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(47, 157, 127, 0.25) 18%,
    var(--accent-dark) 38%,
    var(--accent) 50%,
    var(--accent-light) 62%,
    rgba(47, 157, 127, 0.25) 82%,
    transparent 100%
  );
  box-shadow: 0 0 18px rgba(68, 196, 161, 0.28);
}

.site-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--border);
}

.site-footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(20px, 2.4vw, 32px);
  padding-bottom: 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0 45px;
  align-items: start;
}

.site-footer__brand {
  min-width: 0;
}

.site-footer__logo {
  display: block;
  margin-bottom: 30px;
}

.site-footer__logo .logo {
  width: auto;
  max-width: 200px;
  height: auto;
  filter: none;
}

.site-footer__tagline {
  max-width: 254px;
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #f4f4f4;
}

.site-footer__nav {
  font-size: 14px;
  line-height: 24px;
}

.site-footer__nav a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.site-footer__divider {
  width: 1px;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

.site-footer__info {
  min-width: 0;
  padding-left: 25px;
}

.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  margin-bottom: 50px;
}

.site-footer__block-title {
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f4f4f4;
}

.site-footer__block-text {
  font-size: 14px;
  line-height: 24px;
  color: #bcbcbc;
}

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

.site-footer__block-text a:hover {
  color: var(--accent);
}

.site-footer__legal a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
}

.site-footer__legal a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.site-disclaimer {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  padding: 24px 0 28px;
  background: transparent;
  text-align: left;
}

.site-disclaimer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(20px, 2.4vw, 32px);
}

.site-disclaimer__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #bcbcbc;
}

.site-disclaimer__text a {
  color: var(--accent);
  text-decoration: none;
}

.site-disclaimer__text a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.content-block {
  text-align: left;
}

.content-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
}

.content-text {
  color: var(--text-muted);
  line-height: 1.7;
}

#company-details .content-text,
#company-details .details-signature {
  text-align: left;
}

.content-block .content-nav {
  margin-bottom: 22px;
  text-align: left;
}

.content-block .content-nav .menu {
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.section-anchor {
  margin-top: 18px;
  padding-top: 8px;
}

.details-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.details-item {
  padding: 12px 14px;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 12px;
  background: #f8fafc;
  color: var(--text);
  line-height: 1.6;
}

.details-label {
  font-weight: 700;
  color: var(--accent-dark);
}

.legal-doc__body {
  display: grid;
  gap: 16px;
}

.legal-doc__body h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  margin-top: 8px;
  color: var(--text);
}

.legal-doc__terms {
  display: grid;
  gap: 14px;
  margin: 0;
}

.legal-doc__terms dt {
  font-weight: 700;
  color: var(--accent-dark);
}

.legal-doc__terms dd {
  margin: 4px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-doc__terms a {
  color: var(--accent-dark);
  text-decoration: none;
}

.legal-doc__terms a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.legal-doc__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: grid;
  gap: 8px;
}

.legal-doc__footnotes {
  margin: 8px 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  display: grid;
  gap: 8px;
}

.details-signature {
  margin-top: 18px;
  font-weight: 600;
  color: var(--text);
}

.details-main-text {
  margin-top: 0;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.72;
  }
}

@keyframes hardwareBgDriftFar {
  0%,
  100% {
    transform: translate3d(-2%, -1.5%, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(2%, 1.5%, 0) rotate(0.6deg);
  }
}

@keyframes hardwareBgDriftNear {
  0%,
  100% {
    transform: translate3d(1.5%, -2%, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-1.5%, 2%, 0) rotate(-0.8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hardware__bg-layer {
    animation: none !important;
  }
}

@media (max-width: 991px) {
  .hardware__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 18px;
  }

  .hardware__item.i1,
  .hardware__item.i2,
  .hardware__item.i3,
  .hardware__item.i4,
  .hardware__item.i5,
  .hardware__item.i6,
  .hardware__note {
    grid-column: auto;
    grid-row: auto;
  }

  .hardware__item.i3 {
    grid-column: 1 / -1;
  }

  .hardware__item.i3 .hardware__item-image img {
    max-height: min(360px, 44vh);
  }

  .hardware__note {
    grid-column: 1 / -1;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

  .site-footer__grid {
    grid-template-columns: minmax(0, 40%) auto minmax(0, 60%);
    gap: 0 20px;
  }

  .site-footer__info {
    padding-left: 0;
  }

  .site-footer__row {
    gap: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 900px) {
  .header-contact {
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
  }

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

  .header-contact__icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 600px) {
  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .logo-wrap {
    width: clamp(120px, 38vw, 160px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(26, 35, 50, 0.1);
    background: var(--bg-light);
    box-shadow: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  }

  .menu-toggle:hover {
    color: var(--accent-dark);
    border-color: var(--accent);
    background: rgba(68, 196, 161, 0.08);
    transform: translateY(-1px);
  }

  .menu-toggle .bars-icon,
  .menu-toggle .bars-icon::before,
  .menu-toggle .bars-icon::after {
    width: 20px;
  }

  .menu-toggle .bars-icon::before {
    top: -7px;
  }

  .menu-toggle .bars-icon::after {
    top: 7px;
  }

  .header-nav {
    margin-left: 0;
    gap: 6px;
    justify-self: end;
  }

  .header-contacts {
    gap: 6px;
  }

  .header-nav .menu {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(26, 35, 50, 0.12);
    z-index: 10;
  }

  .header-nav .menu.is-open {
    display: flex;
  }

  .header-nav .menu-link {
    width: auto;
    text-align: right;
  }

  .content-block .content-nav .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .card {
    padding: 32px 20px;
  }

  .hardware {
    gap: 22px;
  }

  .hardware__title {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }

  .hardware__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hardware__item.i1,
  .hardware__item.i2,
  .hardware__item.i3,
  .hardware__item.i4,
  .hardware__item.i5,
  .hardware__item.i6,
  .hardware__note {
    grid-column: auto;
    grid-row: auto;
  }

  .hardware__item {
    padding-bottom: 0;
  }

  .hardware__note {
    padding: 20px 18px;
    background-image: url("../images/hardware/note-direction.svg"), linear-gradient(145deg, #2f9d7f 0%, #44c4a1 52%, #51c8a8 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: right bottom, center;
    background-size: min(180px, 55%) auto, cover;
  }

  .hardware__note-img {
    display: none;
  }

  .hardware__note-message-actions {
    flex-direction: row;
    flex-wrap: nowrap;
  }

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

  .site-footer {
    padding: 0;
  }

  .site-footer::before {
    width: min(520px, 92%);
    margin-bottom: 24px;
  }

  .site-footer__container {
    padding-bottom: 24px;
  }

  .site-disclaimer {
    padding: 20px 0 20px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__divider {
    display: none;
  }

  .site-footer__info {
    padding-left: 0;
    margin-top: 40px;
  }

  .site-footer__logo {
    margin-bottom: 20px;
  }

  .site-footer__tagline {
    margin-bottom: 20px;
  }

  .site-footer__row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }

  .site-footer__block-title {
    margin-bottom: 10px;
  }

  .clients__slider::before,
  .clients__slider::after {
    bottom: 52px;
    width: 16px;
  }

  .clients__scrollbar-controls {
    gap: 8px;
  }

  .clients__scrollbar-btn {
    width: 34px;
    height: 34px;
  }
}

.cookie-message {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1000;
  width: min(680px, calc(100% - 32px));
  transform: translateX(-50%) translateY(calc(100% + 32px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.cookie-message.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-message-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 24px;
  border-radius: 999px;
  background: #1a1a1a;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.38);
}

.cookie-message-text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #d8dce3;
}

.cookie-message-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-message-text a:hover {
  color: #fff;
}

.cookie-message .btn.small {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-message .btn.small:hover {
  background: var(--accent);
}

.cookie-message .btn.small:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .cookie-message {
    bottom: 16px;
    width: calc(100% - 24px);
  }

  .cookie-message-inner {
    gap: 12px;
    padding: 14px 14px 14px 18px;
  }

  .cookie-message-text {
    font-size: 13px;
  }

  .cookie-message .btn.small {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-message {
    transition: none;
  }
}
