@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Book.woff2") format("woff2"), url("../fonts/FuturaPT-Book.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Medium.woff2") format("woff2"), url("../fonts/FuturaPT-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Demi.woff2") format("woff2"), url("../fonts/FuturaPT-Demi.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Heavy.woff2") format("woff2"), url("../fonts/FuturaPT-Heavy.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

.block2 {
  --color-bg: #030a0e;
  --color-surface: #071117;
  --color-surface-raised: #0a151c;
  --color-text: #f8f9f6;
  --color-text-muted: #c6ced2;
  --color-text-dim: #9faab0;
  --color-accent-surface: #d91f26;
  --color-accent-text: #ef4147;
  --color-line: rgba(206, 214, 218, 0.24);
  --color-line-strong: rgba(206, 214, 218, 0.52);
  --container: 1312px;
  --container-pad: clamp(24px, 4.45vw, 64px);
  --focus-ring: #f8f9f6;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "Futura PT", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.block2 :where(button, a) {
  font: inherit;
}

.block2 :where(a) {
  color: inherit;
  text-decoration: none;
}

.block2 :where(button) {
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: inherit;
}

.block2 :where(img, picture) {
  display: block;
  width: 100%;
}

.block2 :where(img) {
  height: auto;
}

.block2 svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

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

.block2 {
  position: relative;
  width: min(100%, calc(var(--container) + (var(--container-pad) * 2)));
  margin-inline: auto;
  padding: clamp(72px, 7vw, 104px) var(--container-pad) 72px;
  overflow: clip;
}

.block2::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: var(--container-pad);
  left: var(--container-pad);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--color-line-strong) 8%, var(--color-line-strong) 92%, transparent);
}

.contour-heading {
  display: grid;
  /* Первая колонка держала нумерацию 01/02 — она убрана, остались заголовок и линия. */
  grid-template-columns: auto minmax(40px, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 38px;
  margin-bottom: 20px;
}

.contour-heading__index {
  color: var(--color-accent-text);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.contour-heading h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1;
}

.contour-heading__line {
  height: 1px;
  background: linear-gradient(90deg, var(--color-line-strong), rgba(206, 214, 218, 0.06));
}

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

.production-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  height: 548px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 2px;
  background: var(--color-surface);
}

.production-card::before,
.production-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.production-card::before {
  background:
    linear-gradient(
      to bottom,
      rgba(3, 10, 14, 0.04) 0%,
      rgba(3, 10, 14, 0.08) 28%,
      rgba(3, 10, 14, 0.62) 55%,
      rgba(3, 10, 14, 0.94) 77%,
      rgba(3, 10, 14, 0.99) 100%
    );
  transition: background 220ms ease;
}

.production-card::after {
  inset: auto 0 0;
  height: 2px;
  background: var(--color-accent-surface);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.production-card__media,
.production-card__media picture {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
}

.production-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.6, 0.3, 1), filter 220ms ease;
}

.production-card--frames .production-card__media img {
  object-position: 48% 50%;
  filter: saturate(0.82) contrast(1.06) brightness(0.88);
}

.production-card--technology .production-card__media img {
  object-position: 51% 52%;
  filter: saturate(0.76) contrast(1.08) brightness(0.82);
}

.production-card--nonstandard .production-card__media img {
  object-position: 54% 48%;
  filter: saturate(0.76) contrast(1.08) brightness(0.82);
}

.production-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  min-height: 58%;
  padding: 28px 28px 34px;
}

.production-card__number {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent-text);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1;
}

.production-card h3 {
  max-width: 350px;
  min-height: 2.05em;
  margin: 0 0 18px;
  font-size: clamp(24px, 1.9vw, 28px);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.02;
}

.production-card__examples {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--color-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  list-style: none;
}

.production-card__examples li {
  position: relative;
  padding-left: 13px;
}

.production-card__examples li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 3px;
  height: 3px;
  content: "";
  background: var(--color-accent-text);
}

.production-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: fit-content;
  min-height: 46px;
  margin-top: auto;
  padding: 11px 18px;
  border: 1px solid rgba(206, 214, 218, 0.34);
  border-radius: 4px;
  background: rgba(6, 15, 21, 0.52);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #f4f7f8;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.production-card__link:hover,
.production-card:hover .production-card__link {
  border-color: var(--color-accent-text);
  background: rgba(12, 26, 34, 0.72);
}

.production-card__link svg {
  width: 21px;
  height: 21px;
  color: var(--color-accent-text);
  transition: transform 180ms ease;
}

.production-card:hover::before,
.production-card:focus-within::before {
  background:
    linear-gradient(
      to bottom,
      rgba(3, 10, 14, 0) 0%,
      rgba(3, 10, 14, 0.04) 28%,
      rgba(3, 10, 14, 0.55) 55%,
      rgba(3, 10, 14, 0.92) 77%,
      rgba(3, 10, 14, 0.99) 100%
    );
}

.production-card:hover::after,
.production-card:focus-within::after {
  transform: scaleX(1);
}

.production-card:hover .production-card__media img,
.production-card:focus-within .production-card__media img {
  transform: scale(1.025);
}

.production-card:hover .production-card__link svg,
.production-card:focus-within .production-card__link svg {
  transform: translateX(3px);
}

.production-card:focus-within {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.production-card__link:focus-visible {
  outline: none;
}

.contour-heading--services {
  margin-top: 86px;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.405fr) minmax(0, 0.595fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-width: 0;
  height: 638px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 2px;
  background: linear-gradient(145deg, rgba(10, 22, 29, 0.98), rgba(5, 14, 19, 0.98));
  box-shadow:
    0 24px 60px -30px rgba(0, 0, 0, 0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.4s var(--sb-ease, cubic-bezier(0.22, 0.9, 0.24, 1)),
    border-color 0.4s var(--sb-ease, cubic-bezier(0.22, 0.9, 0.24, 1));
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12) 22%, rgba(255, 255, 255, 0.12) 78%, transparent);
}

.service-card:hover {
  border-color: rgba(206, 214, 218, 0.42);
  box-shadow:
    0 34px 74px -30px rgba(0, 0, 0, 0.88),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card__label::before {
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 9px;
  content: "";
  vertical-align: 0.28em;
  background: var(--color-accent-text);
}

.service-card__title {
  margin: 0;
  font-size: clamp(29px, 2.25vw, 34px);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
}

.service-card__intro {
  margin: 0;
  color: var(--color-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.48;
}

.engineering-card {
  display: grid;
  grid-template-columns: minmax(0, 0.69fr) minmax(132px, 0.31fr);
  grid-template-rows: auto auto 1fr auto auto;
  column-gap: 20px;
  padding: 30px 18px 26px 28px;
}

.engineering-card .service-card__label {
  grid-column: 1;
  margin: 0 0 14px;
}

.engineering-card .service-card__title {
  grid-column: 1;
  margin-bottom: 16px;
  font-size: clamp(23px, 1.78vw, 26px);
}

.engineering-card .service-card__intro {
  grid-column: 1;
  margin-bottom: 21px;
}

.engineering-card__media {
  grid-row: 1 / -1;
  grid-column: 2;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--color-line);
  background: #061017;
}

.engineering-card__media img {
  height: 112%;
  object-fit: cover;
  object-position: 58% 62%;
  filter: saturate(0.55) contrast(1.08) brightness(0.67);
  transform: translateY(-5.5%);
}

.engineering-card__features {
  display: grid;
  grid-column: 1;
  align-self: start;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-line);
  counter-reset: engineering-feature;
  list-style: none;
}

.engineering-card__features li {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
  min-height: 49px;
  padding: 11px 0 9px;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  counter-increment: engineering-feature;
}

.engineering-card__features li::before {
  color: var(--color-accent-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  content: counter(engineering-feature, decimal-leading-zero);
}

.engineering-card__note {
  grid-column: 1;
  margin: 17px 0 16px;
  color: var(--color-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: fit-content;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(206, 214, 218, 0.34);
  border-radius: 4px;
  background: rgba(6, 15, 21, 0.52);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #f4f7f8;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.service-card__cta svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--color-accent-text);
  transition: transform 180ms ease;
}

.service-card__cta:hover svg,
.service-card__cta:focus-visible svg {
  transform: translateX(3px);
}

.service-card__cta:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.service-card__cta--secondary {
  grid-column: 1;
  justify-self: start;
}

.service-card__cta--primary {
  align-self: end;
  justify-self: start;
}

.service-card__cta--secondary:hover,
.service-card__cta--primary:hover {
  border-color: var(--color-accent-text);
  background: rgba(12, 26, 34, 0.72);
}

.metalworking-card {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  padding: 30px 0 0;
}

.metalworking-card > .service-card__label,
.metalworking-card > .service-card__title,
.metalworking-card > .service-card__intro {
  margin-right: 30px;
  margin-left: 30px;
}

.metalworking-card > .service-card__label {
  margin-top: 0;
  margin-bottom: 12px;
}

.metalworking-card > .service-card__title {
  margin-bottom: 10px;
}

.metalworking-card > .service-card__intro {
  max-width: 670px;
  margin-bottom: 20px;
}

.metal-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 58px;
  margin: 0 18px 0;
  border: 1px solid var(--color-line);
}

.metal-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 56px;
  padding: 7px 9px;
  border: 0;
  border-right: 1px solid var(--color-line);
  color: var(--color-text-muted);
  background: rgba(3, 10, 14, 0.46);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: color 190ms ease, background-color 190ms ease;
}

.metal-tab:last-child {
  border-right: 0;
}

.metal-tab:hover {
  color: var(--color-text);
  background: rgba(248, 249, 246, 0.06);
}

.metal-tab[aria-selected="true"] {
  color: #ffffff;
  background: var(--color-accent-surface);
}

.metal-tab:focus-visible {
  z-index: 2;
  outline: 2px solid var(--focus-ring);
  outline-offset: -4px;
}

.metal-state {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  min-height: 0;
  margin-top: 18px;
  outline: none;
}

.metal-state:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: -4px;
}

.metal-state__media {
  grid-row: 1 / -1;
  grid-column: 2;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--color-line);
  background: #050d12;
}

.metal-state__media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.04) brightness(0.8);
}

.metal-state__title,
.metal-state__description,
.metal-state__parameters,
.metal-state__extra,
.metal-state > .service-card__cta {
  grid-column: 1;
  margin-right: 24px;
  margin-left: 30px;
}

.metal-state__title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.05;
}

.metal-state__description {
  min-height: 2.8em;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.42;
}

.metal-state__parameters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  margin-top: 0;
  margin-bottom: 14px;
  border-top: 1px solid var(--color-line);
}

.metal-state__parameters > div {
  min-width: 0;
  min-height: 79px;
  padding: 12px 11px 11px 0;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.metal-state__parameters > div:nth-child(2) {
  padding-left: 12px;
  border-right: 0;
}

.metal-state__parameters > div:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 70px;
  border-right: 0;
}

.metal-state__parameters dt {
  margin-bottom: 6px;
  color: var(--color-text-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.25;
}

.metal-state__parameters dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.27;
  letter-spacing: 0;
}

.metal-state__extra {
  min-height: 2.7em;
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--color-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.38;
}

.metal-state > .service-card__cta {
  margin-bottom: 24px;
}

.block2__delivery-note {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 66px;
  margin: 22px 0 0;
  padding: 13px 0 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.block2__delivery-icon {
  position: relative;
  flex: 0 0 auto;
  width: 31px;
  height: 20px;
  border: 1px solid var(--color-line-strong);
}

.block2__delivery-icon::before,
.block2__delivery-icon::after {
  position: absolute;
  bottom: -4px;
  width: 6px;
  height: 6px;
  content: "";
  border: 1px solid var(--color-accent-text);
  border-radius: 50%;
  background: var(--color-bg);
}

.block2__delivery-icon::before {
  left: 4px;
}

.block2__delivery-icon::after {
  right: 4px;
}

.future-anchors {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

html.js .block2 [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
}

html.js .block2 [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 460ms ease, transform 460ms ease;
}

.js .production-grid.is-revealed,
.js .services-grid.is-revealed {
  transition-delay: 90ms;
}

@media (max-width: 1279px) {
  :root {
    --container-pad: 40px;
  }

  .block2__header {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    column-gap: 54px;
    margin-bottom: 58px;
  }

  .production-card {
    height: 520px;
  }

  .production-card__content {
    padding: 24px 23px 22px;
  }

  .production-card h3 {
    font-size: 23px;
  }

  .service-card {
    height: 630px;
  }

  .engineering-card {
    grid-template-columns: minmax(0, 0.7fr) minmax(124px, 0.3fr);
    column-gap: 16px;
    padding-left: 22px;
  }

  .engineering-card .service-card__intro {
    font-size: 14.5px;
  }

  .metalworking-card > .service-card__label,
  .metalworking-card > .service-card__title,
  .metalworking-card > .service-card__intro,
  .metal-state__title,
  .metal-state__description,
  .metal-state__parameters,
  .metal-state__extra,
  .metal-state > .service-card__cta {
    margin-left: 24px;
  }

  .metalworking-card > .service-card__label,
  .metalworking-card > .service-card__title,
  .metalworking-card > .service-card__intro {
    margin-right: 24px;
  }

  .metal-tabs {
    margin-inline: 16px;
  }

  .metal-tab {
    padding-inline: 6px;
    font-size: 12.5px;
  }
}

@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 598px;
  }

  .engineering-card {
    grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
    padding-right: 20px;
  }

  .engineering-card .service-card__intro {
    max-width: 560px;
  }

  .metalworking-card {
    height: 620px;
  }

  .metal-state {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  }

  .metal-state__parameters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metal-state__parameters > div,
  .metal-state__parameters > div:nth-child(2),
  .metal-state__parameters > div:nth-child(3) {
    grid-column: auto;
    min-height: 86px;
    padding: 13px 13px 11px;
    border-right: 1px solid var(--color-line);
  }

  .metal-state__parameters > div:first-child {
    padding-left: 0;
  }

  .metal-state__parameters > div:last-child {
    border-right: 0;
  }
}

@media (max-width: 899px) {

  .metal-state {
    grid-template-rows: auto auto auto auto auto;
  }

  :root {
    --container-pad: clamp(24px, 5vw, 38px);
  }

  .block2 {
    padding-top: 68px;
  }

  .block2__header {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 54px;
  }

  .block2__title {
    max-width: 640px;
  }

  .block2__lead {
    max-width: 620px;
  }

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

  .production-card {
    height: 500px;
  }

  .production-card__content {
    min-height: 56%;
    padding: 26px 28px 24px;
  }

  .production-card h3 {
    max-width: 560px;
    min-height: 0;
    font-size: 28px;
  }

  .contour-heading--services {
    margin-top: 68px;
  }

  .engineering-card {
    grid-template-columns: minmax(0, 0.6fr) minmax(220px, 0.4fr);
  }

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

  .metal-state__parameters > div,
  .metal-state__parameters > div:nth-child(2) {
    grid-column: auto;
    min-height: 82px;
    padding: 12px 12px 10px 0;
    border-right: 1px solid var(--color-line);
  }

  .metal-state__parameters > div:nth-child(2) {
    padding-left: 12px;
    border-right: 0;
  }

  .metal-state__parameters > div:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 70px;
    padding: 12px 0 10px;
    border-right: 0;
  }
}

@media (max-width: 599px) {
  :root {
    --container-pad: 20px;
  }

  body {
    background: var(--color-bg);
  }

  .block2 {
    width: 100%;
    padding-top: 46px;
    padding-bottom: 44px;
  }

  .block2::before {
    right: 20px;
    left: 20px;
  }

  .block2__header {
    gap: 18px;
    margin-bottom: 34px;
  }

  .block2__title {
    font-size: clamp(38px, 10.5vw, 44px);
    line-height: 0.98;
  }

  .block2__lead {
    font-size: 15px;
    line-height: 1.5;
  }

  .contour-heading {
    grid-template-columns: auto minmax(0, auto) minmax(20px, 1fr);
    gap: 9px;
    min-height: 34px;
    margin-bottom: 15px;
  }

  .contour-heading h2 {
    font-size: 15px;
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .contour-heading__index {
    font-size: 11px;
  }

  .production-grid {
    gap: 14px;
  }

  .production-card {
    height: 372px;
  }

  .production-card::before {
    background:
      linear-gradient(
        to bottom,
        rgba(3, 10, 14, 0.02) 0%,
        rgba(3, 10, 14, 0.13) 31%,
        rgba(3, 10, 14, 0.74) 54%,
        rgba(3, 10, 14, 0.98) 78%,
        rgba(3, 10, 14, 1) 100%
      );
  }

  .production-card__content {
    min-height: 66%;
    padding: 19px 20px 16px;
  }

  .production-card__number {
    margin-bottom: 7px;
    font-size: 13px;
  }

  .production-card h3 {
    max-width: 310px;
    min-height: 2.04em;
    margin-bottom: 11px;
    font-size: 24px;
  }

  .production-card__examples {
    gap: 4px;
    font-size: 14px;
    line-height: 1.25;
  }

  .production-card__link {
    min-height: 45px;
    padding-top: 11px;
    font-size: 14px;
  }

  .production-card__link svg {
    width: 19px;
    height: 19px;
  }

  .contour-heading--services {
    margin-top: 44px;
  }

  .services-grid {
    gap: 14px;
  }

  .service-card {
    height: auto;
  }

  .service-card__label {
    font-size: 13px;
  }

  .service-card__title {
    font-size: 29px;
  }

  .service-card__intro {
    font-size: 15px;
    line-height: 1.48;
  }

  .engineering-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    padding: 23px 20px 20px;
  }

  .engineering-card .service-card__label,
  .engineering-card .service-card__title,
  .engineering-card .service-card__intro,
  .engineering-card__media,
  .engineering-card__features,
  .engineering-card__note,
  .service-card__cta--secondary {
    grid-row: auto;
    grid-column: 1;
  }

  .engineering-card .service-card__label {
    margin-bottom: 12px;
  }

  .engineering-card .service-card__title {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .engineering-card .service-card__intro {
    margin-bottom: 17px;
    font-size: 15px;
  }

  .engineering-card__media {
    height: 152px;
    margin-bottom: 17px;
    border: 1px solid var(--color-line);
  }

  .engineering-card__media img {
    height: 118%;
    object-position: center 68%;
    transform: translateY(-7.5%);
  }

  .engineering-card__features li {
    min-height: 45px;
    padding-block: 10px 8px;
    font-size: 14px;
  }

  .engineering-card__note {
    margin: 15px 0 14px;
    font-size: 13.5px;
  }

  .service-card__cta {
    min-height: 50px;
    font-size: 14px;
  }

  .metalworking-card {
    display: block;
    height: auto;
    padding-top: 23px;
  }

  .metalworking-card > .service-card__label,
  .metalworking-card > .service-card__title,
  .metalworking-card > .service-card__intro {
    margin-right: 20px;
    margin-left: 20px;
  }

  .metalworking-card > .service-card__label {
    margin-bottom: 12px;
  }

  .metalworking-card > .service-card__title {
    margin-bottom: 11px;
  }

  .metalworking-card > .service-card__intro {
    margin-bottom: 17px;
  }

  .metal-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 96px;
    margin-inline: 12px;
  }

  .metal-tab {
    min-height: 48px;
    padding: 7px 8px;
    border-bottom: 1px solid var(--color-line);
    font-size: 14px;
  }

  .metal-tab:nth-child(2) {
    border-right: 0;
  }

  .metal-tab:nth-child(3),
  .metal-tab:nth-child(4) {
    border-bottom: 0;
  }

  .metal-state {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: 652px;
    margin-top: 14px;
  }

  .metal-state__media,
  .metal-state__title,
  .metal-state__description,
  .metal-state__parameters,
  .metal-state__extra,
  .metal-state > .service-card__cta {
    grid-row: auto;
    grid-column: 1;
    margin-right: 20px;
    margin-left: 20px;
  }

  .metal-state__media {
    height: 168px;
    margin-right: 0;
    margin-bottom: 19px;
    margin-left: 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    border-left: 0;
  }

  .metal-state__media img {
    object-position: center;
  }

  .metal-state__title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 22px;
  }

  .metal-state__description {
    min-height: 0;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.45;
  }

  .metal-state__parameters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 14px;
  }

  .metal-state__parameters > div,
  .metal-state__parameters > div:nth-child(2) {
    grid-column: auto;
    min-height: 82px;
    padding: 10px 10px 9px 0;
    border-right: 1px solid var(--color-line);
  }

  .metal-state__parameters > div:nth-child(2) {
    padding-left: 11px;
    border-right: 0;
  }

  .metal-state__parameters > div:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 68px;
    padding: 10px 0 9px;
    border-right: 0;
  }

  .metal-state__parameters dt {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .metal-state__parameters dd {
    font-size: 15px;
  }

  .metal-state__extra {
    min-height: 0;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.42;
  }

  .metal-state > .service-card__cta {
    width: auto;
    max-width: none;
    margin-bottom: 20px;
  }

  .block2__delivery-note {
    align-items: flex-start;
    min-height: 0;
    margin-top: 18px;
    padding-top: 16px;
    font-size: 14px;
  }
}

@media (max-width: 374px) {
  .block2__title {
    font-size: 36px;
  }

  .contour-heading h2 {
    font-size: 14px;
  }

  .production-card {
    height: 364px;
  }

  .production-card h3 {
    font-size: 22px;
  }

  .service-card__title,
  .engineering-card .service-card__title {
    font-size: 27px;
  }

  .engineering-card .service-card__title {
    font-size: 24px;
  }

  .metal-state {
    height: 720px;
  }

  .metal-state__media,
  .metal-state__title,
  .metal-state__description,
  .metal-state__parameters,
  .metal-state__extra,
  .metal-state > .service-card__cta {
    margin-right: 16px;
    margin-left: 16px;
  }

  .metal-state__media {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 375px) and (max-width: 379px) {
  .metal-state {
    height: 684px;
  }
}

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

  html.js .block2 [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .production-card:hover .production-card__media img,
  .production-card:focus-within .production-card__media img {
    transform: none;
  }
}

@media (forced-colors: active) {
  .production-card,
  .service-card,
  .metal-tabs,
  .metal-tab,
  .service-card__cta,
  .engineering-card__media,
  .metal-state__media {
    border: 1px solid CanvasText;
  }

  .metal-tab[aria-selected="true"] {
    color: HighlightText;
    background: Highlight;
  }

  .production-card:focus-within,
  .metal-tab:focus-visible,
  .service-card__cta:focus-visible,
  .metal-state:focus-visible {
    outline: 2px solid Highlight;
  }
}

.block2 {
  width: min(100%, calc(var(--container) + (var(--container-pad) * 2)));
  margin-inline: auto;
  padding: clamp(72px, 6.4vw, 96px) var(--container-pad) 72px;
}

.block2 .contour-heading h2 {
  font-size: clamp(34px, 3.1vw, 52px);
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 1.0;
}

.block2 .contour-heading__index {
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent-text);
}

.block2 .contour-heading {
  align-items: baseline;
  margin-bottom: 34px;
}

.block2 .contour-heading--services {
  margin-top: 84px;
}

.block2 .production-card__link {
  width: fit-content;
}

.block2 .metal-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
  border: 0;
}

