:root {
  --black: #090b0c;
  --ink: #101314;
  --paper: #f0efe9;
  --muted: #a7aaa7;
  --line: rgba(255, 255, 255, 0.16);
  --orange: #ff5634;
  --orange-dark: #d93f20;
  --white: #fff;
  --page: min(1320px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: "Manrope", sans-serif;
}

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

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

p,
h1,
h2,
h3,
dl,
dd {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 38px;
  align-items: center;
  width: var(--page);
  height: 96px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.site-nav a {
  color: #d7d8d6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--orange);
}

.header-phone {
  font-size: 13px;
  font-weight: 700;
}

.header-phone span {
  display: block;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 0 22px;
}

.button--light {
  color: var(--black);
  background: var(--paper);
}

.button--dark {
  width: 100%;
  color: var(--white);
  background: var(--black);
}

.eyebrow {
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 41% 59%;
  width: var(--page);
  min-height: 760px;
  margin: 0 auto;
  padding-bottom: 134px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-right: 20px;
}

.hero h1 {
  width: 760px;
  margin-bottom: 30px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(54px, 6.3vw, 104px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero__lead {
  max-width: 460px;
  color: #c5c7c4;
  font-size: 17px;
}

.hero__actions {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-top: 46px;
}

.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid currentcolor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
  font-size: 18px;
}

.hero__visual {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #242626;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 12, 0.48), transparent 36%),
    linear-gradient(0deg, rgba(9, 11, 12, 0.32), transparent 35%);
  content: "";
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__badge {
  position: absolute;
  z-index: 2;
  top: 34px;
  right: 34px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 150px;
  height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(9, 11, 12, 0.72);
  backdrop-filter: blur(8px);
}

.hero__badge strong {
  font-family: "Unbounded", sans-serif;
  font-size: 32px;
}

.hero__badge span {
  font-size: 8px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 16px;
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__stats {
  position: absolute;
  right: 0;
  bottom: 50px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.hero__stats div {
  padding: 24px 24px 0;
  border-right: 1px solid var(--line);
}

.hero__stats div:first-child {
  padding-left: 0;
}

.hero__stats dt {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.hero__stats dd {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  padding: 17px 0;
  color: var(--black);
  background: var(--orange);
  transform: rotate(-1deg) scale(1.01);
}

.ticker__track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.ticker i {
  font-style: normal;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0;
}

.section-heading h2,
.contract h2,
.documents h2,
.academy h2,
.join h2 {
  margin-bottom: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(48px, 6.8vw, 98px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.section-heading h2 span,
.academy h2 span,
.faq h2 span,
.join h2 span {
  color: var(--orange);
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 72px;
}

.section-heading--row > p {
  max-width: 370px;
  margin-bottom: 8px;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 680px;
  border-bottom: 1px solid var(--line);
}

.about__body {
  padding-top: 72px;
}

.about__body .intro {
  max-width: 720px;
  margin-bottom: 62px;
  font-size: clamp(25px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.about__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  color: var(--muted);
}

.manifesto {
  margin: 58px 0 0;
  color: var(--orange);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.units {
  padding-bottom: 80px;
}

.unit-list {
  border-top: 1px solid var(--line);
}

.unit-list article {
  display: grid;
  grid-template-columns: 70px 1fr auto 50px;
  gap: 28px;
  align-items: center;
  padding: 22px 14px;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.unit-list article:hover {
  padding-right: 24px;
  padding-left: 24px;
  color: var(--black);
  background: var(--orange);
}

.unit-list article > span,
.unit-list small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.unit-list article:hover > span,
.unit-list article:hover small {
  color: var(--black);
}

.unit-list h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(24px, 3.1vw, 46px);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.unit-list i {
  font-style: normal;
  font-size: 24px;
}

.vacancies {
  width: 100%;
  padding-right: max(40px, calc((100vw - 1320px) / 2));
  padding-left: max(40px, calc((100vw - 1320px) / 2));
  color: var(--black);
  background: var(--paper);
}

.vacancies .eyebrow {
  color: var(--orange-dark);
}

.vacancies .section-heading > p {
  color: #676b67;
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.vacancy-card {
  position: relative;
  grid-column: span 5;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: #202323;
}

.vacancy-card--large {
  grid-column: span 7;
}

.vacancy-card--wide {
  grid-column: span 12;
  min-height: 340px;
  color: var(--black);
  background: var(--orange);
}

.vacancy-card::after {
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  content: "";
}

.vacancy-card--wide::after {
  display: none;
}

.vacancy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.vacancy-card:hover img {
  transform: scale(1.035);
}

.vacancy-card__content {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 34px;
  left: 38px;
}

.vacancy-card--wide .vacancy-card__content {
  top: 44px;
  max-width: 800px;
}

.vacancy-card__content > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vacancy-card h3 {
  max-width: 720px;
  margin: 12px 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(25px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.vacancy-card p {
  max-width: 520px;
  margin: 0;
  color: #c3c5c2;
  font-size: 13px;
}

.vacancy-card--wide p {
  color: #38140b;
}

.vacancy-card__content > a:not(.button) {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 22px;
}

.vacancy-card--wide .button {
  margin-top: 28px;
}

.contract {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 70px;
}

.contract__title {
  position: sticky;
  top: 50px;
  align-self: start;
}

.contract__payout {
  max-width: 440px;
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.contract__payout strong {
  display: block;
  color: var(--orange);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(38px, 4vw, 60px);
}

.contract__payout span {
  display: block;
  max-width: 300px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.benefit-list h3 {
  margin-bottom: 8px;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
}

.documents {
  display: grid;
  grid-template-columns: 58% 42%;
  width: 100%;
  padding-right: max(40px, calc((100vw - 1320px) / 2));
  padding-left: max(40px, calc((100vw - 1320px) / 2));
  color: var(--black);
  background: var(--orange);
}

.documents__mockup {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.documents__number {
  position: absolute;
  top: -100px;
  left: -40px;
  color: rgba(9, 11, 12, 0.12);
  font-family: "Unbounded", sans-serif;
  font-size: 460px;
  font-weight: 700;
  line-height: 1;
}

.documents__panel {
  position: absolute;
  z-index: 1;
  top: 90px;
  right: 40px;
  width: min(520px, 86%);
  padding: 36px;
  color: var(--white);
  background: var(--black);
  box-shadow: 30px 30px 0 rgba(9, 11, 12, 0.18);
  transform: rotate(-3deg);
}

.documents__panel small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.documents__panel > strong {
  display: block;
  margin: 12px 0 30px;
  font-family: "Unbounded", sans-serif;
  font-size: 34px;
  text-transform: uppercase;
}

.documents__panel div {
  display: grid;
  grid-template-columns: 8px 1fr 20px;
  gap: 13px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.documents__panel i {
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.documents__copy {
  align-self: center;
  padding-left: 50px;
}

.documents__copy .eyebrow {
  color: #4b170c;
}

.documents__copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 35px 0;
  color: #40160d;
  font-size: 17px;
}

.journey__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: journey;
}

.journey__steps li {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey__steps li:nth-child(3n) {
  border-right: 0;
}

.journey__steps span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.journey__steps h3 {
  margin: 68px 0 12px;
  font-family: "Unbounded", sans-serif;
  font-size: 21px;
  font-weight: 500;
  text-transform: uppercase;
}

.journey__steps p {
  color: var(--muted);
  font-size: 13px;
}

.academy {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 850px;
  color: var(--black);
  background: var(--paper);
}

.academy__image {
  position: relative;
  overflow: hidden;
}

.academy__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 35%);
  content: "";
}

.academy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academy__image > span {
  position: absolute;
  z-index: 1;
  right: 44px;
  bottom: 36px;
  left: 44px;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.academy__copy {
  align-self: center;
  padding: 90px max(40px, calc((100vw - 1320px) / 2)) 90px 8vw;
}

.academy__copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 36px 0;
  color: #555955;
}

.academy__copy ul {
  margin: 0 0 42px;
  padding: 0;
  border-top: 1px solid #c8c8c1;
  list-style: none;
}

.academy__copy li {
  padding: 12px 0;
  border-bottom: 1px solid #c8c8c1;
  font-size: 13px;
  font-weight: 600;
}

.faq {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 60px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 0;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  color: var(--orange);
  font-size: 26px;
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 660px;
  padding: 0 50px 25px 0;
  color: var(--muted);
}

.join {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 9vw;
  padding: 140px max(40px, calc((100vw - 1320px) / 2));
  color: var(--black);
  background: var(--orange);
}

.join__intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 38px 0 25px;
  color: #49170d;
}

.join__intro .eyebrow {
  color: #49170d;
}

.join__intro > a {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 600;
}

.join__form {
  padding: 42px;
  background: var(--paper);
}

.join__form > label {
  display: block;
  margin-bottom: 28px;
}

.join__form > label > span,
.join__form legend {
  display: block;
  margin-bottom: 7px;
  color: #666963;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.join__form input[type="text"],
.join__form input[type="tel"] {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #a7a8a2;
  outline: 0;
  color: var(--black);
  background: transparent;
  font-size: 18px;
}

.join__form input:focus {
  border-color: var(--orange);
}

.join__form fieldset {
  display: flex;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.join__form fieldset label {
  position: relative;
}

.join__form input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.join__form fieldset span {
  display: block;
  padding: 10px 14px;
  border: 1px solid #bbbdb7;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.join__form input[type="radio"]:checked + span {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.join__form small {
  display: block;
  margin-top: 14px;
  color: #757871;
  font-size: 9px;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 80px;
  width: var(--page);
  margin: 0 auto;
  padding: 90px 0 44px;
}

.site-footer__brand {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.site-footer__brand strong {
  color: var(--orange);
  font-family: "Unbounded", sans-serif;
  font-size: 62px;
  line-height: 0.9;
}

.site-footer__brand p {
  max-width: 230px;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

.site-footer > div:not(.site-footer__brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer small {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  font-size: 12px;
}

.back-to-top {
  position: absolute;
  right: 0;
  bottom: 38px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px !important;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  margin: 45px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  :root {
    --page: calc(100vw - 48px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 48% 52%;
  }

  .hero h1 {
    width: 650px;
  }

  .contract,
  .faq {
    grid-template-columns: 1fr;
  }

  .contract__title {
    position: static;
  }

  .documents {
    grid-template-columns: 50% 50%;
  }

  .documents__copy {
    padding-left: 20px;
  }

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

  .journey__steps li:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .journey__steps li:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 32px);
  }

  .site-header {
    height: 78px;
  }

  .brand img {
    width: 34px;
  }

  .brand strong {
    font-size: 11px;
  }

  .brand small,
  .header-phone {
    display: none;
  }

  .button--small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 9px;
  }

  .hero {
    display: flex;
    min-height: auto;
    padding: 60px 0 135px;
    flex-direction: column-reverse;
  }

  .hero__visual {
    height: 430px;
    margin-bottom: 45px;
  }

  .hero__copy {
    padding: 0;
  }

  .hero h1 {
    width: auto;
    font-size: clamp(42px, 13vw, 70px);
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    bottom: 34px;
  }

  .hero__stats div {
    padding: 18px 10px 0;
  }

  .hero__stats dt {
    font-size: 12px;
  }

  .hero__stats dd {
    font-size: 7px;
    line-height: 1.35;
  }

  .ticker__track {
    font-size: 13px;
  }

  .section {
    padding: 95px 0;
  }

  .section-heading h2,
  .contract h2,
  .documents h2,
  .academy h2,
  .join h2 {
    font-size: clamp(39px, 12vw, 64px);
  }

  .section-heading--row {
    display: block;
    margin-bottom: 45px;
  }

  .section-heading--row > p {
    margin-top: 30px;
  }

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

  .about__body {
    padding-top: 45px;
  }

  .about__columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .unit-list article {
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
  }

  .unit-list small {
    display: none;
  }

  .unit-list h3 {
    font-size: 24px;
  }

  .vacancies,
  .documents,
  .join {
    padding-right: 16px;
    padding-left: 16px;
  }

  .vacancy-grid {
    display: block;
  }

  .vacancy-card {
    min-height: 480px;
    margin-bottom: 16px;
  }

  .vacancy-card--wide {
    min-height: 440px;
  }

  .vacancy-card__content {
    right: 24px;
    bottom: 26px;
    left: 24px;
  }

  .vacancy-card__content > a:not(.button) {
    position: static;
    margin-top: 20px;
  }

  .contract {
    display: block;
  }

  .contract__title {
    margin-bottom: 75px;
  }

  .documents {
    display: flex;
    flex-direction: column-reverse;
  }

  .documents__copy {
    padding: 0;
  }

  .documents__mockup {
    min-height: 490px;
  }

  .documents__number {
    font-size: 340px;
  }

  .documents__panel {
    top: 80px;
    right: 25px;
    width: calc(100% - 50px);
    padding: 24px;
  }

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

  .journey__steps li,
  .journey__steps li:nth-child(3n) {
    min-height: 220px;
    border-right: 0;
  }

  .journey__steps h3 {
    margin-top: 50px;
  }

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

  .academy__image {
    min-height: 540px;
  }

  .academy__copy {
    padding: 90px 16px;
  }

  .faq {
    display: block;
  }

  .faq__list {
    margin-top: 55px;
  }

  .faq summary {
    gap: 20px;
    font-size: 13px;
  }

  .join {
    display: block;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .join__form {
    margin-top: 55px;
    padding: 28px 20px;
  }

  .join__form fieldset {
    flex-wrap: wrap;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .site-footer__bottom {
    margin-top: 10px;
    padding-right: 50px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
