@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/montserrat-500.woff2") format("woff2"),
    url("../fonts/montserrat-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/montserrat-600.woff2") format("woff2"),
    url("../fonts/montserrat-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/montserrat-700.woff2") format("woff2"),
    url("../fonts/montserrat-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src:
    url("../fonts/montserrat-900.woff2") format("woff2"),
    url("../fonts/montserrat-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
:root {
  --ink: #1e2734;
  --white: #fff;
  --content-width: 1200px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  min-width: 280px;
  background: #1e2734;
  scroll-behavior: auto;
  scroll-padding-top: 98px;
}
@media (max-width: 1069px) {
  html {
    scroll-padding-top: 88px;
  }
}
body {
  margin: 0;
  color: var(--white);
  /* Safari uses the canvas colour for its system bars before the first scroll. */
  background: #1e2734;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.mobile-messengers {
  display: none;
}
@media (min-width: 621px) {
  .mobile-messengers {
    position: fixed;
    z-index: 1800;
    right: clamp(16px, 2vw, 30px);
    bottom: 18px;
    display: flex;
    width: 54px;
    flex-direction: column;
    overflow: visible;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 14px;
    background: #1e2734;
    box-shadow: 0 8px 24px rgb(0 0 0 / 26%);
  }
  .mobile-messengers a {
    position: relative;
    display: flex;
    min-height: 48px;
    padding: 7px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .mobile-messengers a + a {
    border-top: 1px solid rgb(255 255 255 / 12%);
  }
  .mobile-messengers img {
    display: block;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    object-fit: contain;
  }
  .mobile-messengers span {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    display: block;
    padding: 7px 10px;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 7px;
    color: #fff;
    background: #1e2734;
    box-shadow: 0 6px 18px rgb(0 0 0 / 25%);
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(5px, -50%);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }
  .mobile-messengers a:hover span,
  .mobile-messengers a:focus-visible span {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
  }
}
@media (min-width: 621px) and (hover: hover) {
  .mobile-messengers a:hover {
    background: rgb(255 255 255 / 9%);
  }
}
@media (max-width: 620px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
  .mobile-messengers {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: calc(60px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgb(255 255 255 / 14%);
    background: #1e2734;
    box-shadow: 0 -5px 18px rgb(0 0 0 / 24%);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  html.mobile-keyboard-open .mobile-messengers {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
  }
  .mobile-messengers a {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 7px 3px 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #fff;
    font-size: 11px;
    line-height: 1.15;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-messengers a + a::before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 1px;
    content: "";
    background: rgb(255 255 255 / 16%);
  }
  .mobile-messengers img {
    display: block;
    width: 23px;
    height: 23px;
    object-fit: contain;
    margin-bottom: 5px;
  }
  .mobile-messengers a:active {
    background: rgb(255 255 255 / 8%);
  }
}
@media (max-width: 340px) {
  .mobile-messengers a {
    font-size: 10px;
  }
  .mobile-messengers img {
    width: 32px;
    height: 32px;
  }
}
.sticky-header {
  display: none;
}
.mobile-sticky-header,
.mobile-menu {
  display: none;
}
@media (min-width: 1070px) {
  .sticky-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    color: #fff;
    background: #1e2734;
    box-shadow: 0 5px 18px rgb(0 0 0 / 20%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }
  .sticky-header.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .sticky-header__inner {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 250px;
    align-items: center;
    gap: 28px;
    width: min(var(--content-width), calc(100% - 48px));
    min-height: 82px;
    margin: 0 auto;
  }
  .sticky-header__logo {
    display: flex;
    width: 76px;
    height: 64px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: inherit;
  }
  .sticky-header__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .sticky-header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
  }
  .sticky-header__nav a {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    color: #fff;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.25;
    font-weight: 200;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease;
    font-size: 16px;
  }
  .sticky-header__nav a:focus-visible {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    outline-offset: 2px;
  }
  @media (hover: hover) {
    .sticky-header__nav a:hover {
      background: rgb(113 113 113 / 86%);
    }
  }
  .sticky-header__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    font-style: normal;
    text-align: right;
  }
  .sticky-header__contacts > span {
    color: rgb(255 255 255 / 72%);
    font-size: 11px;
    line-height: 1.2;
  }
  .sticky-header__contacts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }
  .sticky-header__contacts svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}
@media (min-width: 1070px) and (max-width: 1230px) {
  .sticky-header__nav {
    gap: 12px;
  }
  .sticky-header__nav a {
    padding-right: 5px;
    padding-left: 5px;
    font-size: 12px;
  }
}
@media (max-width: 1069px) {
  .mobile-sticky-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    color: #fff;
    background: #1e2734;
    box-shadow: 0 5px 18px rgb(0 0 0 / 24%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }
  .mobile-sticky-header.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-sticky-header__inner {
    display: grid;
    grid-template-columns: 38px 72px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    width: min(100% - 24px, 680px);
    min-height: 72px;
    margin: 0 auto;
  }
  .mobile-menu-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 7px 4px;
    flex-direction: column;
    justify-content: space-around;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
  }
  .mobile-sticky-header__logo {
    display: flex;
    width: 72px;
    height: 62px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .mobile-sticky-header__logo img {
    display: block;
    width: 82px;
    height: 58px;
    object-fit: contain;
  }
  .mobile-sticky-header__contacts {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
  }
  .mobile-sticky-header__contacts > span {
    color: rgb(255 255 255 / 72%);
    font-size: clamp(9px, 2.5vw, 12px);
    line-height: 1.2;
    white-space: nowrap;
  }
  .mobile-sticky-header__contacts a {
    color: #fff;
    font-size: clamp(15px, 4.3vw, 21px);
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }
  .mobile-menu {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: block;
    visibility: hidden;
    pointer-events: none;
  }
  .mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgb(0 0 0 / 58%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
  }
  .mobile-menu__panel {
    position: relative;
    width: min(88vw, 440px);
    height: 100%;
    padding: 90px 28px 40px;
    overflow-y: auto;
    color: #fff;
    background: #1e2734;
    box-shadow: 8px 0 24px rgb(0 0 0 / 28%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
  }
  .mobile-menu__close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgb(255 255 255 / 14%);
    cursor: pointer;
  }
  .mobile-menu__close::before,
  .mobile-menu__close::after {
    position: absolute;
    top: 22px;
    left: 11px;
    width: 24px;
    height: 2px;
    content: "";
    background: #fff;
  }
  .mobile-menu__close::before {
    transform: rotate(45deg);
  }
  .mobile-menu__close::after {
    transform: rotate(-45deg);
  }
  .mobile-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-menu__list li {
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }
  .mobile-menu__list a {
    display: block;
    padding: 18px 4px;
    color: #fff;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.25;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-menu__works-link {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .mobile-menu__works-link svg {
    width: 11px;
    height: 14px;
    flex: 0 0 auto;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
}
.screen {
  min-height: 100vh;
  min-height: 100svh;
}
.screen--services {
  padding: 80px 0;
  color: #fff;
  background: #1e2734;
}
.services__inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}
.services__title {
  margin: 0;
  font-size: clamp(38px, calc(3.5vw - 6px), 36px);
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
.services__description {
  max-width: 900px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
  margin-top: 42px;
}
.service-card {
  min-width: 0;
}
.service-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #121b28;
  box-shadow: 0 10px 24px rgb(0 0 0 / 20%);
  text-align: left;
  cursor: pointer;
}
.service-card__media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58%;
  content: "";
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgb(0 0 0 / 50%) 17%,
    rgb(0 0 0) 100%
  );
  pointer-events: none;
}
.service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.service-card__title {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  font-size: clamp(12px, calc(1.25vw - 2px), 14px);
  line-height: 1.95;
  font-weight: 700;
  text-transform: uppercase;
}
.service-card__price {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(14px, calc(1.7vw - 4px), 20px);
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}
.service-card__button {
  display: block;
  width: min(100%, 280px);
  min-height: 54px;
  margin: 16px auto 0;
  padding: 12px 24px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  color: #fff;
  background: #1e2734;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}
.service-card__media:focus-visible,
.service-card__button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media (hover: hover) {
  .service-card__media:hover img {
    transform: scale(1.04);
  }
  .service-card__button:hover {
    border-color: rgb(255 255 255 / 45%);
    background: rgb(255 255 255 / 7%);
  }
}
.visualization {
  overflow: hidden;
  color: #fff;
  background: #000;
}
.visualization__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 420px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 40px) 0;
}
.visualization__content {
  position: relative;
  z-index: 1;
}
.visualization__title {
  max-width: 560px;
  margin: 0;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.8;
  font-weight: 700;
  text-transform: uppercase;
}
.visualization__text {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.6;
}
.visualization__button {
  position: relative;
  display: flex;
  width: min(100%, 350px);
  min-height: 92px;
  margin-top: 26px;
  padding: 14px 26px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 100px;
  color: #fff;
  background: #066fd1;
  box-shadow: 0 10px 28px rgb(0 0 0 / 22%);
  cursor: pointer;
  border: 1px solid rgb(255 255 255 / 20%);
}
.visualization__button::before {
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: -45%;
  width: 34%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 30%),
    transparent
  );
  filter: blur(2px);
  transform: skewX(-18deg);
  animation: hero-cta-shimmer 5.5s ease-in-out infinite;
  pointer-events: none;
}
.visualization__button-label {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 48px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  width: 100%;
  padding-right: 10px;
}
.visualization__button-text {
  grid-column: 2;
  grid-row: 1;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.visualization__button-icon {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  width: 46px;
  height: 46px;
}
.visualization__button-note {
  grid-column: 2;
  grid-row: 2;
  margin-top: 3px;
  color: rgb(255 255 255 / 68%);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}
.visualization__media {
  position: relative;
  width: min(100%, 600px);
  aspect-ratio: 3 / 2;
  justify-self: center;
  background: transparent;
}
.visualization__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (hover: hover) {
  .visualization__button:hover {
    background: #0879e2;
  }
}
.portfolio-preview {
  padding: 50px 0;
  color: #fff;
  background: #1e2734;
}
.portfolio-preview__inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
}
.portfolio-preview__title {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, calc(2.5vw - 6px), 30px);
  line-height: 1.8;
  font-weight: 700;
  text-transform: uppercase;
}
.work-process {
  min-height: clamp(220px, 28vw, 360px);
  padding: clamp(50px, 6.7vw, 120px) 0;
  color: #fff;
  background: #121b28;
}
.work-process__inner {
  position: relative;
  isolation: isolate;
  width: min(var(--content-width), calc(100% - clamp(28px, 5vw, 48px)));
  margin: 0 auto;
}
.work-process__title {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, calc(2.5vw - 6px), 30px);
  line-height: 1.8;
  font-weight: 700;
  text-transform: uppercase;
}
/* Этапы работы: три колонки на десктопе, две на планшете, одна на телефоне. */
.work-process__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 40px;
  margin: 90px 0 0;
  padding: 0 20px;
  list-style: none;
}
.work-process__connector {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.work-process__connector path {
  fill: none;
  stroke: rgb(255 255 255 / 22%);
  stroke-width: 1;
  stroke-dasharray: 3 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.work-step {
  position: relative;
  min-width: 0;
  text-align: center;
}
.work-step__media {
  position: relative;
  width: 200px;
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto 14px;
}
.work-step__media img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  object-fit: cover;
}
.work-step__number {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 5px solid #121b28;
  border-radius: 50%;
  color: #fff;
  background: #066fd1;
  font-size: 18px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}
.work-step__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8em;
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.4;
  font-weight: 700;
}
.work-step__text {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 15px;
  line-height: 1.75;
}
.work-step__button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  max-width: 100%;
  min-height: 72px;
  margin-top: 24px;
  padding: 14px 24px;
  border: 0;
  border-radius: 100px;
  color: #fff;
  background: #066fd1;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
}
.work-step__button-note {
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .work-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 28px;
    margin-top: 40px;
  }
  .work-step__media {
    width: 180px;
  }
}
@media (max-width: 620px) {
  .work-process__connector {
    display: none;
  }
  .work-process__title {
    font-size: clamp(28px, calc(2.5vw - 6px), 30px);
  }
  .work-process__steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
  }
  .work-step + .work-step {
    padding-top: 36px;
  }
  .work-step__text {
    font-size: 14px;
  }
  .work-step__title {
    min-height: 0;
    margin: 0 0 25px;
  }
}
/* Цены: содержимое таблицы будет добавлено в подготовленный контейнер. */
.service-prices {
  min-height: clamp(220px, 28vw, 360px);
  padding: clamp(50px, 6.7vw, 120px) 0;
  color: #fff;
  background: #1e2734;
}
.service-prices__inner {
  width: min(var(--content-width), calc(100% - clamp(28px, 5vw, 48px)));
  margin: 0 auto;
}
.service-prices__title {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, calc(2.5vw - 6px), 30px);
  line-height: 1.8;
  font-weight: 700;
  text-transform: uppercase;
}
.service-prices__content {
  margin-top: clamp(32px, 5vw, 72px);
}
.service-prices__table-wrap {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 18px;
  background: rgb(10 18 29 / 28%);
  box-shadow: 0 24px 70px rgb(0 0 0 / 18%);
}
.service-prices__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #fff;
}
.service-prices__table th,
.service-prices__table td {
  padding: 20px 22px;
  text-align: left;
  vertical-align: top;
}
.service-prices__table th {
  color: #fff;
  background: #066fd1;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}
.service-prices__table th:first-child,
.service-prices__table td:first-child {
  width: 36%;
}
.service-prices__table th:nth-child(2),
.service-prices__table td:nth-child(2) {
  width: 44%;
}
.service-prices__table th:last-child,
.service-prices__table td:last-child {
  width: 20%;
}
.service-prices__table tbody tr {
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  transition: background-color 0.2s ease;
  background: linear-gradient(145deg, #1d2d40, #14202e);
}
.service-prices__table tbody tr:last-child {
  border-bottom: 0;
}
.service-prices__table td {
  color: rgb(255 255 255 / 70%);
  font-size: 15px;
  line-height: 1.6;
}
.service-prices__table td:first-child {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.service-prices__table td:last-child {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.service-prices__cta {
  display: none;
}
.service-prices__image {
  display: none;
}
.service-prices__image-wrap {
  --price-badge-inset: 12px;
  position: relative;
  margin-top: 12px;
}
.service-prices__image-wrap .service-prices__image {
  margin-top: 0;
}
.service-prices__badge {
  position: absolute;
  top: var(--price-badge-inset);
  left: var(--price-badge-inset);
  display: inline-flex;
  min-height: 28px;
  padding: 6px 10px;
  align-items: center;
  gap: 6px;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 100px;
  color: #1e2734;
  background: rgb(255 190 80 / 96%);
  box-shadow: 0 5px 16px rgb(0 0 0 / 30%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.service-prices__badge::before {
  content: "✦";
  font-size: 13px;
}
.service-prices__badge--popular {
  color: #fff;
  background: rgb(6 111 209 / 92%);
}
.service-prices__badge--popular::before {
  content: "★";
}
.service-prices__features {
  display: flex;
  margin: 14px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}
.service-prices__features li {
  padding: 5px 9px;
  border: 1px solid rgb(125 189 255 / 35%);
  border-radius: 100px;
  color: #b9dcff;
  background: rgb(6 111 209 / 12%);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
}
/* Постоянные клиенты */
.clients {
  min-height: clamp(240px, 30vw, 420px);
  padding: clamp(50px, 6.7vw, 120px) 0;
  color: #fff;
  background: #000;
}
.clients__inner {
  width: min(var(--content-width), calc(100% - clamp(28px, 5vw, 48px)));
  margin: 0 auto;
}
.clients__title {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, calc(2.5vw - 6px), 30px);
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 620px) {
  .clients__title {
    font-size: clamp(26px, calc(2.5vw - 6px), 30px);
  }
}
.clients__marquee {
  --clients-gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  margin-top: clamp(32px, 5vw, 72px);
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}
.clients__track {
  display: flex;
  width: max-content;
  animation: clients-marquee 34s linear infinite;
  will-change: transform;
}
.clients__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--clients-gap);
  padding-right: var(--clients-gap);
}
.clients__group img {
  display: block;
  width: clamp(190px, 20vw, 280px);
  height: clamp(72px, 8vw, 105px);
  flex: 0 0 auto;
  object-fit: contain;
}
@keyframes clients-marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .clients__marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: none;
  }
  .clients__track {
    animation: none;
  }
  .clients__group[aria-hidden="true"] {
    display: none;
  }
}
/* Часто задаваемые вопросы */
.faq {
  min-height: clamp(240px, 30vw, 420px);
  padding: clamp(50px, 6.7vw, 120px) 0;
  color: #fff;
  background: #1c2430;
}
.faq__inner {
  width: min(var(--content-width), calc(100% - clamp(28px, 5vw, 48px)));
  margin: 0 auto;
}
.faq__title {
  max-width: 1100px;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, calc(2.5vw - 6px), 30px);
  line-height: 1.8;
  font-weight: 700;
  text-transform: uppercase;
}
.faq__title span {
  display: block;
}
.faq__list {
  display: grid;
  gap: 12px;
  margin-top: clamp(32px, 5vw, 64px);
}
.faq__item {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 14px;
  background: #2c4058;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}
.faq__item[open] {
  border-color: rgb(6 111 209 / 65%);
  background: #202c3c;
}
.faq__question {
  position: relative;
  display: flex;
  min-height: 68px;
  padding: 20px 70px 20px 24px;
  align-items: center;
  color: #fff;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.45;
  font-weight: 400;
  list-style: none;
  cursor: pointer;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #066fd1;
  content: "+";
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-50%);
}
.faq__item[open] .faq__question::after {
  content: "−";
}
.faq__answer {
  padding: 0 70px 22px 24px;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65;
}
.faq__answer p {
  max-width: 1100px;
  margin: 0;
}
.question-form {
  padding: clamp(50px, 6.7vw, 120px) 0;
  color: #fff;
  background: #121b28;
}
.question-form__inner {
  width: min(var(--content-width), calc(100% - clamp(28px, 5vw, 48px)));
  margin: 0 auto;
}
.question-form__title {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, calc(2.5vw - 6px), 30px);
  line-height: 1.8;
  font-weight: 700;
  text-transform: uppercase;
}
.question-form__title span {
  display: block;
}
.question-form__card {
  width: min(100%, 680px);
  margin: clamp(32px, 5vw, 64px) auto 0;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 18px;
  background: #1e2734;
  box-shadow: 0 18px 45px rgb(0 0 0 / 24%);
}
.question-form__lead {
  margin: 0 0 34px;
  color: #fff;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
}
.question-form__field + .question-form__field {
  margin-top: 22px;
}
.question-form__field label {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}
.question-form__field textarea,
.question-form__field input {
  display: block;
  width: 100%;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 10px;
  outline: 0;
  color: #fff;
  background: #121b28;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.question-form__field textarea {
  min-height: 148px;
  padding: 16px 18px;
  resize: vertical;
}
.question-form__field input {
  height: 58px;
  padding: 0 18px;
}
.question-form__field textarea::placeholder,
.question-form__field input::placeholder {
  color: rgb(255 255 255 / 48%);
  opacity: 1;
  text-align: center;
}
.question-form__field textarea:focus,
.question-form__field input:focus {
  border-color: #147fdf;
  box-shadow: 0 0 0 3px rgb(20 127 223 / 18%);
}
.question-form__note {
  margin: 20px 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.question-form__consent {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  color: rgb(255 255 255 / 75%);
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}
.question-form__consent input {
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  margin: 0;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.callback-modal .question-form__consent input,
.question-form__card .question-form__consent input {
  width: 20px;
  height: 20px;
}
.question-form__check {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 5px;
  background: #121b28;
}
.question-form__consent input:checked + .question-form__check {
  border-color: #147fdf;
  background: #147fdf;
}
.question-form__consent input:checked + .question-form__check::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: translate(-50%, -58%) rotate(45deg);
}
.question-form__consent input:focus-visible + .question-form__check {
  outline: 2px solid #7dbdff;
  outline-offset: 3px;
}
.question-form__consent a {
  color: #4aa9ff;
  text-decoration: none;
}
.question-form__submit {
  display: block;
  width: min(100%, 430px);
  min-height: 62px;
  margin: 30px auto 0;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #066fd1;
  box-shadow: 0 12px 28px rgb(0 0 0 / 22%);
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}
.to-top-strip {
  display: flex;
  width: 100%;
  min-height: 80px;
  padding: 18px 24px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #000;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
}
.to-top-strip:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -5px;
}
.site-footer {
  padding: clamp(42px, 6vw, 80px) 0 24px;
  color: #fff;
  background: #1e2734;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(48px, 8vw, 120px);
  width: min(var(--content-width), calc(100% - clamp(28px, 5vw, 48px)));
  margin: 0 auto;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 25px clamp(36px, 7vw, 100px);
  align-content: start;
  padding-top: 20px;
}
.site-footer__nav a {
  width: fit-content;
  color: rgb(255 255 255 / 86%);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer__company {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.site-footer__logo {
  display: block;
  width: 175px;
  max-width: 100%;
  align-self: flex-end;
}
.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__contacts {
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  color: rgb(255 255 255 / 68%);
  font-size: 13px;
  line-height: 1.4;
  font-style: normal;
  text-align: right;
}
.site-footer__contacts p {
  margin: 0;
}
.site-footer__contacts a {
  color: #fff;
  text-decoration: none;
}
.site-footer__contacts .site-footer__phone {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  font-weight: 700;
}
.site-footer__callback svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer__callback:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.site-footer__copyright {
  width: min(var(--content-width), calc(100% - clamp(28px, 5vw, 48px)));
  margin: clamp(42px, 6vw, 72px) auto 0;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 55%);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
@media (hover: hover) {
  .site-footer__nav a:hover,
  .site-footer__contacts a:hover {
    color: #4aa9ff;
  }
}
@media (max-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .site-footer__nav {
    gap: 20px 24px;
    padding-top: 0;
  }
  .site-footer__company,
  .site-footer__contacts {
    align-items: center;
    text-align: center;
  }
  .site-footer__logo {
    width: 144px;
    align-self: center;
  }
  .site-footer__callback {
    min-width: min(100%, 240px);
  }
}
@media (max-width: 420px) {
  .site-footer {
    padding-top: 36px;
  }
  .site-footer__nav {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 0;
  }
  .site-footer__nav a {
    display: block;
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    font-size: 14px;
    text-align: center;
  }
  .site-footer__company {
    gap: 0;
  }
  .site-footer__copyright {
    margin-top: 38px;
    font-size: 11px;
  }
}
@media (hover: hover) {
  .to-top-strip:hover {
    background: #111111;
  }
}
@media (hover: hover) {
  .question-form__submit:hover {
    background: #0879e2;
    transform: translateY(-1px);
  }
}
@media (max-width: 620px) {
  .question-form {
    padding: 48px 0;
  }
  .question-form__title {
    font-size: clamp(19px, 6vw, 18px);
    line-height: 1.8;
  }
  .question-form__title span {
    display: inline;
  }
  .question-form__card {
    margin-top: 28px;
    padding: 26px 18px;
    border-radius: 14px;
  }
  .question-form__lead {
    margin-bottom: 26px;
    font-size: 15px;
  }
  .question-form__field label {
    font-size: 14px;
  }
  .question-form__field textarea,
  .question-form__field input {
    font-size: 16px;
  }
  .question-form__field textarea {
    min-height: 134px;
    padding: 14px;
  }
  .question-form__field input {
    height: 54px;
    padding: 0 14px;
  }
  .question-form__note,
  .question-form__consent {
    font-size: 12px;
  }
  .question-form__submit {
    min-height: 56px;
    margin-top: 26px;
    font-size: 14px;
  }
  .to-top-strip {
    min-height: 66px;
    padding: 16px;
    font-size: 17px;
  }
}
@media (max-width: 340px) {
  .question-form__card {
    padding-right: 14px;
    padding-left: 14px;
  }
  .question-form__lead br {
    display: none;
  }
  .question-form__consent {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
  }
  .question-form__check {
    width: 20px;
    height: 20px;
  }
  .question-form__submit {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 13px;
  }
}
@media (hover: hover) {
  .faq__item:not([open]):hover {
    border-color: rgb(6 111 209 / 55%);
  }
  .faq__question:hover {
    color: #7dbdff;
  }
}
@media (min-width: 701px) and (max-width: 1000px) {
  .faq__question {
    min-height: 64px;
    padding: 18px 62px 18px 20px;
    font-size: 16px;
  }
  .faq__question::after {
    right: 20px;
    width: 32px;
    height: 32px;
    font-size: 22px;
  }
  .faq__answer {
    padding: 0 62px 20px 20px;
    font-size: 15px;
  }
}
@media (max-width: 700px) {
  .faq__list {
    gap: 9px;
  }
  .faq__question {
    min-height: 60px;
    padding: 16px 58px 16px 16px;
  }
  .faq__question::after {
    right: 15px;
    width: 30px;
    height: 30px;
    font-size: 21px;
  }
  .faq__answer {
    padding: 0 16px 18px;
  }
}
@media (max-width: 380px) {
  .faq__question {
    padding-right: 52px;
    font-size: 14px;
  }
  .faq__question::after {
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
  .faq__answer {
    font-size: 13px;
    line-height: 1.6;
  }
}
@media (min-width: 901px) {
  .service-prices__title span {
    display: block;
  }
  .service-prices__table th + th,
  .service-prices__table td + td {
    border-left: 1px solid rgb(255 255 255 / 16%);
  }
  .service-prices__table td:last-child > span {
    display: block;
    text-align: center;
    font-size: 20px;
  }
  .service-prices__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    margin-top: 10px;
    padding: 7px 35px;
    border: 0;
    border-radius: 100px;
    color: #fff;
    background: #066fd1;
    font: inherit;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
  }
  .service-prices__image {
    display: block;
    width: min(100%);
    height: 170px;
    aspect-ratio: 16 / 9;
    margin-top: 12px;
    border: 0;
    border-radius: 8px;
    object-fit: cover;
  }
}
@media (hover: hover) {
  .service-prices__table tbody tr:hover {
    background: rgb(6 111 209 / 10%);
  }
}
@media (min-width: 701px) and (max-width: 999px) {
  .service-prices__table td:first-child {
    font-size: 15px;
  }
  .service-prices__table td:last-child > span {
    font-size: 16px;
  }
  .service-prices__cta {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 11px;
    white-space: normal;
  }
}
@media (max-width: 900px) {
  .service-prices__table th,
  .service-prices__table td {
    padding: 17px 16px;
  }
  .service-prices__table td {
    font-size: 14px;
  }
  .service-prices__table th:first-child,
  .service-prices__table td:first-child {
    width: 34%;
  }
  .service-prices__table th:nth-child(2),
  .service-prices__table td:nth-child(2) {
    width: 43%;
  }
  .service-prices__table th:last-child,
  .service-prices__table td:last-child {
    width: 23%;
  }
}
@media (min-width: 701px) and (max-width: 900px) {
  .service-prices__table th + th,
  .service-prices__table td + td {
    border-left: 1px solid rgb(255 255 255 / 16%);
  }
  .service-prices__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 10px;
    border: 0;
    border-radius: 7px;
    object-fit: cover;
  }
  .service-prices__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 34px;
    margin-top: 9px;
    padding: 7px 8px;
    border: 0;
    border-radius: 100px;
    color: #fff;
    background: #066fd1;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
    white-space: normal;
    cursor: pointer;
  }
}
@media (max-width: 700px) {
  .service-prices__table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .service-prices__table,
  .service-prices__table tbody,
  .service-prices__table tr,
  .service-prices__table td {
    display: block;
    width: 100%;
  }
  .service-prices__table {
    table-layout: auto;
  }
  .service-prices__table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .service-prices__table tbody {
    display: grid;
    gap: 16px;
  }
  .service-prices__table tbody tr {
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 14px;
  }
  .service-prices__table tbody tr:last-child {
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }
  .service-prices__table td,
  .service-prices__table td:first-child,
  .service-prices__table td:nth-child(2),
  .service-prices__table td:last-child {
    width: 100%;
    padding: 14px 16px;
    white-space: normal;
  }
  .service-prices__table td + td {
    border-top: 1px solid rgb(255 255 255 / 10%);
  }
  .service-prices__table td::before {
    display: block;
    margin-bottom: 6px;
    color: #7dbdff;
    content: attr(data-label);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .service-prices__table td:first-child {
    padding-top: 17px;
    padding-bottom: 17px;
    font-size: 15px;
  }
  .service-prices__image {
    display: block;
    width: 100%;
    height: 140px;
    aspect-ratio: 16 / 9;
    margin-top: 12px;
    border: 0;
    border-radius: 10px;
    object-fit: cover;
  }
  .service-prices__badge {
    min-height: 25px;
    padding: 5px 8px;
    font-size: 9px;
  }
  .service-prices__badge::before {
    font-size: 11px;
  }
  .service-prices__features {
    margin-top: 12px;
    gap: 6px;
  }
  .service-prices__features li {
    padding: 5px 8px;
    font-size: 10px;
  }
  .service-prices__table td:last-child {
    padding-top: 15px;
    padding-bottom: 17px;
    color: #fff;
    font-size: 16px;
  }
  .service-prices__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 38px;
    margin-top: 11px;
    padding: 9px 17px;
    border: 0;
    border-radius: 100px;
    color: #fff;
    background: #066fd1;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    cursor: pointer;
  }
}
@media (max-width: 620px) {
  .service-prices {
    min-height: 200px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .service-prices__title {
    font-size: clamp(18px, 7vw, 18px);
    line-height: 1.8;
  }
  .service-prices__content {
    margin-top: 28px;
  }
}
/* Калькулятор брендирования башенных кранов: расчёт будет подключён на следующем этапе. */
.crane-calculator {
  padding: clamp(52px, 7.8vw, 116px) 0;
  color: #fff;
  background: #1e2734;
}
.crane-calculator__inner {
  width: min(var(--content-width), calc(100% - clamp(28px, 5vw, 48px)));
  margin: 0 auto;
}
.crane-calculator__title {
  margin: 0;
  font-size: clamp(28px, 3.25vw, 36px);
  line-height: 1.42;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.crane-calculator__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(48px, 8vw, 126px);
  margin-top: clamp(42px, 6.5vw, 88px);
  align-items: start;
}
.crane-calculator__form {
  display: grid;
  gap: clamp(42px, 5vw, 68px);
}
.crane-calculator__field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.crane-calculator__label {
  display: block;
  margin: 0 0 19px;
  color: rgb(108 184 255);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.35;
}
.crane-calculator__text-input {
  display: block;
  width: min(100%, 384px);
  min-height: 58px;
  padding: 13px 20px;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 8px;
  color: #1e2734;
  background: #fff;
  box-shadow: 0 3px 12px rgb(0 0 0 / 12%);
  font: inherit;
  font-size: 16px;
  line-height: 1.3;
}
.crane-calculator__text-input::placeholder {
  color: #7e8793;
  opacity: 1;
}
.crane-calculator__text-input:focus-visible {
  outline: 3px solid #7dbdff;
  outline-offset: 3px;
}
.crane-calculator__symbol-count {
  min-height: 19px;
  margin: 8px 0 0;
  color: rgb(255 255 255 / 60%);
  font-size: 13px;
  line-height: 1.4;
}
.crane-calculator__choices {
  display: grid;
  gap: 20px;
}
.crane-calculator__choice {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 11px;
  color: #fff;
  font-size: clamp(16px, 1.3vw, 16px);
  line-height: 1.35;
  font-weight: 400;
  cursor: pointer;
}
.crane-calculator__choice input {
  width: 26px;
  height: 26px;
  margin: -1px 0 0;
  flex: 0 0 26px;
  accent-color: #066fd1;
  cursor: pointer;
}
.crane-calculator__result {
  min-width: 0;
}
.crane-calculator__preview-title {
  margin: 0 0 20px;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.3;
  font-weight: 700;
}
.crane-calculator__placeholder {
  position: relative;
  display: grid;
  min-height: clamp(260px, 23vw, 322px);
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: #1e2734;
}
.crane-calculator__placeholder img {
  width: clamp(82px, 9vw, 120px);
  height: auto;
}
.crane-visualization__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  object-fit: fill;
  object-position: center;
}
.crane-visualization {
  --crane-letter-color: #fff;
  --crane-lighting-color: #fff;
}
.crane-visualization[data-letter-color="blue"] {
  --crane-letter-color: #3f96d7;
}
.crane-visualization[data-letter-color="red"] {
  --crane-letter-color: #cc5552;
}
.crane-visualization[data-letter-color="yellow"] {
  --crane-letter-color: #d4b628;
}
.crane-visualization[data-letter-color="green"] {
  --crane-letter-color: #43a864;
}
.crane-visualization[data-letter-color="purple"] {
  --crane-letter-color: #8254b7;
}
.crane-visualization[data-lighting-color="blue"] {
  --crane-lighting-color: #3f96d7;
}
.crane-visualization[data-lighting-color="red"] {
  --crane-lighting-color: #cc5552;
}
.crane-visualization[data-lighting-color="yellow"] {
  --crane-lighting-color: #d4b628;
}
.crane-visualization[data-lighting-color="green"] {
  --crane-lighting-color: #43a864;
}
.crane-visualization[data-lighting-color="purple"] {
  --crane-lighting-color: #8254b7;
}
.crane-visualization__boom-light,
.crane-visualization__tower-light {
  position: absolute;
  z-index: 2;
  display: none;
  border-radius: 999px;
  background: var(--crane-lighting-color);
  box-shadow:
    0 0 5px var(--crane-lighting-color),
    0 0 14px color-mix(in srgb, var(--crane-lighting-color) 92%, transparent),
    0 0 28px color-mix(in srgb, var(--crane-lighting-color) 78%, transparent);
}
.crane-visualization__boom-light {
  left: 27.5%;
  width: 70%;
  height: 2px;
  transform: rotate(0.1deg);
  transform-origin: left center;
}
.crane-visualization__boom-light--top {
  top: 18%;
}
.crane-visualization__boom-light--middle {
  top: 20%;
}
.crane-visualization__boom-light--bottom {
  top: 21.7%;
}
.crane-visualization__tower-light {
  top: 31%;
  bottom: 8%;
  width: 2px;
}
.crane-visualization__tower-light--left {
  left: 23.8%;
}
.crane-visualization__tower-light--center {
  left: 25.3%;
}
.crane-visualization__tower-light--right {
  left: 27%;
}
.crane-visualization[data-arrow-lighting="all"]
  .crane-visualization__boom-light--top,