.block2 .metal-tab {
  min-height: 48px;
  border: 1px solid rgba(206, 214, 218, 0.28);
  border-radius: 4px;
  background: transparent;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 13.5px;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.block2 .metal-tab:last-child {
  border-right: 1px solid rgba(206, 214, 218, 0.28);
}

.block2 .metal-tab:hover {
  color: var(--color-text);
  border-color: #ced6da;
  background: transparent;
}

.block2 .metal-tab[aria-selected="true"] {
  border-color: var(--color-accent-text);
  color: var(--color-accent-text);
  background: rgba(217, 31, 38, 0.08);
  box-shadow: 0 6px 18px -8px rgba(239, 65, 71, 0.45);
}

@media (max-width: 899px) {
  .block2 .metal-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .block2 .metal-tab:last-child {
    border-right: 1px solid rgba(206, 214, 218, 0.28);
  }
}

@media (max-width: 599px) {
  .block2 .contour-heading--services {
    margin-top: 56px;
  }
}

.production-card__examples,
.engineering-card__note,
.metal-state__description {
  letter-spacing: 0.015em;
}

@media (max-width: 599px) {
  .block2 .contour-heading {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 10px;
    min-width: 0;
    margin-bottom: 24px;
  }

  .block2 .contour-heading h2 {
    min-width: 0;
    font-size: clamp(22px, 7.2vw, 28px);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .block2 .contour-heading__index {
    font-size: 13px;
  }

  .block2 .contour-heading__line {
    grid-column: 1 / -1;
    width: 100%;
  }

  .production-grid,
  .production-card,
  .production-card__content,
  .services-grid,
  .service-card,
  .engineering-card,
  .engineering-card > *,
  .metalworking-card,
  .metal-state,
  .metal-state > * {
    min-width: 0;
  }

  .engineering-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .production-card h3,
  .service-card__title,
  .engineering-card .service-card__title,
  .metal-state__title {
    max-width: 100%;
    font-size: clamp(23px, 7.2vw, 28px);
    line-height: 1.08;
    hyphens: manual;
    overflow-wrap: anywhere;
  }

  .block2 .metal-tab {
    min-width: 0;
    height: auto;
    padding-block: 8px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .block2 .contour-heading--services {
    margin-top: 56px;
  }
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Book.woff2") format("woff2"), url("../fonts/FuturaPT-Book.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Medium.woff2") format("woff2"), url("../fonts/FuturaPT-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Demi.woff2") format("woff2"), url("../fonts/FuturaPT-Demi.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Heavy.woff2") format("woff2"), url("../fonts/FuturaPT-Heavy.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --color-bg: #030a0e;
  --color-surface: #050e13;
  --color-surface-hover: #101b21;
  --color-text: #f8f9f6;
  --color-text-muted: #d1d7da;
  --color-text-dim: #aeb7bb;
  --color-accent-surface: #d91f26;
  --color-accent-text: #ef4147;
  --color-accent: var(--color-accent-surface);
  --color-line: #ced6da;
  --color-line-muted: rgba(206, 214, 218, 0.56);
  --active-y: 21px;
  --focus-ring: 0 0 0 1px var(--color-line), 0 0 0 4px var(--color-accent);
  font-family: "Futura PT", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

/* Ставится на ~160 мс при закрытии фотографии, чтобы возврат позиции
   был мгновенным, а не анимированной «второй прокруткой». */
html.pa-no-smooth {
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
  letter-spacing: 0.012em;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

sup {
  position: relative;
  top: -0.22em;
  font-size: 0.62em;
  line-height: 0;
  vertical-align: baseline;
}

.mobile-break {
  display: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--color-bg);
  background: #ffffff;
  transform: translateY(calc(-100% - 24px));
  transition: transform 160ms ease;
}

.svg-definitions {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

:where(a, button):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  height: 89px;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}

.site-header.is-stuck {
  height: 72px;
  background: rgba(3, 10, 14, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.site-header.is-stuck::after {
  background: rgba(206, 214, 218, 0.2);
}

.site-header::after {
  position: absolute;
  right: 38px;
  bottom: 0;
  left: 38px;
  height: 1px;
  content: "";
  background: rgba(222, 229, 232, 0.72);
}

.site-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 44px;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: 205px;
  transform: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: url("#logo-color-filter");
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 24px);
  margin-left: auto;
  margin-right: auto;
  color: rgba(248, 249, 246, 0.94);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 190ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-phone {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  margin-left: 0;
  line-height: 1;
}

.site-phone__num {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

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

.site-phone__mail {
  margin-top: 6px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.15;
  transition: color 180ms ease;
}

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

.header-tg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin-left: 18px;
  border: 1px solid rgba(206, 214, 218, 0.4);
  border-radius: 50%;
  color: #cfd7db;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-tg svg {
  width: 19px;
  height: 19px;
}

.header-tg:hover {
  color: #ffffff;
  border-color: var(--color-accent-text);
  transform: translateY(-1px);
}

.header-action {
  font-weight: 500;
  display: inline-flex;
  flex: 0 0 162px;
  align-items: center;
  justify-content: space-between;
  width: 162px;
  height: 46px;
  margin-left: 20px;
  padding: 0 13px 0 18px;
  border: 1px solid rgba(248, 249, 246, 0.92);
  border-radius: 6px;
  background: rgba(3, 10, 14, 0.62);
  font-size: 15px;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.header-action svg {
  width: 19px;
  height: 19px;
}

.header-action:hover {
  border-color: #ffffff;
  background: rgba(16, 27, 33, 0.94);
}

.mobile-menu-state {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: max(768px, 100svh);
  min-height: 768px;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-media {
  position: absolute;
  z-index: -4;
  inset: 0;
  overflow: hidden;
  background: #1a2b36;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(0.99) saturate(0.84) contrast(1.09);
}

.hero-media__tone {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 28, 0.12);
  pointer-events: none;
}

.hero-media__mobile-route {
  display: none;
}

.hero-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 10, 14, 0.99) 0%, rgba(3, 10, 14, 0.93) 24%, rgba(3, 10, 14, 0.68) 43%, rgba(3, 10, 14, 0.08) 72%),
    linear-gradient(0deg, rgba(3, 10, 14, 0.94) 0%, rgba(3, 10, 14, 0.44) 20%, rgba(3, 10, 14, 0.12) 55%, rgba(3, 10, 14, 0.18) 100%);
}

.hero-shade::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(3, 14, 21, 0.18);
  clip-path: polygon(0 0, 22% 0, 42% 100%, 0 100%);
}

.engineering-grid {
  position: absolute;
  z-index: 2;
  top: 88px;
  right: 38px;
  bottom: 47px;
  left: 38px;
  border-bottom: 1px solid rgba(222, 229, 232, 0.68);
  pointer-events: none;
}

.engineering-grid__vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(222, 229, 232, 0.38);
}

.engineering-grid__vertical--one {
  left: 64.52%;
}

.engineering-grid__vertical--two {
  left: 85.78%;
}

.engineering-grid__vertical--three {
  left: 99.2%;
}

.engineering-grid__vertical i {
  position: absolute;
  left: -5px;
  display: block;
  width: 11px;
  height: 11px;
}

.engineering-grid__vertical i:nth-child(1) {
  top: 44px;
}

.engineering-grid__vertical i:nth-child(2) {
  top: 303px;
}

.engineering-grid__vertical i:nth-child(3) {
  top: 630px;
}

.engineering-grid__vertical i::before,
.engineering-grid__vertical i::after {
  position: absolute;
  content: "";
  background: rgba(235, 240, 242, 0.68);
}

.engineering-grid__vertical i::before {
  top: 5px;
  left: 0;
  width: 11px;
  height: 1px;
}

.engineering-grid__vertical i::after {
  top: 0;
  left: 5px;
  width: 1px;
  height: 11px;
}

.hero-copy {
  position: absolute;
  z-index: 5;
  top: 137px;
  left: 50px;
  width: 806px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #d4d9da;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.073em;
  line-height: 18px;
  font-family: "Gilroy", Arial, sans-serif;
}

.hero-eyebrow__line {
  flex: 0 0 32px;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.hero-eyebrow__text {
  display: block;
  transform: translateY(7px);
}

.hero-title {
  width: 806px;
  margin: 28px 0 0;
  color: var(--color-text);
  font-size: var(--hero-title-fs, 55.5px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.004em;
}

.hero-title > span {
  display: block;
  white-space: nowrap;
}

.hero-title > span + span {
  margin-top: 1px;
}

.hero-title__dot {
  position: relative;
  top: -0.28em;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 11px;
  background: var(--color-accent);
}

.hero-lead {
  width: 650px;
  margin: 12px 0 0;
  color: #d2d7d9;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.012em;
  font-family: "Gilroy", Arial, sans-serif;
}

.hero-lead sup {
  font-size: 0.6em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 57px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Gilroy", Arial, sans-serif;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms ease;
}

.button > span,
.button > svg {
  position: relative;
  top: 3px;
}

.button:hover svg {
  transform: translateX(2px);
}

.button--primary {
  width: 252px;
  padding: 0 22px;
  justify-content: center;
  gap: 12px;
  border-color: var(--color-accent-surface);
  background: var(--color-accent-surface);
  font-size: 16px;
  white-space: nowrap;
}

.button--primary:hover {
  border-color: var(--color-accent-text);
  background: #c91b22;
}

.button--secondary {
  width: 169px;
  padding: 0 5px 0 17px;
  border-color: rgba(238, 242, 243, 0.9);
  background: rgba(3, 10, 14, 0.55);
  font-size: 15px;
  white-space: nowrap;
}

.button--secondary svg {
  width: 18px;
  height: 18px;
}

.button--secondary:hover {
  border-color: #ffffff;
  background: var(--color-surface-hover);
}

.hero-microcopy {
  width: 320px;
  min-height: 42px;
  margin: 19px 0 0;
  padding: 0 0 0 12px;
  border-left: 1px solid rgba(224, 231, 234, 0.86);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.015em;
  font-family: "Gilroy", Arial, sans-serif;
}

.hero-microcopy__text {
  display: block;
  transform: translateY(-2px);
}

.stage-system {
  position: absolute;
  z-index: 8;
  top: 141px;
  right: 49px;
  width: 377px;
  height: 257px;
}

.stage-tabs {
  position: relative;
  display: grid;
  grid-template-rows: repeat(4, 43px);
  gap: 18px;
}

.stage-tabs::before {
  position: absolute;
  z-index: -1;
  top: 21px;
  bottom: 21px;
  left: 20px;
  width: 1px;
  content: "";
  background: rgba(222, 229, 232, 0.84);
}

.stage-tab {
  position: relative;
  display: grid;
  grid-template-columns: 22px 47px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: 43px;
  padding: 0 14px 0 9px;
  border: 1px solid rgba(218, 226, 230, 0.2);
  border-radius: 5px;
  color: rgba(248, 249, 246, 0.75);
  background: rgba(9, 19, 26, 0.12);
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.stage-tab::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 3px;
  content: "";
  border-radius: 5px 0 0 5px;
  background: transparent;
  transition: background-color 200ms ease;
}

.stage-tab::after {
  position: absolute;
  inset: -5px;
  content: "";
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(var(--color-line), var(--color-line)) left top / 8px 1px no-repeat,
    linear-gradient(var(--color-line), var(--color-line)) left top / 1px 8px no-repeat,
    linear-gradient(var(--color-line), var(--color-line)) right top / 8px 1px no-repeat,
    linear-gradient(var(--color-line), var(--color-line)) right top / 1px 8px no-repeat,
    linear-gradient(var(--color-line), var(--color-line)) left bottom / 8px 1px no-repeat,
    linear-gradient(var(--color-line), var(--color-line)) left bottom / 1px 8px no-repeat,
    linear-gradient(var(--color-line), var(--color-line)) right bottom / 8px 1px no-repeat,
    linear-gradient(var(--color-line), var(--color-line)) right bottom / 1px 8px no-repeat;
}

.stage-tab__marker {
  position: relative;
  z-index: 2;
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(248, 249, 246, 0.92);
  border-radius: 50%;
  background: var(--color-bg);
}

.stage-tab__marker::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: width 200ms ease, height 200ms ease, background-color 200ms ease;
}

.stage-tab__number {
  justify-self: center;
  font-size: 13px;
  font-weight: 500;
}

.stage-tab__title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.015em;
  white-space: nowrap;
  font-family: "Gilroy", Arial, sans-serif;
}

.stage-tab__marker,
.stage-tab__number,
.stage-tab__titles {
  position: relative;
  top: -1px;
}

.stage-tab__title--short {
  display: none;
}

.stage-tab:hover:not([aria-selected="true"]) {
  border-color: rgba(232, 238, 240, 0.86);
  color: #ffffff;
  background: var(--color-surface-hover);
}

.stage-tab:focus-visible {
  z-index: 3;
  border-color: var(--color-line);
  color: #ffffff;
  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 4px #f4f7f8;
}

.stage-tab:focus-visible::after {
  opacity: 1;
}

.stage-tab[aria-selected="true"] {
  border-color: var(--color-accent);
  color: #ffffff;
  background: rgba(6, 14, 20, 0.58);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
}

.stage-tab[aria-selected="true"]::before {
  background: var(--color-accent);
}

.stage-tab[aria-selected="true"] .stage-tab__marker::after {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
}

.stage-tab[aria-selected="true"] .stage-tab__number {
  color: var(--color-accent);
}

.stage-connector {
  position: absolute;
  top: var(--active-y);
  left: -57px;
  width: 78px;
  height: calc(256px - var(--active-y));
  border-right: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  pointer-events: none;
  transition: top 200ms ease, height 200ms ease;
}

.stage-connector i {
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  background: var(--color-bg);
}

.stage-connector i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  content: "";
  border-radius: 50%;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
}

.dossier {
  position: absolute;
  z-index: 9;
  top: 411px;
  right: 48px;
  width: 478px;
  height: 170px;
  overflow: hidden;
  border: 1px solid rgba(230, 236, 239, 0.5);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
  background: rgba(6, 15, 21, 0.5);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.dossier__viewport {
  display: grid;
  width: 100%;
  height: 100%;
}

.dossier-panel {
  position: relative;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  padding: 23px 21px 18px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}

.dossier-panel.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.dossier-panel__heading {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) auto;
  align-items: center;
}

.dossier-panel__number {
  color: var(--color-accent);
  font-size: 17px;
  font-weight: 600;
}

.dossier-panel__title {
  margin: 0;
  position: relative;
  top: 2px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.dossier-panel__counter {
  color: #7e898e;
  font-size: 9px;
  font-weight: 400;
  font-family: "Gilroy", Arial, sans-serif;
}

.dossier-panel__counter--mobile {
  display: none;
}

.dossier-panel__description {
  position: relative;
  top: 1px;
  left: 1px;
  width: 340px;
  min-height: 47px;
  margin: 20px 0 0;
  color: #d4d9db;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.245;
  letter-spacing: 0.014em;
  font-family: "Gilroy", Arial, sans-serif;
}

.dossier-panel__next {
  position: absolute;
  right: 19px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 28px;
  padding: 2px 0 2px 5px;
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.dossier-panel__next span {
  font-size: 13px;
}

.dossier-panel__next svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent-text);
}

.hero-proofs {
  position: absolute;
  z-index: 7;
  top: auto;
  bottom: 60px;
  left: 50px;
  display: grid;
  grid-template-columns: 250px 252px 270px;
  gap: 27px;
  width: 826px;
  height: 98px;
  margin: 0;
  padding: 19px 0 0;
  border-top: 1px solid rgba(222, 229, 232, 0.82);
}

.hero-proofs::before,
.hero-proofs::after,
.proof:nth-child(2)::before {
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--color-line);
}

.hero-proofs::before {
  left: -3px;
  background: var(--color-accent);
}

.hero-proofs::after {
  left: 274px;
}

.proof:nth-child(2)::before {

  top: -24px;
  left: 274px;
}

.proof {
  position: relative;
  min-width: 0;
}

.proof + .proof::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -27px;
  width: 1px;
  content: "";
  background: rgba(222, 229, 232, 0.82);
}

.proof dt {
  margin: 12px 0 0;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}

.proof dd {
  position: relative;
  top: -5px;
  left: -1px;
  width: 205px;
  margin: 7px 0 0;
  color: #9ca6aa;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.014em;
  font-family: "Gilroy", Arial, sans-serif;
}

.proof:nth-child(3) dt,
.proof:nth-child(3) dd {
  position: relative;
  left: -2px;
}

