@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
  padding: 0;
}

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

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #020617;
  color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

.container {
  max-width: 1520px;
  margin: 0 auto;
}

section {
  scroll-margin-top: 50px;
}

.btn {
  padding: 10px 24px;
  border-radius: 12px;
  background: #0e92d4;
  color: #f8fafc;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: all 0.2s;
}
.btn:hover {
  background: rgba(14, 146, 212, 0.8);
}
.btn:focus {
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #0e92d4;
}
.btn--blur::before {
  content: "";
  position: absolute;
  background: url(/assets/img/gradient_button.png) center no-repeat;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  pointer-events: none;
  background-position: 58%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  pointer-events: none;
}

.blur {
  position: absolute;
  width: 230px;
  height: 200px;
  border-radius: 50%;
  filter: blur(160px);
}
.blur--blue {
  background: #0e92d4;
}
.blur--purple {
  background: #7458f2;
}
.blur--pink {
  background: #c016e6;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(51, 65, 85, 0.5019607843);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.navbar__container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo {
  flex-shrink: 0;
}
.navbar__logo img {
  height: 64px;
  width: auto;
}
.navbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 20px;
}
.navbar__link {
  font-size: 16px;
  font-weight: 600;
  color: #f8fafc;
  transition: color 0.2s;
  white-space: nowrap;
}
.navbar__link:hover {
  color: #cbd5e1;
}
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 14px;
  border: 1px solid #64748B;
  border-radius: 10px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #64748B;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.navbar__mobile .navbar__link {
  font-size: 16px;
}
.navbar__mobile.is-open {
  display: flex;
}

.hero {
  min-height: 67vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  background: #020617;
}
.hero__container {
  width: 100%;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero__text {
  flex: 0 0 auto;
  width: 34%;
}
.hero__title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: #f8fafc;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #cbd5e1;
}
.hero__video-wrap {
  flex: 1 1 auto;
  position: relative;
  border-radius: 20px;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #1a1f2e;
}
.hero__video-wrap::before {
  content: "";
  position: absolute;
  background: url(../assets/img/gradient.svg) center no-repeat;
  background-size: contain;
  top: -150px;
  bottom: -150px;
  right: -150px;
  left: -150px;
  width: 135%;
  height: 145%;
  margin: auto;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}
.hero .btn {
  display: none;
}

