:root {
  --cyborg-orange: #ff5a1f;
  --cyborg-orange-dark: #d84410;
  --cyborg-ink: #07111d;
  --cyborg-navy: #0b1726;
  --cyborg-slate: #526172;
  --cyborg-line: rgba(13, 30, 47, 0.12);
  --cyborg-surface: #ffffff;
  --cyborg-soft: #f3f6f9;
  --cyborg-radius: 22px;
  --cyborg-shadow: 0 24px 70px rgba(7, 17, 29, 0.12);
}

html {
  scroll-behavior: smooth !important;
}

body {
  background: var(--cyborg-soft);
  color: var(--cyborg-ink);
  font-family: "Avenir Book", "Roboto", sans-serif;
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--cyborg-orange);
  color: #fff;
}

.holder,
.navigation .container-fluid,
.footer .container-fluid {
  max-width: 1220px;
  padding-left: 24px;
  padding-right: 24px;
}

.outer-wrapper {
  background: var(--cyborg-surface);
  margin-bottom: 0;
  margin-top: 76px;
  overflow: hidden;
}

.block {
  padding: 88px 0;
}

.block .header {
  margin-bottom: 44px;
}

.block .title {
  color: var(--cyborg-ink);
  font-family: "Avenir-Heavy", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.block .title::after {
  background: var(--cyborg-orange);
  border-radius: 99px;
  content: "";
  display: block;
  height: 4px;
  margin: 20px auto 0;
  width: 58px;
}

.button,
.btn.button {
  align-items: center;
  background: var(--cyborg-orange);
  border: 1px solid var(--cyborg-orange);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255, 90, 31, 0.22);
  color: #fff !important;
  display: inline-flex;
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 0.78rem;
  justify-content: center;
  letter-spacing: 0.09em;
  min-height: 48px;
  min-width: 170px;
  padding: 13px 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.btn.button:hover,
.btn.button:focus-visible {
  background: var(--cyborg-orange-dark);
  border-color: var(--cyborg-orange-dark);
  box-shadow: 0 16px 34px rgba(255, 90, 31, 0.3);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Navigation */
.navigation {
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 29, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 35px rgba(2, 8, 15, 0.18);
  height: 76px;
  padding: 0;
}

.navigation .container-fluid {
  height: 100%;
}

.navigation .logo {
  display: block;
  flex: 0 0 auto;
  opacity: 1;
  visibility: visible;
  width: 150px;
}

.navigation .logo img {
  display: block;
  max-height: 46px;
  width: 100%;
}

.navigation .list-wrapper {
  margin-left: auto;
}

.navigation .list-wrapper > .list {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
}

.navigation .list li {
  margin-left: 21px;
}

.navigation .list li.li-menu {
  padding: 15px 0;
}

.navigation .list a {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Avenir Book", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 46px;
  position: relative;
  transition: color 180ms ease;
  white-space: nowrap;
}

.navigation .list a:hover,
.navigation .list a:focus-visible {
  color: #fff;
}

.navigation .list li.li-menu > a::before {
  content: none;
  display: none;
}

.navigation .list li.li-menu > a:hover::before {
  display: none;
}

.navigation .submenu-list {
  align-items: stretch;
  background: rgba(11, 23, 38, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  flex-direction: column;
  height: auto;
  justify-content: flex-start;
  min-height: auto;
  max-height: calc(100vh - 96px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
  width: 280px;
  z-index: 1001;
}

.navigation .submenu-list li {
  margin-left: 0;
  width: 100%;
}

.navigation .submenu-list::after {
  display: none;
}

.navigation .submenu-list a {
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.65rem;
  line-height: 1.25;
  padding: 9px 12px;
  text-align: left;
  white-space: normal;
}

.navigation .submenu-list a:hover {
  background: rgba(255, 90, 31, 0.14);
  color: #fff;
}

@media (min-width: 992px) {
  .navigation,
  .navigation .container-fluid,
  .navigation .list-wrapper,
  .navigation .list-wrapper > .list,
  .navigation .list-wrapper > .list > .li-menu {
    overflow: visible;
  }

  .navigation .submenu-list {
    top: 100%;
    transform: translate(-50%, 8px);
  }

  .navigation .list-wrapper > .list > li.li-menu:hover > .submenu-list,
  .navigation .list-wrapper > .list > li.li-menu:focus-within > .submenu-list {
    opacity: 1;
    pointer-events: auto;
    top: 100%;
    transform: translate(-50%, 0);
  }
}

.nav-cta {
  align-items: center;
  background: var(--cyborg-orange);
  border-radius: 999px;
  color: #fff;
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 0.63rem;
  justify-content: center;
  letter-spacing: 0.08em;
  margin-left: 24px;
  min-height: 39px;
  padding: 0 17px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #ff713e;
  color: #fff;
  transform: translateY(-1px);
}

.navigation .toggle-btn {
  border-radius: 10px;
  padding: 10px;
  width: 46px;
}

.navigation .toggle-btn .bar {
  background: #fff;
  border-radius: 99px;
  height: 2px;
}

/* Hero */
.cyborg-hero {
  background:
    linear-gradient(116deg, rgba(5, 13, 23, 0.99) 0%, rgba(8, 21, 36, 0.97) 58%, rgba(5, 13, 23, 0.99) 100%);
  color: #fff;
  isolation: isolate;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  position: relative;
}

.cyborg-hero::before,
.cyborg-hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.cyborg-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  inset: 0;
  mask-image: linear-gradient(to right, transparent, #000 35%, #000 80%, transparent);
}

.cyborg-hero::after {
  background: radial-gradient(circle, rgba(255, 90, 31, 0.18), transparent 68%);
  height: 700px;
  right: -210px;
  top: -180px;
  width: 700px;
}

.hero-glow {
  border: 1px solid rgba(255, 90, 31, 0.15);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.hero-glow-one {
  height: 520px;
  left: -360px;
  top: 26%;
  width: 520px;
}

.hero-glow-two {
  height: 180px;
  right: 12%;
  top: 17%;
  width: 180px;
}

.hero-shell {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  min-height: calc(100vh - 150px);
  padding-bottom: 72px;
  padding-top: 72px;
}

.hero-copy {
  max-width: 690px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  align-items: center;
  color: #ff9a72;
  display: flex;
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 0.72rem;
  gap: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  background: var(--cyborg-orange);
  border-radius: 99px;
  content: "";
  height: 2px;
  width: 38px;
}

.hero-title {
  color: #fff;
  font-family: "Avenir-Heavy", sans-serif;
  font-size: clamp(2.85rem, 4.8vw, 4.75rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0 0 26px;
  max-width: 760px;
  text-shadow: none;
}

.hero-title strong,
.hero-title b {
  color: var(--cyborg-orange);
}

.hero-description {
  color: rgba(234, 241, 248, 0.74);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  margin: 0 0 34px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 36px;
}

.hero-actions .button {
  margin: 0;
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.hero-proof span {
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  font-size: 0.76rem;
  gap: 8px;
}

.hero-proof span::before {
  background: var(--cyborg-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
  content: "";
  height: 6px;
  width: 6px;
}

.hero-visual {
  aspect-ratio: 1 / 1;
  max-width: 520px;
  position: relative;
  width: 100%;
}

.hero-panel {
  backdrop-filter: blur(14px);
  background:
    linear-gradient(145deg, rgba(19, 38, 59, 0.88), rgba(7, 17, 29, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.35);
  left: 50%;
  padding: 42px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(86%, 420px);
  z-index: 2;
}

.hero-panel::before {
  background: linear-gradient(90deg, var(--cyborg-orange), transparent);
  border-radius: 99px;
  content: "";
  height: 2px;
  left: 42px;
  position: absolute;
  right: 42px;
  top: 0;
}

.hero-panel-logo {
  display: block;
  margin-bottom: 48px;
  max-width: 230px;
  width: 72%;
}

.hero-panel-label {
  color: #ff9a72;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-panel-title {
  color: #fff;
  font-family: "Avenir-Heavy", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.hero-panel-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  padding-top: 24px;
}

.hero-panel-grid div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-panel-grid strong {
  color: var(--cyborg-orange);
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 0.78rem;
}

.hero-panel-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
}

.hero-orbit {
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  height: 100%;
  width: 100%;
}

.orbit-two {
  border-color: rgba(255, 255, 255, 0.09);
  height: 74%;
  width: 74%;
}

.hero-node {
  background: var(--cyborg-orange);
  border: 5px solid rgba(255, 90, 31, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 90, 31, 0.65);
  height: 16px;
  position: absolute;
  width: 16px;
}

.node-one {
  right: 7%;
  top: 27%;
}

.node-two {
  bottom: 12%;
  left: 23%;
}

.node-three {
  left: 4%;
  top: 35%;
}

.hero-capabilities {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  position: absolute;
  width: 100%;
}

.hero-capabilities .holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 20px;
  padding-top: 20px;
}

.hero-capabilities span {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0 20px;
  text-align: center;
  text-transform: uppercase;
}

.hero-capabilities span:last-child {
  border-right: 0;
}

/* Content sections */
.block.us {
  background: var(--cyborg-surface);
}

.block.us .main-image {
  border-radius: var(--cyborg-radius);
  box-shadow: var(--cyborg-shadow);
  overflow: visible;
}

.block.us .side-image {
  border: 8px solid #fff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(7, 17, 29, 0.16);
  overflow: hidden;
}

.block.us .inner {
  color: var(--cyborg-slate);
}

.block.us .title {
  margin-left: 0;
  text-align: left;
}

.block.us .title::after {
  margin-left: 0;
}

.block.us .normal-size-title {
  color: var(--cyborg-ink);
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 0.77rem;
  letter-spacing: 0.04em;
}

.block.us .img img {
  filter: saturate(0.9);
  max-height: 46px;
}

.block.services {
  background: var(--cyborg-soft);
}

.block.services a {
  background: var(--cyborg-ink);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(7, 17, 29, 0.12);
  height: 300px;
  max-width: none;
  overflow: hidden;
  position: relative;
}

.block.services .item {
  border-radius: inherit;
}

.block.services .mask {
  background: linear-gradient(to top, rgba(4, 11, 19, 0.92), rgba(4, 11, 19, 0.12));
  opacity: 1;
}

.block.services .label {
  align-self: flex-end;
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: none;
  padding: 28px 22px;
  text-align: left;
  width: 100%;
}

.block.ribbon {
  background: var(--cyborg-orange);
  color: #fff;
  overflow: hidden;
  padding: 82px 0;
  position: relative;
}

.block.ribbon .content {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  position: relative;
}

.block.ribbon .image {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  width: 100%;
}

.block.ribbon .image img {
  border-radius: var(--cyborg-radius);
  box-shadow: 0 28px 70px rgba(7, 17, 29, 0.24);
  display: block;
  height: 390px;
  object-fit: cover;
  width: 100%;
}

.block.ribbon .info {
  background: rgba(7, 17, 29, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--cyborg-radius);
  box-shadow: 0 28px 70px rgba(7, 17, 29, 0.24);
  color: #fff;
  font-family: "Avenir-Heavy", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  grid-column: 2;
  grid-row: 1;
  line-height: 1.15;
  margin-left: -82px;
  padding: 52px;
  position: relative;
  width: auto;
  z-index: 2;
}

.block.ribbon::after {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
  height: 420px;
  position: absolute;
  right: -220px;
  top: -190px;
  width: 420px;
}

.block.rpa-automatization {
  background: #fff;
}

.block.rpa-automatization .bg-highlight-color {
  background: var(--cyborg-ink);
  padding: 28px 0;
}

.block.rpa-automatization .item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  padding: 42px 28px;
}

.block.rpa-automatization .img img {
  border-radius: 14px;
  height: 128px;
  object-fit: cover;
  width: 100%;
}

.block.rpa-automatization h5 {
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.block.rpa-automatization .info {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.block.rpa-automatization .row > [class*="col-"] {
  display: flex;
  padding-bottom: 18px;
  padding-top: 18px;
}

.block.rpa-automatization .item > a {
  color: #ff9a72 !important;
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 24px;
  text-decoration: none;
}

.block.industries {
  background: var(--cyborg-soft);
}

.block.industries .header {
  border-radius: 24px;
  box-shadow: var(--cyborg-shadow);
  overflow: hidden;
}

.block.industries .header .title {
  color: #fff;
  max-width: 780px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.block.industries .header .title::after {
  background: #fff;
}

.block.industries .item {
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(7, 17, 29, 0.12);
  overflow: hidden;
}

.block.industries .flip-front,
.block.industries .flip-back {
  border-radius: inherit;
}

.block.partners,
.block.clients {
  background: #fff;
  padding: 72px 0;
}

.block.clients {
  border-top: 1px solid var(--cyborg-line);
}

.block.partners .thumb,
.block.clients .thumb {
  padding: 12px;
}

.block.partners .image,
.block.clients .image {
  background: #fff;
  border: 1px solid var(--cyborg-line);
  border-radius: 16px;
  min-height: 112px;
  padding: 18px;
}

.block.partners .img-content img,
.block.clients .img-content img {
  filter: grayscale(1);
  opacity: 0.74;
  transition: filter 180ms ease, opacity 180ms ease;
}

.block.partners .image:hover img,
.block.clients .image:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.block.testimonials {
  background: var(--cyborg-navy);
  color: #fff;
  padding: 86px 0;
}

.block.testimonials .testimonial {
  border-left: 3px solid var(--cyborg-orange);
  margin: 0 auto;
  max-width: 880px;
  padding: 12px 12px 12px 36px;
}

.block.testimonials .tes-body {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.block.testimonials .tes-title,
.block.testimonials .tes-author {
  color: #ff9a72;
}

.block.contact {
  background: #fff;
  padding: 90px 0;
}

.block.contact .content {
  background: transparent;
  padding: 0;
}

.block.contact .holder {
  max-width: 960px;
}

.block.contact .body {
  color: var(--cyborg-slate);
  font-size: 1.12rem;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-align: center;
}

.block.contact .body p {
  margin-bottom: 18px;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}

.contact-direct a {
  color: var(--cyborg-orange-dark);
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--cyborg-soft);
  border: 1px solid var(--cyborg-line);
  border-radius: var(--cyborg-radius);
  box-shadow: 0 24px 70px rgba(7, 17, 29, 0.08);
  padding: 34px;
}

.contact-form .input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.contact-form .input-container label {
  color: var(--cyborg-slate);
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
  order: 1;
  text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
  background: #fff;
  border: 1px solid rgba(13, 30, 47, 0.16);
  border-radius: 10px;
  color: var(--cyborg-ink);
  margin-bottom: 0;
  order: 2;
  padding: 12px 14px;
}

.contact-form textarea {
  min-height: 145px;
}

.contact-form input[type="submit"] {
  border-radius: 999px;
  height: 46px;
  max-width: 180px;
}

.block.ebook {
  background: var(--cyborg-soft);
  padding: 80px 0;
}

.block.ebook .row {
  align-items: center;
  background: var(--cyborg-ink);
  border-radius: 26px;
  box-shadow: var(--cyborg-shadow);
  color: #fff;
  overflow: hidden;
}

.block.ebook .image {
  margin: 0;
}

.block.ebook .header .title {
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3rem);
  hyphens: none;
  overflow-wrap: normal;
  text-align: left;
  word-break: normal;
}

.block.ebook .header .title::after {
  margin-left: 0;
}

.block.ebook .content {
  color: rgba(255, 255, 255, 0.72);
}

.block.ebook .col-sm-6:last-child {
  padding: 42px;
}

/* Floating contact */
.contact-buttons {
  bottom: 24px;
  position: fixed;
  right: 18px;
  top: auto;
  width: auto;
  z-index: 98;
}

.contact-buttons .btn {
  background-color: var(--cyborg-orange);
  background-position: 18px center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(7, 17, 29, 0.24);
  color: #fff;
  display: flex;
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 0.76rem;
  height: 52px;
  letter-spacing: 0.05em;
  margin: 0;
  min-width: 0;
  padding: 0 22px 0 56px;
  text-decoration: none;
  text-indent: 0;
  transform: none;
  width: auto;
}

.contact-buttons .btn span {
  align-items: center;
  display: flex;
}

.contact-buttons .btn:hover {
  background-color: var(--cyborg-orange-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 90, 31, 0.12), transparent 34%),
    var(--cyborg-ink);
  bottom: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  height: auto;
  padding: 68px 0 28px;
  position: relative;
}

.footer .logo {
  margin: 0 0 34px;
  width: 140px;
}

.footer .list h5 {
  color: #fff;
  font-family: "Avenir-Heavy", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.footer .list ul a {
  color: rgba(255, 255, 255, 0.58);
  transition: color 180ms ease;
}

.footer .list ul a:hover {
  color: #fff;
  text-decoration: none;
}

.footer .rights {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  margin: 28px 0 0;
  max-width: none;
  padding-top: 22px;
  text-align: left;
}

.footer .rights a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.footer .rights a:hover {
  color: #fff;
}

@media (max-width: 1120px) {
  .navigation .list li {
    margin-left: 15px;
  }

  .navigation .list a {
    font-size: 0.62rem;
  }

  .nav-cta {
    margin-left: 16px;
  }
}

@media (max-width: 991.98px) {
  .navigation .list-wrapper {
    background: rgba(7, 17, 29, 0.99);
    height: calc(100% - 76px);
  }

  .navigation .list-wrapper.list-collapsed {
    transform: translateY(76px);
  }

  .navigation .list-wrapper > .list {
    display: block;
    height: auto;
  }

  .navigation .list li.li-menu a::before {
    background: rgba(255, 255, 255, 0.08);
  }

  .navigation .submenu-list {
    background: rgba(255, 255, 255, 0.03);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 150px;
    padding-top: 92px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    margin: -28px auto 0;
    max-width: 470px;
  }
}

@media (max-width: 767.98px) {
  .holder,
  .navigation .container-fluid,
  .footer .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .block {
    padding: 66px 0;
  }

  .block .header {
    margin-bottom: 34px;
  }

  .hero-shell {
    gap: 30px;
    padding-bottom: 145px;
    padding-top: 66px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    max-width: 390px;
  }

  .hero-panel {
    padding: 30px;
  }

  .hero-panel::before {
    left: 30px;
    right: 30px;
  }

  .hero-panel-logo {
    margin-bottom: 32px;
  }

  .hero-capabilities .holder {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-capabilities span {
    border-right: 0;
    font-size: 0.6rem;
    padding: 0 8px;
  }

  .block.us .title {
    text-align: center;
  }

  .block.us .title::after {
    margin-left: auto;
  }

  .block.services a {
    height: 250px;
  }

  .block.ribbon {
    padding: 66px 0;
  }

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

  .block.ribbon .image,
  .block.ribbon .info {
    grid-column: 1;
  }

  .block.ribbon .image {
    grid-row: 1;
  }

  .block.ribbon .image img {
    height: 280px;
  }

  .block.ribbon .info {
    grid-row: 2;
    margin: -42px 16px 0;
    padding: 30px 26px;
  }

  .block.industries .header {
    background: var(--cyborg-ink) !important;
    height: auto;
    padding: 46px 20px;
  }

  .block.industries .header .title {
    color: #fff !important;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-buttons .btn {
    background-position: center;
    height: 54px;
    padding: 0;
    width: 54px;
  }

  .contact-buttons .btn span {
    display: none;
  }

  .block.ebook .col-sm-6:last-child {
    padding: 32px 26px 38px;
  }

  .footer {
    padding: 54px 0 26px;
  }

  .footer .logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer .rights {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