.future-anchors {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.noscript-note {
  margin: 0;
  padding: 16px 20px;
  color: #ffffff;
  background: #111b20;
}

.js [data-reveal="photo"] {
  animation: photo-reveal 450ms cubic-bezier(0.3, 0.7, 0.2, 1) both;
}

.js [data-reveal="header"] {
  animation: element-reveal 300ms ease-out 120ms both;
}

.js [data-reveal="copy"] {
  animation: element-reveal 430ms ease-out 220ms both;
}

.js [data-reveal="stages"] {
  animation: element-reveal 450ms ease-out 500ms both;
}

.js [data-reveal="dossier"] {
  animation: dossier-reveal 370ms ease-out 780ms both;
}

.js [data-reveal="proofs"] {
  animation: element-reveal 400ms ease-out 950ms both;
}

@keyframes photo-reveal {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes element-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dossier-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 1339px) and (min-width: 1100px) {
  .site-header__inner {
    padding-inline: 36px;
  }

  .brand {
    width: 166px;
  }

  .site-nav {
    gap: 20px;
    margin-left: 36px;
    font-size: 14px;
  }

  .header-action {
    margin-left: 22px;
  }

  .hero-copy {
    left: 42px;
  }

  .hero-title {
    font-size: 50px;
  }

  .stage-system {
    right: 36px;
  }

  .dossier {
    right: 35px;
  }
}

@media (min-width: 1100px) and (max-height: 820px) {
  .site-header {
    height: 78px;
  }

  .site-header::after {
    bottom: 0;
  }

  .hero-copy {
    top: 112px;
  }

  .hero-title {
    margin-top: 20px;
    font-size: 47px;
  }

  .hero-lead {
    width: 620px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .button {
    height: 50px;
  }

  .hero-microcopy {
    margin-top: 14px;
  }

  .stage-system {
    top: 111px;
  }

  .dossier {
    top: 365px;
  }

  .hero-proofs {
    top: auto;
    bottom: 25px;
  }

  .engineering-grid {
    top: 77px;
    bottom: 18px;
  }
}

@media (max-width: 1099px) {
  .site-header {
    position: relative;
    height: 76px;
    background: var(--color-bg);
  }

  .site-header::after {
    right: 24px;
    left: 24px;
  }

  .site-header__inner {
    justify-content: space-between;
    padding: 0 28px;
  }

  .brand {
    width: 160px;
  }

  .site-nav,
  .site-phone,
  .header-action {
    display: none;
  }

  .mobile-menu-state {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(248, 249, 246, 0.88);
    border-radius: 7px;
    background: transparent;
  }

  .mobile-menu-state span {
    width: 17px;
    height: 1px;
    background: #ffffff;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 47%) minmax(0, 53%);
    grid-template-areas:
      "copy media"
      "stages stages"
      "dossier dossier"
      "proofs proofs";
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 42px 28px 44px;
    overflow: clip;
  }

  .hero-media {
    position: relative;
    grid-area: media;
    inset: auto;
    min-height: 570px;
    border: 1px solid rgba(222, 229, 232, 0.74);
  }

  .hero-media img {
    object-position: 52% 50%;
    filter: brightness(0.8) saturate(0.74) contrast(1.07);
  }

  .hero-shade,
  .engineering-grid {
    display: none;
  }

  .hero-copy {
    position: relative;
    grid-area: copy;
    top: auto;
    left: auto;
    align-self: center;
    width: auto;
    padding-right: 30px;
  }

  .hero-title {
    width: auto;
    font-size: clamp(42px, 5vw, 50px);
  }

  .hero-title > span {
    white-space: normal;
  }

  .hero-lead {
    width: auto;
    max-width: 480px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 350px;
  }

  .button {
    width: 100%;
  }

  .hero-microcopy {
    width: min(320px, 100%);
  }

  .stage-system {
    position: relative;
    grid-area: stages;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    margin-top: 20px;
  }

  .stage-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 54px;
    gap: 10px;
  }

  .stage-tabs::before,
  .stage-connector {
    display: none;
  }

  .stage-tab {
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 7px;
    height: 54px;
    padding: 0 10px;
  }

  .stage-tab__marker {
    display: none;
  }

  .stage-tab__number {
    justify-self: start;
  }

  .stage-tab__title {
    font-size: 13px;
    white-space: normal;
  }

  .dossier {
    position: relative;
    grid-area: dossier;
    top: auto;
    right: auto;
    width: auto;
    height: 230px;
    margin-top: 20px;
  }

  .dossier-panel__description {
    width: min(620px, 90%);
  }

  .hero-proofs {
    position: relative;
    grid-area: proofs;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    margin-top: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .desktop-break {
    display: none;
  }

  .mobile-break {
    display: inline;
  }

  body {
    background:
      linear-gradient(180deg, transparent 0, transparent 11%, var(--color-bg) 26%, var(--color-bg) 100%),
      linear-gradient(90deg, var(--color-bg) 0%, #081b28 100%);
  }

  .site-header {
    height: 65px;
    background: transparent;
  }

  .site-header::after {
    right: 20px;
    left: 20px;
    background: rgba(206, 214, 218, 0.8);
  }

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

  .brand {
    width: 143px;
    transform: translateY(-3px);
  }

  .mobile-menu-state {
    width: 38px;
    height: 40px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 1325px;
    padding: 0 20px 17px;
    background: transparent;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    padding: 16px 0 0;
  }

  .hero-eyebrow {
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.045em;
    line-height: 16px;
  }

  .hero-eyebrow__line {
    flex-basis: 26px;
    width: 26px;
    height: 1px;
  }

  .hero-title {
    width: 100%;
    margin-top: 23px;
    font-size: 35px;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .hero-title > span {
    white-space: normal;
  }

  .hero-title__dot {
    top: -3px;
    width: 9px;
    height: 8px;
    margin-left: 7px;
  }

  .hero-lead {
    width: 100%;
    max-width: none;
    margin-top: 6px;
    font-size: 15.4px;
    line-height: 1.4;
  }

  .hero-actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: none;
    margin-top: 35px;
  }

  .button--primary {
    width: 100%;
    height: 52px;
    padding: 0 12px 0 19px;
    font-size: 16px;
  }

  .button > span,
  .button > svg {
    top: 2px;
  }

  .button--secondary {
    justify-content: flex-start;
    gap: 12px;
    width: max-content;
    height: 22px;
    margin-top: 17px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 14px;
  }

  .button--secondary svg {
    width: 25px;
    height: 20px;
  }

  .hero-microcopy {
    width: 100%;
    min-height: 42px;
    margin-top: 12px;
    padding-left: 11px;
    font-size: 14px;
    line-height: 1.42;
    letter-spacing: 0;
  }

  .hero-media {
    order: 2;
    width: 100%;
    min-height: 0;
    height: 231px;
    margin-top: 16px;
    border-color: rgba(223, 230, 233, 0.9);
  }

  .hero-media img {
    object-position: 50% 50%;
    filter: brightness(0.9) saturate(0.86) contrast(1.08);
  }

  .hero-media__tone {
    background: rgba(4, 17, 25, 0.08);
  }

  .hero-media__mobile-route {
    position: absolute;
    bottom: 18px;
    left: -1px;
    display: block;
    width: 96px;
    height: 1px;
    background: var(--color-accent);
  }

  .hero-media__mobile-route::after {
    position: absolute;
    top: -4px;
    right: -3px;
    width: 8px;
    height: 8px;
    content: "";
    border-radius: 50%;
    background: var(--color-accent);
  }

  .stage-system {
    order: 3;
    width: 100%;
    margin-top: 17px;
  }

  .stage-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 44px);
    gap: 9px 10px;
  }

  .stage-tab {
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 8px;
    width: 100%;
    height: 44px;
    padding: 0 10px;
    border-color: rgba(222, 229, 232, 0.9);
    border-radius: 4px;
    background: transparent;
  }

  .stage-tab__title--full {
    display: none;
  }

  .stage-tab__title--short {
    display: block;
  }

  .stage-tab__number {
    font-size: 12px;
  }

  .stage-tab__title {
    font-size: 13px;
    line-height: 1;
  }

  .stage-tab__marker,
  .stage-tab__number,
  .stage-tab__titles {
    top: 0;
  }

  .dossier {
    order: 4;
    width: 100%;
    height: auto;
    min-height: 132px;
    margin-top: 20px;
    border-left-width: 3px;
    border-radius: 0 7px 7px 0;
  }

  .dossier-panel {
    padding: 21px 16px 17px 17px;
  }

  .dossier-panel__heading {
    grid-template-columns: 35px minmax(0, 1fr) auto;
  }

  .dossier-panel__number {
    font-size: 15px;
  }

  .dossier-panel__title {
    font-size: 19px;
    top: 1px;
  }

  .dossier-panel__counter--desktop {
    display: none;
  }

  .dossier-panel__counter--mobile {
    display: block;
    color: #929ca1;
    font-size: 10px;
  }

  .dossier-panel__description {
    width: 100%;
    min-height: 59px;
    margin-top: 17px;
    font-size: 14px;
    line-height: 1.2;
    top: -1px;
  }

  .dossier-panel__next {
    display: none;
  }

  .hero-proofs {
    order: 5;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 231px;
    margin-top: 25px;
    padding: 0;
    border-top-color: rgba(222, 229, 232, 0.9);
    border-bottom: 1px solid rgba(222, 229, 232, 0.9);
  }

  .hero-proofs::before,
  .hero-proofs::after,
  .proof:nth-child(2)::before {
    display: none;
  }

  .proof {
    flex: 0 0 70px;
    padding: 13px 0 0 13px;
  }

  .proof + .proof::after {
    display: none;
  }

  .proof::before {
    position: absolute;
    top: 20px;
    left: -3px;
    display: block;
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 50%;
    background: var(--color-line);
  }

  .proof--accent::before {
    background: var(--color-accent);
  }

  .proof dt {
    margin: 0;
    font-size: 20px;
  }

  .proof dd {
    width: 100%;
    margin-top: 7px;
    font-size: 11.7px;
    line-height: 1.2;
    top: 0;
    left: 0;
  }

  .proof:nth-child(3) dt,
  .proof:nth-child(3) dd {
    left: 0;
  }
}

@media (max-width: 374px) {
  .hero {
    min-height: 1350px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .stage-tab__title {
    font-size: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .js [data-reveal] {
    animation: none !important;
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .dossier-panel {
    transform: none;
  }
}

@media (forced-colors: active) {
  .hero-shade,
  .hero-media__tone,
  .engineering-grid {
    display: none;
  }

  .stage-tab[aria-selected="true"],
  .dossier,
  .button {
    border: 2px solid CanvasText;
  }

  .stage-tab[aria-selected="true"]::before {
    background: Highlight;
  }

  :where(a, button):focus-visible {
    outline: 2px solid Highlight;
    outline-offset: 3px;
    box-shadow: none;
  }
}

[id] {
  scroll-margin-top: 96px;
}

@media (max-width: 767px) {
  .proof:nth-child(2)::before {
    display: block;
  }
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu {
  position: fixed;
  z-index: 39;
  top: 0;
  right: 0;
  left: 0;
  padding: 96px 26px 30px;
  background: #030a0e;
  border-bottom: 1px solid rgba(206, 214, 218, 0.22);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: none;
}

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

.mobile-menu__nav a {
  padding: 13px 2px;
  border-bottom: 1px solid rgba(206, 214, 218, 0.14);
  color: #f8f9f6;
  font-size: 19px;
  font-weight: 500;
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mobile-menu__contacts a {
  color: #c6ced2;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14.5px;
}

.mobile-menu__contacts a:first-child {
  color: #f8f9f6;
  font-family: "Futura PT", Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
}

.mobile-menu__cta {
  display: block;
  width: 100%;
  margin-top: 22px;
  padding: 15px 18px;
  border: 0;
  border-radius: 4px;
  background: var(--color-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.mobile-menu-state {
  cursor: pointer;
}

.mobile-menu-state span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-state.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-state.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-state.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header.is-menu-open {
  background: rgba(3, 10, 14, 0.98);
}

@media (min-width: 1100px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 1099px) {
  .header-tg { margin-left: auto; margin-right: 14px; }
}

@media (max-width: 767px) {
  .header-tg { display: none; }
}

.hero-sub,
.hero-note,
.proof dd,
.stage-panel p {
  letter-spacing: 0.015em;
}

:root {
  --font-display: "Futura PT", Arial, sans-serif;
  --font-text: "Gilroy", Arial, sans-serif;

  --fs-display: clamp(35px, 2.6vw + 22px, 56px);
  --fs-h2: clamp(29px, 3.1vw, 52px);
  --fs-h3: clamp(21px, 0.8vw + 15px, 26px);
  --fs-h4: 16.5px;
  --fs-lead: clamp(16.5px, 0.35vw + 14px, 18.5px);
  --fs-body: 15.5px;
  --fs-body-s: 15px;
  --fs-caption: 12.5px;
  --fs-overline: 12.5px;
  --fs-badge: 11px;
  --fs-num-l: clamp(28px, 1.2vw + 18px, 36px);
  --fs-num-t: 15px;
  --fs-button: 15px;
  --fs-input: 16px;
  --fs-legal: 12.5px;

  --fw-heavy: 800;
  --fw-demi: 600;
  --fw-medium: 500;
  --fw-regular: 400;

  --lh-display: 1.10;
  --lh-h2: 1.06;
  --lh-h3: 1.12;
  --lh-tight: 1;
  --lh-body: 1.6;
  --lh-caption: 1.45;

  --ls-caps-wide: 0.14em;
  --ls-caps: 0.06em;
  --ls-caps-tight: 0.005em;
  --ls-body: 0.015em;

  --measure-body: 640px;
  --measure-narrow: 520px;
  --measure-legal: 470px;

  --text-primary: #f8f9f6;
  --text-secondary: #c6ced2;
  --text-dim: #9faab0;
  --text-accent: #ef4147;
  --text-on-accent: #ffffff;
}

@media (min-width: 1100px) and (max-width: 1299px) {
  .header-tg { display: none; }
  .site-nav a.site-nav__home { display: none; }
  .site-nav { gap: 12px; font-size: 15px; }
  .site-phone__mail { display: none; }
  .header-action { margin-left: 14px; }
  .site-header__inner { padding: 0 28px; }
}

@media (max-width: 1099px) {
  .site-header__inner {
    position: relative;
    z-index: 2;
  }

  .mobile-menu-state {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .site-header.is-menu-open {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    left: 0;
  }

  .mobile-menu {
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    padding: calc(88px + env(safe-area-inset-top, 0px)) 26px calc(28px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-menu__nav a,
  .mobile-menu__contacts a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .mobile-menu__nav a[aria-current="page"] {
    color: var(--color-accent-text);
  }

  .mobile-menu__nav a[aria-current="page"]::before {
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background: currentColor;
    content: "";
  }

  .mobile-menu__cta {
    min-height: 50px;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .mobile-menu:not([hidden]) {
    display: block !important;
  }

  .hero {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  }

  .hero-copy {
    min-width: 0;
    padding-right: 20px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(34px, 4.6vw, 42px);
    overflow-wrap: normal;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: calc(65px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
  }

  .mobile-menu-state {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    padding: calc(77px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-break {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(30px, 8.9vw, 35px);
    line-height: 1.08;
  }

  .hero-title > span {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .hero-title > span:first-child {
    letter-spacing: -0.03em;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button--secondary {
    align-items: center;
    min-height: 44px;
    height: auto;
    margin-top: 6px;
  }

  .stage-tabs {
    grid-template-rows: repeat(2, minmax(52px, auto));
  }

  .stage-tab {
    height: auto;
    min-height: 52px;
  }

  .hero-proofs {
    height: auto;
    min-height: 231px;
  }

  .proof {
    flex: 1 1 auto;
    min-height: 70px;
  }

  .skip-link {
    box-sizing: border-box;
    max-width: calc(100vw - 24px);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .button--primary {
    height: auto;
    min-height: 52px;
    padding-block: 10px;
    white-space: normal;
    line-height: 1.15;
  }

  .button--primary > span {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .button > svg {
    flex: 0 0 auto;
  }

  .stage-tab,
  .stage-tab__titles,
  .stage-tab__title,
  .dossier-panel__title {
    min-width: 0;
  }

  .stage-tab {
    padding-block: 7px;
  }

  .stage-tab__title,
  .dossier-panel__title {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .dossier-panel__title {
    line-height: 1.06;
  }
}

@media (max-width: 374px) {
  .hero {
    min-height: 0;
  }

  .hero-title {
    font-size: 29px;
  }
}

@media (min-width: 768px) and (max-width: 1099px) and (max-height: 500px) {
  .hero {
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    padding-top: 22px;
  }

  .hero-media {
    min-height: 410px;
  }

  .hero-copy {
    align-self: start;
  }

  .hero-title {
    margin-top: 12px;
    font-size: clamp(29px, 3.6vw, 32px);
  }

  .hero-lead {
    margin-top: 8px;
    font-size: 14.5px;
    line-height: 1.38;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-microcopy {
    margin-top: 10px;
  }
}

@media (min-width: 640px) and (max-width: 767px) and (max-height: 500px) {
  .hero-title {
    margin-top: 12px;
    font-size: 32px;
  }

  .hero-lead {
    font-size: 14.5px;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-media {
    height: 210px;
    min-height: 0;
  }
}

html.ad-zd {
  --hero-title-fs: 53px;
}

html.ad-zd .hero-title b,
html.ad-zd .m3-hero-copy h1 b {
  color: var(--color-accent-text);
  font-weight: inherit;
}

.site-header:not(.is-stuck) .header-action {
  background: transparent;
}

@media (min-width: 1100px) {
  .hero-copy,
  .stage-system,
  .dossier {
    margin-top: 40px;
  }
}

.pa-modal {
  --pm-bg: rgba(2, 7, 10, 0.78);
  --pm-surface: #081319;
  --pm-surface-raised: #0c1b24;
  --pm-text: #f7f8f6;
  --pm-text-muted: #c3cbcf;
  --pm-text-dim: #8d989e;
  --pm-accent: #d91f26;
  --pm-accent-text: #ef4147;
  --pm-line: rgba(206, 214, 218, 0.16);
  --pm-line-strong: rgba(206, 214, 218, 0.38);
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2.4vh, 30px) clamp(10px, 2vw, 30px);
  font-family: "Futura PT", Arial, sans-serif;
}

.pa-modal[hidden],
.pa-modal [hidden] {
  display: none !important;
}

body.pa-modal-open {
  overflow: hidden;
}

.pa-modal__overlay {
  position: absolute;
  inset: 0;
  background: var(--pm-bg);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pa-modal.is-open .pa-modal__overlay {
  opacity: 1;
}

.pa-modal__dialog {
  position: relative;
  width: min(1460px, 100%);
  max-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(206, 214, 218, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, #0c1a23 0%, var(--pm-surface) 34%);
  box-shadow:
    0 60px 130px -40px rgba(0, 0, 0, 0.9),
    0 24px 50px -30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(224, 237, 243, 0.07);
  opacity: 0;
  transform: translateY(30px) scale(0.965);
  transition: opacity 0.42s cubic-bezier(0.22, 0.9, 0.24, 1), transform 0.42s cubic-bezier(0.22, 0.9, 0.24, 1);
}

.pa-modal__dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 148px;
  height: 2px;
  background: linear-gradient(90deg, var(--pm-accent), rgba(217, 31, 38, 0));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.24, 1) 0.25s;
}

.pa-modal.is-open .pa-modal__dialog::before {
  transform: scaleX(1);
}

.pa-modal.is-open .pa-modal__dialog {
  opacity: 1;
  transform: none;
}

@keyframes pmRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pmKen {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}

.pa-modal.is-open .pa-modal__title { animation: pmRise 0.55s cubic-bezier(0.22, 0.9, 0.24, 1) 0.2s both; }
.pa-modal.is-open .pa-modal__description { animation: pmRise 0.55s cubic-bezier(0.22, 0.9, 0.24, 1) 0.27s both; }
.pa-modal.is-open .pa-modal__subtitle,
.pa-modal.is-open .pa-modal__includes { animation: pmRise 0.55s cubic-bezier(0.22, 0.9, 0.24, 1) 0.34s both; }
.pa-modal.is-open .pa-modal__params,
.pa-modal.is-open .pa-modal__tags,
.pa-modal.is-open .pa-modal__stats { animation: pmRise 0.55s cubic-bezier(0.22, 0.9, 0.24, 1) 0.41s both; }
.pa-modal.is-open .pa-modal__note { animation: pmRise 0.55s cubic-bezier(0.22, 0.9, 0.24, 1) 0.46s both; }
.pa-modal.is-open .pa-modal__request { animation: pmRise 0.6s cubic-bezier(0.22, 0.9, 0.24, 1) 0.52s both; }
.pa-modal.is-open .pa-modal__gallery-bar { animation: pmRise 0.5s cubic-bezier(0.22, 0.9, 0.24, 1) 0.3s both; }
.pa-modal.is-open .pa-modal__stage img { animation: pmKen 4.5s cubic-bezier(0.16, 0.6, 0.3, 1) both; }

.pa-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--pm-line-strong);
  border-radius: 5px;
  background: rgba(8, 19, 25, 0.85);
  color: var(--pm-text);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pa-modal__close:hover {
  border-color: var(--pm-accent-text);
  background: rgba(217, 31, 38, 0.1);
}

.pa-modal__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  transition: transform 0.3s cubic-bezier(0.22, 0.9, 0.24, 1);
}

.pa-modal__close:hover svg {
  transform: rotate(90deg);
}

.pa-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  min-height: 0;
  flex: 1;
}

.pa-modal__gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #050d12;
  border-right: 1px solid var(--pm-line);
}

.pa-modal__stage {
  position: relative;
  flex: 1;
  min-height: 320px;
  overflow: hidden;
}

.pa-modal__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.pa-modal__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(3, 10, 14, 0.55) 0%, rgba(3, 10, 14, 0) 22%);
}

.pa-modal__gallery-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-top: 1px solid var(--pm-line);
}

.pa-modal__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--pm-line-strong);
  border-radius: 5px;
  background: transparent;
  color: var(--pm-text);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.pa-modal__nav:hover {
  border-color: var(--pm-accent-text);
  background: rgba(217, 31, 38, 0.1);
}

.pa-modal__nav:active {
  transform: scale(0.94);
}

.pa-modal__nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pa-modal__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.pa-modal__dot {
  width: 18px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(206, 214, 218, 0.26);
  cursor: pointer;
  transition: background-color 0.25s ease, width 0.3s cubic-bezier(0.22, 0.9, 0.24, 1);
}

.pa-modal__dot:hover {
  background: rgba(206, 214, 218, 0.55);
}

.pa-modal__dot[aria-pressed="true"] {
  width: 34px;
  background: var(--pm-accent);
}

.pa-modal__counter {
  color: var(--pm-text-dim);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pa-modal__content {
  min-height: 0;
  overflow-y: auto;
  padding: 26px 32px 24px 30px;
  scrollbar-width: thin;
  scrollbar-color: rgba(206, 214, 218, 0.3) transparent;
}

.pa-modal__content::-webkit-scrollbar {
  width: 8px;
}

.pa-modal__content::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(206, 214, 218, 0.25);
}

.pa-modal__title {
  margin: 14px 0 0;
  color: var(--pm-text);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.08;
}

.pa-modal__title::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 14px;
  background: var(--pm-accent);
}

.pa-modal__description {
  margin: 14px 0 0;
  color: var(--pm-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
}

.pa-modal__subtitle {
  margin: 18px 0 0;
  color: var(--pm-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pa-modal__includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.pa-modal__includes li {
  position: relative;
  padding-left: 17px;
  color: var(--pm-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.pa-modal__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: var(--pm-accent);
}

.pa-modal__params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 26px;
  margin: 16px 0 0;
}

.pa-modal__params div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-top: 1px solid var(--pm-line);
}

.pa-modal__params dt {
  color: var(--pm-text-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
}

.pa-modal__params dd {
  margin: 0;
  color: var(--pm-text);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

.pa-modal__note {
  margin: 12px 0 0;
  color: var(--pm-text-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.pa-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 0 0;
}

.pa-modal__tags i {
  padding: 6px 11px;
  border: 1px solid var(--pm-line);
  color: var(--pm-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.3;
}

.pa-modal__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 17px 0 0;
}

.pa-modal__stat {
  position: relative;
  padding: 3px 0 3px 13px;
}

.pa-modal__stat::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 2px;
  background: var(--pm-accent);
}

.pa-modal__stat b {
  display: block;
  color: var(--pm-text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.05;
}

.pa-modal__stat span {
  display: block;
  margin-top: 3px;
  color: var(--pm-text-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.35;
}

.pa-modal__request {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--pm-line);
  border-radius: 8px;
  background: var(--pm-surface-raised);
}

.pa-modal__request-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 4px 2px;
  border: 0;
  background: none;
  color: var(--pm-text);
  cursor: pointer;
  text-align: left;
}

.pa-modal__request-toggle b {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.pa-modal__request-toggle i {
  display: block;
  margin-top: 5px;
  color: var(--pm-text-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
  font-style: normal;
}

.pa-modal__request-toggle svg {
  flex: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid var(--pm-accent);
  border-radius: 4px;
  background: var(--pm-accent);
  color: #fff;
  transition: background-color 0.2s ease, transform 0.25s cubic-bezier(0.22, 0.9, 0.24, 1);
}

.pa-modal__request-toggle:hover svg {
  background: #e73238;
  transform: translateX(3px);
}

.pa-modal__request-head h3 {
  margin: 0;
  color: var(--pm-text);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.pa-modal__request-head p {
  margin: 8px 0 0;
  color: var(--pm-text-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
}

.pa-modal__form {
  margin-top: 16px;
}

.pa-modal__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pa-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.pa-modal__form-grid .pa-modal__field {
  margin-top: 0;
}

.pa-modal__field span {
  color: var(--pm-text-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
}

.pa-modal__field em {
  font-style: normal;
  opacity: 0.7;
}

.pa-modal__field input,
.pa-modal__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--pm-line-strong);
  border-radius: 4px;
  background: rgba(3, 10, 14, 0.5);
  color: var(--pm-text);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14.5px;
  line-height: 1.3;
  transition: border-color 0.2s ease;
}

.pa-modal__field textarea {
  resize: vertical;
  min-height: 58px;
}

.pa-modal__field input:focus-visible,
.pa-modal__field textarea:focus-visible {
  outline: none;
  border-color: #ced6da;
  box-shadow: 0 0 0 3px rgba(206, 214, 218, 0.14);
}

.pa-modal__field input[aria-invalid="true"] {
  border-color: var(--pm-accent-text);
  box-shadow: 0 0 0 3px rgba(217, 31, 38, 0.16);
}

.pa-modal__attach {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 14px;
}

.pa-modal__attach-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px dashed var(--pm-line-strong);
  border-radius: 4px;
  background: transparent;
  color: var(--pm-text);
  font-family: "Futura PT", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pa-modal__attach-button:hover {
  border-color: #ced6da;
  background: rgba(206, 214, 218, 0.05);
}

.pa-modal__attach-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pa-modal__attach-file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 10px 8px 12px;
  border: 1px solid var(--pm-line);
  border-radius: 4px;
  background: rgba(3, 10, 14, 0.5);
  color: var(--pm-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
}

.pa-modal__attach-file > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 260px;
}

.pa-modal__attach-file button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--pm-text-dim);
  cursor: pointer;
}

.pa-modal__attach-file button:hover {
  color: var(--pm-accent-text);
}

.pa-modal__attach-file svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.pa-modal__attach-hint {
  flex-basis: 100%;
  color: var(--pm-text-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 11.5px;
}

.pa-modal__form-error {
  margin: 12px 0 0;
  color: var(--pm-accent-text);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.pa-modal__submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 15px 24px;
  border: 1px solid var(--pm-accent);
  border-radius: 4px;
  background: var(--pm-accent);
  color: #ffffff;
  font-family: "Futura PT", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.pa-modal__submit:hover {
  background: #e73238;
  border-color: #e73238;
}

.pa-modal__submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pa-modal__success {
  padding: 8px 0 4px;
  text-align: left;
}

.pa-modal__success svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--pm-accent-text);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes pmDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.pa-modal__success svg path {
  stroke-dasharray: 96;
  stroke-dashoffset: 96;
  animation: pmDraw 0.9s cubic-bezier(0.22, 0.9, 0.24, 1) 0.1s forwards;
}

.pa-modal__success svg path:last-child {
  animation-delay: 0.45s;
}

.pa-modal__success h3 {
  margin: 12px 0 0;
  color: var(--pm-text);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.pa-modal__success p {
  margin: 8px 0 0;
  color: var(--pm-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.pa-modal :where(a, button):focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px #ced6da, 0 0 0 4px var(--pm-accent);
}

@media (max-width: 1023px) {
  .pa-modal {
    padding: 0;
    align-items: stretch;
  }

  .pa-modal__dialog {
    width: 100%;
    max-height: none;
    border-radius: 0;
    border: 0;
    overflow-y: auto;
  }

  .pa-modal__layout {
    grid-template-columns: 1fr;
    flex: none;
  }

  .pa-modal__gallery {
    border-right: 0;
    border-bottom: 1px solid var(--pm-line);
  }

  .pa-modal__stage {
    min-height: 0;
    aspect-ratio: 16 / 10;
    flex: none;
  }

  .pa-modal__content {
    overflow: visible;
    padding: 24px 20px 28px;
  }
}

@media (max-width: 600px) {
  .pa-modal__dots {
    display: none;
  }

  .pa-modal__nav {
    width: 44px;
    height: 44px;
  }

  .pa-modal__stage {
    aspect-ratio: 16 / 11;
  }

  .pa-modal__gallery-bar {
    padding: 10px 12px;
    gap: 10px;
  }

  .pa-modal__includes {
    grid-template-columns: 1fr;
  }

  .pa-modal__form-grid {
    grid-template-columns: 1fr;
  }

  .pa-modal__params div {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .pa-modal__params dd {
    text-align: left;
  }

  .pa-modal__request {
    padding: 18px 16px;
  }

  .pa-modal__submit {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 1024px) and (max-height: 849px) {
  .pa-modal__content {
    padding: 20px 26px 18px 24px;
  }

  .pa-modal__title {
    margin-top: 10px;
    font-size: 24px;
  }

  .pa-modal__title::after {
    margin-top: 10px;
  }

  .pa-modal__description {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .pa-modal__subtitle {
    margin-top: 13px;
  }

  .pa-modal__includes {
    gap: 6px 18px;
    margin-top: 9px;
  }

  .pa-modal__includes li {
    font-size: 13px;
  }

  .pa-modal__params {
    margin-top: 11px;
  }

  .pa-modal__params div {
    padding: 7px 0;
  }

  .pa-modal__params dd {
    font-size: 14px;
  }

  .pa-modal__note {
    margin-top: 9px;
    font-size: 12px;
  }

  .pa-modal__request {
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pa-modal__overlay,
  .pa-modal__dialog,
  .pa-modal__dialog::before,
  .pa-modal * {
    transition: none !important;
    animation: none !important;
  }

  .pa-modal.is-open .pa-modal__dialog::before {
    transform: scaleX(1);
  }

  .pa-modal__success svg path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

@media (forced-colors: active) {
  .pa-modal__dialog,
  .pa-modal__close,
  .pa-modal__nav,
  .pa-modal__request,
  .pa-modal__attach-button,
  .pa-modal__submit,
  .pa-modal__field input,
  .pa-modal__field textarea {
    border: 1px solid CanvasText;
  }

  .pa-modal__dot {
    background: CanvasText;
  }
}

.pa-modal__description,
.pa-modal__includes li,
.pa-modal__note,
.pa-modal__request-head p,
.pa-modal__request-toggle-text i {
  letter-spacing: 0.015em;
}

@media (max-width: 1023px) {
  .pa-modal {
    height: 100vh;
    height: 100dvh;
  }

  .pa-modal__dialog {
    max-height: 100vh;
    max-height: 100dvh;
    overscroll-behavior: contain;
  }

  .pa-modal__close {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top, 0px));
    right: calc(10px + env(safe-area-inset-right, 0px));
    z-index: 12;
    background: rgba(8, 19, 25, 0.96);
  }
}

:root {
  --sb-bg: #030a0e;
  --sb-surface: #071117;
  --sb-surface-raised: #0a151c;
  --sb-text: #f8f9f6;
  --sb-muted: #c6ced2;
  --sb-dim: #9faab0;
  --sb-accent: #d91f26;
  --sb-accent-text: #ef4147;
  --sb-line: rgba(206, 214, 218, 0.22);
  --sb-line-strong: rgba(206, 214, 218, 0.5);
  --sb-pad: clamp(28px, 4.4vw, 84px);
  --sb-ease: cubic-bezier(0.22, 0.9, 0.24, 1);
}

.pa-about,
.pa-cases,
.pa-gallery,
.pa-geo,
.pa-flow,
.pa-cta {
  position: relative;
  padding: clamp(72px, 6.4vw, 104px) max(var(--sb-pad), calc((100% - 1312px) / 2));
  color: var(--sb-text);
  background: var(--sb-bg);
  font-family: "Futura PT", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

.pa-about :where(p, h2, h3, figure, dl, dd, ul, ol),
.pa-cases :where(p, h2, h3, figure, dl, dd, ul, ol),
.pa-gallery :where(p, h2, h3, figure, dl, dd, ul, ol),
.pa-geo :where(p, h2, h3, figure, dl, dd, ul, ol),
.pa-flow :where(p, h2, h3, figure, dl, dd, ul, ol),
.pa-cta :where(p, h2, h3, figure, dl, dd, ul, ol) {
  margin: 0;
}

:where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta) :where(ul, ol) {
  padding: 0;
  list-style: none;
}

:where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta) :where(button) {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: inherit;
}

:where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta) svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

:where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta) [hidden],
.pa-lightbox[hidden] {
  display: none !important;
}

:where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta) :where(a, button):focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px #ced6da, 0 0 0 4px var(--sb-accent);
  border-radius: 3px;
}

:where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta)::before {
  content: "";
  position: absolute;
  top: 0;
  right: max(var(--sb-pad), calc((100% - 1312px) / 2));
  left: max(var(--sb-pad), calc((100% - 1312px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sb-line-strong) 8%, var(--sb-line-strong) 92%, transparent);
}

.pa-sb-head {
  display: grid;
  grid-template-columns: auto minmax(40px, 1fr);
  align-items: baseline;
  column-gap: 26px;
  margin-bottom: 40px;
}

.pa-sb-head .pa-sb-eyebrow {
  grid-column: 1 / -1;
}

.pa-sb-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--sb-accent-text);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.pa-sb-title {
  color: var(--sb-text);
  font-size: clamp(29px, 3.1vw, 52px);
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 1.06;
}

.pa-sb-line {
  height: 1px;
  background: linear-gradient(90deg, var(--sb-line-strong), rgba(206, 214, 218, 0.06));
  transform: translateY(-6px);
}

.pa-about .pa-sb-head,
.pa-geo .pa-sb-head {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.pa-about .pa-sb-head .pa-sb-title,
.pa-geo .pa-sb-head .pa-sb-title {
  grid-column: 1 / -1;
}

.pa-about .pa-sb-head .pa-sb-line,
.pa-geo .pa-sb-head .pa-sb-line {
  grid-column: 1 / -1;
  margin-top: 22px;
  transform: none;
}

html.js :where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta) [data-sb-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--sb-ease), transform 0.6s var(--sb-ease);
  transition-delay: var(--sb-delay, 0s);
}

html.js :where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta) [data-sb-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.pa-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 34fr) minmax(0, 66fr);
  gap: clamp(28px, 3.6vw, 64px);
  align-items: stretch;
}

.pa-about__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sb-line);
  border-radius: 4px;
  background: var(--sb-surface);
  min-height: 480px;
}

.pa-about__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05) brightness(0.92);
  transition: transform 0.6s var(--sb-ease);
}

.pa-about__media:hover img {
  transform: scale(1.025);
}

.pa-about__media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--sb-ease);
}

.pa-about__media:hover::after {
  transform: scaleX(1);
}

.pa-about__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 20px 14px;
  background: linear-gradient(0deg, rgba(3, 10, 14, 0.9), transparent);
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.pa-about__content {
  min-width: 0;
}

.pa-about__counters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--sb-line);
}

.pa-about__counters dt {
  color: var(--sb-text);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
}

.pa-about .pa-about__counters dd {
  margin-top: 8px;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.pa-about__industries {
  margin-top: 20px;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.pa-case {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
  gap: clamp(24px, 3vw, 52px);
  padding: clamp(26px, 2.6vw, 40px);
  border: 1px solid var(--sb-line);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--sb-surface-raised), var(--sb-surface) 60%);
  overflow: hidden;
}

.pa-case + .pa-case {
  margin-top: 18px;
}

.pa-case::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--sb-ease);
}

.pa-case:hover::after {
  transform: scaleX(1);
}

.pa-case__eyebrow {
  color: var(--sb-accent-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pa-case__title {
  margin-top: 12px;
  color: var(--sb-text);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.14;
  text-transform: none;
}

.pa-case__loc {
  display: block;
  margin-top: 9px;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

.pa-case__desc {
  margin-top: 16px;
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.pa-case__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pa-case__facts li {
  padding: 7px 11px 6px;
  border: 1px solid var(--sb-line);
  border-radius: 3px;
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.pa-case__facts li.is-accent {
  border-color: rgba(239, 65, 71, 0.42);
  color: var(--sb-accent-text);
}

.pa-case__media {
  min-width: 0;
}

.pa-case__media-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.pa-case__stage {
  color: var(--sb-dim);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pa-case__nav {
  display: flex;
  gap: 8px;
}

.pa-case__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--sb-line-strong);
  border-radius: 4px;
  color: var(--sb-text);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pa-case__arrow:hover {
  border-color: var(--sb-accent-text);
  background: rgba(217, 31, 38, 0.1);
}

.pa-case__arrow svg {
  width: 16px;
  height: 16px;
}

.pa-case__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 4px;
}

.pa-case__track.is-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: visible;
}

.pa-case__track.is-pair .pa-case__shot {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.pa-case__track::-webkit-scrollbar {
  display: none;
}

.pa-case__shot {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 17vw, 280px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--sb-line);
  background: #050d12;
  scroll-snap-align: start;
  padding: 0;
}

.pa-case__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 0.45s var(--sb-ease);
}

.pa-case__shot:hover img {
  transform: scale(1.045);
}

.pa-case__shot::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--sb-ease);
}

.pa-case__shot:hover::after {
  transform: scaleX(1);
}

.pa-case__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.pa-case__thumb {
  position: relative;
  width: clamp(88px, 8.2vw, 118px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--sb-line);
  background: #050d12;
  padding: 0;
  cursor: pointer;
}

.pa-case__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.85) contrast(1.03);
  transition: opacity 0.4s var(--sb-ease), transform 0.55s var(--sb-ease);
}

.pa-case__thumb::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--sb-ease);
}