.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.popup.is-open {
  display: flex;
}
.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.popup__inner {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 1600px;
  background: #0b1120;
  animation: popupIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.popup__close {
  position: absolute;
  top: -10px;
  right: -8.5vw;
  z-index: 10;
  width: 10%;
  height: 10%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  opacity: 0.8;
}
.popup__close svg {
  width: 8vh;
  height: auto;
}
.popup__close:hover {
  opacity: 1;
}
.popup__video-wrap {
  aspect-ratio: 16/9;
  width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}
.popup__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.title {
  text-align: center;
  padding-bottom: 56px;
}

.title-color {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  -webkit-text-fill-color: transparent;
  text-align: center;
  color: transparent;
}
.title-color--big {
  background: linear-gradient(90deg, #4fb6f5 0%, #c239e1 5%, #4fb6f5 30%, #9b39e1 40%, #4fb6f5 70%, #c239e1 95%);
  background-clip: text;
}
.title-color--short {
  background: linear-gradient(60deg, #c239e1 0%, #4fb6f5 30%, #9b39e1 40%, #4fb6f5 60%);
  background-clip: text;
}
.title-color__sub {
  font-size: 16px;
  color: #cbd5e1;
  font-weight: 400;
}

.why {
  padding: 56px 0;
  position: relative;
}
.why .blur {
  top: 0;
  bottom: 0;
  right: -70px;
  margin: auto;
}
.why__container {
  margin: 0 auto;
  padding: 0 32px;
}
.why__head {
  text-align: center;
  margin-bottom: 56px;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.why__grid .why__card:nth-child(-n+3) {
  grid-column: span 2;
}
.why__grid .why__card:nth-child(4),
.why__grid .why__card:nth-child(5) {
  grid-column: span 3;
}
.why__card {
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why__card:first-child .why__card-desc {
  max-width: 12vw;
}
.why__card-stat {
  font-size: 20px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 12px;
  line-height: 1.35;
}
.why__card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 20vw;
}

.catalog {
  padding: 56px 0;
}
.catalog__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.catalog__head {
  text-align: center;
  margin-bottom: 56px;
}
.catalog__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  text-align: center;
}
.catalog__title--blue {
  color: #4fa3e0;
}
.catalog__title--purple {
  color: #7c5cbf;
}
.catalog__sub {
  font-size: 15px;
  color: #cbd5e1;
}
.catalog__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 56px;
  text-align: center;
}
.catalog__feature {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.catalog__feature-icon {
  margin-bottom: 24px;
  width: 36px;
  height: 36px;
}
.catalog__feature-icon.interactive {
  background: url(../assets/img/catalog.svg) center/contain no-repeat;
}
.catalog__feature-icon.brand {
  background: url(../assets/img/brand.svg) center/contain no-repeat;
}
.catalog__feature-icon.interface {
  background: url(../assets/img/interface.svg) center/contain no-repeat;
}
.catalog__feature-icon svg {
  width: 36px;
  height: 36px;
  opacity: 0.85;
  color: #94a3b8;
}
.catalog__feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 8px;
  line-height: 1.35;
}
.catalog__feature-desc {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 24px;
  width: 70%;
}
.catalog__body {
  display: grid;
  grid-template-columns: 1fr 140px 0.5fr;
  gap: 26px;
  align-items: start;
  padding: 0 32px;
}
.catalog__grid-wrap {
  padding-right: 30px;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 10px;
}
.catalog__theme {
  display: flex;
  flex-direction: column;
  background: #1b2536;
  border: 1px solid #334155;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  text-align: left;
  padding: 0;
  width: 100%;
}
.catalog__theme:hover {
  background: #334155;
}
.catalog__theme.is-active {
  box-shadow: 0 0 24px #3657e0, 0 0 24px #7458f2;
  position: relative;
}
.catalog__theme.is-active::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(90deg, #3657e0 0%, #7458f2 16.83%, #2da6f1 41.83%, #c016e6 75.48%, #2da6f1 97.6%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.catalog__theme:nth-last-child(3) {
  grid-column: 2;
}
.catalog__theme:nth-last-child(2) {
  grid-column: 3;
}
.catalog__theme:nth-last-child(1) {
  grid-column: 4;
}
.catalog__videos-row {
  display: contents;
}
.catalog__theme-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1f2e;
  height: auto;
  aspect-ratio: 3/3.5;
}
.catalog__theme-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog__theme-img img[style*="display:none"] + .catalog__theme-placeholder, .catalog__theme-img img[style*="display: none"] + .catalog__theme-placeholder {
  display: flex;
}
.catalog__theme-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 0;
}
.catalog__theme-name {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #f8fafc;
  padding: 24px 10px;
  line-height: 1.3;
  text-align: center;
  margin: auto;
}
.catalog__preview-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #334155;
  align-self: stretch;
  min-height: 300px;
  padding: 0 10px;
}
.catalog__preview-video {
  width: 135%;
  height: 135%;
  object-fit: contain;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.catalog__preview-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(180deg, #1a3a8f 0%, #4a90d9 100%);
}
.catalog__showcase-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0e1a;
  border: 1px solid #334155;
  align-self: stretch;
  min-height: 400px;
}
.catalog__showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.catalog__showcase-placeholder {
  position: absolute;
  inset: 0;
}
.catalog__showcase-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.install {
  padding: 56px 0;
  position: relative;
}
.install .blur {
  top: 0;
  bottom: 0;
  left: -70px;
  margin: auto;
}
.install__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.install__head {
  text-align: center;
  margin-bottom: 64px;
}
.install__steps {
  display: flex;
  flex-direction: column;
}
.install__step {
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 36px;
}
.install__icon-wrap {
  grid-column: 1;
  grid-row: 1;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #020617;
  z-index: 1;
  position: relative;
}
.install__icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(90deg, #3657e0 0%, #7458f2 16.83%, #2da6f1 41.83%, #c016e6 75.48%, #2da6f1 97.6%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.install__icon {
  width: 40px;
  height: 40px;
  color: #94a3b8;
  display: block;
}
.install__connector {
  grid-column: 1;
  grid-row: 2;
  width: 1px;
  margin: 0 auto;
  min-height: 32px;
  position: relative;
}
.install__connector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(90deg, #3657e0 0%, #7458f2 16.83%, #2da6f1 41.83%, #c016e6 75.48%, #2da6f1 97.6%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.install__content {
  grid-column: 2;
  grid-row: 1/3;
  padding-bottom: 32px;
}
.install__step--last .install__content {
  padding-bottom: 0;
}
.install__step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.35;
}
.install__step-desc {
  font-size: 20px;
  font-weight: 400;
  color: #cbd5e1;
  line-height: 30px;
}