.crane-visualization[data-arrow-lighting="all"]
  .crane-visualization__boom-light--bottom,
.crane-visualization[data-arrow-lighting="top"]
  .crane-visualization__boom-light--top,
.crane-visualization[data-arrow-lighting="bottom"]
  .crane-visualization__boom-light--bottom,
.crane-visualization[data-arrow-lighting="center"]
  .crane-visualization__boom-light--middle {
  display: block;
}
.crane-visualization[data-tower-lighting="contour"]
  .crane-visualization__tower-light--left,
.crane-visualization[data-tower-lighting="contour"]
  .crane-visualization__tower-light--right,
.crane-visualization[data-tower-lighting="center"]
  .crane-visualization__tower-light--center {
  display: block;
}
.crane-visualization__text {
  position: absolute;
  z-index: 3;
  top: 20.2%;
  left: 63%;
  display: none;
  max-width: 45%;
  overflow: hidden;
  color: var(--crane-letter-color);
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  background: #0000006b;
}
.crane-visualization[data-has-text="true"] .crane-visualization__text {
  display: block;
}
.crane-visualization[data-letter-type="contour"] .crane-visualization__text {
  color: transparent;
  -webkit-text-stroke: 1px var(--crane-letter-color);
  background: #0000006b;
}
.crane-visualization[data-letter-type="volume"] .crane-visualization__text {
  text-shadow:
    2px 2px 0 #5e667033,
    0 0 5px #000000,
    0 0 14px rgb(210 232 255 / 80%);
  background: #0000006b;
}
.crane-visualization[data-letter-type="composite"] .crane-visualization__text {
  padding: 1px 2px;
  border: 1px solid var(--crane-letter-color);
  border-radius: 2px;
  color: transparent;
  -webkit-text-stroke: 1px var(--crane-letter-color);
  background: #1e2734;
  box-shadow:
    0 0 2px var(--crane-letter-color),
    0 0 0px rgb(210 232 255 / 74%);
}
.crane-visualization[data-letter-type="none"] .crane-visualization__text {
  display: none;
}
.crane-visualization__colors {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: rgb(10 16 24 / 72%);
}
.crane-visualization__color {
  display: block;
  cursor: pointer;
}
.crane-visualization__color input {
  position: absolute;
  opacity: 0;
}
.crane-visualization__color > span[aria-hidden="true"] {
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 2px;
}
.crane-visualization__color input:checked + span[aria-hidden="true"] {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.crane-visualization__color input:focus-visible + span[aria-hidden="true"] {
  outline: 2px solid #7dbdff;
  outline-offset: 2px;
}
.crane-visualization__color-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.crane-visualization__color:nth-child(1) > span[aria-hidden="true"] {
  background: #fff;
}
.crane-visualization__color:nth-child(2) > span[aria-hidden="true"] {
  background: #3f96d7;
}
.crane-visualization__colors--letters {
  bottom: 52px;
}
.crane-visualization__color:nth-child(3) > span[aria-hidden="true"] {
  background: #cc5552;
}
.crane-visualization__color:nth-child(4) > span[aria-hidden="true"] {
  background: #d4b628;
}
.crane-visualization__color:nth-child(5) > span[aria-hidden="true"] {
  background: #43a864;
}
.crane-visualization__color:nth-child(6) > span[aria-hidden="true"] {
  background: #8254b7;
}
.crane-calculator__price-card {
  margin-top: 16px;
  padding: clamp(25px, 3vw, 34px) clamp(24px, 4vw, 59px);
  border: 1px solid rgb(125 189 255 / 30%);
  border-radius: 26px;
  background: rgb(10 29 49 / 36%);
}
.crane-calculator__price-card h3 {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 18px);
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}
.crane-calculator__info-button {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-left: 7px;
  padding: 0;
  place-items: center;
  vertical-align: middle;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #a9d1ff;
  background: transparent;
  font:
    700 13px/1 Arial,
    sans-serif;
  cursor: pointer;
}
.crane-calculator__info-button:hover,
.crane-calculator__info-button:focus-visible {
  color: #fff;
  background: rgb(125 189 255 / 22%);
}
.crane-calculator__info-popup {
  position: relative;
  z-index: 5;
  margin: 12px auto -2px;
  padding: 12px 36px 12px 14px;
  border: 1px solid rgb(125 189 255 / 42%);
  border-radius: 10px;
  color: rgb(255 255 255 / 88%);
  background: #162437;
  box-shadow: 0 8px 20px rgb(0 0 0 / 24%);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}