.pa-case__thumb:hover img,
.pa-case__thumb:focus-visible img {
  opacity: 1;
  transform: scale(1.06);
}

.pa-case__thumb:hover::after,
.pa-case__thumb:focus-visible::after {
  transform: scaleX(1);
}

.pa-case__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px 4px;
  border-radius: 3px;
  background: rgba(3, 10, 14, 0.82);
  color: var(--sb-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.pa-cases__more,
.pa-gallery__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  margin-top: 18px;
  border: 1px dashed var(--sb-line-strong);
  border-radius: 6px;
  color: var(--sb-muted);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pa-cases__more:hover,
.pa-gallery__more:hover {
  border-color: var(--sb-accent-text);
  color: var(--sb-text);
  background: rgba(217, 31, 38, 0.05);
}

.pa-cases__more svg,
.pa-gallery__more svg {
  width: 18px;
  height: 18px;
  color: var(--sb-accent-text);
}

.pa-case.is-hidden,
.pa-gallery__item.is-hidden {
  display: none;
}

html.no-js .pa-case.is-hidden,
html.no-js .pa-gallery__item.is-hidden {
  display: grid;
}

.pa-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 12px;
}

.pa-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--sb-line);
  background: #050d12;
  padding: 0;
  cursor: zoom-in;
}

.pa-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04) brightness(0.94);
  transition: transform 0.55s var(--sb-ease), filter 0.3s ease;
}

.pa-gallery__item:hover img {
  transform: scale(1.05);
  filter: saturate(0.95) contrast(1.04) brightness(1);
}

.pa-gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(3, 10, 14, 0.55), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pa-gallery__item:hover::before {
  opacity: 1;
}

.pa-gallery__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 2px;
  background: var(--sb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--sb-ease);
}

.pa-gallery__item:hover::after {
  transform: scaleX(1);
}

.pa-gallery__item:hover .pa-gallery__cap {
  opacity: 1;
  transform: none;
}

.pa-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  /* Блокировка body через overflow:hidden не держит фон в iOS Safari:
     страница уезжала под лайтбоксом при свайпе фото. pan-x оставляет
     горизонтальный жест, pinch-zoom — масштабирование фотографии. */
  touch-action: pan-x pinch-zoom;
  display: flex;
  flex-direction: column;
  background: rgba(2, 7, 10, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pa-lightbox[hidden] {
  display: none;
}

.pa-lightbox.is-open {
  opacity: 1;
}

.pa-lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(16px, 3vw, 40px);
}

.pa-lightbox__counter {
  color: var(--sb-dim, #9faab0);
  font-family: "Futura PT", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.pa-lightbox__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(206, 214, 218, 0.4);
  border-radius: 5px;
  background: transparent;
  color: #f8f9f6;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pa-lightbox__close:hover {
  border-color: #ef4147;
  background: rgba(217, 31, 38, 0.12);
}

.pa-lightbox__close svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.22, 0.9, 0.24, 1);
}

.pa-lightbox__close:hover svg {
  transform: rotate(90deg);
}

.pa-lightbox__stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 clamp(16px, 6vw, 90px);
}

.pa-lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
}

.pa-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(206, 214, 218, 0.4);
  border-radius: 5px;
  background: rgba(3, 10, 14, 0.6);
  color: #f8f9f6;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pa-lightbox__nav:hover {
  border-color: #ef4147;
  background: rgba(217, 31, 38, 0.14);
}

.pa-lightbox__nav svg {
  width: 20px;
  height: 20px;
}

.pa-lightbox__nav--prev {
  left: clamp(10px, 2vw, 28px);
}

.pa-lightbox__nav--next {
  right: clamp(10px, 2vw, 28px);
}

.pa-lightbox__cap {
  padding: 14px clamp(16px, 3vw, 40px) 20px;
  color: #c6ced2;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  text-align: center;
}

.pa-lightbox__cap:empty {
  display: none;
}

.pa-geo__wrap {
  position: relative;
}

.pa-geo__map {
  position: relative;
}

.pa-geo__map svg {
  display: block;
  width: 100%;
  height: auto;
}

.pa-geo__map svg path {
  fill: #131e26;
  fill-opacity: 1;
  stroke: rgba(206, 214, 218, 0.2);
  stroke-width: 0.6;
  transition: fill 0.25s ease;
  pointer-events: none;
}

.pa-geo__map svg path.geo-t1,
.pa-geo__map svg path.geo-t2,
.pa-geo__map svg path.geo-t3,
.pa-geo__map svg path.geo-t4,
.pa-geo__map svg path.geo-base {
  fill-opacity: 1;
  pointer-events: auto;
}

.pa-geo__map svg path.geo-t1 {
  fill: #2c3a46;
  stroke: rgba(206, 214, 218, 0.3);
  cursor: pointer;
}

.pa-geo__map svg path.geo-t2 {
  fill: #45586a;
  stroke: rgba(206, 214, 218, 0.4);
  cursor: pointer;
}

.pa-geo__map svg path.geo-t3 {
  fill: #6d879d;
  stroke: rgba(206, 214, 218, 0.5);
  cursor: pointer;
}

.pa-geo__map svg path.geo-t4 {
  fill: #a9c0d2;
  stroke: rgba(233, 240, 245, 0.7);
  cursor: pointer;
}

.pa-geo__map svg path.geo-base {
  fill: var(--sb-accent);
  stroke: rgba(255, 150, 155, 0.9);
  cursor: pointer;
}

.pa-geo__map svg path.geo-t1:hover,
.pa-geo__map svg path.geo-t2:hover,
.pa-geo__map svg path.geo-t3:hover,
.pa-geo__map svg path.geo-t4:hover {
  fill: #ff525b;
  filter: drop-shadow(0 0 7px rgba(239, 65, 71, 0.45));
}

.pa-geo__map svg path.geo-t4 {
  filter: drop-shadow(0 0 6px rgba(206, 214, 218, 0.3));
}

.pa-geo__map svg path.geo-base {
  filter: drop-shadow(0 0 7px rgba(217, 31, 38, 0.45));
}

.pa-geo__tooltip {
  position: absolute;
  z-index: 5;
  padding: 10px 14px;
  border: 1px solid var(--sb-line-strong);
  border-radius: 5px;
  background: rgba(5, 13, 18, 0.96);
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 12px));
  white-space: nowrap;
}

.pa-geo__tooltip span {
  display: block;
}

.pa-geo__tooltip [data-geo-tip-title] {
  color: var(--sb-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pa-geo__tooltip [data-geo-tip-sub] {
  margin-top: 3px;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
}

.pa-geo__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 20px;
}

.pa-geo__legend li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
}

.pa-geo__legend i {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.pa-geo__legend i.is-base {
  background: var(--sb-accent);
}

.pa-geo__legend i.is-t4 { background: #a9c0d2; }
.pa-geo__legend i.is-t3 { background: #6d879d; }
.pa-geo__legend i.is-t2 { background: #45586a; }
.pa-geo__legend i.is-t1 { background: #2c3a46; }

.pa-geo__abroad {
  color: var(--sb-dim);
}

.pa-cta {
  background:
    radial-gradient(110% 110% at 85% 0%, rgba(37, 65, 82, 0.18), transparent 52%),
    var(--sb-bg);
}

.pa-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  gap: clamp(30px, 4vw, 72px);
  align-items: start;
}

/* Карта-врезка в колонке контактов. Показывается только там, где колонок две
   (от 1200px) — там она добирает остаток высоты, и колонки заканчиваются вровень.
   На узких экранах вместо неё работает полоса .pa-map под секцией. */
.pa-cta__map {
  display: none;
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--sb-line);
  border-radius: 6px;
  background: #0c1a28;
}

.pa-cta__map .pa-map__shade {
  background:
    linear-gradient(180deg, rgba(3, 10, 14, 0.5) 0%, rgba(3, 10, 14, 0) 44px),
    linear-gradient(0deg, rgba(2, 7, 9, 0.5) 0%, rgba(2, 7, 9, 0) 44px);
}

@media (min-width: 1200px) {
  .pa-cta__grid {
    align-items: stretch;
  }

  .pa-cta__lead {
    display: flex;
    flex-direction: column;
  }

  .pa-cta__map {
    display: block;
    flex: 1 1 auto;
    min-height: 240px;
  }

  .pa-map {
    display: none;
  }
}

.pa-cta__intro {
  margin-top: 18px;
  max-width: 560px;
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
}

.pa-cta__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
  margin-top: 38px;
}

.pa-cta__points li {
  position: relative;
  padding-top: 16px;
  border-top: 1px solid var(--sb-line);
}

.pa-cta__points li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--sb-ease);
}

.pa-cta__points li:hover::before {
  transform: scaleX(1);
}

.pa-cta__num {
  color: var(--sb-accent-text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.pa-cta__points h3 {
  margin-top: 10px;
  color: var(--sb-text);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.pa-cta__points p {
  margin-top: 8px;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
}

.pa-cta__panel {
  position: relative;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(206, 214, 218, 0.18);
  border-radius: 10px;
  background: linear-gradient(180deg, #0c1a23 0%, var(--sb-surface) 40%);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(224, 237, 243, 0.06);
  overflow: hidden;
}

.pa-cta__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 148px;
  height: 2px;
  background: linear-gradient(90deg, var(--sb-accent), rgba(217, 31, 38, 0));
}

.pa-cta__panel-title {
  color: var(--sb-text);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pa-cta__panel-sub {
  margin-top: 10px;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
}

.pa-cta__form {
  margin-top: 20px;
}

.pa-cta__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pa-cta__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.pa-cta__row .pa-cta__field {
  margin-top: 0;
}

.pa-cta__field > span {
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
}

.pa-cta__field em {
  font-style: normal;
  opacity: 0.7;
}

.pa-cta__field input,
.pa-cta__field textarea,
.pa-cta__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sb-line-strong);
  border-radius: 4px;
  background: rgba(3, 10, 14, 0.5);
  color: var(--sb-text);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14.5px;
  line-height: 1.3;
  transition: border-color 0.2s ease;
}

.pa-cta__field textarea {
  resize: vertical;
  min-height: 66px;
}

.pa-cta__select-wrap {
  position: relative;
}

.pa-cta__select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.pa-cta__select-wrap select:invalid {
  color: var(--sb-dim);
}

.pa-cta__select-wrap svg {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  color: var(--sb-dim);
  pointer-events: none;
}

.pa-cta__field input:focus-visible,
.pa-cta__field textarea:focus-visible,
.pa-cta__field select:focus-visible {
  outline: none;
  border-color: #ced6da;
  box-shadow: 0 0 0 3px rgba(206, 214, 218, 0.14);
}

.pa-cta__field input[aria-invalid="true"] {
  border-color: var(--sb-accent-text);
  box-shadow: 0 0 0 3px rgba(217, 31, 38, 0.16);
}

.pa-cta__attach {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 14px;
}

.pa-cta__attach-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px dashed var(--sb-line-strong);
  border-radius: 4px;
  color: var(--sb-text);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pa-cta__attach-btn:hover {
  border-color: #ced6da;
  background: rgba(206, 214, 218, 0.05);
}

.pa-cta__attach-btn svg {
  width: 17px;
  height: 17px;
}

.pa-cta__attach-file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 10px 8px 12px;
  border: 1px solid var(--sb-line);
  border-radius: 4px;
  background: rgba(3, 10, 14, 0.5);
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
}

.pa-cta__attach-file > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 220px;
}

.pa-cta__attach-file button {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: var(--sb-dim);
}

.pa-cta__attach-file button:hover {
  color: var(--sb-accent-text);
}

.pa-cta__attach-file svg {
  width: 13px;
  height: 13px;
}

.pa-cta__attach-hint {
  flex-basis: 100%;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 11.5px;
}

.pa-cta__error {
  margin-top: 12px;
  color: var(--sb-accent-text);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
}