.diagram {
  padding: 96px 0 80px;
  position: relative;
}
.diagram .blur--purple {
  top: 30%;
  left: -50px;
}
.diagram .blur--blue {
  bottom: 5%;
  right: -50px;
}
.diagram__container {
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.diagram__head {
  text-align: center;
  margin-bottom: 56px;
}
.diagram__title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.diagram__title--blue {
  color: #4fa3e0;
}
.diagram__title--purple {
  color: #7c5cbf;
}
.diagram__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}
.diagram__stage {
  position: relative;
  width: 100%;
  user-select: none;
}
.diagram__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.diagram__text {
  position: absolute;
  left: var(--lx);
  top: var(--ly);
  color: #cbd5e1;
  font-size: 14px;
  width: 80px;
  text-align: center;
}
.diagram__label {
  position: absolute;
  left: var(--lx);
  top: var(--ly);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1b2536;
  border: 1px solid #94a3b8;
  border-radius: 12px;
  padding: 8px 14px 8px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  z-index: 2;
  max-width: 180px;
  min-height: 40px;
}
.diagram__label--small {
  max-width: 160px;
}
.diagram__label:hover, .diagram__label.is-active {
  background: #334155;
}
.diagram__label-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-align: left;
  margin-right: 20px;
}
.diagram__label-icon {
  width: 20px;
  height: 20px;
  background: url(../assets/img/diagram.svg) center/contain no-repeat;
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.diagram__tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  background: #334155;
  border-radius: 10px;
  padding: 14px 16px 16px;
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  text-align: left;
  white-space: normal;
  color: #f8fafc;
  font-size: 16px;
  line-height: 24px;
}
.diagram__tooltip-arrow {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 14px;
}
.diagram__tooltip-arrow::before {
  content: "";
  position: absolute;
  vertical-align: middle;
  margin: 0 5px;
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 15px solid #334155;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
}
.diagram__label.is-active .diagram__tooltip {
  display: block;
  animation: tooltipIn 0.18s ease both;
}
.diagram__label.tooltip-flip .diagram__tooltip {
  bottom: auto;
  top: calc(100% + 12px);
}
.diagram__label.tooltip-flip .diagram__tooltip-arrow {
  bottom: auto;
  top: -7px;
  transform: translateX(-50%) scaleY(-1);
}
.diagram__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, #020617 100%);
}
.diagram__mobile {
  background: #1b2536;
  border-radius: 20px;
  display: none;
}
.diagram__mobile img {
  margin: 0 auto;
  padding: 20px 0;
}
.diagram .diagram__label[data-title="IR Illuminators"] {
  --lx: 10%;
  --ly: 38%;
}
.diagram .diagram__label[data-title="Monitoring Camera"] {
  --lx: 17.5%;
  --ly: 47.8%;
}
.diagram .diagram__label[data-title="[Ei] Switch"] {
  --lx: 25%;
  --ly: 61%;
}
.diagram .diagram__label[data-title="Lane Tracker"] {
  --lx: 13%;
  --ly: 70%;
}
.diagram .diagram__label[data-title=Projectors] {
  --lx: 14%;
  --ly: 82%;
}
.diagram .diagram__label[data-title="Projection Media Player"] {
  --lx: 23%;
  --ly: 85%;
}
.diagram .diagram__text:nth-of-type(1) {
  --lx: 4%;
  --ly: 65%;
}
.diagram .diagram__text:nth-of-type(2) {
  --lx: 9%;
  --ly: 61%;
}
.diagram .diagram__text:nth-of-type(3) {
  --lx: 14.3%;
  --ly: 56%;
}
.diagram .diagram__text:nth-of-type(4) {
  --lx: 24%;
  --ly: 50.5%;
}
.diagram .diagram__text:nth-of-type(5) {
  --lx: 54.5%;
  --ly: 39%;
}

.cases {
  padding: 96px 0;
  position: relative;
}
.cases .blur {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  right: -50px;
  z-index: -1;
}
.cases .title {
  padding-bottom: 20px;
}
.cases__head {
  text-align: center;
  margin-bottom: 52px;
}
.cases__title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cases__title--blue {
  color: #4fa3e0;
}
.cases__title--purple {
  color: #7c5cbf;
}
.cases__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}
.cases__slider {
  position: relative;
  margin-top: 20px;
}
.cases__slide {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  padding: 0 4px;
  outline: none;
}
.cases__slide-title {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 600;
  text-align: center;
}
.cases__info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cases__info-card {
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 22px 24px 24px;
}
.cases__info-label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cases__info-list {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 24px;
}
.cases__info-list li {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.55;
  position: relative;
}
.cases__info-list li strong {
  color: #fff;
  font-weight: 700;
}
.cases__videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cases__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 💥 ключевая строка */
  display: block;
}
.cases__video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cases__video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.cases__video-thumb img + .cases__video-placeholder {
  display: none;
}
.cases__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.cases__play-btn svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s;
}
.cases__slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.cases__slider .slick-dots li {
  margin: 0;
  line-height: 0;
}
.cases__slider .slick-dots li button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #c8d1db;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0;
  transition: background 0.2s, transform 0.2s;
}
.cases__slider .slick-dots li button::before {
  display: none;
}
.cases__slider .slick-dots li.slick-active button {
  background: #0e92d4;
}
.cases__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.cases__arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}
.cases__arrow:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(20, 32, 64, 0.9);
  color: #fff;
}
.cases__arrow--prev {
  left: -52px;
}
.cases__arrow--next {
  right: -52px;
}