.crane-calculator__info-popup p {
  margin: 0;
}
.crane-calculator__info-popup p + p {
  margin-top: 8px;
}
.crane-calculator__info-close {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  color: rgb(255 255 255 / 70%);
  background: transparent;
  font:
    300 24px/18px Arial,
    sans-serif;
  cursor: pointer;
}
.crane-calculator__info-close:hover,
.crane-calculator__info-close:focus-visible {
  color: #fff;
}
.crane-calculator__price {
  margin: 20px 0 28px;
  color: #2196f3;
  font-size: clamp(30px, 2.5vw, 30px);
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.crane-calculator__notice-title {
  margin: 0 0 4px;
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.3;
  font-weight: 700;
}
.crane-calculator__notice {
  margin: 0;
  font-size: clamp(14px, 1.15vw, 14px);
  line-height: 1.55;
  font-weight: 400;
}
.crane-calculator__cta.service-prices__cta {
  display: grid;
  width: 100%;
  min-height: 80px;
  margin-top: 24px;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.3;
}
.crane-calculator__cta-note {
  display: block;
  color: rgb(255 255 255 / 65%);
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 901px) {
  .crane-calculator__layout {
    align-items: start;
  }
  .crane-calculator__form {
    display: grid;
    gap: clamp(22px, 2vw, 30px);
  }
  .crane-calculator__label {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .crane-calculator__choices {
    gap: 13px;
  }
  .crane-calculator__choice {
    font-size: 15px;
  }
  .crane-calculator__result {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
    align-content: start;
  }
  .crane-calculator__preview {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }
  .crane-calculator__placeholder {
    height: 250px;
    min-height: 350px;
    flex: 0 0 250px;
  }
  .crane-calculator__price-card {
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 30px;
  }
  .crane-calculator__price {
    margin-top: 12px;
    margin-bottom: 16px;
  }
  .crane-calculator__cta.service-prices__cta {
    min-height: 68px;
    margin-top: 12px;
  }
}
@media (max-width: 900px) {
  .crane-calculator__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }
  .crane-calculator__result {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    gap: 22px;
    align-items: end;
  }
  .crane-calculator__price-card {
    margin-top: 0;
  }
  .crane-calculator__placeholder {
    min-height: 280px;
  }
}
@media (max-width: 620px) {
  .crane-calculator {
    padding: 48px 0;
  }
  .crane-calculator__title {
    font-size: clamp(20px, 7vw, 20px);
    line-height: 1.35;
  }
  .crane-calculator__layout {
    gap: 42px;
    margin-top: 34px;
  }
  .crane-calculator__form {
    gap: 38px;
  }
  .crane-calculator__label {
    margin-bottom: 14px;
    font-size: 16px;
  }
  .crane-calculator__text-input {
    min-height: 54px;
    font-size: 16px;
  }
  .crane-calculator__choices {
    gap: 16px;
  }
  .crane-calculator__choice {
    gap: 10px;
    font-size: 16px;
  }
  .crane-calculator__choice input {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }
  .crane-calculator__result {
    display: block;
  }
  .crane-calculator__preview-title {
    margin-bottom: 14px;
  }
  .crane-calculator__placeholder {
    min-height: min(64vw, 300px);
    border-radius: 20px;
  }
  .crane-calculator__price-card {
    margin-top: 14px;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .crane-calculator__turnkey-group {
    display: block;
  }
  .crane-calculator__price {
    margin: 17px 0 23px;
  }
  .crane-calculator__cta.service-prices__cta {
    min-height: 70px;
    margin-top: 20px;
  }
}
.portfolio-case {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 1.12fr);
  grid-template-areas: "title title" "hero details" "slider details" ". cta";
  column-gap: 44px;
  align-items: start;
  margin-top: 70px;
}
.portfolio-case + .portfolio-case {
  margin-top: 80px;
  padding-top: 70px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}
.portfolio-case__title {
  grid-area: title;
  margin: 0 0 24px;
  font-size: clamp(18px, 2.2vw, 16px);
  line-height: 1.55;
  font-weight: 400;
}
.portfolio-case__hero {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #101722;
  cursor: zoom-in;
}
.portfolio-case__hero {
  grid-area: hero;
}
.portfolio-case__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-case__zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(12 21 32 / 0%);
  opacity: 0;
  transition:
    background-color 0.25s ease,
    opacity 0.25s ease;
}
.portfolio-case__zoom svg {
  width: 74px;
  height: 74px;
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 2px 5px rgb(0 0 0 / 35%));
}
.portfolio-case__hero:focus-visible .portfolio-case__zoom {
  background: rgb(12 21 32 / 45%);
  opacity: 1;
}
.portfolio-slider {
  grid-area: slider;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 10px;
  margin-top: 12px;
}
.portfolio-slider__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.portfolio-slider__track::-webkit-scrollbar {
  display: none;
}
.portfolio-slider[hidden],
.portfolio-slider__thumb[hidden] {
  display: none !important;
}
.portfolio-slider__thumb {
  flex: 0 0 calc((100% - 20px) / 3);
  min-width: 0;
  aspect-ratio: 3 / 2;
  padding: 3px;
  border: 2px solid transparent;
  background: rgb(255 255 255 / 10%);
  cursor: pointer;
  opacity: 0.7;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}