.pa-cta__submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 26px;
  border: 1px solid var(--sb-accent);
  border-radius: 4px;
  background: var(--sb-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.pa-cta__submit:hover {
  background: #e73238;
  border-color: #e73238;
}

.pa-cta__submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.pa-cta__submit:hover svg {
  transform: translateX(3px);
}

.pa-cta__success svg {
  width: 42px;
  height: 42px;
  stroke: var(--sb-accent-text);
  stroke-width: 1.5;
}

@keyframes sbDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.pa-cta__success svg path {
  stroke-dasharray: 96;
  stroke-dashoffset: 96;
  animation: sbDraw 0.9s var(--sb-ease) 0.1s forwards;
}

.pa-cta__success svg path:last-child {
  animation-delay: 0.45s;
}

.pa-cta__success h3 {
  margin-top: 12px;
  color: var(--sb-text);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.pa-cta__success p {
  margin-top: 8px;
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .pa-about__grid {
    grid-template-columns: 1fr;
  }

  .pa-about__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .pa-about__media img {
    position: static;
    aspect-ratio: 16 / 9;
  }

  .pa-case {
    grid-template-columns: 1fr;
  }

  .pa-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .pa-cta__grid {
    grid-template-columns: 1fr;
  }

  .pa-cta__panel {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .pa-about,
  .pa-cases,
  .pa-gallery,
  .pa-geo,
  .pa-cta {
    padding: 56px 16px;
  }

  :where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta)::before {
    right: 16px;
    left: 16px;
  }

  .pa-sb-head {
    margin-bottom: 26px;
  }

  .pa-about__counters {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .pa-about .pa-about__counters dd {
    font-size: 14px;
  }

  .pa-case {
    padding: 18px 16px 20px;
  }

  .pa-case__shot {
    width: 74vw;
  }

  .pa-case__nav {
    display: none;
  }

  .pa-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 8px;
  }

  .pa-geo__map {
    padding: 8px;
  }

  .pa-geo__legend {
    gap: 10px 18px;
  }

  .pa-cta__points {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pa-cta__row {
    grid-template-columns: 1fr;
  }

  .pa-cta__submit {
    width: 100%;
    justify-content: center;
  }

  .pa-lightbox__nav {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta) *,
  .pa-lightbox,
  .pa-lightbox * {
    transition: none !important;
    animation: none !important;
  }

  html.js :where(.pa-about, .pa-cases, .pa-gallery, .pa-geo, .pa-flow, .pa-cta) [data-sb-reveal] {
    opacity: 1;
    transform: none;
  }

  .pa-cta__success svg path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

@media (forced-colors: active) {
  .pa-case,
  .pa-cta__panel,
  .pa-gallery__item,
  .pa-geo__map,
  .pa-cta__submit,
  .pa-cta__attach-btn {
    border: 1px solid CanvasText;
  }
}

.pa-geo__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pa-geo__tab {
  min-height: 48px;
  padding: 10px 22px;
  border: 1px solid rgba(206, 214, 218, 0.28);
  border-radius: 4px;
  color: var(--sb-muted);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pa-geo__tab:hover {
  color: var(--sb-text);
  border-color: #ced6da;
}

.pa-geo__tab[aria-selected="true"] {
  border-color: var(--sb-accent-text);
  color: var(--sb-accent-text);
  background: rgba(217, 31, 38, 0.08);
}

@media (min-width: 768px) {
  .pa-geo .pa-sb-head {
    position: relative;
    z-index: 3;
    pointer-events: none;
  }

  .pa-geo__tabs {
    position: relative;
    z-index: 3;
  }

  #geo-panel-map {
    margin-top: -96px;
  }

  .pa-geo__tab {
    background: rgba(6, 15, 21, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .pa-geo__tab[aria-selected="true"] {
    background: rgba(58, 15, 18, 0.72);
  }
}

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

.pa-geo__spark {
  position: absolute;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  pointer-events: none;
}

.pa-geo__spark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(239, 65, 71, 0.5), transparent 66%);
}

.pa-geo__spark img {
  position: relative;
  display: block;
  height: 27px;
  max-width: 86px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 2px 9px -2px rgba(0, 0, 0, 0.55);
}

.pa-geo__spark.is-lit {
  animation: paGeoSpark 3600ms ease var(--spark-delay, 0ms) both;
}

.pa-geo__spark.is-lit::before {
  animation: paGeoSparkGlow 3600ms ease var(--spark-delay, 0ms) both;
}

@keyframes paGeoSpark {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  4% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
  11% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.96); }
}

@keyframes paGeoSparkGlow {
  0% { opacity: 0; }
  4% { opacity: 1; }
  30% { opacity: 0.4; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .pa-geo__wave {
    display: none;
  }
}

.pa-geo__clients-lead {
  max-width: 640px;
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.pa-geo__clients {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.pa-geo__client {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 16px 18px;
  transition: transform 0.3s var(--sb-ease);
}

.pa-geo__client img {
  display: block;
  width: 100%;
  max-width: 172px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 6px 18px -12px rgba(0, 0, 0, 0.7);
  transition: box-shadow 0.3s ease, transform 0.3s var(--sb-ease);
}

.pa-geo__client:hover {
  transform: translateY(-2px);
}

.pa-geo__client:hover img {
  box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.8);
}

.pa-geo__client span {
  color: var(--sb-dim);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  transition: color 0.25s ease;
}

.pa-geo__client:hover span {
  color: var(--sb-text);
}

.pa-geo__tooltip {
  max-width: 264px;
  white-space: normal;
}

.pa-geo__tip-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 13px;
  align-items: center;
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid rgba(206, 214, 218, 0.18);
}

.pa-geo__tip-logos:empty {
  display: none;
}

.pa-geo__tip-logos img {
  height: 22px;
  max-width: 76px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
}

.pa-geo__map svg path.is-linked {
  fill: #ff525b;
  filter: drop-shadow(0 0 8px rgba(239, 65, 71, 0.55));
}

@media (max-width: 1199px) {
  .pa-geo__clients {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pa-geo__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pa-geo__clients {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .pa-geo__client {
    min-height: 64px;
    padding: 10px;
  }

  .pa-geo__client img {
    max-width: 128px;
    max-height: 42px;
  }

  .pa-geo__client span {
    font-size: 13px;
  }
}

.pa-gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pa-gallery__filter {
  min-height: 44px;
  padding: 9px 20px;
  border: 1px solid rgba(206, 214, 218, 0.28);
  border-radius: 4px;
  color: var(--sb-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pa-gallery__filter:hover {
  color: var(--sb-text);
  border-color: #ced6da;
}

.pa-gallery__filter[aria-pressed="true"] {
  border-color: var(--sb-accent-text);
  color: var(--sb-accent-text);
  background: rgba(217, 31, 38, 0.08);
}

@media (max-width: 767px) {
  .pa-gallery__filters {
    gap: 8px;
  }

  .pa-gallery__filter {
    flex: 1 1 calc(50% - 8px);
    padding: 9px 10px;
    font-size: 13px;
  }
}

.pa-flow__sub {
  max-width: 640px;
  margin-top: -18px;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
}

.pa-flow__footnote {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  letter-spacing: 0.015em;
}

.pa-flow__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.pa-flow__tab {
  padding: 11px 22px 10px;
  border: 1px solid var(--sb-line);
  border-radius: 3px;
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: color 0.3s var(--sb-ease), border-color 0.3s var(--sb-ease), background 0.3s var(--sb-ease);
}

.pa-flow__tab:hover {
  color: var(--sb-text);
  border-color: var(--sb-line-strong);
}

.pa-flow__tab[aria-pressed="true"] {
  color: var(--sb-accent-text);
  border-color: rgba(239, 65, 71, 0.55);
  background: rgba(217, 31, 38, 0.08);
}

.pa-flow__note {
  display: none;
  margin-top: 16px;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: center;
}

.pa-flow__note b {
  color: var(--sb-accent-text);
  font-weight: 700;
}

.pa-flow__scheme {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(0, 1fr) 92px;
  column-gap: clamp(48px, 5.4vw, 96px);
  row-gap: 30px;
  max-width: 1120px;
  margin: 44px auto 0;
}

.pa-flow__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.pa-flow__lines path {
  fill: none;
  stroke: var(--sb-line-strong);
  stroke-width: 1.5;
  transition: stroke 0.4s var(--sb-ease), opacity 0.4s var(--sb-ease);
}

.pa-flow__lines path[data-branch="ready"],
.pa-flow__lines path[data-branch="custom"] {
  opacity: 0.9;
}

.pa-flow__scheme[data-active="ready"] .pa-flow__lines path[data-branch="ready"],
.pa-flow__scheme[data-active="custom"] .pa-flow__lines path[data-branch="custom"] {
  stroke: rgba(217, 31, 38, 0.8);
}

.pa-flow__scheme[data-active="ready"] .pa-flow__lines path[data-branch="custom"],
.pa-flow__scheme[data-active="custom"] .pa-flow__lines path[data-branch="ready"] {
  opacity: 0.3;
}

.pa-flow__node {
  position: relative;
  z-index: 1;
  width: min(330px, 100%);
  padding: 15px 20px 14px;
  border: 1px solid var(--sb-line);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--sb-surface-raised), var(--sb-surface) 80%);
  text-align: center;
  cursor: help;
  transition: border-color 0.35s var(--sb-ease), transform 0.35s var(--sb-ease), opacity 0.4s var(--sb-ease);
}

.pa-flow__node-t {
  display: block;
  color: var(--sb-text);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.pa-flow__days {
  display: block;
  margin-top: 6px;
  color: var(--sb-accent-text);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

.pa-flow__node::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--sb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--sb-ease);
}

.pa-flow__node:hover,
.pa-flow__node:focus-visible {
  border-color: var(--sb-line-strong);
  transform: translateY(-2px);
}

.pa-flow__node:hover::after,
.pa-flow__node:focus-visible::after {
  transform: scaleX(1);
}

[data-flow-node="tz"]     { grid-row: 1; grid-column: 2 / 4; justify-self: center; }
[data-flow-node="analiz"] { grid-row: 2; grid-column: 2 / 4; justify-self: center; }
[data-flow-node="r1"] { grid-row: 3; grid-column: 2; justify-self: end; }
[data-flow-node="r2"] { grid-row: 4; grid-column: 2; justify-self: end; }
[data-flow-node="r3"] { grid-row: 5; grid-column: 2; justify-self: end; }
[data-flow-node="c1"] { grid-row: 3; grid-column: 3; justify-self: start; }
[data-flow-node="c2"] { grid-row: 4; grid-column: 3; justify-self: start; }
[data-flow-node="c3"] { grid-row: 5; grid-column: 3; justify-self: start; }
[data-flow-node="c4"] { grid-row: 6; grid-column: 3; justify-self: start; }
[data-flow-node="c5"] { grid-row: 7; grid-column: 3; justify-self: start; }
[data-flow-node="prod"] { grid-row: 8; grid-column: 2 / 4; justify-self: center; margin-top: 10px; }
[data-flow-node="d1"] { grid-row: 9; grid-column: 2; justify-self: end; }
[data-flow-node="d2"] { grid-row: 9; grid-column: 3; justify-self: start; }
[data-flow-node="or"] { grid-row: 9; grid-column: 2 / 4; justify-self: center; align-self: center; }
[data-flow-node="cta"] { grid-row: 10; grid-column: 2 / 4; justify-self: center; margin-top: 14px; }

.pa-flow__node--prod {
  border-color: rgba(239, 65, 71, 0.4);
}

.pa-flow__or {
  z-index: 1;
  padding: 6px 12px 5px;
  border: 1px solid var(--sb-line);
  border-radius: 999px;
  background: var(--sb-bg);
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.pa-flow__scheme[data-active="ready"] [data-branch="custom"]:not(path),
.pa-flow__scheme[data-active="custom"] [data-branch="ready"]:not(path) {
  opacity: 0.38;
}

.pa-flow__rail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s var(--sb-ease);
}

.pa-flow__rail--ready  { grid-row: 3 / 9; grid-column: 1; }
.pa-flow__rail--custom { grid-row: 3 / 9; grid-column: 4; }

.pa-flow__rail::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--sb-line-strong) 12%, var(--sb-line-strong) 88%, transparent);
}

.pa-flow__rail--ready::before  { right: 10px; }
.pa-flow__rail--custom::before { left: 10px; }

.pa-flow__rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pa-flow__rail b {
  color: var(--sb-accent-text);
  font-weight: 700;
}

.pa-flow__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px 16px;
  border-radius: 4px;
  background: var(--sb-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-decoration: none;
  transition: background 0.3s var(--sb-ease), transform 0.3s var(--sb-ease);
}

.pa-flow__cta svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s var(--sb-ease);
}

.pa-flow__cta:hover {
  background: #b8181e;
  transform: translateY(-2px);
}

.pa-flow__cta:hover svg {
  transform: translateX(4px);
}

.pa-flow__tip {
  position: absolute;
  z-index: 5;
  width: min(330px, calc(100vw - 48px));
  padding: 14px 16px 13px 18px;
  border: 1px solid var(--sb-line);
  border-radius: 4px;
  background: #0c161d;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s var(--sb-ease), transform 0.28s var(--sb-ease);
  pointer-events: none;
}

.pa-flow__tip::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 2px;
  background: var(--sb-accent);
}

.pa-flow__tip.is-open {
  opacity: 1;
  transform: none;
}

@media (max-width: 1279px) {
  .pa-flow__rail { display: none; }
  .pa-flow__note { display: block; }
  .pa-flow__scheme { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  [data-flow-node="tz"], [data-flow-node="analiz"],
  [data-flow-node="prod"], [data-flow-node="or"], [data-flow-node="cta"] { grid-column: 1 / 3; }
  [data-flow-node="r1"], [data-flow-node="r2"], [data-flow-node="r3"], [data-flow-node="d1"] { grid-column: 1; }
  [data-flow-node="c1"], [data-flow-node="c2"], [data-flow-node="c3"], [data-flow-node="c4"], [data-flow-node="c5"], [data-flow-node="d2"] { grid-column: 2; }
}

@media (max-width: 1023px) {
  .pa-flow__scheme {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    margin-top: 36px;
  }

  .pa-flow__lines { display: none; }

  .pa-flow__node { width: min(380px, 100%); cursor: pointer; }

  .pa-flow__node:not([data-flow-node="tz"])::before,
  .pa-flow__cta::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 1px;
    height: 26px;
    background: var(--sb-line-strong);
  }

  .pa-flow__scheme[data-active="ready"] [data-branch="ready"]::before,
  .pa-flow__scheme[data-active="custom"] [data-branch="custom"]::before {
    background: rgba(217, 31, 38, 0.7);
  }

  .pa-flow__scheme[data-active="ready"] .pa-flow__node[data-branch="custom"],
  .pa-flow__scheme[data-active="custom"] .pa-flow__node[data-branch="ready"] {
    display: none;
  }

  [data-flow-node="or"]::before, [data-flow-node="d2"]::before { display: none; }

  .pa-flow__or { margin: -10px 0; }
}

.pa-flow__i {
  position: absolute;
  top: 7px;
  right: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--sb-line-strong);
  border-radius: 50%;
  color: var(--sb-dim);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10.5px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  transition: border-color 0.3s var(--sb-ease), color 0.3s var(--sb-ease);
}

.pa-flow__node:hover .pa-flow__i,
.pa-flow__node:focus-visible .pa-flow__i {
  border-color: rgba(239, 65, 71, 0.7);
  color: var(--sb-accent-text);
}

@keyframes paIPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 65, 71, 0); }
  40% { box-shadow: 0 0 0 5px rgba(239, 65, 71, 0.16); border-color: rgba(239, 65, 71, 0.55); }
}

html.js .pa-flow__scheme.is-revealed .pa-flow__i {
  animation: paIPulse 2.2s var(--sb-ease) 1.1s 2;
}

@media (prefers-reduced-motion: reduce) {
  html.js .pa-flow__scheme.is-revealed .pa-flow__i { animation: none; }
}

.pa-about__tabs {
  margin-top: clamp(40px, 4vw, 64px);
  padding-top: 34px;
  border-top: 1px solid var(--sb-line);
}

.pa-about__tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pa-about__tab {
  position: relative;
  padding: 12px 22px 11px;
  border: 1px solid var(--sb-line);
  border-radius: 3px;
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  overflow: hidden;
  transition: color 0.3s var(--sb-ease), border-color 0.3s var(--sb-ease), background 0.3s var(--sb-ease);
}

.pa-about__tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--sb-ease);
}

.pa-about__tab:hover {
  color: var(--sb-text);
  border-color: var(--sb-line-strong);
}

.pa-about__tab:hover::after {
  transform: scaleX(1);
}

.pa-about__tab[aria-selected="true"] {
  color: var(--sb-accent-text);
  border-color: rgba(239, 65, 71, 0.55);
  background: rgba(217, 31, 38, 0.08);
}

.pa-about__tab[aria-selected="true"]::after {
  transform: scaleX(1);
}

.pa-about__panels {
  position: relative;
  margin-top: 26px;
}

.pa-about__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 56px);
  align-items: start;
}

.pa-about__facts-list li {
  position: relative;
  max-width: 660px;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--sb-line);
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.pa-about__facts-list li:first-child {
  border-top: 1px solid var(--sb-line);
}

.pa-about__facts-list li::before {
  content: "";
  position: absolute;
  top: 1.62em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--sb-accent);
}

.pa-about__facts-list b {
  color: var(--sb-text);
  font-weight: 600;
}

.pa-about__doc {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sb-line);
  border-radius: 4px;
  background: #0a141a;
  padding: 0;
  cursor: zoom-in;
}

.pa-about__doc img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  opacity: 0.8;
  transition: opacity 0.4s var(--sb-ease), transform 0.55s var(--sb-ease);
}

.pa-about__doc span {
  display: block;
  padding: 8px 10px 7px;
  border-top: 1px solid var(--sb-line);
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
}

.pa-about__doc::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--sb-ease);
}

.pa-about__doc:hover img,
.pa-about__doc:focus-visible img {
  opacity: 1;
  transform: scale(1.04);
}

.pa-about__doc:hover::after,
.pa-about__doc:focus-visible::after {
  transform: scaleX(1);
}

.pa-about__doc:hover span {
  color: var(--sb-muted);
}

.pa-about__tabmedia {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sb-line);
  border-radius: 4px;
  background: var(--sb-surface);
}

.pa-about__tabmedia img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04) brightness(0.94);
  transition: transform 0.6s var(--sb-ease);
}

.pa-about__tabmedia:hover img {
  transform: scale(1.03);
}

.pa-about__tabmedia::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sb-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--sb-ease);
}

.pa-about__tabmedia:hover::after {
  transform: scaleX(1);
}

.pa-about__tabmedia figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px 16px 12px;
  background: linear-gradient(0deg, rgba(3, 10, 14, 0.88), transparent);
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}

html.js .pa-about__panel.is-entering .pa-about__facts-list li,
html.js .pa-about__panel.is-entering .pa-about__doc,
html.js .pa-about__panel.is-entering .pa-about__tabmedia {
  animation: paAboutRise 0.5s var(--sb-ease) both;
  animation-delay: calc(var(--pa-i, 0) * 70ms);
}

@keyframes paAboutRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html.js .pa-about__panel.is-entering .pa-about__facts-list li,
  html.js .pa-about__panel.is-entering .pa-about__doc,
  html.js .pa-about__panel.is-entering .pa-about__tabmedia {
    animation: none;
  }
}

@media (max-width: 899px) {
  .pa-about__panel {
    grid-template-columns: 1fr;
  }

  .pa-about__docs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }
}

.pa-about__tabmedia[data-about-photo] {
  cursor: zoom-in;
}

/* Блок контактов занял место четырёх шагов: каждый способ связи — отдельной
   строкой во всю ширину колонки, значения крупные. */
.pa-cta__contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-top: 30px;
  font-style: normal;
}

.pa-cta__contact {
  padding: 19px 0 20px;
  border-top: 1px solid var(--sb-line);
}

.pa-cta__contact:last-child {
  border-bottom: 1px solid var(--sb-line);
}

.pa-cta__contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.pa-cta__contact a,
.pa-cta__contact span:not(.pa-cta__contact-label) {
  color: var(--sb-text);
  font-size: 16.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.pa-cta__contact a {
  position: relative;
  transition: color 0.3s var(--sb-ease);
}

.pa-cta__contact a:hover {
  color: var(--sb-accent-text);
}

.site-footer {
  padding: 26px max(clamp(28px, 4.4vw, 84px), calc((100% - 1312px) / 2)) 30px;
  border-top: 1px solid rgba(206, 214, 218, 0.22);
  background: #020709;
  color: #9faab0;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 28px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #c6ced2;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #ef4147;
}

.site-footer__policy {
  font-size: 12.5px;
  border-bottom: 1px solid rgba(206, 214, 218, 0.3);
}

@media (max-width: 767px) {
  .pa-cta__contacts { grid-template-columns: 1fr; gap: 0; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
}

.pa-case__head {
  display: flex;
  align-items: center;
  /* Приписки «Кейс NN» слева больше нет, логотип прижимался вправо и висел там
     один. Теперь он открывает карточку слева, на одной вертикали с заголовком. */
  justify-content: flex-start;
  gap: 16px;
  min-height: 44px;
  margin-bottom: 10px;
}

.pa-case__logo {
  max-height: 48px;
  max-width: 188px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 4px 14px -8px rgba(0, 0, 0, 0.6);
}

.pa-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 20px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.pa-consent__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.pa-consent__box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  margin-top: 1px;
  border: 1px solid var(--sb-line-strong);
  border-radius: 4px;
  background: rgba(206, 214, 218, 0.07);
  transition: border-color 0.25s var(--sb-ease), background 0.25s var(--sb-ease);
}

.pa-consent__box svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 2.4;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s var(--sb-ease), transform 0.25s var(--sb-ease);
}

.pa-consent:hover .pa-consent__box {
  border-color: var(--sb-accent-text);
}

.pa-consent__input:checked + .pa-consent__box {
  border-color: var(--sb-accent);
  background: var(--sb-accent);
}

.pa-consent__input:checked + .pa-consent__box svg {
  opacity: 1;
  transform: scale(1);
}

.pa-consent__input:focus-visible + .pa-consent__box {
  box-shadow: 0 0 0 1px #ced6da, 0 0 0 4px var(--sb-accent);
}

.pa-consent__text {
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
}

.pa-consent__text a {
  color: var(--sb-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s ease;
}

.pa-consent__text a:hover {
  color: var(--sb-accent-text);
}

.pa-consent.is-error .pa-consent__box {
  border-color: var(--sb-accent-text);
  box-shadow: 0 0 0 3px rgba(217, 31, 38, 0.18);
}

.pa-consent.is-error .pa-consent__text {
  color: #e8b6b8;
}

@keyframes paConsentShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}

.pa-consent.is-shake {
  animation: paConsentShake 0.4s var(--sb-ease);
}

@media (prefers-reduced-motion: reduce) {
  .pa-consent.is-shake { animation: none; }
}

.pa-cookies[hidden] {
  display: none !important;
}

.pa-cookies {
  position: fixed;
  z-index: 55;
  right: 22px;
  left: auto;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(340px, calc(100vw - 44px));
  padding: 16px 18px 15px 20px;
  border: 1px solid rgba(206, 214, 218, 0.24);
  border-radius: 6px;
  background: rgba(7, 17, 23, 0.96);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s cubic-bezier(0.22, 0.9, 0.24, 1), transform 0.45s cubic-bezier(0.22, 0.9, 0.24, 1);
}

.pa-cookies::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 2px;
  background: #d91f26;
}

.pa-cookies.is-open {
  opacity: 1;
  transform: none;
}

.pa-cookies__text {
  margin: 0;
  color: #9faab0;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
}

.pa-cookies__text a {
  color: #c6ced2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pa-cookies__text a:hover {
  color: #ef4147;
}