.cases__video-thumb {
  position: relative;
  cursor: pointer;
}

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

.cases__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.cases__play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.cases__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.cases__video-thumb.is-playing .cases__play-btn {
  opacity: 0;
  pointer-events: none;
}

.contact__container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 10px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.footer {
  border-top: 1px solid #334155;
  padding: 28px 0;
}
.footer__container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__logo img {
  height: 64px;
  width: auto;
}
.footer__copy {
  font-size: 16px;
}
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__follow {
  font-size: 20px;
  font-weight: 600;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid #94a3b8;
  border-radius: 12px;
  transition: color 0.2s, transform 0.2s;
}
.footer__social svg {
  width: 24px;
  height: 24px;
}
.footer__social:hover {
  color: #fff;
}

@keyframes tooltipIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 0;
  visibility: hidden;
}

#preloader.is-visible {
  opacity: 1;
  visibility: visible;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  width: 140px;
  animation: preloader-pulse 1.4s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.96);
  }
}
/* =============================================
   VIDEO LOADING STATE (catalog)
   ============================================= */
.catalog__preview-wrap,
.catalog__showcase-wrap {
  position: relative;
  transition: opacity 0.15s;
}

/* Spinner overlay */
.catalog__preview-wrap.is-loading::after,
.catalog__showcase-wrap.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.55);
  border-radius: inherit;
  z-index: 2;
  /* spinner via border trick */
  width: 36px;
  height: 36px;
  margin: auto;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Smooth fade for the video itself */
.catalog__preview-video,
.catalog__showcase-video {
  transition: opacity 0.3s ease;
}