.portfolio-slider__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-slider__thumb.is-active {
  border-color: #066fd1;
  opacity: 1;
}
.portfolio-slider__arrow {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.portfolio-slider__arrow svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.portfolio-case__details {
  grid-area: details;
  display: grid;
  grid-template-columns: 1fr;
  margin: -14px 0 0;
}
.portfolio-case__details > div {
  display: grid;
  grid-template-columns: minmax(190px, 1.05fr) minmax(110px, 0.95fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}
.portfolio-case__details dt {
  color: rgb(255 255 255 / 64%);
  line-height: 1.5;
}
.portfolio-case__details dd {
  margin: 0;
  line-height: 1.5;
  font-weight: 700;
}
.portfolio-case__details .portfolio-case__total {
  grid-column: auto;
  grid-template-columns: minmax(190px, 1.05fr) minmax(0, 0.95fr);
}
.portfolio-case__details .portfolio-case__description {
  grid-column: auto;
  grid-template-columns: 1fr;
  gap: 8px;
}
.portfolio-case__cta {
  grid-area: cta;
  justify-self: start;
  min-height: 54px;
  margin-top: 16px;
  padding: 14px 40px;
  border: 0;
  border-radius: 100px;
  line-height: 1.55;
  color: #fff;
  background: #066fd1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgb(6 111 209 / 24%);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.gallery-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 56px 76px;
  background: rgb(0 0 0 / 90%);
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
}
.gallery-lightbox__close,
.gallery-lightbox__arrow {
  position: absolute;
  z-index: 1;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}
.gallery-lightbox__close {
  top: 12px;
  right: 20px;
  font-size: 48px;
  font-weight: 200;
  line-height: 1;
}
.gallery-lightbox__arrow {
  top: 50%;
  width: 58px;
  height: 72px;
  font-size: 58px;
  line-height: 1;
  transform: translateY(-50%);
}
.gallery-lightbox__arrow--prev {
  left: 8px;
}
.gallery-lightbox__arrow--next {
  right: 8px;
}
body.gallery-open {
  overflow: hidden;
}
@media (hover: hover) {
  .portfolio-case__hero:hover .portfolio-case__zoom {
    background: rgb(12 21 32 / 48%);
    opacity: 1;
  }
  .portfolio-slider__thumb:hover {
    opacity: 1;
  }
}
@media (min-width: 901px) {
  .portfolio-preview {
    padding: 80px 0;
  }
  .portfolio-case--single {
    grid-template-areas: "title title" "hero details" ". cta";
  }
}
@media (min-width: 621px) and (max-width: 900px) {
  .portfolio-case {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "hero" "slider" "details" "cta";
  }
  .portfolio-case__details {
    margin-top: 28px;
  }
  .portfolio-slider {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 12px;
    margin-top: 14px;
  }
  .portfolio-slider__track {
    gap: 12px;
  }
  .portfolio-slider__thumb {
    flex-basis: calc((100% - 36px) / 4);
  }
}
button,
a {
  font: inherit;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #080606 url("../images/bg.jpg") center / cover no-repeat;
  background-image: image-set(
    url("../images/bg.webp") type("image/webp"),
    url("../images/bg.jpg") type("image/jpeg")
  );
}
.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-color: rgb(0 0 0 / 75%);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero__video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 80px;
}
.header__top {
  display: grid;
  grid-template-columns: 268px 1fr 320px;
  align-items: start;
  /* min-height: 278px; */
  background: none;
  border-radius: 20px;
  margin-top: 20px;
  /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);*/
}
.logo {
  display: grid;
  place-items: center;
  width: 268px;
  height: 255px;
  padding: 20px 17px 13px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #1e2734;
}
.logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
}
@media (min-width: 621px) {
  .logo img {
    transform: none;
  }
}
.header__service-area {
  align-self: center;
  justify-self: center;
  max-width: 360px;
  margin: 0 28px;
  font-size: clamp(15px, 1.35vw, 16px);
  line-height: 1.55;
  font-weight: 200;
  text-align: center;
}
.header__ratings {
  display: flex;
  align-self: center;
  justify-self: center;
  flex-direction: row;
  gap: 16px;
}
.header__ratings iframe {
  display: block;
  width: 150px;
  height: 50px;
  overflow: hidden;
  border: 0;
}
.contacts {
  grid-column: 3;
  padding-top: 20px;
  font-style: normal;
  text-align: right;
}
.contacts__question,
.contacts__hours {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  color: #a4a4a4;
}
.contacts__phone {
  margin-top: 10px;
  color: inherit;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.contacts__hours {
  margin-top: 20px;
}
.contacts__hours strong {
  font-weight: 700;
}
.contacts__email {
  margin-top: 15px;
  color: inherit;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
}
.contacts__line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}
.contacts__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contacts__icon--phone {
  width: 25px;
  height: 25px;
}
.contacts__button,
.site-footer__callback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 240px;
  min-height: 53px;
  margin-top: 21px;
  border: 0;
  border-radius: 100px;
  color: #fff;
  background: rgb(30 39 52);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 16px;
  font-weight: 400;
  cursor: default;
  border: 1px solid rgb(255 255 255 / 16%);
}
.contacts__button-icon {
  width: 22px;
  height: 22px;
  transform: translateY(1px);
}
.nav {
  margin-top: 25px;
}
.nav__indicator {
  display: none;
}
.nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link {
  display: inline-block;
  padding: 4px;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 200;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease;
}
.nav__link[aria-current="location"],
.sticky-header__nav a[aria-current="location"],
.mobile-menu__panel a[aria-current="location"] {
  background: rgb(113 113 113 / 86%);
}
.site-footer__nav a[aria-current="location"] {
  color: #4aa9ff;
}
.nav__link:focus-visible {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  outline-offset: 2px;
}
@media (hover: hover) {
  .nav__link:hover {
    background: rgb(113 113 113 / 86%);
  }
}
.hero__title {
  max-width: 1100px;
  margin: 45px 0 0;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.65;
  font-weight: 700;
  text-transform: uppercase;
}
.hero__title span {
  display: block;
}
.hero__headline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: start;
  gap: 32px;
}
.hero__ratings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 55px;
}
.hero__ratings iframe {
  display: block;
  width: 150px;
  height: 50px;
  overflow: hidden;
  border: 0;
}
@media (min-width: 901px) {
  .hero__headline {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero__ratings {
    display: none;
  }
}
@media (max-width: 900px) {
  .header__ratings {
    display: none;
  }
}
.hero__mobile-area {
  display: block;
  margin: 12px 0 40px;
  color: rgb(255 255 255 / 72%);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
}
.hero__title-break--mobile {
  display: none;
}
.hero__subtitle {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 15px 0 0;
  font-size: clamp(13px, 1.25vw, 17px);
  line-height: 1.35;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  color: #acacac;
}
.hero__subtitle-divider {
  flex: 0 0 auto;
  color: #acacac;
  font-size: 1.1em;
  line-height: 1;
}
.hero__subtitle-break {
  display: none;
}
@media (max-width: 690px) {
  .hero__subtitle-break {
    display: block;
  }
}
.hero__stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}
.hero__stages li {
  display: grid;
  grid-template-columns: 28px max-content;
  align-items: center;
  justify-content: flex-start;
  column-gap: 4px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.hero__stages span {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__stage-icon {
  display: block;
  width: 24px;
  height: 24px;
  justify-self: center;
  flex: 0 0 auto;
  object-fit: contain;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  min-height: 90px;
  margin-top: 50px;
  padding: 14px 30px;
  overflow: hidden;
  border: none;
  border-radius: 100px;
  color: #fff;
  background: #066fd1;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}
.hero__cta::before {
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: -45%;
  width: 34%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 30%),
    transparent
  );
  filter: blur(2px);
  transform: skewX(-18deg);
  animation: hero-cta-shimmer 5.5s ease-in-out infinite;
  pointer-events: none;
}
.hero__cta-label {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 47px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 20px;
}
.hero__cta-copy {
  grid-column: 1;
  grid-row: 1;
  line-height: 2;
}
.hero__cta-note {
  grid-column: 1 / -1;
  grid-row: 2;
  color: #aeb5bf;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}
.hero__cta-icon {
  display: block;
  grid-column: 2;
  grid-row: 1;
  width: 48px;
  height: 48px;
}
.hero__cta-break {
  display: none;
}
@keyframes hero-cta-shimmer {
  0%,
  22% {
    left: -45%;
  }
  68%,
  100% {
    left: 120%;
  }
}
@media (min-width: 901px) {
  .hero__stages {
    grid-template-columns: repeat(4, max-content);
    gap: 40px;
    width: max-content;
    max-width: 100%;
  }
  .header__top {
    grid-template-columns: 220px 1fr 290px;
    border-radius: 16px;
    margin-top: 25px;
  }
  .logo {
    width: 220px;
    height: 210px;
    padding: 14px 12px 10px;
  }
  .header__service-area {
    margin-right: 20px;
    margin-left: 20px;
    font-size: clamp(13px, 1.15vw, 15px);
    line-height: 1.45;
  }
  .contacts {
    padding-top: 14px;
  }
  .contacts__question,
  .contacts__hours {
    font-size: 13px;
  }
  .contacts__phone {
    margin-top: 6px;
    font-size: 25px;
  }
  .contacts__hours {
    margin-top: 14px;
  }
  .contacts__email {
    margin-top: 10px;
    font-size: 18px;
  }
  .contacts__line {
    gap: 9px;
  }
  .contacts__icon {
    width: 18px;
    height: 18px;
  }
  .contacts__icon--phone {
    width: 22px;
    height: 22px;
  }
  .contacts__button {
    width: 220px;
    min-height: 44px;
    margin-top: 14px;
    gap: 9px;
    font-size: 14px;
    border: 1px solid rgb(255 255 255 / 16%);
  }
  .contacts__button-icon {
    width: 19px;
    height: 19px;
  }
}
@media (min-width: 901px) and (max-width: 1200px) {
  .nav__list {
    gap: 12px;
  }
  .nav__link {
    padding-right: 3px;
    padding-left: 3px;
  }
}
@media (min-width: 901px) and (max-width: 1050px) {
  .nav__list {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 18px;
    row-gap: 6px;
  }
  .nav__link {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 16px;
  }
}
@media (min-width: 621px) and (max-width: 740px) {
  .hero__stages {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }
  .hero__stages li {
    gap: 7px;
    min-height: 0;
    padding: 0 4px;
  }
  .hero__stages span {
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
  }
  .hero__stage-icon {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 900px) {
  .services__inner {
    width: min(100% - 32px, 680px);
  }
  .portfolio-preview__inner {
    width: min(100% - 32px, 680px);
  }
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }
  .visualization__inner {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(100% - 32px, 680px);
    min-height: 0;
    padding: 48px 0;
  }
  .visualization__content {
    display: contents;
  }
  .visualization__title {
    order: 1;
  }
  .visualization__media {
    order: 2;
  }
  .visualization__text {
    order: 3;
    margin-top: 0;
  }
  .visualization__button {
    order: 4;
  }
  .visualization__title,
  .visualization__text {
    max-width: 620px;
  }
  .visualization__media {
    width: min(100%, 560px);
    margin-right: auto;
    margin-left: auto;
  }
  .hero__inner {
    display: flex;
    flex-direction: column;
  }
  .header {
    order: 0;
  }
  .hero__headline {
    display: contents;
  }
  .hero__title {
    order: 1;
  }
  .hero__mobile-area {
    display: block;
    order: 1;
    margin: 12px 0 45px;
    color: rgb(255 255 255 / 72%);
    font-size: clamp(13px, calc(1.8vw + 1px), 14px);
    line-height: 1.4;
    font-weight: 500;
  }
  .hero__subtitle {
    order: 2;
  }
  .hero__stages {
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    width: 100%;
  }
  .hero__stages li {
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 10px;
  }
  .hero__stages span {
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
  }
  .hero__cta {
    order: 4;
  }
  .hero__ratings {
    order: 5;
    flex-direction: row;
    justify-content: left;
    gap: 10px;
    width: 100%;
    margin-top: 24px;
  }
  .hero__ratings iframe {
    width: 150px;
    flex: 0 0 150px;
  }
  .header__service-area {
    display: none;
  }
  .hero__inner {
    width: min(100% - 32px, 680px);
  }
  .header__top {
    grid-template-columns: 210px 1fr;
    min-height: 225px;
  }
  .logo {
    width: 210px;
    height: 200px;
  }
  .contacts {
    grid-column: 2;
    padding-top: 14px;
  }
  .contacts__phone {
    font-size: 25px;
  }
  .contacts__button {
    width: min(235px, calc(100% - 20px));
    min-height: 46px;
    margin-top: 16px;
    gap: 9px;
    font-size: 15px;
  }
  .contacts__button-icon {
    width: 19px;
    height: 19px;
  }
  .nav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 620px) {
  .screen--services {
    padding: 50px 0;
  }
  .services__inner {
    width: min(100% - 28px, 440px);
  }
  .portfolio-preview__inner {
    width: min(100% - 28px, 440px);
  }
  .services__title {
    font-size: 26px;
  }
  .portfolio-preview__title {
    font-size: 26px;
  }
  .portfolio-case {
    margin-top: 28px;
  }
  .portfolio-case {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "hero" "slider" "details" "cta";
  }
  .portfolio-case__title {
    margin-bottom: 18px;
  }
  .portfolio-case__hero {
    aspect-ratio: 4 / 3;
  }
  .portfolio-slider {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    margin-top: 10px;
  }
  .portfolio-slider__track {
    gap: 8px;
  }
  .portfolio-slider__thumb {
    flex-basis: calc((100% - 8px) / 2);
  }
  .portfolio-case__details {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }
  .portfolio-case__details > div,
  .portfolio-case__details .portfolio-case__total,
  .portfolio-case__details .portfolio-case__description {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px 0;
  }
  .portfolio-case__details dt,
  .portfolio-case__details dd {
    font-size: 14px;
  }
  .portfolio-case__cta {
    width: 100%;
  }
  .gallery-lightbox {
    padding: 54px 44px;
  }
  .gallery-lightbox__arrow {
    width: 40px;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 32px;
  }
  .service-card__media {
    aspect-ratio: 16 / 9;
  }
  .service-card__title {
    right: 18px;
    bottom: 17px;
    left: 18px;
    font-size: 15px;
  }
  .service-card__price {
    font-size: 18px;
  }
  .service-card__button {
    width: 90%;
    min-height: 50px;
    margin-top: 16px;
    font-size: 13px;
  }
  .visualization__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: min(100% - 28px, 440px);
    min-height: 0;
    padding: 36px 0 30px;
  }
  .visualization__content {
    display: contents;
  }
  .visualization__title {
    order: 1;
    font-size: 23px;
  }
  .visualization__text {
    order: 3;
    margin-top: 0;
    font-size: 14px;
  }
  .visualization__button {
    order: 4;
    width: 90%;
    min-height: 84px;
    margin: 6px auto 0;
    padding: 12px 20px;
  }
  .visualization__button-label {
    grid-template-columns: 12px minmax(0, 1fr) 42px;
    column-gap: 8px;
  }
  .visualization__button-text {
    font-size: 13px;
  }
  .visualization__button-icon {
    width: 40px;
    height: 40px;
  }
  .visualization__media {
    order: 2;
    width: min(100%, 390px);
    margin: 8px auto;
  }
  .hero::after {
    background-color: rgba(5, 3, 3, 0.8);
  }
  .hero__inner {
    display: flex;
    flex-direction: column;
    width: min(100% - 28px, 440px);
    padding-top: 12px;
    padding-top: max(0px, env(safe-area-inset-top));
  }
  .header__top {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    gap: 8px;
    min-height: 0;
    align-items: center;
    padding: 5px 0 5px 0;
    border-radius: 20px;
    /* background: #1e2734;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);*/
  }
  .logo {
    width: 100%;
    height: auto;
    aspect-ratio: 268 / 255;
    margin: 0;
    padding: 5px 0 3px;
    overflow: hidden;
    background: #1e2734;
    overflow: hidden;
    border-radius: 9px;
  }
  .logo img {
    width: auto;
    transform: none;
  }
  .contacts {
    display: block;
    grid-column: 2;
    width: 100%;
    padding: 0;
    text-align: right;
  }
  .contacts__line {
    justify-content: flex-end;
    gap: 7px;
  }
  .contacts__hours,
  .contacts__email {
    font-size: clamp(11px, 3.1vw, 14px);
    line-height: 1.3;
  }
  .contacts__question {
    display: block;
    margin-bottom: 9px;
    font-size: clamp(10px, 2.85vw, 13px);
    line-height: 1.25;
    white-space: nowrap;
  }
  .nav__link {
    font-size: 15px;
  }
  .contacts__phone {
    margin-top: 0;
    font-size: clamp(15px, 4.65vw, 20px);
    line-height: 1.2;
  }
  .contacts__hours {
    margin-top: 13px;
  }
  .contacts__email {
    margin-top: 9px;
  }
  .contacts__icon {
    width: 14px;
    height: 14px;
  }
  .contacts__icon--phone {
    width: 16px;
    height: 16px;
  }
  .contacts__button {
    display: none;
  }
  .nav {
    margin-top: 10px;
  }
  .nav__scroller {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav__scroller::-webkit-scrollbar {
    display: none;
  }
  .nav__list {
    width: max-content;
    min-width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 6px;
    padding: 2px 1px 5px;
  }
  .nav__indicator {
    position: relative;
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
  }
  .nav__indicator-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    border-radius: inherit;
    background: #fff;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .hero__title {
    order: 1;
    margin-top: 25px;
    font-size: clamp(23px, 6.7vw, 29px);
    line-height: 1.52;
  }
  .hero__title span {
    display: inline;
  }
  .hero__title-break--desktop {
    display: none;
  }
  .hero__title-break--mobile {
    display: block;
  }
  .hero__subtitle {
    order: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(
        0,
        1.25fr
      );
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    font-size: clamp(9px, 2.45vw, 12px);
    line-height: 1.35;
    white-space: normal;
  }
  .hero__subtitle-label {
    min-width: 0;
    text-align: left;
    white-space: normal;
  }
  .hero__stages {
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
    width: 100%;
    margin-top: 50px;
  }
  .hero__stages li {
    gap: 4px;
    min-height: 0;
    padding: 0;
  }
  .hero__stages span {
    font-size: 12px;
    text-align: left;
    white-space: normal;
  }
  .hero__stage-icon {
    width: 22px;
    height: 22px;
  }
  .hero__cta {
    order: 4;
    width: 90%;
    min-height: 84px;
    margin-top: 30px;
    margin-right: auto;
    margin-bottom: 25px;
    margin-left: auto;
    padding: 14px 24px;
    font-size: 12px;
  }
  .hero__cta-label {
    line-height: 2;
  }
  .hero__cta-break {
    display: block;
  }
  .hero__cta-icon {
    width: 44px;
    height: 44px;
  }
  .header {
    order: 0;
  }
  .hero__headline {
    display: contents;
  }
  .hero__ratings {
    order: 5;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
  }
  .hero__ratings iframe {
    width: 150px;
    flex: 0 0 150px;
  }
}
@media (max-width: 389px) {
  .header__top {
    grid-template-columns: minmax(96px, 32%) minmax(0, 1fr);
  }
  .logo {
    width: 90%;
    justify-self: start;
  }
}
@media (max-width: 370px) {
  .services__inner {
    width: calc(100% - 20px);
  }
  .portfolio-preview__inner {
    width: calc(100% - 20px);
  }
  .hero__inner {
    width: calc(100% - 20px);
  }
  .header__top {
    padding-right: 9px;
    padding-left: 3px;
  }
}
@media (max-width: 319px) {
  .services__inner {
    width: calc(100% - 12px);
  }
  .portfolio-preview__inner {
    width: calc(100% - 12px);
  }
  .hero__inner {
    width: calc(100% - 12px);
    padding-top: 6px;
  }
  .header__top {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 4px;
    padding: 7px 7px 8px 20px;
    border-radius: 15px;
  }
  .logo img {
    width: auto;
    transform: none;
  }
  .contacts__line {
    gap: 4px;
  }
  .contacts__question {
    margin-bottom: 7px;
    font-size: 8.5px;
  }
  .contacts__phone {
    font-size: 13px;
  }
  .contacts__hours,
  .contacts__email {
    font-size: 9.5px;
  }
  .contacts__hours {
    margin-top: 9px;
  }
  .contacts__email {
    margin-top: 7px;
  }
  .contacts__icon,
  .contacts__icon--phone {
    width: 12px;
    height: 12px;
  }
  .nav {
    margin-top: 17px;
  }
  .nav__link {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 16px;
  }
  .hero__title {
    margin-top: 32px;
    font-size: 21px;
    line-height: 1.48;
  }
  .hero__subtitle {
    gap: 3px;
    margin-top: 17px;
    font-size: 8.5px;
  }
  .hero__stages {
    gap: 6px;
    margin-top: 18px;
  }
  .hero__stages li {
    gap: 5px;
    min-height: 0;
    padding: 0;
  }
  .hero__stages span {
    font-size: 14px;
  }
  .hero__stage-icon {
    width: 20px;
    height: 20px;
  }
  .hero__ratings iframe {
    width: 150px;
    flex-basis: 150px;
  }
  .hero__ratings {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 340px) {
  .hero__inner {
    width: calc(100% - 16px);
    padding-top: 6px;
  }
  .header__top {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 5px;
    padding: 6px;
  }
  .logo {
    width: 88px;
  }
  .contacts__line {
    gap: 4px;
  }
  .contacts__question {
    margin-bottom: 6px;
    font-size: 8px;
  }
  .contacts__phone {
    font-size: 12px;
  }
  .contacts__hours,
  .contacts__email {
    font-size: 9px;
  }
  .contacts__hours {
    margin-top: 8px;
  }
  .contacts__email {
    margin-top: 6px;
  }
  .contacts__icon,
  .contacts__icon--phone {
    width: 11px;
    height: 11px;
  }
  .nav {
    margin-top: 14px;
  }
  .nav__link {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 14px;
  }
  .hero__title {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.48;
  }
  .hero__subtitle {
    gap: 2px;
    margin-top: 16px;
    font-size: 8px;
  }
  .hero__stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 8px;
    margin-top: 17px;
  }
  .hero__stages li {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 5px;
    min-width: 0;
  }
  .hero__stages span {
    min-width: 0;
    font-size: 10px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  .hero__stage-icon {
    width: 18px;
    height: 18px;
  }
  .hero__cta {
    width: calc(100% - 16px);
    min-height: 76px;
    margin-top: 24px;
    margin-bottom: 20px;
    padding: 12px 16px;
    font-size: 11px;
  }
  .hero__cta-label {
    grid-template-columns: minmax(0, 1fr) 38px;
    column-gap: 8px;
    line-height: 1.7;
  }
  .hero__cta-copy {
    min-width: 0;
  }
  .hero__cta-icon {
    width: 38px;
    height: 38px;
  }
  .hero__ratings {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .hero__ratings iframe {
    width: 145px;
    flex: 0 0 145px;
  }
}
@media (max-width: 620px) and (orientation: portrait) {
  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }
}
@media (min-width: 621px) {
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 0;
  }
}
.back-to-top {
  position: fixed;
  z-index: 1900;
  right: clamp(16px, 2vw, 30px);
  bottom: clamp(240px, 2vw, 30px);
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgb(30 39 52);
  border: 1px solid rgb(255 255 255 / 14%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 26%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top svg {
  display: block;
  width: 26px;
  height: 26px;
  min-width: 26px;
  flex: 0 0 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.back-to-top:focus-visible {
  outline: 2px solid #7dbdff;
  outline-offset: 3px;
}
@media (hover: hover) {
  .back-to-top:hover {
    background: #066fd1;
  }
}
@media (max-width: 700px) {
  .back-to-top {
    width: 46px;
    height: 46px;
    bottom: calc(194px + env(safe-area-inset-bottom));
  }
  .back-to-top svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    flex-basis: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}
/* Подсветка кнопок, кроме заказа звонка, изображений и элементов галереи. */
button:not(
  .back-to-top,
  .mobile-menu__backdrop,
  .mobile-menu-toggle,
  .contacts__button,
  .site-footer__callback,
  .service-card__media,
  .portfolio-case__hero,
  .portfolio-slider__thumb,
  .portfolio-slider__arrow,
  .gallery-lightbox__close,
  .gallery-lightbox__arrow
) {
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    translate 0.2s ease;
}
@media (hover: hover) {
  button:not(
      .back-to-top,
      .mobile-menu__backdrop,
      .mobile-menu-toggle,
      .contacts__button,
      .site-footer__callback,
      .service-card__media,
      .portfolio-case__hero,
      .portfolio-slider__thumb,
      .portfolio-slider__arrow,
      .gallery-lightbox__close,
      .gallery-lightbox__arrow
    ):not(:disabled):hover {
    background-color: #0879e2;
    translate: 0 -2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  button:not(
    .back-to-top,
    .mobile-menu__backdrop,
    .mobile-menu-toggle,
    .contacts__button,
    .site-footer__callback,
    .service-card__media,
    .portfolio-case__hero,
    .portfolio-slider__thumb,
    .portfolio-slider__arrow,
    .gallery-lightbox__close,
    .gallery-lightbox__arrow
  ) {
    transition: none;
    translate: none;
  }
  button:not(
      .back-to-top,
      .mobile-menu__backdrop,
      .mobile-menu-toggle,
      .contacts__button,
      .site-footer__callback,
      .service-card__media,
      .portfolio-case__hero,
      .portfolio-slider__thumb,
      .portfolio-slider__arrow,
      .gallery-lightbox__close,
      .gallery-lightbox__arrow
    ):not(:disabled):hover {
    translate: none;
  }
  .hero__video {
    display: none;
  }
  .hero__cta::before,
  .visualization__button::before {
    animation: none;
  }
  .nav__link {
    transition: none;
  }
}
/* Callback dialog uses the same palette and controls as the question form. */
body.callback-open {
  overflow: hidden;
}
.contacts__button,
.site-footer__callback {
  cursor: pointer;
}
.callback-modal {
  --callback-gutter: clamp(12px, 3vw, 24px);
  position: fixed;
  top: var(--callback-viewport-top, 0px);
  bottom: auto;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  height: var(--callback-viewport-height, 100dvh);
  max-height: none;
  margin: 0;
  padding: max(36px, env(safe-area-inset-top, 0px))
    max(24px, env(safe-area-inset-right, 0px))
    max(24px, env(safe-area-inset-bottom, 0px))
    max(24px, env(safe-area-inset-left, 0px));
  border: 0;
  background: transparent;
  color: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.callback-modal[open] {
  display: flex;
  flex-direction: column;
}
.callback-modal__card {
  position: relative;
  flex: 0 0 auto;
  width: min(560px, 100%);
  max-width: 560px;
  margin: auto;
  padding: 48px 40px 40px;
  overflow: visible;
  overflow-wrap: anywhere;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 20px;
  color: #fff;
  background: #1e2734;
  box-shadow: 0 28px 90px rgb(0 0 0 / 50%);
  font: inherit;
}
.callback-modal::backdrop {
  background: rgb(5 10 17 / 78%);
  backdrop-filter: blur(6px);
}
.callback-modal__close {
  position: absolute;
  top: -22px;
  right: -10px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  color: #fff;
  background: #263242;
  cursor: pointer;
}
.callback-modal__close svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.callback-modal .callback-modal__close:hover {
  background: #35455b;
  translate: none;
}
.callback-modal h2 {
  margin: 0;
  font-size: clamp(23px, 4vw, 30px);
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.callback-modal h2 span {
  color: #4aa9ff;
}
.callback-modal__description {
  margin: 20px 0 30px;
  color: #c1c9d4;
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}
.callback-modal .question-form__field input {
  min-width: 0;
  font-size: clamp(16px, 4.5vw, 20px);
}
.callback-modal__hint {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 11px;
}
.callback-modal__hint a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  cursor: text;
}
.callback-modal .question-form__consent {
  margin-top: 24px;
  align-items: start;
}
.callback-modal .question-form__submit {
  width: 100%;
  margin-top: 26px;
}
.callback-modal .question-form__submit:hover {
  background: #1684e8;
}
.callback-modal button:focus-visible {
  outline: 2px solid #7dbdff;
  outline-offset: 4px;
}
@media (max-width: 760px) {
  .callback-modal__card {
    margin: 0 auto;
  }
}
@media (pointer: coarse) {
  .callback-modal .callback-modal__close:focus {
    outline: none;
  }
}
@media (max-width: 480px) {
  .callback-modal__card {
    padding: 64px clamp(16px, 5vw, 22px) 28px;
    border-radius: 16px;
  }
  .callback-modal h2 {
    font-size: clamp(20px, 5.8vw, 27px);
  }
  .callback-modal__description br {
    display: none;
  }
  .callback-modal .question-form__submit {
    padding-inline: 14px;
    font-size: 13px;
  }
}
@media (max-height: 600px) {
  .callback-modal__card {
    padding-top: 58px;
    padding-bottom: 22px;
  }
  .callback-modal h2 {
    font-size: 22px;
  }
  .callback-modal__description {
    margin: 12px 0 18px;
  }
  .callback-modal .question-form__consent {
    margin-top: 16px;
  }
  .callback-modal .question-form__submit {
    min-height: 50px;
    margin-top: 18px;
  }
}
/* Close controls stay flat, including hover and focus states. */
button.callback-modal__close,
button.mobile-menu__close,
button.gallery-lightbox__close {
  box-shadow: none;
}
.site-footer__callback {
  max-width: 100%;
}
.site-footer__callback svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  transform: translateY(1px);
}
.contacts__button,
.site-footer__callback {
  transition:
    background-color 0.2s ease,
    translate 0.2s ease;
}
@media (hover: hover) {
  .contacts__button:hover,
  .site-footer__callback:hover {
    background-color: #2c3a4d;
    translate: 0 -2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contacts__button,
  .site-footer__callback {
    transition: none;
  }
  .contacts__button:hover,
  .site-footer__callback:hover {
    translate: none;
  }
}
.estimate-modal h2 {
  font-size: clamp(20px, 4.6vw, 22px);
}
.estimate-modal__lead {
  margin: 22px 0 0;
  font-size: clamp(15px, 3.8vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.estimate-modal .callback-modal__description {
  margin: 16px 0 24px;
}
.estimate-modal__submit span {
  display: block;
}
.estimate-modal__note {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  color: #d5e9ff;
}
@media (max-height: 600px) {
  .estimate-modal .callback-modal__card {
    padding-top: 58px;
  }
  .estimate-modal__lead {
    margin-top: 14px;
  }
  .estimate-modal .callback-modal__description {
    margin: 12px 0 18px;
  }
}
@media (max-width: 760px) {
  .callback-modal .callback-modal__card {
    padding: 30px clamp(18px, 5vw, 24px) 26px;
  }
  .callback-modal h2 {
    font-size: clamp(18px, 4.5vw, 21px);
    line-height: 1.35;
  }
  .callback-modal .estimate-modal__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.35;
  }
  .callback-modal .callback-modal__description {
    margin: 18px 0;
    font-size: 13px;
    line-height: 1.5;
  }
  .callback-modal .question-form__field label {
    margin-bottom: 7px;
    font-size: 13px;
  }
  .callback-modal .question-form__field input {
    height: 50px;
    font-size: 16px;
  }
  .callback-modal .question-form__consent {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.4;
  }
  .callback-modal .question-form__submit {
    min-height: 54px;
    margin-top: 20px;
    padding: 13px 14px;
    font-size: 13px;
    width: 100%;
  }
  .callback-modal .estimate-modal__note {
    margin-top: 5px;
  }
}
@media (max-width: 760px) {
  .callback-modal h2 {
    font-size: clamp(12px, 3.5vw, 20px);
    line-height: 1.8;
  }
}
.estimate-modal .callback-modal__description {
  text-align: left;
}
@media (max-width: 760px) {
  .callback-modal .estimate-modal__lead {
    font-size: 14px;
    line-height: 1.35;
  }
  .callback-modal .question-form__consent {
    width: 100%;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 6px;
    align-items: center;
    font-size: clamp(7px, 2.15vw, 12px);
    line-height: 1.4;
  }
  .callback-modal .question-form__check {
    width: 18px;
    height: 18px;
  }
}
.callback-modal__form {
  container-type: inline-size;
}
.callback-modal .question-form__consent {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: clamp(7px, 3.25cqw, 13px);
  white-space: nowrap;
}
.callback-modal .question-form__check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
@media (max-width: 620px) {
  .hero__cta {
    order: 1;
    margin-top: 0;
    margin-bottom: 24px;
  }
}
@media (max-width: 620px) {
  .hero__subtitle {
    margin-top: 20px;
  }
}
.question-form__field input[type="tel"] {
  text-align: center;
}
.question-form__field input[type="tel"]:-webkit-autofill,
.question-form__field input[type="tel"]:-webkit-autofill:hover,
.question-form__field input[type="tel"]:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px #121b28 inset;
  box-shadow: 0 0 0 1000px #121b28 inset;
}
.question-form__field input[type="tel"]:autofill {
  color: #fff;
  caret-color: #fff;
  box-shadow: 0 0 0 1000px #121b28 inset;
}
/* The CTA no longer reserves an empty column for the removed icon. */
.hero__cta {
  max-width: 100%;
  container-type: inline-size;
}
.hero__cta-label {
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 0;
  text-align: center;
}
.hero__cta-copy {
  font-size: clamp(9px, 5cqw, 14px);
  line-height: 1.65;
}
.hero__cta-copy > span {
  display: block;
  white-space: nowrap;
}
.hero__cta-note {
  margin-top: 5px;
}
/* Единая форма CTA: только действия, которые открывают popup, и отправка форм. */
.hero__cta,
.service-card__media,
.service-card__button,
.visualization__button,
.work-step__button,
.service-prices__cta,
.portfolio-case__cta,
.contacts__button,
.site-footer__callback,
.question-form__submit,
.consult-widget__greeting {
  border-radius: 12px;
}
.question-form__card {
  container-type: inline-size;
}
.question-form__card .question-form__consent {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: clamp(7px, 3.25cqw, 13px);
  white-space: nowrap;
}
.question-form__card .question-form__check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.consult-widget {
  position: fixed;
  z-index: 1850;
  right: clamp(88px, 7vw, 110px);
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.consult-widget[hidden],
.consult-widget__message[hidden] {
  display: none;
}
.consult-widget__message {
  width: min(310px, calc(100vw - 210px));
  padding: 18px;
  border: 1px solid #3a4656;
  border-radius: 18px 18px 3px 18px;
  background: #1e2734;
  box-shadow: 0 12px 35px #0005;
}
.consult-widget button {
  font: inherit;
  cursor: pointer;
}
.consult-widget .consult-widget__greeting,
.consult-widget .consult-widget__hide {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  translate: none;
  text-align: left;
}
.consult-widget__greeting {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 14px !important;
  line-height: 1.5 !important;
}
.consult-widget .consult-widget__hide {
  margin-top: 10px;
  color: #4aa9ff;
  font-size: 12px;
}
.consult-widget .consult-widget__avatar {
  position: relative;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid #ffffff80;
  border-radius: 50%;
  background: #066fd1;
  box-shadow: 0 6px 22px #0005;
}
.consult-widget__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  animation: consult-photo 12s infinite;
}
.consult-widget__avatar svg {
  position: absolute;
  inset: 20px;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  opacity: 0;
  animation: consult-symbol 12s infinite;
}
.consult-widget__online {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  background: #21ce78;
  border: 3px solid #1e2734;
  border-radius: 50%;
}
@keyframes consult-photo {
  0%,
  60%,
  100% {
    opacity: 1;
  }
  68%,
  90% {
    opacity: 0;
  }
}
@keyframes consult-symbol {
  0%,
  60%,
  100% {
    opacity: 0;
  }
  68%,
  90% {
    opacity: 1;
  }
}
.callback-modal.consultation-modal {
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: auto;
}
.consultation-modal .callback-modal__card {
  width: min(480px, 100%);
  max-width: 480px;
  min-height: 100%;
  margin: 0 0 0 auto;
  padding: 80px 30px 36px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}
.consultation-modal__content {
  margin-block: auto;
}
.consultation-modal .callback-modal__close {
  top: 16px;
  right: 16px;
}
.consultation-modal__person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.consultation-modal__person img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
.consultation-modal__person strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}
.consultation-modal__person span {
  display: block;
  max-width: 230px;
  color: #aeb5bf;
  font-size: 13px;
  line-height: 1.5;
}
.consultation-modal h2 {
  font-size: clamp(18px, 4.3vw, 24px);
  line-height: 1.35;
}
.consultation-modal .callback-modal__description {
  font-size: 14px;
  line-height: 1.6;
}
.consultation-modal[open] .callback-modal__card {
  animation: consult-enter 0.22s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.consultation-modal[open]::backdrop {
  animation: consult-backdrop 0.22s ease-out;
}
@keyframes consult-enter {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes consult-backdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 620px) {
  .consult-widget {
    right: calc(12.5% - 30px);
    bottom: calc(78px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .consult-widget .consult-widget__avatar {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }
  .consult-widget__avatar svg {
    inset: 14px;
  }
  .consult-widget__message {
    width: min(270px, calc(87.5vw - 52px));
    padding: 14px;
  }
  .consult-widget__greeting {
    font-size: 14px !important;
  }
  .consultation-modal .callback-modal__card {
    padding: 76px 22px 28px;
  }
  .consultation-modal[open] .callback-modal__card {
    animation-name: consult-backdrop;
  }
}
@media (prefers-reduced-motion: reduce) {
  .consult-widget__avatar img,
  .consult-widget__avatar svg,
  .consultation-modal[open] .callback-modal__card {
    animation: none;
  }
  .consultation-modal[open]::backdrop {
    animation: none;
  }
}
.consult-widget .consult-widget__greeting:hover,
.consult-widget .consult-widget__greeting:active {
  background: transparent;
  box-shadow: none;
  translate: none;
}
.consult-widget .consult-widget__hide {
  padding: 6px 14px;
  border-radius: 100px;
  background: rgb(255 255 255 / 7%);
}
.consult-widget .consult-widget__hide:hover {
  background: rgb(255 255 255 / 12%);
  box-shadow: none;
  translate: none;
}
/* Override the site's more specific shared button hover selector. */
.consult-widget button.consult-widget__greeting:not(:disabled):hover,
.consult-widget button.consult-widget__greeting:not(:disabled):active,
.consult-widget button.consult-widget__greeting:focus {
  background: transparent;
  box-shadow: none;
  translate: none;
}
.consult-widget button.consult-widget__hide:not(:disabled):hover {
  background: rgb(255 255 255 / 12%);
  box-shadow: none;
  translate: none;
}
.consult-widget__avatar svg {
  color: #fff;
}
@media (min-width: 621px) {
  .mobile-messengers:hover,
  .mobile-messengers:focus-within {
    z-index: 1860;
  }
}
.exit-modal .callback-modal__card {
  width: min(760px, 100%);
  max-width: 760px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  padding: 36px;
}
.exit-modal__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.exit-modal__person img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
}
.exit-modal__person strong {
  font-size: 18px;
}
.exit-modal__person > span {
  font-size: 12px;
  line-height: 1.5;
  color: #aeb5bf;
}
.exit-modal h2 {
  font-size: 25px;
  line-height: 1.3;
  text-align: left;
  text-transform: none;
}
.exit-modal__note {
  color: #aeb5bf;
  font-size: 13px;
  margin: 8px 0 0;
}
.exit-modal .callback-modal__description {
  text-align: left;
  margin: 18px 0 22px;
  font-size: 14px;
  line-height: 1.5;
}
.exit-modal__free {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  color: #d5e9ff;
}
@media (max-width: 620px) {
  .exit-modal .callback-modal__card {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 26px 20px;
  }
  .exit-modal__person img {
    width: 100px;
    height: 100px;
  }
  .exit-modal__person {
    gap: 5px;
  }
  .exit-modal h2,
  .exit-modal__note,
  .exit-modal .callback-modal__description {
    text-align: center;
  }
  .exit-modal h2 {
    font-size: 23px;
  }
  .exit-modal .callback-modal__description {
    font-size: 13px;
    margin: 14px 0 18px;
  }
}
.lead-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}
.lead-error {
  margin: 16px 0 0;
  color: #ffb8b0;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.question-form__submit:disabled {
  cursor: wait;
  opacity: 0.85;
}
.lead-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  vertical-align: middle;
}
.lead-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: lead-bounce 1s ease-in-out infinite;
}
.lead-dots i:nth-child(2) {
  animation-delay: 0.15s;
}
.lead-dots i:nth-child(3) {
  animation-delay: 0.3s;
}
.callback-modal .question-form__submit .lead-dots {
  display: inline-flex;
}
@keyframes lead-bounce {
  0%,
  70%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  35% {
    transform: translateY(-5px);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lead-dots i {
    animation: none;
  }
}
/* Страницы «О компании» и «Контакты». */
.about-page {
  --about-blue: #4aa9ff;
}
.about-page .about-hero {
  min-height: auto;
  background: #141e2b;
}
.about-page .about-hero::after {
  display: none;
}
.about-page .hero__inner {
  padding-bottom: 0;
}
.about-page a[aria-current="page"] {
  background: rgb(113 113 113 / 86%);
}
.about-breadcrumbs {
  display: flex;
  gap: 12px;
  margin: 34px 0 42px;
  color: #aebac8;
  font-size: 12px;
}
.about-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
}
.about-eyebrow {
  margin: 0 0 22px;
  color: var(--about-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.7;
}
.about-intro h1 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}
.about-intro h1 span,
.about-section h2 span {
  color: var(--about-blue);
}
.about-intro__text {
  color: #bac6d5;
  line-height: 1.8;
  font-size: 15px;
  margin: 26px 0 30px;
  max-width: 550px;
}
.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 56px;
  padding: 16px 24px;
  border: 0;
  border-radius: 12px;
  background: #087fe8;
  color: white;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.about-button:hover {
  background: #1892ff;
}
.about-button:focus-visible,
.about-text-link:focus-visible {
  outline: 2px solid white;
  outline-offset: 5px;
}
.about-button span {
  font-size: 24px;
  line-height: 1;
}
.about-intro__image {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0c131d;
}
.about-intro__image img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.about-intro__image figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 50px 26px 26px;
  background: linear-gradient(transparent, #07111bea);
  font-size: 12px;
}
.about-intro__image figcaption span:first-child {
  font-size: 20px;
  font-weight: 700;
}
.about-directions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid #334151;
  padding: 26px 0;
  color: #b9c7d7;
  font-size: 12px;
}
.about-directions span::before {
  content: "↗";
  color: var(--about-blue);
  margin-right: 10px;
}
.about-container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}
.about-section {
  padding: 88px 0;
}
.about-section--muted {
  background: #18222f;
}
.about-section h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.about-copy {
  color: #bec8d5;
  line-height: 1.85;
  font-size: 15px;
}
.about-copy p {
  margin: 0 0 18px;
}
.about-copy p:last-child {
  margin-bottom: 0;
}
.about-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.about-text-link {
  color: var(--about-blue);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.about-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.about-project {
  background: #202d3d;
  border: 1px solid #354252;
  border-radius: 14px;
  overflow: hidden;
}
.about-project > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.about-project > div {
  padding: 26px;
}
.about-project__number {
  font-size: 10px;
  color: #8fbcea;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-project h3 {
  margin: 16px 0 12px;
  font-size: 19px;
  line-height: 1.4;
}
.about-project p {
  margin: 0;
  color: #bec8d5;
  font-size: 13px;
  line-height: 1.8;
}
.about-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}
.about-steps li {
  border-top: 1px solid #465363;
  padding-top: 22px;
}
.about-steps li > span {
  font-size: 32px;
  color: var(--about-blue);
  font-weight: 700;
}
.about-steps h3 {
  margin: 20px 0 12px;
  font-size: 17px;
  line-height: 1.5;
}
.about-steps p {
  margin: 0;
  color: #bec8d5;
  font-size: 13px;
  line-height: 1.8;
}
.about-cta {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 48px;
  border: 1px solid #405268;
  border-radius: 18px;
  overflow: hidden;
  background: #152232;
}
.about-cta > img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.about-cta > div {
  padding: 42px 36px 42px 0;
}
.about-cta p:not(.about-eyebrow) {
  color: #bec8d5;
  line-height: 1.8;
  font-size: 14px;
  margin: 22px 0 28px;
}
.about-cta .about-button {
  width: auto;
  margin: 0;
  box-shadow: none;
  text-transform: none;
}
.contacts-page-intro {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 52px;
}
.contacts-page-intro__lead h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}
.contacts-page-intro__lead h1 span {
  color: var(--about-blue);
}
.contacts-page-intro__lead > p:not(.about-eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: #bac6d5;
  font-size: 15px;
  line-height: 1.85;
}
.contacts-page-card {
  padding: 36px;
  border: 1px solid #405268;
  border-radius: 18px;
  background: linear-gradient(145deg, #1d2d40, #14202e);
  box-shadow: 0 18px 55px #0003;
}
.contacts-page-card__caption {
  margin: 0 0 15px;
  color: #9eafc2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contacts-page-card__phone {
  display: block;
  color: #fff;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.contacts-page-card__hours {
  margin: 12px 0 22px;
  color: #b7c5d5;
  font-size: 12px;
  line-height: 1.6;
}
.contacts-page-card__email {
  display: inline-block;
  margin-bottom: 25px;
  color: var(--about-blue);
  font-size: 15px;
  text-decoration: none;
}
.contacts-page-card__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.contacts-page-card__actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border: 1px solid #46596e;
  border-radius: 8px;
  color: #dbe8f7;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.contacts-page-card__actions a:hover {
  border-color: var(--about-blue);
  color: #fff;
}
.contacts-page-card .about-button {
  width: 100%;
}
.contacts-page-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #334151;
  padding: 26px 0;
  color: #b9c7d7;
  font-size: 12px;
}
.contacts-page-details span {
  padding: 0 24px;
  border-left: 1px solid #334151;
}
.contacts-page-details span:first-child {
  padding-left: 0;
  border-left: 0;
}
.contacts-page-details span::before {
  content: "↗";
  margin-right: 9px;
  color: var(--about-blue);
}
@media (max-width: 900px) {
  .about-intro {
    gap: 28px;
  }
  .about-intro__image img {
    height: 380px;
  }
  .about-split {
    gap: 36px;
  }
  .about-projects {
    gap: 14px;
  }
  .about-project > div {
    padding: 20px;
  }
  .about-project > img {
    height: 200px;
  }
  .about-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-cta {
    gap: 28px;
  }
  .contacts-page-intro {
    gap: 32px;
  }
}
@media (max-width: 620px) {
  .about-container {
    width: calc(100% - 32px);
  }
  .about-breadcrumbs {
    margin: 26px 0 30px;
  }
  .about-intro,
  .about-split,
  .about-projects,
  .about-cta {
    grid-template-columns: 1fr;
  }
  .contacts-page-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 34px;
  }
  .contacts-page-intro__lead h1 {
    font-size: clamp(32px, 9vw, 46px);
  }
  .contacts-page-intro__lead > p:not(.about-eyebrow) {
    font-size: 14px;
  }
  .contacts-page-card {
    padding: 26px 20px;
  }
  .contacts-page-card__actions {
    gap: 8px;
  }
  .contacts-page-details {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px 0;
    font-size: 11px;
  }
  .contacts-page-details span {
    padding: 0;
    border: 0;
  }
  .about-intro {
    gap: 30px;
    padding-bottom: 30px;
  }
  .about-intro h1 {
    font-size: clamp(30px, 8vw, 44px);
  }
  .about-intro__text {
    font-size: 14px;
  }
  .about-intro__image img {
    height: 290px;
  }
  .about-directions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 10px;
    gap: 16px 8px;
  }
  .about-section {
    padding: 52px 0;
  }
  .about-section-heading {
    align-items: start;
    flex-direction: column;
  }
  .about-copy {
    font-size: 14px;
  }
  .about-project > img {
    height: 240px;
  }
  .about-project > div {
    padding: 24px;
  }
  .about-steps {
    gap: 24px 18px;
  }
  .about-steps h3 {
    font-size: 15px;
  }
  .about-cta {
    gap: 0;
  }
  .about-cta > img {
    height: 240px;
    min-height: 0;
  }
  .about-cta > div {
    padding: 28px 22px;
  }
  .about-button {
    font-size: 12px;
    padding: 15px 18px;
    gap: 14px;
  }
}