.pa-cookies__ok {
  flex: 0 0 auto;
  padding: 11px 22px 10px;
  border: 0;
  border-radius: 4px;
  background: #d91f26;
  color: #fff;
  font-family: "Futura PT", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pa-cookies__ok:hover {
  background: #b8181e;
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .pa-cookies {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 12px;
  }
}

.pa-callback[hidden] {
  display: none !important;
}

.pa-callback {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: "Futura PT", Arial, sans-serif;
}

.pa-callback__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 10, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pa-callback.is-open .pa-callback__backdrop {
  opacity: 1;
}

.pa-callback__card {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px 30px 24px;
  border: 1px solid rgba(206, 214, 218, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, #0a151c, #071117 70%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.4s cubic-bezier(0.22, 0.9, 0.24, 1), transform 0.4s cubic-bezier(0.22, 0.9, 0.24, 1);
}

.pa-callback__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #d91f26;
}

.pa-callback.is-open .pa-callback__card {
  opacity: 1;
  transform: none;
}

.pa-callback__x {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(206, 214, 218, 0.25);
  border-radius: 50%;
  color: #c6ced2;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.pa-callback__x svg { width: 16px; height: 16px; }

.pa-callback__x:hover {
  color: #fff;
  border-color: #ef4147;
  transform: rotate(90deg);
}

.pa-callback__title {
  margin: 0 30px 10px 0;
  color: #f8f9f6;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.pa-callback__sub {
  margin: 0 0 20px;
  color: #9faab0;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.pa-callback__field {
  display: block;
  margin-bottom: 14px;
}

.pa-callback__field span {
  display: block;
  margin-bottom: 6px;
  color: #9faab0;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.pa-callback__field em {
  font-style: normal;
  opacity: 0.7;
}

.pa-callback__field input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(206, 214, 218, 0.28);
  border-radius: 4px;
  background: rgba(3, 10, 14, 0.6);
  color: #f8f9f6;
  font: inherit;
  font-size: 16px;
  transition: border-color 0.25s ease;
}

.pa-callback__field input:focus {
  outline: none;
  border-color: #ef4147;
}

.pa-callback__field input[aria-invalid="true"] {
  border-color: #ef4147;
  box-shadow: 0 0 0 3px rgba(217, 31, 38, 0.18);
}

.pa-callback__error {
  margin: 0 0 12px;
  color: #ef4147;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.pa-callback__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
  padding: 16px 20px;
  border: 0;
  border-radius: 4px;
  background: #d91f26;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pa-callback__submit svg { width: 17px; height: 17px; }

.pa-callback__submit:hover {
  background: #b8181e;
  transform: translateY(-1px);
}

.pa-callback__success h3 {
  margin: 6px 0 8px;
  color: #f8f9f6;
  font-size: 22px;
  font-weight: 800;
}

.pa-callback__success p {
  margin: 0 0 8px;
  color: #9faab0;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.pa-callback__success a { color: #ef4147; }

.pa-callback__alt {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(206, 214, 218, 0.16);
  color: #9faab0;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
}

.pa-callback__alt a {
  color: #c6ced2;
  text-decoration: none;
  transition: color 0.25s ease;
}

.pa-callback__alt a:hover { color: #ef4147; }

.pa-mobilebar {
  position: fixed;
  z-index: 45;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(206, 214, 218, 0.22);
  background: rgba(4, 12, 17, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding-bottom: env(safe-area-inset-bottom, 0);
  font-family: "Futura PT", Arial, sans-serif;
}

.pa-mobilebar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px 9px;
  border: 0;
  background: none;
  color: #c6ced2;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.pa-mobilebar__item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.7;
}

.pa-mobilebar__item + .pa-mobilebar__item {
  border-left: 1px solid rgba(206, 214, 218, 0.14);
}

.pa-mobilebar__item--accent {
  background: rgba(217, 31, 38, 0.14);
  color: #ef4147;
}

@media (max-width: 767px) {
  .pa-mobilebar { display: grid; }

  .site-footer { padding-bottom: 84px; }
  .pa-cookies { bottom: 76px; }
}

.pa-about__lead,
.pa-about__text,
.pa-about__industries,
.pa-about__counters dd,
.pa-about__facts-list li,
.pa-case__desc,
.pa-case__loc,
.pa-gallery__cap,
.pa-flow__sub,
.pa-flow__tip,
.pa-geo__clients-lead,
.pa-geo__tooltip,
.pa-cta__panel-sub,
.pa-cta__lead > p,
.pa-cta__steps p,
.pa-consent__text,
.pa-cookies__text,
.pa-callback__sub,
.pa-callback__success p,
.site-footer {
  letter-spacing: 0.015em;
}

@media (max-width: 1099px) {
  .pa-cta__field input,
  .pa-cta__field textarea,
  .pa-cta__field select,
  .pa-modal__field input,
  .pa-modal__field textarea {
    font-size: 16px;
  }
}

.pa-geo .pa-sb-title {
  font-size: clamp(32px, 3.4vw, 57px);
  text-transform: none;
  letter-spacing: 0.005em;
}

#about-title {
  max-width: 980px;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.16;
  text-transform: none;
  letter-spacing: 0.005em;
}

.pa-case {
  display: block;
}

.pa-case__body {
  display: grid;
  grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
  gap: clamp(24px, 3vw, 52px);
  min-width: 0;
}

.pa-case__toggle-heading {
  display: none;
  margin: 0;
}

body.menu-open,
body.callback-open {
  overflow: hidden;
}

.pa-mobilebar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.pa-mobilebar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

body.menu-open .pa-mobilebar,
body.callback-open .pa-mobilebar,
body.cookie-notice-open .pa-mobilebar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.pa-callback__card {
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
}

.pa-about__tab,
.pa-flow__tab,
.pa-cta__attach-btn,
.pa-gallery__filter {
  min-height: 44px;
}

#project-form {
  scroll-margin-top: 96px;
}

@media (max-width: 1199px) {
  .pa-case__body {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  #project-form {
    scroll-margin-top: 24px;
  }

  .pa-case {
    padding: 0;
  }

  .pa-case__toggle-heading {
    display: block;
  }

  .pa-case__toggle {
    display: grid;
    /* Колонка под «Кейс NN» убрана вместе с припиской. */
    grid-template-columns: minmax(0, 1fr) 24px;
    align-items: center;
    gap: 11px;
    width: 100%;
    min-height: 72px;
    padding: 12px 15px;
    color: var(--sb-text);
  }

  .pa-case__toggle-num {
    align-self: start;
    padding-top: 3px;
    color: var(--sb-accent-text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .pa-case__toggle-copy,
  .pa-case__toggle-title,
  .pa-case__toggle-loc {
    display: block;
    min-width: 0;
  }

  .pa-case__toggle-title {
    font-size: 17.5px;
    font-weight: 700;
    line-height: 1.18;
  }

  .pa-case__toggle-loc {
    display: none;
  }

  .pa-case__toggle svg {
    width: 22px;
    height: 22px;
    color: var(--sb-accent-text);
    transition: transform 0.22s ease;
  }

  .pa-case__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .pa-case__body {
    gap: 18px;
    padding: 2px 15px 18px;
    border-top: 1px solid var(--sb-line);
  }

  .pa-case__body[hidden] {
    display: none;
  }

  .pa-case__text .pa-case__eyebrow,
  .pa-case__text .pa-case__title {
    display: none;
  }

  /* На мобильном логотип по центру и с отступом от линии под заголовком кейса. */
  .pa-case__head {
    justify-content: center;
    min-height: 0;
    margin-top: 16px;
  }

  .pa-case__desc {
    margin-top: 10px;
  }

  /* Одна большая фотография на всю ширину блока: раньше кадр занимал 76vw
     и следующий торчал из-за края экрана. Вторая доступна свайпом со снапом. */
  .pa-case__shot {
    width: 100%;
  }

  .pa-case__track,
  .pa-case__track.is-pair {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .pa-case__track .pa-case__shot,
  .pa-case__track.is-pair .pa-case__shot {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
  }

  .pa-gallery__cap {
    opacity: 1;
    transform: none;
    padding: 34px 10px 9px;
    background: linear-gradient(0deg, rgba(3, 10, 14, 0.92), rgba(3, 10, 14, 0));
    font-size: 11.5px;
    line-height: 1.25;
  }

    .pa-geo__tooltip {
    max-width: calc(100% - 12px);
    white-space: normal;
  }

  .pa-callback {
    align-items: stretch;
    padding: calc(10px + env(safe-area-inset-top, 0px)) 10px calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .pa-callback__card {
    align-self: center;
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    padding: 20px 18px 20px;
  }

  .pa-callback__x {
    position: fixed;
    z-index: 4;
    top: calc(10px + env(safe-area-inset-top, 0px));
    right: calc(10px + env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
    margin: 0;
    background: #0a151c;
  }

  .pa-mobilebar__item {
    min-height: 56px;
  }
}

@media (max-width: 560px) {
  .pa-cookies {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 12px 12px 12px 16px;
    text-align: left;
  }

  .pa-cookies__text {
    font-size: 11.5px;
    line-height: 1.38;
  }

  .pa-cookies__ok {
    min-width: 72px;
    min-height: 44px;
    padding: 10px 12px;
  }
}

@media (max-height: 500px) and (max-width: 932px) {
  .pa-callback__card {
    align-self: stretch;
    max-height: none;
  }

  .pa-mobilebar__item {
    min-height: 50px;
    padding-top: 6px;
    padding-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .pa-sb-head,
  .pa-sb-eyebrow,
  .pa-sb-title,
  .pa-about__grid,
  .pa-about__content,
  .pa-about__counters,
  .pa-about__counters > div,
  .pa-case__toggle,
  .pa-case__toggle-copy,
  .pa-case__toggle-title,
  .pa-cta__grid,
  .pa-cta__panel,
  .pa-flow__node,
  .pa-gallery__item {
    min-width: 0;
    max-width: 100%;
  }

  .pa-sb-head {
    grid-template-columns: minmax(0, auto) minmax(40px, 1fr);
  }

  .pa-sb-eyebrow,
  .pa-sb-title,
  .pa-about__lead,
  .pa-about__text,
  .pa-about__counters dt,
  .pa-about__counters dd,
  .pa-case__toggle-title,
  .pa-case__desc,
  .pa-gallery__cap,
  .pa-flow__node,
  .pa-cta__panel,
  .pa-consent__text {
    overflow-wrap: anywhere;
  }

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

  .pa-mobilebar {
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
  }

  .pa-mobilebar__item,
  .pa-mobilebar__item > span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (forced-colors: active) {
  .pa-consent__input:focus-visible + .pa-consent__box {
    outline: 2px solid Highlight;
    outline-offset: 3px;
    box-shadow: none;
  }
}

.pa-about__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s var(--sb-ease);
  pointer-events: none;
}

.pa-about__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pa-about__slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05) brightness(0.92);
}

.pa-about__slidecap {
  position: absolute;
  right: 118px;
  bottom: 0;
  left: 0;
  padding: 44px 8px 16px 20px;
  background: linear-gradient(0deg, rgba(3, 10, 14, 0.9), transparent);
  color: var(--sb-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.45;
  letter-spacing: 0.015em;
}

.pa-about__slidenav {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pa-about__slidenav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(206, 214, 218, 0.45);
  border-radius: 50%;
  background: rgba(3, 10, 14, 0.55);
  color: #e4e9eb;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pa-about__slidenav button:hover {
  border-color: var(--sb-accent-text);
  background: rgba(3, 10, 14, 0.85);
}

.pa-about__slidenav svg {
  width: 17px;
  height: 17px;
}

.pa-about__slidenav [data-about-slide-counter] {
  min-width: 44px;
  color: var(--sb-dim);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
  text-align: center;
  letter-spacing: 0.06em;
}

html.no-js .pa-about__slidenav {
  display: none;
}

@media (max-width: 767px) {
  .pa-about__slidecap {
    right: 96px;
    font-size: 12.5px;
    padding-bottom: 13px;
  }

  .pa-about__slidenav {
    right: 10px;
    bottom: 10px;
    gap: 6px;
  }

  .pa-about__slidenav button {
    width: 38px;
    height: 38px;
  }

  .pa-about__slidenav [data-about-slide-counter] {
    display: none;
  }
}

.pa-about__content .pa-about__tabs {
  margin: 30px 0 34px;
  padding-top: 26px;
}

.pa-about__content .pa-about__tab {
  padding: 10px 14px;
  font-size: 13.5px;
}

.pa-about__content .pa-about__facts-list li {
  font-size: 16px;
}

@media (max-width: 767px) {
  #about-title {
    font-size: 21px;
    line-height: 1.25;
  }

  .pa-about__content .pa-about__tabbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .pa-about__content .pa-about__tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 8px 10px;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.18;
  }
}

.pa-callback__attach {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 2px 0 14px;
}

.pa-callback__attach-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px dashed rgba(206, 214, 218, 0.5);
  border-radius: 4px;
  background: none;
  color: #f8f9f6;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pa-callback__attach-btn:hover {
  border-color: #ced6da;
  background: rgba(206, 214, 218, 0.05);
}

.pa-callback__attach-btn svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pa-callback__attach-btn em {
  font-style: normal;
  font-weight: 400;
  color: #9faab0;
}

.pa-callback__attach-file[hidden] {
  display: none;
}

.pa-callback__attach-file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(206, 214, 218, 0.28);
  border-radius: 4px;
  background: rgba(3, 10, 14, 0.5);
  color: #9faab0;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
}

.pa-callback__attach-file > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.pa-callback__attach-file button {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  color: #9faab0;
  cursor: pointer;
}

.pa-callback__attach-file button svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.pa-callback__attach-file button:hover {
  color: #f8f9f6;
}

.pa-callback__attach-hint {
  flex-basis: 100%;
  color: rgba(159, 170, 176, 0.75);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 11.5px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .pa-cookies {
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 10px;
    padding: 12px 14px 12px;
    border-radius: 5px;
  }

  .pa-cookies__text {
    font-size: 11.5px;
    line-height: 1.45;
  }

  .pa-cookies__ok {
    align-self: flex-end;
    padding: 9px 20px 8px;
    border: 1px solid rgba(206, 214, 218, 0.42);
    background: transparent;
    color: #c6ced2;
  }

  .pa-cookies__ok:hover {
    background: rgba(206, 214, 218, 0.08);
    transform: none;
  }
}

.pa-callback__info {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pa-callback__info > * {
  position: relative;
  z-index: 1;
}

.pa-callback__info-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pa-callback__info-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.55) contrast(1.05) saturate(0.7);
}

.pa-callback__info-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 14, 0.86) 0%, rgba(3, 10, 14, 0.55) 45%, rgba(3, 10, 14, 0.9) 100%);
}

.pa-callback__info-label {
  margin: 0;
  padding-left: 34px;
  position: relative;
  color: #ef4147;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pa-callback__info-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #d91f26;
}

.pa-callback__info-points {
  list-style: none;
  margin: auto 0 0;
  padding-top: 22px;
  padding: 0;
  display: grid;
  gap: 13px;
}

.pa-callback__info-points li {
  position: relative;
  padding-left: 17px;
  color: #cdd6da;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.45;
}

.pa-callback__info-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d91f26;
}

.pa-callback__info-phone {
  margin-top: 26px;
  color: #f8f9f6;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}

.pa-callback__info-hours {
  margin: 4px 0 0;
  color: #9faab0;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
}

.pa-callback__reply {
  border: 0;
  margin: 0 0 14px;
  padding: 0;
}

.pa-callback__reply legend {
  margin-bottom: 7px;
  color: #9faab0;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.pa-callback__reply legend em {
  font-style: normal;
  opacity: 0.7;
}

.pa-callback__reply-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pa-callback__reply-chips label {
  cursor: pointer;
}

.pa-callback__reply-chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pa-callback__reply-chips span {
  display: inline-flex;
  padding: 9px 16px 8px;
  border: 1px solid rgba(206, 214, 218, 0.28);
  border-radius: 4px;
  color: #c6ced2;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pa-callback__reply-chips input:checked + span {
  border-color: #d91f26;
  color: #f8f9f6;
  background: rgba(217, 31, 38, 0.13);
}

.pa-callback__reply-chips input:focus-visible + span {
  outline: 2px solid #ef4147;
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .pa-callback__card--split {
    width: min(880px, 100%);
    padding: 0;
  }

  .pa-callback__card--split .pa-callback__x {
    z-index: 2;
  }

  .pa-callback__grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    min-height: 540px;
  }

  .pa-callback__info {
    padding: 32px 28px 28px;
  }

  .pa-callback__main {
    padding: 32px 36px 26px;
  }
}

@media (max-width: 1023px) {
  .pa-callback__info {
    margin-bottom: 16px;
    padding: 13px 15px 12px;
    border: 1px solid rgba(206, 214, 218, 0.18);
    border-radius: 5px;
    background: rgba(206, 214, 218, 0.035);
  }

  .pa-callback__info-bg,
  .pa-callback__info-phone,
  .pa-callback__info-hours,
  .pa-callback__info-label {
    display: none;
  }

  .pa-callback__info-points {
    margin: 0;
    gap: 9px;
  }

  .pa-callback__info-points li {
    font-size: 12.5px;
    line-height: 1.4;
  }
}

.pa-map {
  position: relative;
  overflow: hidden;
  height: clamp(440px, 54vh, 580px);
  border-top: 1px solid rgba(206, 214, 218, 0.18);
  background: #0c1a28;
  font-family: "Futura PT", Arial, sans-serif;
}

.pa-map__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* пока виджет не загрузился, iframe светится белым — подкладываем фон темы */
  background: #0c1a28;
  filter: grayscale(0.25) brightness(0.92) contrast(1.02);
}

.pa-map__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Левый градиент убран вместе с карточкой, которую он затемнял. */
  background:
    linear-gradient(180deg, #030a0e 0%, rgba(3, 10, 14, 0) 70px),
    linear-gradient(0deg, rgba(2, 7, 9, 0.9) 0%, rgba(2, 7, 9, 0) 90px);
}

.pa-map__card {
  position: absolute;
  top: 50%;
  left: max(clamp(28px, 4.4vw, 84px), calc((100% - 1312px) / 2));
  transform: translateY(-50%);
  width: min(340px, calc(100% - 40px));
  padding: 26px 26px 24px;
  border: 1px solid rgba(206, 214, 218, 0.24);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(10, 21, 28, 0.97), rgba(7, 17, 23, 0.97));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.pa-map__pin {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #d91f26;
  stroke-width: 1.8;
}

.pa-map__title {
  margin: 10px 0 7px;
  color: #f8f9f6;
  font-size: 21px;
  font-weight: 600;
}

.pa-map__addr {
  margin: 0 0 18px;
  color: #9faab0;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
}

.pa-map__route {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px 11px;
  border-radius: 4px;
  background: #d91f26;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.pa-map__route:hover {
  background: #b8181e;
}

.pa-map__route svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 767px) {
  .pa-map {
    height: auto;
    min-height: 480px;
  }
}

@media (max-width: 1023px) {
  .pa-callback__info {
    display: none;
  }
}

.block2,
.pa-about,
.pa-cases,
.pa-gallery,
.pa-geo,
.pa-flow,
.pa-cta {
  background-image:
    radial-gradient(1100px 520px at 12% -6%, rgba(64, 88, 104, 0.13), transparent 62%),
    radial-gradient(900px 620px at 105% 108%, rgba(38, 56, 68, 0.11), transparent 58%);
  background-repeat: no-repeat;
}

body::after {
  position: fixed;
  z-index: 2000;
  inset: -20px;
  content: "";
  pointer-events: none;
  opacity: 0.021;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.pa-about__counters dt,
.hero-proofs .proof dt {
  background-image:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0) 42%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0) 58%
    ),
    linear-gradient(168deg, #ffffff 0%, #dbe4e9 34%, #9fb1bb 52%, #eef3f5 70%, #f8f9f6 100%);
  background-size: 320% 100%, 100% 100%;
  background-position: 140% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f8f9f6;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .pa-about__counters dt,
  .hero-proofs .proof dt {
    background-image: none;
    -webkit-text-fill-color: currentColor;
  }
}

@keyframes paSteelSheen {
  from { background-position: 140% 0, 0 0; }
  to   { background-position: -60% 0, 0 0; }
}

html.js .pa-about__counters[data-sb-reveal].is-revealed dt {
  animation: paSteelSheen 1.3s cubic-bezier(0.3, 0.4, 0.2, 1) 0.75s 1 both;
}

.pa-titleclip {
  overflow: hidden;
}

.pa-titleclip .pa-sb-title {
  transform: translateY(114%);
  transition: transform 0.8s var(--sb-ease, cubic-bezier(0.22, 0.9, 0.24, 1)) 0.08s;
  will-change: transform;
}

.pa-titleclip.is-shown .pa-sb-title {
  transform: none;
}

.pa-magnet {
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.pa-magnet > svg {
  transition: transform 0.16s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  html.js .pa-about__counters[data-sb-reveal].is-revealed dt {
    animation: none;
  }

  .pa-titleclip .pa-sb-title {
    transform: none;
    transition: none;
  }

  .pa-magnet,
  .pa-magnet > svg {
    transition: none;
  }
}

@media (max-width: 767px) {

  body::after {
    opacity: 0.016;
  }
}

.pa-burnline {
  position: relative;
  background-repeat: no-repeat;
}

.pa-burnline:not(.is-burned) {
  background-size: 0% 100%;
}

.pa-burnline.is-burned {
  animation: paBurnLine 4.5s cubic-bezier(0.35, 0.45, 0.2, 1) both;
}

@keyframes paBurnLine {
  from { background-size: 0% 100%; }
  to   { background-size: 100% 100%; }
}

.pa-burnline::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  content: "";
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, #ffffff 0 20%, #ef4147 45%, rgba(239, 65, 71, 0) 72%);
  box-shadow:
    0 0 10px 2px rgba(239, 65, 71, 0.8),
    0 0 24px 7px rgba(239, 65, 71, 0.32);
  pointer-events: none;
}

.pa-burnline.is-burned::after {
  animation: paBurnDot 4.5s cubic-bezier(0.35, 0.45, 0.2, 1) both;
}

@keyframes paBurnDot {
  0%   { left: 0; opacity: 1; }
  82%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.pa-parallax .hero-media img,
.pa-parallax .engineering-grid,
.pa-parallax .hero-copy {
  will-change: transform;
}

.pa-flow-dot {
  fill: #ef4147;
  filter:
    drop-shadow(0 0 5px rgba(239, 65, 71, 0.95))
    drop-shadow(0 0 13px rgba(239, 65, 71, 0.45));
  pointer-events: none;
}

.pa-about,
.pa-cases,
.pa-flow {
  background-color: #061017;
}

.pa-geo,
.pa-flow,
.pa-cta {
  position: relative;
  isolation: isolate;
}

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

.pa-texbg img {
  display: block;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: 50% 40%;
  filter: grayscale(0.4) brightness(0.33) contrast(1.14) saturate(0.55);
  will-change: transform;
}

.pa-texbg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      180deg,
      #030a0e 0%,
      rgba(3, 10, 14, 0.68) 16%,
      rgba(3, 10, 14, 0.74) 50%,
      rgba(3, 10, 14, 0.7) 84%,
      #030a0e 100%
    ),
    radial-gradient(120% 90% at 50% 110%, rgba(3, 10, 14, 0.55), transparent 60%);
}

@media (prefers-reduced-motion: reduce) {
  .pa-texbg img {
    transform: none !important;
  }
}

.pa-about,
.pa-cases,
.pa-flow {
  background-color: #0c1a28;
}

.pa-about,
.pa-cases,
.pa-flow {
  background-image:
    radial-gradient(1100px 520px at 88% -6%, rgba(64, 88, 104, 0.13), transparent 62%),
    radial-gradient(900px 620px at -5% 108%, rgba(38, 56, 68, 0.11), transparent 58%);
}

.pa-texbg img {
  filter: grayscale(0.4) brightness(0.44) contrast(1.14) saturate(0.55);
}

.pa-texbg::after {
  background:
    linear-gradient(
      180deg,
      #030a0e 0%,
      rgba(3, 10, 14, 0.56) 16%,
      rgba(3, 10, 14, 0.62) 50%,
      rgba(3, 10, 14, 0.58) 84%,
      #030a0e 100%
    ),
    radial-gradient(120% 90% at 50% 110%, rgba(3, 10, 14, 0.5), transparent 60%);
}

.pa-cta .pa-texbg::after {
  background:
    linear-gradient(90deg, rgba(3, 10, 14, 0.62) 0%, rgba(3, 10, 14, 0.44) 44%, rgba(3, 10, 14, 0.12) 64%, rgba(3, 10, 14, 0) 80%),
    linear-gradient(
      180deg,
      #030a0e 0%,
      rgba(3, 10, 14, 0.56) 16%,
      rgba(3, 10, 14, 0.62) 50%,
      rgba(3, 10, 14, 0.58) 84%,
      #030a0e 100%
    ),
    radial-gradient(120% 90% at 50% 110%, rgba(3, 10, 14, 0.5), transparent 60%);
}

.pa-flow__scheme[data-active="ready"] [data-branch="custom"]:not(path),
.pa-flow__scheme[data-active="custom"] [data-branch="ready"]:not(path) {
  opacity: 0.52;
}

.block2-bleed {
  background-color: #030a0e;
  background-image:
    radial-gradient(76% 34% at 18% 41%, rgba(117, 145, 160, 0.105), transparent 72%),
    radial-gradient(62% 27% at 84% 78%, rgba(45, 77, 96, 0.1), transparent 74%),
    linear-gradient(180deg, #030a0e 0%, #041019 22%, #07141d 69%, #0c1a28 100%);
}

#production {
  background: none;
}

#project-request {
  background-image: linear-gradient(180deg, #060e14 0%, #081019 45%, #0c1a28 100%);
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Book.woff2") format("woff2"), url("../fonts/FuturaPT-Book.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Medium.woff2") format("woff2"), url("../fonts/FuturaPT-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Demi.woff2") format("woff2"), url("../fonts/FuturaPT-Demi.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Heavy.woff2") format("woff2"), url("../fonts/FuturaPT-Heavy.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --font-display: "Futura PT", "Arial Narrow", "Nimbus Sans Narrow", Arial, sans-serif;
  --font-body: "Gilroy", "Futura PT", Arial, sans-serif;

  --weight-display-book: 400;
  --weight-display-medium: 500;
  --weight-display-demi: 600;
  --weight-display-heavy: 800;
  --weight-body-light: 300;
  --weight-body-regular: 400;
  --weight-body-medium: 500;

  --type-h1-desktop: clamp(60px, 4.72vw, 68px);
  --type-h1-tablet: clamp(38px, 4.7vw, 50px);
  --type-h1-mobile: clamp(34px, 10.6vw, 44px);
  --type-h2: clamp(32px, 3.34vw, 48px);
  --type-h3: clamp(24px, 1.95vw, 30px);
  --type-card-title: clamp(23px, 1.82vw, 28px);
  --type-card-title-mobile: clamp(21px, 6vw, 24px);
  --type-lead: 18px;
  --type-lead-mobile: 17px;
  --type-body: 17px;
  --type-body-mobile: 16px;
  --type-ui: 15px;
  --type-proof: 14px;
  --type-legal: 14px;
  --type-action: 16px;

  --leading-display: 1.03;
  --leading-heading: 1.08;
  --leading-body: 1.58;
  --leading-lead: 1.52;
  --leading-small: 1.45;

  --measure-hero: 50ch;
  --measure-lead: 58ch;
  --measure-body: 66ch;
  --measure-compact: 52ch;
  --measure-legal: 72ch;

  --type-accent-text: #ef4147;

  font-synthesis: none;
}

html,
body,
button,
input,
select,
textarea {
  font-synthesis: none;
}

body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: var(--weight-body-regular);
  line-height: var(--leading-body);
}

input,
select,
textarea {
  font-family: var(--font-body);
}

:where(b, strong) {
  font-weight: var(--weight-body-medium);
}