@media (max-width: 1280px) {
  .catalog__theme-name {
    font-size: 14px;
  }
  .catalog__grid-wrap {
    padding-right: 0;
  }
}
@media (max-width: 1100px) {
  .cases__arrow--prev {
    left: -20px;
  }
  .cases__arrow--next {
    right: -20px;
  }
}
@media (max-width: 1024px) {
  .popup__inner {
    width: 84vw;
  }
  .why,
  .install {
    padding: 32px 0;
  }
  .cases {
    padding: 32px 20px;
  }
  .diagram {
    padding: 0 0 32px;
  }
  .title {
    padding-bottom: 40px;
  }
  .navbar .btn {
    padding: 10px;
  }
  .hero {
    min-height: 52vh;
  }
  .hero__container {
    gap: 30px;
    padding: 40px 20px;
  }
  .why__card {
    padding: 20px 16px;
  }
  .why__card-desc, .why__card:first-child .why__card-desc {
    max-width: 100%;
  }
  .catalog__theme-name {
    font-size: 14px;
    padding: 12px 4px;
  }
  .catalog__feature-desc {
    width: 100%;
  }
  .catalog__features {
    gap: 20px;
  }
  .diagram__container {
    padding: 0;
  }
  .diagram .title {
    padding: 40px 20px 40px;
  }
  .cases__arrow {
    display: none !important;
  }
  .cases__slider {
    padding-right: 20px;
  }
}
@media (max-width: 900px) {
  .navbar__container {
    padding: 0 10px;
    gap: 10px;
  }
  .navbar__logo img {
    height: 45px;
  }
  .navbar__nav {
    gap: 20px;
  }
  .navbar__link {
    font-size: 14px;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
  .why__grid .why__card {
    grid-column: auto;
  }
  .why__grid .why__card:nth-child(-n+3) {
    grid-column: span 3;
  }
  .catalog__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 0 16px;
  }
  .catalog__grid-wrap {
    width: 100%;
    overflow: hidden;
    scrollbar-width: none;
  }
  .catalog__grid-wrap::-webkit-scrollbar {
    display: none;
  }
  .catalog__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: max-content;
    padding: 20px 16px;
  }
  .catalog__theme {
    flex-shrink: 0;
    width: 220px;
    flex-direction: row;
    align-items: center;
    padding: 5px 0 5px 10px;
  }
  .catalog__theme-img {
    width: 90px;
    height: 62px;
    aspect-ratio: unset;
    border-radius: 8px;
    background-color: none;
  }
  .catalog__theme-name {
    font-size: 18px;
  }
  .catalog__videos-row {
    display: grid;
    grid-template-columns: 0.6fr 2fr;
    gap: 16px;
    align-items: stretch;
    width: 100%;
    padding-right: 24px;
  }
  .catalog__preview-wrap, .catalog__showcase-wrap {
    min-height: 720px;
    align-self: stretch;
  }
  .cases {
    padding: 32px 0 32px 20px;
  }
  .cases__info-card {
    padding: 14px 24px 14px 14px;
  }
  .diagram__label, .diagram__text {
    display: none;
  }
  .diagram__mobile {
    display: block;
  }
  .diagram .blur {
    display: none;
  }
}
@media (max-width: 768px) {
  .navbar__nav {
    display: none;
  }
  .navbar__burger {
    display: flex;
  }
  .hero__container {
    flex-direction: column;
    align-items: center;
    padding: 54px 20px;
    gap: 40px;
  }
  .hero__text {
    width: 100%;
    text-align: center;
  }
  .hero__video-wrap {
    width: 100%;
  }
  .hero__desc {
    font-size: 16px;
  }
  .why__container {
    padding: 0 20px;
  }
  .catalog__features {
    padding: 0 20px 40px;
  }
  .catalog__container {
    padding: 0 20px;
  }
  .catalog .title, .catalog__features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .cases__arrow {
    display: none !important;
  }
  .cases__slide {
    gap: 12px;
  }
  .cases__slide-title {
    display: none;
  }
  .cases__info-row, .cases__videos {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cases__play-btn svg {
    width: 44px;
    height: 44px;
  }
  .cases__slider.js-cases-slider .slick-dots {
    display: none !important;
  }
  .cases__videos.js-video-slider .slick-dots {
    display: flex !important;
  }
  .cases__tabs {
    display: flex;
    touch-action: pan-x;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    background: #1b2536;
    border-radius: 12px 0 0 12px;
  }
  .cases__tabs::-webkit-scrollbar {
    display: none;
  }
  .cases__tab {
    flex-shrink: 0;
    padding: 10px 16px;
    background: #1b2536;
    color: #f8fafc;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: normal;
    text-align: center;
    max-width: 220px;
    line-height: 1.3;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .cases__tab.is-active {
    background: #334155;
    margin: 5px;
    border-radius: 8px;
  }
  .catalog__preview-wrap, .catalog__showcase-wrap {
    min-height: 550px;
  }
  .catalog__preview-video {
    height: 115%;
  }
}
@media (max-width: 600px) {
  .navbar .btn {
    display: none;
  }
  .hero .btn {
    display: block;
  }
  .why__card-stat {
    font-size: 18px;
  }
  .install {
    padding: 64px 0 72px;
  }
  .install__container {
    padding: 0 20px;
  }
  .install__step {
    grid-template-columns: 56px 1fr;
    column-gap: 20px;
  }
  .install__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }
  .install__icon {
    width: 22px;
    height: 22px;
  }
  .install__content {
    padding: 0 0 20px;
  }
  .install__step-title {
    font-size: 16px;
  }
  .install__step-desc {
    font-size: 14px;
    line-height: 20px;
  }
  .diagram__label-text {
    display: none;
  }
  .diagram__label {
    padding: 5px;
    border-radius: 50%;
    gap: 0;
  }
  .diagram__label-icon {
    width: 22px;
    height: 22px;
  }
  .diagram__tooltip {
    width: 180px;
    left: 0;
    transform: none;
  }
  .diagram__tooltip-arrow {
    left: 20px;
    transform: none;
  }
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
    flex-direction: column-reverse;
    padding: 0 24px;
    gap: 20px;
  }
  .footer__right {
    align-items: flex-start;
  }
  .footer__social {
    width: 60px;
    height: 44px;
  }
}
@media (max-width: 580px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
  .why__card:nth-child(4), .why__card:nth-child(5) {
    grid-column: auto;
    max-width: 100%;
  }
  .catalog__preview-wrap, .catalog__showcase-wrap {
    min-height: 500px;
  }
}
@media (max-width: 420px) {
  .catalog__preview-video {
    height: 100%;
  }
}
@media (hover: none) {
  .hero__video-btn {
    opacity: 0.9;
  }
  .cases__slider {
    touch-action: pan-y;
  }
  .catalog__grid-wrap {
    touch-action: pan-x;
  }
}

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