:where(h1, h2, h3, h4),
.hero-title,
.block2__title,
.contour-heading h2,
.production-card h3,
.service-card__title,
.metal-state__title,
.pa-sb-title,
.pa-case__title,
.pa-case__toggle-title,
.pa-cta__panel-title,
.pa-modal__title,
.pa-callback__title {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

:where(p, li, dd),
.hero-lead,
.hero-microcopy,
.block2__lead,
.pa-about__lead,
.pa-about__text,
.pa-case__desc,
.pa-flow__sub,
.pa-flow__footnote,
.pa-cta__intro,
.pa-modal__description {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
  orphans: 2;
  widows: 2;
}

.site-phone__mail,
.pa-cta__attach-file > span,
.pa-modal__attach-file > span,
.pa-callback__alt a {
  overflow-wrap: break-word;
  word-break: normal;
}

.site-nav,
.site-phone__num,
.header-action,
.mobile-menu__nav,
.mobile-menu__cta,
.mobile-menu__cta > span,
.service-card__acc,
.service-card__acc > span {
  font-family: var(--font-display);
}

.site-phone__mail {
  font-size: var(--type-proof);
  line-height: var(--leading-small);
}

.hero-eyebrow,
.hero-lead,
.hero-microcopy,
.stage-tab__title,
.dossier-panel__counter,
.dossier-panel__description,
.proof dd {
  font-family: var(--font-body);
}

.hero-title,
.proof dt,
.stage-tab__number,
.dossier-panel__number,
.dossier-panel__title,
.dossier-panel__next span {
  font-family: var(--font-display);
}

.site-nav a,
.header-action,
.button > span,
.stage-tab__number,
.stage-tab__title,
.dossier-panel__counter,
.dossier-panel__number,
.dossier-panel__next span {
  line-height: normal;
}

.stage-tab {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: normal;
}


.block2,
.block2 button:not(.service-card__acc) {
  font-family: var(--font-body);
}

.block2__title,
.contour-heading h2,
.production-card h3,
.service-card__title,
.metal-state__title {
  font-family: var(--font-display);
}

.block2__title,
.block2 .contour-heading h2 {
  font-size: var(--type-h2);
  font-weight: var(--weight-display-demi);
  line-height: var(--leading-heading);
  letter-spacing: -0.012em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.block2__title {
  max-width: 18ch;
}

.block2__lead {
  max-width: var(--measure-lead);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.block2 .contour-heading__index,
.production-card__number,
.service-card__label {
  font-family: var(--font-body);
  font-size: var(--type-proof);
  font-weight: var(--weight-body-medium);
  line-height: var(--leading-small);
}

.production-card,
.service-card {
  height: auto;
}

.production-card {
  min-height: 548px;
}

.service-card {
  min-height: 638px;
}

.production-card h3,
.service-card__title {
  min-height: 0;
  font-size: var(--type-card-title);
  font-weight: var(--weight-display-demi);
  line-height: var(--leading-heading);
  letter-spacing: -0.006em;
}

.production-card__examples,
.service-card__intro,
.engineering-card__features li,
.metal-state__description,
.block2__delivery-note {
  font-family: var(--font-body);
  font-size: var(--type-body-mobile);
  font-weight: var(--weight-body-regular);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.service-card__intro,
.metalworking-card > .service-card__intro {
  max-width: var(--measure-lead);
}

.production-card__link,
.service-card__cta,
.block2 .metal-tab {
  font-family: var(--font-body);
  font-size: var(--type-ui);
  font-weight: var(--weight-body-medium);
  line-height: 1.3;
}

.engineering-card__note,
.metal-state__extra,
.metal-state__parameters dt {
  font-family: var(--font-body);
  font-size: var(--type-proof);
  line-height: var(--leading-small);
  letter-spacing: 0.012em;
}

.metal-state {
  height: auto;
  min-height: 420px;
}

.metal-state__title {
  font-size: 24px;
  font-weight: var(--weight-display-demi);
}

.metal-state__description,
.metal-state__extra {
  min-height: 0;
}

.metal-state__parameters dd {
  font-family: var(--font-body);
  font-size: var(--type-body-mobile);
  font-weight: var(--weight-body-medium);
  line-height: 1.4;
}

.pa-about,
.pa-cases,
.pa-gallery,
.pa-geo,
.pa-flow,
.pa-cta {
  font-family: var(--font-body);
}

.pa-sb-title,
.pa-case__title,
.pa-case__toggle-title,
.pa-about__counters dt,
.pa-cta__points h3,
.pa-cta__panel-title,
.pa-cta__success h3 {
  font-family: var(--font-display);
}

.pa-sb-eyebrow {
  font-size: var(--type-proof);
  font-weight: var(--weight-body-medium);
  line-height: var(--leading-small);
  letter-spacing: 0.035em;
  text-transform: none;
}

.pa-sb-title,
.pa-geo .pa-sb-title,
#about-title {
  max-width: 24ch;
  font-size: var(--type-h2);
  font-weight: var(--weight-display-demi);
  line-height: var(--leading-heading);
  letter-spacing: -0.012em;
  text-transform: none;
}

#about-title {
  max-width: 29ch;
}

.pa-about .pa-sb-head #about-title,
.pa-geo .pa-sb-head .pa-sb-title {
  max-width: none;
}

.pa-about__lead {
  max-width: var(--measure-lead);
  font-size: var(--type-lead);
  font-weight: var(--weight-body-medium);
  line-height: var(--leading-lead);
  letter-spacing: 0.012em;
}

.pa-about__text,
.pa-about__facts-list li,
.pa-about__industries,
.pa-geo__clients-lead {
  max-width: var(--measure-body);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.pa-about__counters dt {
  font-size: clamp(30px, 2.4vw, 38px);
  font-weight: var(--weight-display-heavy);
  font-variant-numeric: lining-nums tabular-nums;
}

.pa-about__counters dd,
.pa-about__marks span,
.pa-about__slidecap,
.pa-about__media figcaption,
.pa-about__doc span,
.pa-about__tabmedia figcaption,
.pa-about__slidenav [data-about-slide-counter],
.pa-geo__legend li,
.pa-geo__tooltip,
.pa-geo__tooltip [data-geo-tip-sub] {
  font-size: var(--type-proof);
  line-height: var(--leading-small);
  letter-spacing: 0.012em;
}

.pa-about__content .pa-about__tab,
.pa-geo__tab {
  font-family: var(--font-body);
  font-size: var(--type-ui);
  font-weight: var(--weight-body-medium);
  line-height: 1.3;
  letter-spacing: 0.015em;
}

.pa-case__eyebrow,
.pa-case__toggle-num,
.pa-case__loc,
.pa-case__facts li,
.pa-case__stage,
.pa-case__badge,
.pa-gallery__cap,
.pa-lightbox__counter,
.pa-lightbox__cap {
  font-family: var(--font-body);
  font-size: var(--type-proof);
  line-height: var(--leading-small);
  letter-spacing: 0.012em;
}

.pa-case__toggle-num {
  font-weight: var(--weight-body-medium);
}

.pa-case__title {
  max-width: 24ch;
  font-size: var(--type-h3);
  font-weight: var(--weight-display-demi);
  line-height: var(--leading-heading);
  letter-spacing: -0.006em;
}

.pa-case__desc {
  max-width: 60ch;
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.pa-cases__more,
.pa-gallery__more,
.pa-gallery__filter {
  font-family: var(--font-body);
  font-size: var(--type-ui);
  font-weight: var(--weight-body-medium);
  line-height: 1.3;
}

.pa-flow__sub {
  max-width: 60ch;
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.pa-flow__footnote {
  max-width: var(--measure-legal);
  font-size: var(--type-proof);
  line-height: var(--leading-small);
  letter-spacing: 0.012em;
}

.pa-flow__tab,
.pa-flow__note,
.pa-flow__days,
.pa-flow__rail span {
  font-family: var(--font-body);
  font-size: var(--type-proof);
  line-height: var(--leading-small);
  letter-spacing: 0.025em;
}

.pa-flow__node-t {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--weight-display-demi);
  line-height: 1.28;
  letter-spacing: 0.012em;
}

.pa-flow__or {
  font-family: var(--font-body);
  font-size: var(--type-proof);
  line-height: var(--leading-small);
}

.pa-flow__tip {
  font-family: var(--font-body);
  font-size: var(--type-ui);
  line-height: 1.55;
  letter-spacing: 0.012em;
}

.pa-flow__cta {
  font-family: var(--font-display);
  font-size: var(--type-action);
  font-weight: var(--weight-display-medium);
  line-height: 1.25;
}

.pa-cta__intro {
  max-width: var(--measure-compact);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.pa-cta__points h3 {
  font-size: 20px;
  font-weight: var(--weight-display-demi);
  line-height: 1.25;
}

.pa-cta__points p,
.pa-cta__panel-sub {
  font-size: var(--type-body-mobile);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.pa-cta__panel-title {
  font-size: 24px;
  font-weight: var(--weight-display-demi);
  line-height: var(--leading-heading);
  letter-spacing: -0.004em;
}

.pa-cta__field > span,
.pa-cta__attach-hint,
.pa-cta__attach-file,
.pa-cta__error,
.pa-cta__consent,
.pa-consent__text,
.pa-cta__contact-label,
.pa-cookies__text,
.site-footer,
.site-footer__policy,
.pa-callback__field span,
.pa-callback__error,
.pa-callback__alt {
  font-family: var(--font-body);
  font-size: var(--type-legal);
  line-height: var(--leading-small);
  letter-spacing: 0.012em;
}

.pa-cta__field input,
.pa-cta__field textarea,
.pa-cta__field select,
.pa-callback__field input {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
}

.pa-cta__attach-btn,
.pa-cta__attach-btn > span,
.pa-cta__submit,
.pa-cta__submit > span,
.pa-cookies__ok,
.pa-callback__submit,
.pa-mobilebar__item {
  font-family: var(--font-display);
  font-size: var(--type-ui);
  font-weight: var(--weight-display-medium);
  line-height: 1.25;
}

.pa-cta__num {
  font-family: var(--font-body);
  font-size: var(--type-proof);
  font-weight: var(--weight-body-medium);
  line-height: var(--leading-small);
}

.pa-cta__contact a,
.pa-cta__contact span:not(.pa-cta__contact-label) {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.05vw, 30px);
  font-weight: var(--weight-display-demi);
  line-height: 1.14;
}

.pa-callback__title,
.pa-callback__success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--weight-display-demi);
  line-height: var(--leading-heading);
  letter-spacing: -0.004em;
}

.pa-callback__sub,
.pa-callback__success p {
  max-width: var(--measure-compact);
  font-size: var(--type-body-mobile);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.pa-modal,
.pa-modal input,
.pa-modal textarea,
.pa-modal button {
  font-family: var(--font-body);
}

.pa-modal__title,
.pa-modal__subtitle,
.pa-modal__request-toggle b,
.pa-modal__request-head h3,
.pa-modal__success h3,
.pa-modal__attach-button,
.pa-modal__attach-button > span,
.pa-modal__submit,
.pa-modal__submit > span {
  font-family: var(--font-display);
}

.pa-modal__title {
  max-width: 24ch;
  font-size: var(--type-h3);
  font-weight: var(--weight-display-demi);
  line-height: var(--leading-heading);
  letter-spacing: -0.006em;
}

.pa-modal__description {
  max-width: 58ch;
  font-size: var(--type-body-mobile);
  line-height: var(--leading-body);
  letter-spacing: 0.012em;
}

.pa-modal__label,
.pa-modal__counter,
.pa-modal__subtitle,
.pa-modal__params dt,
.pa-modal__note,
.pa-modal__request-toggle i,
.pa-modal__request-head p,
.pa-modal__field span,
.pa-modal__attach-file,
.pa-modal__attach-hint,
.pa-modal__form-error,
.pa-modal__consent {
  font-size: var(--type-proof);
  line-height: var(--leading-small);
  letter-spacing: 0.012em;
}

.pa-modal__includes li,
.pa-modal__params dd,
.pa-modal__field input,
.pa-modal__field textarea,
.pa-modal__success p {
  font-size: var(--type-body-mobile);
  line-height: 1.5;
}

.pa-modal__request-toggle b,
.pa-modal__request-head h3,
.pa-modal__success h3 {
  font-size: 20px;
  font-weight: var(--weight-display-demi);
  line-height: 1.2;
  letter-spacing: 0.012em;
}

.pa-modal__attach-button,
.pa-modal__submit {
  font-size: var(--type-ui);
  font-weight: var(--weight-display-medium);
  line-height: 1.25;
}

.production-card h3,
.metal-state__description,
.metal-state__extra,
.pa-case__toggle-title,
.pa-cta__panel,
.pa-modal__content {
  min-height: 0;
  max-height: none;
}

@media (max-width: 1279px) {
  .production-card { min-height: 520px; }
  .service-card { min-height: 630px; }
}

@media (max-width: 1199px) {
  .service-card { min-height: 598px; }
  .metalworking-card { height: auto; min-height: 620px; }
}

@media (max-width: 899px) {
  .production-card { min-height: 500px; }
}

@media (max-width: 767px) {
  :root {
    --type-body: var(--type-body-mobile);
    --type-lead: var(--type-lead-mobile);
  }

  body {
    font-size: var(--type-body-mobile);
    line-height: var(--leading-body);
  }

  .block2__title,
  .block2 .contour-heading h2,
  .pa-sb-title,
  .pa-geo .pa-sb-title,
  #about-title {
    max-width: 100%;
    font-size: 32px;
    line-height: var(--leading-heading);
  }

  .block2__lead,
  .pa-about__text,
  .pa-about__facts-list li,
  .pa-about__industries,
  .pa-case__desc,
  .pa-geo__clients-lead,
  .pa-flow__sub,
  .pa-cta__intro {
    font-size: var(--type-body-mobile);
  }

  .pa-about__lead {
    font-size: var(--type-lead-mobile);
  }

  .production-card,
  .service-card,
  .metalworking-card,
  .metal-state {
    height: auto;
    min-height: 0;
  }

  .production-card {
    min-height: 252px;
  }

  .production-card h3,
  .service-card__title,
  .engineering-card .service-card__title,
  .metal-state__title {
    max-width: 100%;
    font-size: var(--type-card-title-mobile);
    line-height: var(--leading-heading);
  }

  .metal-state__parameters > div,
  .metal-state__parameters > div:nth-child(2),
  .metal-state__parameters > div:nth-child(3) {
    min-height: 0;
  }

  .pa-case__toggle {
    grid-template-columns: minmax(0, 1fr) 24px;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    min-height: 76px;
    align-items: start;
  }

  .pa-case__toggle-num {
    grid-row: 1;
    grid-column: 1;
    font-size: var(--type-proof);
  }

  .pa-case__toggle-copy {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .pa-case__toggle > svg {
    grid-row: 1;
    grid-column: 2;
    align-self: start;
  }

  .pa-case__toggle-title {
    font-size: 20px;
    font-weight: var(--weight-display-demi);
    line-height: 1.22;
  }

  .pa-gallery__cap,
  .pa-about__slidecap,
  .pa-about__slidenav [data-about-slide-counter],
  .pa-cookies__text,
  .site-footer,
  .site-footer__policy {
    font-size: var(--type-proof);
    line-height: var(--leading-small);
  }

  .pa-geo__legend > * {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }

  .pa-cta__row,
  .pa-modal__form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 359px) {
}

@media (forced-colors: active) {
  .mobile-menu-state {
    border-color: ButtonText;
    color: ButtonText;
    background: ButtonFace;
  }

  .mobile-menu-state span {
    background: ButtonText;
  }



  .stage-tab[aria-selected="true"] .stage-tab__number,
  .dossier-panel__number,
  .pa-sb-eyebrow,
  .contour-heading__index,
  .production-card__number,
  .pa-case__eyebrow,
  .pa-case__toggle-num,
  .pa-flow__days {
    color: LinkText;
  }

  .production-card,
  .service-card,
  .metal-state,
  .pa-case,
  .pa-cta__panel,
  .pa-modal__dialog {
    border-color: CanvasText;
  }
}

@media (min-width: 768px) {
  .header-call,
  .service-card__acc {
    display: none;
  }

  .service-card.is-collapsible > .service-card__title {
    display: block;
  }
}

@media (max-width: 767px) {

  .brand {
    width: 128px;
    transform: none;
  }

  .header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-right: 6px;
    border: 1px solid rgba(206, 214, 218, 0.26);
    border-radius: 50%;
    color: #e4e9eb;
  }

  .header-call--tg {
    margin-left: auto;
  }

  .header-call svg {
    width: 19px;
    height: 19px;
  }

  .site-header {
    position: fixed;
    background: transparent;
  }

  .site-header.is-stuck {
    background: rgba(3, 10, 14, 0.62);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .site-header::after {
    display: none !important;
  }

  .mobile-menu-state {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(206, 214, 218, 0.26);
    border-radius: 50%;
  }

  .pa-mobilebar {
    display: none !important;
  }

  .site-footer {
    padding-bottom: 24px !important;
  }

  .hero {
    display: block;
    height: auto;
    min-height: 0;
    margin-top: -65px;
    padding: 0;
  }

  .hero .hero-media,
  .hero .hero-shade,
  .hero .engineering-grid,
  .hero .hero-copy,
  .hero .stage-system,
  .hero .dossier,
  .hero .hero-proofs,
  .hero .future-anchors {
    display: none !important;
  }



















  .production-card {
    height: 236px;
  }

  .production-card__examples {
    display: none;
  }

  .production-card__content {
    min-height: 0;
    justify-content: flex-end;
    padding: 18px 18px 16px;
  }

  .production-card h3 {
    min-height: 0;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .production-card__link {
    margin-top: 0;
  }

  .service-card__acc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 60px;
    padding: 6px 0;
    border: 0;
    background: none;
    color: var(--color-text, #f8f9f6);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.15;
    text-align: left;
    cursor: pointer;
  }

  .service-card__acc svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: var(--color-accent-text, #ef4147);
    transition: transform 0.22s ease;
  }

  .service-card.is-open .service-card__acc svg {
    transform: rotate(180deg);
  }

  .service-card.is-collapsible > .service-card__title {
    display: none;
  }

  .service-card.is-collapsible:not(.is-open) > *:not(.service-card__acc) {
    display: none;
  }

  .service-card.is-collapsible {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .metalworking-card.is-collapsible .service-card__acc {
    padding-inline: 20px;
  }

  #about-title {
    font-size: 21px;
    line-height: 1.25;
  }

  .pa-about__slidecap {
    right: 96px;
    font-size: 12.5px;
    padding-bottom: 13px;
  }

  .pa-about__slidenav {
    right: 10px;
    bottom: 10px;
    gap: 6px;
  }

  .pa-about__slidenav button {
    width: 38px;
    height: 38px;
  }

  .pa-about__slidenav [data-about-slide-counter] {
    display: none;
  }

  .pa-geo .pa-sb-title {
    font-size: 24px;
    line-height: 1.22;
  }

  .pa-geo__map {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .pa-geo__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 14px;
  }

  .pa-geo__legend > * {
    flex: 0 0 auto;
    font-size: 11.5px;
  }

  .pa-geo__clients {
    gap: 8px;
  }

  .pa-case__track {
    scroll-snap-type: x proximity;
  }

  .pa-case__shot {
    scroll-snap-align: start;
  }

  .pa-about,
  .pa-cases,
  .pa-gallery,
  .pa-geo,
  .pa-cta {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .pa-flow,
  .block2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pa-sb-head {
    margin-bottom: 22px;
  }
}

.mobile-v3-hero {
  display: none;
}

@media (max-width: 767px) {
  :root {
    --m3-bg: #030a0e;
    --m3-bg-raised: #071117;
    --m3-bg-soft: #0a151c;
    --m3-ink: #f8f9f6;
    --m3-muted: #c4cdd1;
    --m3-dim: #91a0a7;
    --m3-red: #df2029;
    --m3-red-bright: #f03b43;
    --m3-steel: rgba(206, 214, 218, 0.24);
    --m3-steel-strong: rgba(206, 214, 218, 0.54);
    --m3-pad: clamp(18px, 5.13vw, 22px);
    --m3-spine-x: 18px;
    --m3-radius: 2px;
    --m3-header-h: 66px;
    --m3-ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  main > .hero {
    display: none !important;
  }

  .mobile-v3-hero {
    display: block;
  }

  .m3-hero,
  .m3-hero button {
    font-family: "Futura PT", Arial, sans-serif;
    line-height: normal;
  }

  .m3-hero {
    font-size: 16px;

    margin-top: 0;
  }

  .m3-hero {
    --m3-hero-progress: 0;
    --m3-hero-reveal: 86%;
    position: relative;
    min-height: 136svh;
    overflow: clip;
    background: var(--m3-bg);
  }

  .m3-hero-cover {
    position: relative;
    height: 100svh;
    min-height: 568px;
    overflow: clip;
    isolation: isolate;
    background: var(--m3-bg-raised);
  }

  .m3-hero-photo,
  .m3-hero-photo img,
  .m3-hero-photo__grade,
  .m3-blueprint-field,
  .m3-blueprint-field__wash,
  .m3-blueprint {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .m3-hero-photo {
    z-index: -4;
  }

  .m3-hero-photo img {
    max-width: none;
    object-fit: cover;
    object-position: 68% center;
    transform: scale(calc(1.035 + var(--m3-hero-progress) * 0.035)) translate3d(calc(var(--m3-hero-progress) * -2.8%), 0, 0);
    transform-origin: 66% 56%;
    filter: saturate(0.74) contrast(1.04);
    will-change: transform;
  }

  .m3-hero-photo__grade {
    background:
      linear-gradient(180deg, rgba(3, 10, 14, 0.9) 0%, rgba(3, 10, 14, 0.68) 21%, rgba(3, 10, 14, 0.08) 50%, rgba(3, 10, 14, 0.11) 71%, rgba(3, 10, 14, 0.94) 100%),
      linear-gradient(90deg, rgba(3, 10, 14, 0.64) 0%, rgba(3, 10, 14, 0.18) 62%, rgba(3, 10, 14, 0.08) 100%);
  }

  .m3-blueprint-field {
    z-index: -3;
    color: rgba(199, 221, 232, 0.74);
    --m3-feather: 26%;
    -webkit-mask: linear-gradient(
      100deg,
      #000 0,
      #000 calc(var(--m3-hero-reveal) - var(--m3-feather)),
      rgba(0, 0, 0, 0) var(--m3-hero-reveal)
    );
    mask: linear-gradient(
      100deg,
      #000 0,
      #000 calc(var(--m3-hero-reveal) - var(--m3-feather)),
      rgba(0, 0, 0, 0) var(--m3-hero-reveal)
    );
    opacity: calc(0.97 - var(--m3-hero-progress) * 0.1);
    will-change: mask, opacity;
  }

  .m3-blueprint-field__wash {
    background:
      linear-gradient(105deg, rgba(3, 10, 14, 0.93) 0%, rgba(5, 24, 33, 0.89) 52%, rgba(11, 38, 50, 0.7) 100%),
      rgba(5, 18, 25, 0.7);
  }

  .m3-blueprint {
    overflow: visible;
    object-fit: cover;
    object-position: 50% 50%;
    max-width: none;

    filter: saturate(0.72) brightness(0.78) contrast(1.06);
  }

  .m3-bp-grid-minor,
  .m3-bp-grid-major,
  .m3-bp-structure,
  .m3-bp-dimensions {
    vector-effect: non-scaling-stroke;
    fill: none;
  }

  .m3-bp-grid-minor {
    stroke: rgba(197, 220, 231, 0.11);
    stroke-width: 0.55;
  }

  .m3-bp-grid-major {
    stroke: rgba(197, 220, 231, 0.18);
    stroke-width: 0.7;
  }

  .m3-bp-structure {
    stroke: rgba(211, 230, 239, 0.62);
    stroke-width: 1;
  }

  .m3-bp-dimensions {
    stroke: rgba(211, 230, 239, 0.38);
    stroke-width: 0.7;
  }

  .m3-bp-arrow {
    fill: rgba(211, 230, 239, 0.6);
    stroke: none;
  }

  .m3-bp-nodes {
    fill: var(--m3-bg-raised);
    stroke: var(--m3-red);
    stroke-width: 1.4;
  }

  .m3-hero-copy {
    position: absolute;
    z-index: 3;
    top: calc(88px + 15svh + env(safe-area-inset-top, 0px));
    right: var(--m3-pad);
    left: var(--m3-pad);
    max-width: 410px;
  }

  .m3-hero-eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    color: #e7edf2;
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .m3-hero-eyebrow__w {
    white-space: nowrap;
    font-weight: 600;
  }

  .m3-hero-eyebrow__sep {
    flex: 0 0 auto;
    width: 13px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--m3-red);
    box-shadow: 0 0 6px rgba(239, 65, 71, 0.5);
  }

  .m3-hero-copy h1 {
    max-width: 100%;
    margin: 19px 0 0;
    color: var(--m3-ink);
    font-size: clamp(32px, 9.6vw, 42px);
    line-height: 0.97;
    font-weight: 800;
    letter-spacing: -0.023em;
    text-wrap: balance;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.34);
  }

  .m3-hero-copy h1 span {
    display: block;
    white-space: nowrap;
  }

  .m3-hero-copy h1 span:nth-child(1),
  .m3-hero-copy h1 span:nth-child(2) {
    font-size: 0.91em;
    letter-spacing: -0.03em;
  }

  .m3-hero-copy h1 span:last-child {
    position: relative;
    width: fit-content;
  }

  .m3-hero-copy h1 i {
    position: absolute;
    right: -11px;
    bottom: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--m3-red);
  }

  .m3-primary-cta {
    position: relative;
    width: min(100%, 272px);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 17px 0 20px;
    overflow: clip;
    border-radius: var(--m3-radius);
    background: var(--m3-red);
    color: #fff;
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    transition: transform 140ms ease, background-color 140ms ease;
  }

  .m3-primary-cta::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: #fff;
    opacity: 0.82;
  }

  .m3-primary-cta svg {
    width: 23px;
    height: 23px;
  }

  .m3-primary-cta:active {
    transform: translateY(1px) scale(0.995);
    background: #b8171e;
  }

  .m3-hero-proof {
    position: absolute;
    z-index: 3;
    top: max(68svh, 466px);
    right: var(--m3-pad);
    width: min(49vw, 190px);
    margin: 0;
    padding: 13px 0 0 14px;
    border-top: 1px solid rgba(206, 214, 218, 0.64);
  }

  .m3-hero-proof::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--m3-red);
  }

  .m3-hero-proof dt {
    color: var(--m3-ink);
    font-size: clamp(25px, 7.6vw, 31px);
    line-height: 1;
    font-weight: 600;
  }

  .m3-hero-proof dd {
    margin: 6px 0 0;
    color: var(--m3-muted);
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.25;
  }

  .m3-cover-transition {
    position: absolute;
    z-index: 3;
    right: var(--m3-pad);
    bottom: 17px;
    left: var(--m3-pad);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    color: rgba(220, 226, 230, 0.9);
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .m3-cover-transition i {
    position: relative;
    height: 2px;
    border-radius: 2px;
    background: rgba(135, 148, 160, 0.35);
    overflow: visible;
  }

  .m3-cover-transition i::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #7a1417 0%, var(--m3-red) 60%, #ff7a3c 100%);
    box-shadow: 0 0 6px rgba(239, 65, 71, 0.55);
    transform: scaleX(0);
    transform-origin: left center;
  }

  .m3-cover-transition i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 9px;
    height: 9px;
    margin-left: -4px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, #ffe08a 30%, #ff7a2c 55%, rgba(239, 65, 71, 0.25) 75%, transparent 80%);
    box-shadow: 0 0 10px 3px rgba(255, 150, 60, 0.85), 0 0 22px 8px rgba(239, 65, 71, 0.5);
    opacity: 0;
  }

  .m3-cover-transition.is-lit i::before {
    animation: m3BurnTrail 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .m3-cover-transition.is-lit i::after {
    animation: m3BurnHead 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes m3BurnTrail {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }

  @keyframes m3BurnHead {
    0% { left: 0; opacity: 0; }
    8% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    .m3-cover-transition.is-lit i::before { animation: none; transform: scaleX(1); }
    .m3-cover-transition.is-lit i::after { animation: none; opacity: 0; }
  }

  .m3-hero-cycle {
    position: relative;
    padding: 22px var(--m3-pad) max(25px, env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(206, 214, 218, 0.34);
    background:
      linear-gradient(112deg, transparent 56%, rgba(206, 214, 218, 0.035) 56.2%, transparent 56.5%),
      var(--m3-bg-raised);
  }

  .m3-hero-cycle__heading {
    padding-left: 2px;
  }

  .m3-hero-cycle__heading p {
    margin: 0;
    color: var(--m3-red-bright);
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .m3-hero-cycle__heading h2 {
    margin: 4px 0 0;
    color: var(--m3-ink);
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .m3-stage-index {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 18px;
    padding: 0;
  }

  .m3-stage-line {
    position: absolute;
    left: 23px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: rgba(206, 214, 218, 0.16);
    z-index: 0;
    pointer-events: none;
  }

  .m3-stage-line__fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--m3-red);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(239, 65, 71, 0.5);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .m3-stage-index button {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 0;
    padding: 11px 12px 11px 0;
    border: 0;
    border-radius: 14px;
    background: transparent;
    text-align: left;
    cursor: pointer;
  }

  .m3-stage-index button[aria-selected="true"] {
    background: rgba(255, 255, 255, 0.028);
  }

  .m3-stage-dot {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(206, 214, 218, 0.28);
    background: var(--m3-bg-raised);
    color: rgba(206, 214, 218, 0.7);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  }

  .m3-stage-dot svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .m3-stage-index button[aria-selected="true"] .m3-stage-dot {
    border-color: var(--m3-red);
    background: var(--m3-red);
    color: #fff;
    box-shadow: 0 0 0 6px rgba(239, 65, 71, 0.10), 0 0 16px rgba(239, 65, 71, 0.5);
  }

  .m3-stage-index button b {
    flex: 1 1 auto;
    min-width: 0;
    color: rgba(248, 249, 246, 0.72);
    font-size: 18px;
    line-height: 1.15;
    font-weight: 600;
  }

  .m3-stage-index button[aria-selected="true"] b {
    color: var(--m3-ink);
  }

  .m3-stage-index section {
    margin: -4px 0 10px 64px;
    padding: 0;
  }

  .m3-stage-index section[hidden] {
    display: none;
  }

  .m3-stage-index section p {
    max-width: 300px;
    margin: 0;
    color: var(--m3-muted);
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    animation: m3-stage-in 220ms ease both;
  }

  .m3-hero-specification {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 22px 0 0 0;
    border-top: 1px solid var(--m3-steel);
  }

  .m3-hero-specification > div {
    padding: 14px 10px 4px 0;
  }

  .m3-hero-specification > div + div {
    padding-left: 14px;
    border-left: 1px solid var(--m3-steel);
  }

  .m3-hero-specification dt {
    color: var(--m3-ink);
    font-size: 16px;
    font-weight: 600;
  }

  .m3-hero-specification dd {
    margin: 3px 0 0;
    color: var(--m3-dim);
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.35;
  }

  @keyframes m3-stage-in {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: none; }
  }

  .m3-egg {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    font-family: "Futura PT", Arial, sans-serif;
  }

  .m3-egg__dim {
    position: absolute;
    inset: 0;
    background: rgba(3, 8, 12, 0.55);
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: auto;
  }

  .m3-egg.is-in .m3-egg__dim { opacity: 1; }

  .m3-egg__jib {
    position: absolute;
    top: 64px;
    right: 0;
    width: 360px;
    height: 110px;
    transform: translateX(112%);
    transition: transform 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .m3-egg.is-in .m3-egg__jib { transform: translateX(0); }

  .m3-egg__jib svg { width: 100%; height: 100%; overflow: visible; }
  .m3-egg__jib .b { stroke: rgba(206, 214, 218, 0.85); stroke-width: 2; fill: none; }
  .m3-egg__jib .bd { stroke: rgba(206, 214, 218, 0.4); stroke-width: 1; }
  .m3-egg__jib .ac { stroke: #EF4147; stroke-width: 2.4; }
  .m3-egg__jib .cb { stroke: rgba(220, 226, 230, 0.7); stroke-width: 1.4; }
  .m3-egg__jib .hk { stroke: #cfd6da; stroke-width: 2; fill: none; }

  .m3-egg__card {
    position: absolute;
    top: 150px;
    left: 32px;
    right: 70px;
    padding: 20px 20px 22px;
    border-radius: 16px;
    background: rgba(9, 17, 23, 0.88);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(206, 214, 218, 0.18);
    box-shadow: 0 26px 60px -24px rgba(0, 0, 0, 0.8);
    pointer-events: auto;
    transform: translateY(-46px);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.34, 1.3, 0.5, 1) 0.75s, opacity 1.2s ease 0.75s;
  }

  .m3-egg.is-in .m3-egg__card { transform: translateY(0); opacity: 1; }

  .m3-egg__card::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 24px;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    background: rgba(9, 17, 23, 0.88);
    border-left: 1px solid rgba(206, 214, 218, 0.18);
    border-top: 1px solid rgba(206, 214, 218, 0.18);
  }

  .m3-egg__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(206, 214, 218, 0.25);
    background: transparent;
    color: #cfd6da;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
  }

  .m3-egg__kick {
    margin: 0;
    color: #EF4147;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
  }

  .m3-egg__card h3 {
    margin: 8px 0 6px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.05;
  }

  .m3-egg__sub {
    margin: 0 0 16px;
    color: rgba(206, 214, 218, 0.8);
    font-size: 14px;
    line-height: 1.45;
  }

  .m3-egg__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    height: 48px;
    border-radius: 8px;
    background: #EF4147;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .m3-egg__jib, .m3-egg__card { transition-duration: 0.01ms; }
  }
}

@media (max-width: 767px) {
  html.ad-zd .m3-blueprint-field {
    display: none;
  }

  html.ad-zd .m3-hero-photo img {
    object-position: 50% 18%;
    filter: saturate(0.8) contrast(1.05);
  }

  html.ad-zd .m3-hero-photo__grade {
    background:
      linear-gradient(180deg, rgba(3, 10, 14, 0.92) 0%, rgba(3, 10, 14, 0.72) 24%, rgba(3, 10, 14, 0.34) 52%, rgba(3, 10, 14, 0.4) 72%, rgba(3, 10, 14, 0.95) 100%),
      linear-gradient(90deg, rgba(3, 10, 14, 0.55) 0%, rgba(3, 10, 14, 0.22) 60%, rgba(3, 10, 14, 0.12) 100%);
  }
}

@media (max-width: 767px) {
  .m3-hero-proof dd {
    color: #cdd6da;
    font-size: 15px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .pa-geo__wave {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 860px) {
  .pa-about .pa-about__counters dd {
    font-size: 14px;
  }
}

@media (max-width: 359px) {
  .pa-about__counters {
    grid-template-columns: 1fr;
  }
}

html.ad-zd .stage-tab[aria-selected="false"] {
  background: rgba(3, 10, 14, 0.5);
}

.svc-atlas {
  display: none;
}

html.ad-zd .block2__default {
  display: none;
}

html.ad-zd .svc-atlas {
  display: block;
}

.svc-atlas__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.82fr 0.82fr;
  grid-template-rows: 310px 258px 238px;
  gap: 12px;
}

.svc-atlas__card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 200ms ease;
}

.svc-atlas__card:hover,
.svc-atlas__card:focus-visible {
  border-color: rgba(239, 65, 71, 0.72);
}

.svc-atlas__card:focus-visible {
  outline: 2px solid #ef4147;
  outline-offset: 2px;
}

.svc-atlas__media {
  position: absolute;
  inset: 0;
  background: #12222c;
}

.svc-atlas__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06);
}

.svc-atlas__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 14, 0.06) 16%, rgba(3, 10, 14, 0.92) 100%);
}

.svc-atlas__idx {
  display: block;
  color: var(--color-accent-text);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.svc-atlas__title {
  display: block;
  margin-top: 9px;
  color: #ffffff;
  font-family: "Futura PT", Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.008em;
}

.svc-atlas__t-brief {
  display: none;
}

.svc-atlas__desc {
  display: block;
  margin-top: 9px;
  color: var(--color-text-muted);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
}

.svc-atlas__desc--brief {
  display: none;
}

.svc-atlas__corner {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(222, 229, 232, 0.3);
  background: rgba(3, 10, 14, 0.45);
  color: #ef4147;
  font-family: "Futura PT", Arial, sans-serif;
  font-size: 17px;
  font-style: normal;
}

.svc-atlas__card--main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.svc-atlas__card--main .svc-atlas__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 31px 32px;
}

.svc-atlas__card--main .svc-atlas__title {
  max-width: 600px;
  font-size: 47px;
}

.svc-atlas__card--main .svc-atlas__desc {
  max-width: 560px;
  font-size: 14px;
}

.svc-atlas__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 11px 18px;
  border: 1px solid rgba(222, 229, 232, 0.4);
  background: rgba(3, 10, 14, 0.35);
  color: #ffffff;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.svc-atlas__btn i {
  color: #ef4147;
  font-style: normal;
}

.svc-atlas__card--sat {
  grid-column: 3;
}

.svc-atlas__card--sat .svc-atlas__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 23px 24px;
}

.svc-atlas__card--tech {
  grid-row: 1;
}

.svc-atlas__card--nonstd {
  grid-row: 2;
}

.svc-atlas__card--row {
  grid-row: 3;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  background: var(--color-surface-raised);
}

.svc-atlas__card--eng {
  grid-column: 1;
}

.svc-atlas__card--metal {
  grid-column: 2 / 4;
}

.svc-atlas__card--row .svc-atlas__media {
  position: relative;
  inset: auto;
  overflow: hidden;
  border-right: 1px solid var(--color-line);
}

.svc-atlas__card--row .svc-atlas__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 14, 0.15);
}

.svc-atlas__card--row .svc-atlas__copy {
  position: relative;
  inset: auto;
  padding: 23px;
}

.svc-atlas__card--row .svc-atlas__title {
  font-size: 26px;
}

.svc-atlas__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 15px;
  margin-top: 13px;
  color: var(--color-text-dim);
}

.svc-atlas__chips i {
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.25;
  font-style: normal;
}

.svc-atlas__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--color-line);
}

.svc-atlas__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 232px;
  height: 56px;
  padding: 0 20px;
  border: 1px solid var(--color-accent-surface);
  border-radius: 4px;
  color: #ffffff;
  background: var(--color-accent-surface);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
}

.svc-atlas__cta i {
  color: #ffffff;
  font-size: 20px;
  font-style: normal;
}

.svc-atlas__cta:hover {
  background: #c91b22;
}

@media (max-width: 1365px) {
  .svc-atlas__card--sat .svc-atlas__title,
  .svc-atlas__card--row .svc-atlas__title {
    font-size: 24px;
  }

  .svc-atlas__card--row {
    grid-template-columns: 140px minmax(0, 1fr);
  }
}

@media (max-width: 1100px) {
  .svc-atlas__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 280px 220px 230px;
    gap: 10px;
  }

  .svc-atlas__card--main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .svc-atlas__card--tech {
    grid-column: 1;
    grid-row: 2;
  }

  .svc-atlas__card--nonstd {
    grid-column: 2;
    grid-row: 2;
  }

  .svc-atlas__card--eng {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .svc-atlas__card--metal {
    grid-column: 1 / 3;
    grid-row: 4;
  }
}

@media (max-width: 767px) {
  .svc-atlas__grid {
    display: block;
  }

  .svc-atlas__card {
    margin-bottom: 12px;
  }

  .svc-atlas__desc--full,
  .svc-atlas__t-full,
  .svc-atlas__chips {
    display: none;
  }

  .svc-atlas__desc--brief,
  .svc-atlas__t-brief {
    display: block;
  }

  .svc-atlas__card--main {
    display: block;
    height: 360px;
  }

  .svc-atlas__card--main .svc-atlas__title {
    font-size: 25px;
  }

  .svc-atlas__card--main .svc-atlas__desc {
    font-size: 13.5px;
  }

  .svc-atlas__card--sat,
  .svc-atlas__card--row {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 104px;
  }

  .svc-atlas__card--sat .svc-atlas__media {
    position: relative;
    inset: auto;
    overflow: hidden;
  }

  .svc-atlas__card--sat .svc-atlas__scrim {
    display: none;
  }

  .svc-atlas__card--sat .svc-atlas__copy,
  .svc-atlas__card--row .svc-atlas__copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 13px 48px 13px 14px;
  }

  .svc-atlas__title,
  .svc-atlas__card--sat .svc-atlas__title,
  .svc-atlas__card--row .svc-atlas__title {
    font-size: 16.5px;
    margin-top: 4px;
  }

  .svc-atlas__desc {
    font-size: 12.5px;
    margin-top: 5px;
  }

  .svc-atlas__corner {
    top: 50%;
    right: 10px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
  }

  .svc-atlas__footer {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  html.ad-zd .svc-atlas .svc-atlas__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    border: 0;
    background: #c8322b;
    color: #ffffff;
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
  }
}

.pa-modal__metaltabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 16px 0 4px;
}

.pa-modal__metaltabs button {
  padding: 11px 8px;
  border: 1px solid rgba(222, 229, 232, 0.3);
  background: none;
  color: #cdd6da;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.pa-modal__metaltabs button[aria-selected="true"] {
  border-color: #ef4147;
  color: #ef4147;
}

@media (max-width: 560px) {
  .pa-modal__metaltabs {
    grid-template-columns: 1fr 1fr;
  }
}

.pa-modal--dossier .pa-modal__layout {
  grid-template-columns: 350px minmax(0, 1fr);
}

.pa-modal--dossier .pa-modal__gallery,
.pa-modal--dossier .pa-modal__label,
.pa-modal--dossier .pa-modal__title,
.pa-modal--dossier .pa-modal__description {
  display: none;
}

.pa-modal--dossier .pa-modal__content {
  padding: 0;
}

.pa-modal__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: 58px 38px 34px;
  background: #0b1c24;
  border-right: 1px solid #2d414a;
  overflow-y: auto;
  scrollbar-width: thin;
}

.pa-modal__rail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #ec1d2d;
}

.pa-rail__eyebrow {
  margin: 0;
  color: #ff5662;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pa-rail__title {
  margin: 18px 0;
  color: #ffffff;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pa-rail__text {
  margin: 0;
  color: #a6b0b4;
  font-size: 17px;
  line-height: 1.5;
}

.pa-rail__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0;
  border-left: 1px solid #243740;
  border-top: 1px solid #243740;
}

.pa-rail__stat {
  padding: 18px;
  border-right: 1px solid #243740;
  border-bottom: 1px solid #243740;
}

.pa-rail__stat dt {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.02;
}

.pa-rail__stat dd {
  margin: 5px 0 0;
  color: #9eabb0;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pa-rail__stat--accent {
  background: #ec1d2d;
}

.pa-rail__stat--accent dt {
  color: #ffffff;
}

.pa-rail__stat--accent dd {
  color: #ffdce0;
}

.pa-modal .pa-rail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  padding: 0 18px 0 21px;
  border: 0;
  background: #ec1d2d;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.pa-modal .pa-rail__cta:hover {
  background: #ff2e3e;
  transform: translateY(-2px);
}

.pa-rail__cta i {
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
}

.pa-modal__cover {
  position: relative;
  height: 430px;
}

.pa-modal__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pa-modal__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 12, 16, 0.72), transparent 50%);
}

.pa-cover__cap {
  position: absolute;
  z-index: 2;
  left: 40px;
  right: 76px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pa-cover__cap span:last-child {
  color: #bdc7ca;
}

.pa-ch {
  padding: 64px 54px;
  border-bottom: 1px solid #243740;
}

/* Колонка 120px держала приписку «Глава 01»; приписки убраны — заголовок
   занимает всю ширину, иначе он сжался бы в узкую первую колонку. */
.pa-ch__head {
  display: block;
  margin-bottom: 34px;
}

.pa-ch__head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 39px;
  font-weight: 600;
  line-height: 1.02;
}

.pa-ch__rows {
  border-top: 1px solid #243740;
}

.pa-ch__row {
  display: grid;
  grid-template-columns: 230px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid #243740;
}

.pa-ch__row b {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}

.pa-ch__row span {
  color: #a6b0b4;
  font-size: 16px;
}

.pa-ch__anatomy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pa-ch__photo {
  min-height: 470px;
}

.pa-ch__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pa-ch__parts {
  border-top: 1px solid #243740;
}

.pa-ch__part {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #243740;
}

.pa-ch__part i {
  color: #ec1d2d;
  font-size: 12px;
  font-style: normal;
}

.pa-ch__part b {
  display: block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.15;
}

.pa-ch__part p {
  margin: 5px 0 0;
  color: #a6b0b4;
  font-size: 15px;
  line-height: 1.45;
}

.pa-ch__scope {
  border-left: 1px solid #243740;
  border-top: 1px solid #243740;
}

.pa-ch__scope-head,
.pa-ch__scope-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  min-height: 62px;
}

.pa-ch__scope-head span,
.pa-ch__scope-row b,
.pa-ch__scope-row span {
  display: flex;
  align-items: center;
  padding: 13px;
  border-right: 1px solid #243740;
  border-bottom: 1px solid #243740;
  font-size: 14px;
}

.pa-ch__scope-row b {
  color: #ffffff;
  font-weight: 600;
}

.pa-ch__scope-row span {
  justify-content: center;
  color: #d8dfe1;
}

.pa-ch__scope-head span {
  color: #87969c;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pa-ch__scope-row span.is-on {
  color: #ec1d2d;
}

.pa-ch__scope-row--primary {
  background: #10252e;
}

.pa-ch__scope-row--primary span {
  color: #ec1d2d;
}

.pa-ch__scope-row--primary span:not(.is-on) {
  color: #d8dfe1;
}

.pa-ch__turnkey {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  margin-top: 16px;
  padding: 20px;
  background: #ec1d2d;
}

.pa-ch__turnkey span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.pa-ch__turnkey p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.45;
}

.pa-ch__faq {
  border-top: 1px solid #243740;
}

.pa-ch__faq details {
  border-bottom: 1px solid #243740;
}

.pa-ch__faq summary {
  display: grid;
  grid-template-columns: 54px 1fr;
  padding: 21px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.pa-ch__faq summary::-webkit-details-marker {
  display: none;
}

.pa-ch__faq summary span {
  color: #ec1d2d;
}

.pa-ch__faq details p {
  margin: 0;
  padding: 0 0 22px 54px;
  max-width: 800px;
  color: #a6b0b4;
  font-size: 16px;
  line-height: 1.45;
}

.pa-doss-request {
  padding: 66px 54px 0;
  background: #0c1e27;
}

.pa-doss-request__eyebrow {
  margin: 0;
  color: #ff5662;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pa-doss-request h3 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.02;
}

.pa-modal--dossier .pa-modal__request {
  margin: 0;
  padding: 30px 54px 66px;
  border: 0;
  border-radius: 0;
  background: #0c1e27;
}

.pa-modal--dossier .pa-modal__request-toggle {
  padding: 16px 20px;
  border: 1px solid var(--pm-line);
  background: var(--pm-surface-raised);
}

@media (max-width: 1050px) {
  .pa-modal--dossier .pa-modal__layout {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .pa-modal__rail {
    padding: 50px 28px 28px;
  }

  .pa-rail__title {
    font-size: 43px;
  }

  .pa-ch {
    padding: 54px 38px;
  }

  .pa-ch__anatomy {
    grid-template-columns: 1fr;
  }

  .pa-ch__photo {
    min-height: 380px;
  }

  .pa-doss-request {
    padding: 54px 38px 0;
  }

  .pa-modal--dossier .pa-modal__request {
    padding: 26px 38px 54px;
  }
}

@media (max-width: 900px) {
  .pa-modal--dossier .pa-modal__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .pa-modal--dossier .pa-modal__content {
    min-width: 0;
  }

  .pa-modal__rail {
    padding: 72px 20px 26px;
    border-right: 0;
    overflow: visible;
  }

  .pa-rail__title {
    font-size: 45px;
  }

  .pa-rail__stats {
    margin: 35px 0 22px;
  }

  .pa-modal__cover {
    height: 320px;
  }

  .pa-cover__cap {
    display: block;
    left: 20px;
    right: 20px;
  }

  .pa-cover__cap span {
    display: block;
    margin-top: 5px;
  }

  .pa-ch {
    padding: 48px 20px;
  }

  .pa-ch__head {
    display: block;
  }

  .pa-ch__head h3 {
    margin-top: 10px;
    font-size: 32px;
  }

  .pa-ch__row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .pa-ch__photo {
    min-height: 280px;
  }

  .pa-ch__scope {
    overflow: auto;
  }

  .pa-ch__scope-head,
  .pa-ch__scope-row {
    min-width: 700px;
  }

  .pa-ch__turnkey {
    grid-template-columns: 1fr;
  }

  .pa-ch__faq details p {
    padding-left: 0;
  }

  .pa-doss-request {
    padding: 52px 20px 0;
  }

  .pa-doss-request h3 {
    font-size: 34px;
  }

  .pa-modal--dossier .pa-modal__request {
    padding: 25px 20px 52px;
  }
}

@media (max-width: 374px) {
  .pa-rail__stat {
    padding: 14px;
  }

  .pa-rail__stat dd {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
}

.pa-ch__scope-cards {
  display: none;
}

@media (max-width: 739px) {
  .pa-ch__scope {
    display: none;
  }

  .pa-ch__scope-cards {
    display: block;
    margin-top: 16px;
  }

  .pa-ch__scard {
    padding: 15px 16px 13px;
    border: 1px solid #243740;
  }

  .pa-ch__scard + .pa-ch__scard {
    margin-top: 8px;
  }

  .pa-ch__scard b {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
  }

  .pa-ch__scard--primary {
    background: #10252e;
  }

  .pa-ch__scard-marks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 12px;
  }

  .pa-ch__scard-marks i {
    display: block;
    color: #87969c;
    font-size: 9.5px;
    font-style: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .pa-ch__scard-marks em {
    display: block;
    margin-top: 4px;
    color: #5c6b72;
    font-size: 13px;
    font-style: normal;
  }

  .pa-ch__scard-marks em.is-on {
    color: #ec1d2d;
    font-size: 11px;
  }
}

@media (max-width: 1023px) {
  .pa-modal__overlay {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .pa-modal__dialog {
    box-shadow: none;
    transform: translateY(9%);
    will-change: transform, opacity;
    transition: opacity 0.5s cubic-bezier(0.22, 0.9, 0.24, 1), transform 0.5s cubic-bezier(0.32, 0.72, 0.24, 1);
  }

  .pa-modal.is-open .pa-modal__dialog {
    transform: none;
  }
}

.pa-modal__grab {
  display: none;
}

@media (max-width: 1023px) {
  .pa-modal {
    padding: 26px 0 0;
  }

  .pa-modal__overlay {
    background: rgba(2, 7, 10, 0.6);
  }

  .pa-modal__dialog {
    border-radius: 16px 16px 0 0;
  }

  .pa-modal__grab {
    position: absolute;
    z-index: 40;
    top: 8px;
    left: 50%;
    display: block;
    width: 42px;
    height: 4px;
    margin-left: -21px;
    border-radius: 2px;
    background: rgba(222, 229, 232, 0.4);
    pointer-events: none;
  }
}
