:root {
  --text: #171717;
  --accent: #ff480e;
  --container: 1160px;
  --page: 1201px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.section {
  position: relative;
  padding: 40px 0;
}

.site-header {
  width: 100%;
  min-height: 75px;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: none;
}

.site-header__inner {
  width: min(var(--container), calc(100% - 40px));
  min-height: 75px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  font-family: "Rocketfont", "Mulish", sans-serif;
  line-height: 1;
}

.brand__title {
  font-size: 23.3px;
  font-weight: 800;
  line-height: 30.6px;
  letter-spacing: -1.39px;
  background: linear-gradient(90deg, #db340e 0%, #ff560e 56%, #ff6d39 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.brand__subtitle {
  color: var(--accent);
  font-size: 11.4px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.31px;
  margin-top: -1px;
  padding-left: 1px;
}

.brand--light .brand__title,
.brand--light .brand__subtitle {
  color: #fff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

.site-header__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-header__actions {
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.pill,
.button {
  border-radius: 999px;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, font-size 160ms ease;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pill--ghost {
  color: var(--accent);
  background: #ffddd8;
  border: 1px solid rgba(255, 72, 14, 0);
}

.site-header .pill {
  min-height: 42px;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18.2px;
  letter-spacing: -0.56px;
}

.site-header .pill--ghost {
  flex: 0 0 161.99px;
  width: 161.99px;
  min-height: 41.99px;
  height: 41.99px;
  padding: 0;
}

.site-header .pill--ghost:hover,
.site-header .pill--ghost:focus-visible {
  color: #272727;
  background: #ffddd8;
  border-color: rgba(255, 72, 14, 0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  cursor: pointer;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.04em;
  color: #fff;
  background: linear-gradient(135deg, #ff5d1c, #f63d00);
  box-shadow: 0 14px 28px rgba(246, 61, 0, 0.24);
}

.button--sm {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.84rem;
}

.site-header .button--sm {
  min-height: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.56px;
  background: var(--accent);
  box-shadow: none;
}

.site-header .button--sm:hover,
.site-header .button--sm:focus-visible {
  background: #272727;
}

.section-head {
  display: grid;
  gap: 12px;
}

.section-head--center {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head h2,
.hero-title {
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
}

.hero-title .accent,
.section-head h2 span {
  color: var(--accent);
}

.hero {
  padding: 10px 0 0;
  background: linear-gradient(180deg, #FFC2AE 50%, #FF480E 100%);
}

.hero .container {
  width: min(var(--page), 100%);
}

.hero-card {
  position: relative;
  width: 100%;
  height: clamp(620px, 67.6vw, 812px);
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 76%;
  border-radius: 30px;
  background: #fff;
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 8px 31px auto;
  height: 72.4%;
  overflow: hidden;
  border-radius: 25px;
  background: #222b38;
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-frame img {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.hero-frame__middle {
  left: 20px;
  top: 38%;
  width: calc(100% - 40px);
  height: 38.42%;
}

.hero-frame__bottom {
  left: 20px;
  top: 72.5%;
  width: calc(100% - 40px);
  height: 17.15%;
}

.hero-frame__side {
  top: 0;
  width: 65px;
  height: 129.807px;
}

.hero-frame__side--left {
  left: 20px;
}

.hero-frame__side--right {
  right: 20px;
}

.hero-vacancy-cta {
  position: absolute;
  left: 13.2%;
  top: 40%;
  width: 25%;
  height: 11.6%;
  z-index: 4;
}

.hero-vacancy-backplate {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.hero-vacancy-button {
  position: absolute;
  left: 50%;
  top: 13%;
  transform: translateX(-50%);
  height: 42px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.9px;
  letter-spacing: -0.5px;
  white-space: nowrap;
  z-index: 1;
  transition: background-color 160ms ease;
}

.hero-vacancy-button:hover,
.hero-vacancy-button:focus-visible {
  background: #272727;
}

.hero-title {
  position: absolute;
  left: 50px;
  top: 46%;
  max-width: 690px;
  font-size: clamp(46px, 5.45vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
  color: var(--text);
  z-index: 4;
}

.hero-title__line {
  display: block;
}

.hero-title__line--middle {
  padding-left: 118px;
}

.hero-award-card {
  position: absolute;
  right: 13.6%;
  top: 54.7%;
  width: 205px;
  min-height: 112px;
  padding: 18px 18px 17px;
  display: flex;
  align-items: center;
  border-radius: 17px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16));
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 20px;
  backdrop-filter: blur(16px);
  z-index: 5;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -1px;
}

.hero-trophy {
  position: absolute;
  right: 6%;
  top: 49%;
  width: clamp(114px, 13vw, 155px);
  z-index: 6;
  pointer-events: none;
}

.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.deco--hero-spiral {
  right: 9%;
  bottom: -18px;
  width: clamp(168px, 20vw, 222px);
  z-index: 6;
}

.section--accent {
  padding: 0;
}

.values.section {
  padding: 0;
}

.values {
  background: linear-gradient(180deg, #ff480e 0%, #df2e0b 100%);
  overflow: hidden;
}

.values .container {
  width: min(var(--page), 100%);
  min-height: 1040px;
  padding: 0 0 78px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.values .section-head {
  max-width: 920px;
  margin: 0 auto;
  gap: 0;
  position: relative;
  z-index: 3;
}

.values .section-head h2 {
  color: #fff;
  font-size: clamp(42px, 4.9vw, 60px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -2.4px;
}

.values-quote {
  position: absolute;
  top: 150px;
  right: 15px;
  z-index: 4;
  width: 296px;
  min-height: 66px;
  padding: 9px 38px 9px 10px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 33px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(93, 17, 0, 0.12);
}

.values-quote__avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.values-quote__text {
  min-width: 0;
  display: grid;
  gap: 1px;
  font-family: "Inter", sans-serif;
  color: #171717;
  line-height: 1;
}

.values-quote__text strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.values-quote__text span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.45px;
  white-space: nowrap;
}

.values-quote__mark {
  position: absolute;
  right: 20px;
  top: -24px;
  font-family: "Mulish", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: #ff480e;
}

.values-grid {
  --value-card-width: 265px;
  --value-grid-gap: 12px;
  position: relative;
  z-index: 2;
  margin-top: 104px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, var(--value-card-width)));
  grid-auto-rows: auto;
  justify-content: center;
  gap: var(--value-grid-gap);
}

.value-card {
  --value-hover-x: 33px;
  --value-hover-y: 84px;
  position: relative;
  width: 100%;
  aspect-ratio: 265 / 366;
  min-height: 0;
  padding: 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  box-shadow: none;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 240ms ease, color 240ms ease;
}

.value-card__title {
  grid-area: 1 / 1;
  margin: 0;
  max-width: var(--value-title-width, 190px);
  font-family: "Mulish", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: -1px;
  text-align: left;
  transition: opacity 180ms ease, transform 240ms ease;
  z-index: 1;
}

.value-card__hover-content {
  grid-area: 1 / 1;
  width: min(196px, calc(100% - var(--value-hover-x) - var(--value-hover-x)));
  align-self: start;
  justify-self: start;
  margin: var(--value-hover-y) var(--value-hover-x) 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 240ms ease;
  z-index: 1;
}

.value-card__hover-title {
  margin: 0;
  max-width: var(--value-hover-title-width, 196px);
  color: #272727;
  font-family: "Mulish", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: -1px;
}

.value-card__details {
  width: 196px;
  max-width: 100%;
  margin: 0;
  margin-top: 12px;
  color: #999;
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: -0.56px;
}

.value-card__arrow {
  position: absolute;
  right: 12.83%;
  bottom: 7.65%;
  width: 12.45%;
  aspect-ratio: 1;
  background: url("assets/values/arrow-white.svg") center / contain no-repeat;
}

.value-card--accent {
  color: #fff;
  background: #ff480e;
}

.value-card--dark {
  color: #fff;
  background: #171717;
}

.value-card--light {
  color: var(--accent);
  background: #fff;
}

.value-card--light .value-card__arrow {
  background-image: url("assets/values/arrow-orange.svg");
}

.value-card--one {
  --value-title-width: 140px;
  --value-hover-title-width: 141px;
  grid-column: 1;
  grid-row: 1;
}

.value-card--two {
  --value-title-width: 205px;
  --value-hover-title-width: 141px;
  grid-column: 2;
  grid-row: 1;
}

.value-card--three {
  --value-title-width: 138px;
  --value-hover-title-width: 141px;
  grid-column: 4;
  grid-row: 1;
}

.value-card--four {
  --value-title-width: 158px;
  --value-hover-title-width: 196px;
  grid-column: 1;
  grid-row: 2;
}

.value-card--five {
  --value-title-width: 191px;
  --value-hover-title-width: 165px;
  grid-column: 3;
  grid-row: 2;
}

.value-card:hover,
.value-card:focus {
  color: #272727;
  background: #fff;
}

.value-card:hover .value-card__title,
.value-card:focus .value-card__title {
  opacity: 0;
  transform: translateY(-12px);
}

.value-card:hover .value-card__hover-content,
.value-card:focus .value-card__hover-content {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover .value-card__arrow,
.value-card:focus .value-card__arrow {
  background-image: url("assets/values/arrow-hover.svg");
}

.value-card:focus {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

.values-deco {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

.values-deco--flower {
  z-index: 1;
  width: 157px;
  height: 157px;
  top: 345px;
  left: 803px;
  object-fit: contain;
}

.values-deco--bottom-spiral {
  z-index: 1;
  width: 230px;
  height: 297px;
  bottom: 0;
  left: 410px;
  object-fit: contain;
  transform: rotate(-2deg);
}

.stories {
  --stories-left-plate-center-fluid: 17.14%;
  --stories-left-plate-center-fixed: calc(50% - 416px);
  --stories-right-plate-center-fluid: 83.41%;
  --stories-right-plate-center-fixed: calc(50% + 423px);
  --stories-tag-half-width: 93px;
  --stories-quote-half-width: 168px;
  margin-top: -1px;
  padding: 0 0 84px;
  min-height: 1032px;
  background: #da350e;
  overflow: hidden;
  isolation: isolate;
}

.stories::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 26px;
  left: 50%;
  width: max(100%, 1266px);
  height: 1031px;
  transform: translateX(-50%);
  background: url("assets/stories/stories-shell.svg") center top / 100% 100% no-repeat;
  pointer-events: none;
}

.stories .container {
  position: static;
  z-index: 1;
  min-height: 948px;
  padding-top: 0;
}

.stories-tag {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: min(
    calc(var(--stories-left-plate-center-fluid) - var(--stories-tag-half-width)),
    calc(var(--stories-left-plate-center-fixed) - var(--stories-tag-half-width))
  );
  display: inline-flex;
  min-width: 186px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  color: #171717;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.5px;
}

.stories-quote {
  position: absolute;
  z-index: 3;
  top: 40px;
  right: auto;
  left: max(
    calc(var(--stories-right-plate-center-fluid) - var(--stories-quote-half-width)),
    calc(var(--stories-right-plate-center-fixed) - var(--stories-quote-half-width))
  );
  width: 336px;
  min-height: 99px;
  pointer-events: none;
}

.stories-quote::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 318px;
  height: 75px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
}

.stories-quote__avatar {
  position: absolute;
  z-index: 1;
  left: 8px;
  bottom: 7px;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  object-fit: cover;
}

.stories-quote__text {
  position: absolute;
  z-index: 1;
  left: 82px;
  bottom: 24px;
  font-family: "Mulish", sans-serif;
  letter-spacing: 0;
}

.stories-quote__text strong {
  display: block;
  color: #171717;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}

.stories-quote__text span {
  display: block;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}

.stories-quote__mark {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 50px;
  height: 72px;
  color: #ff480e;
  font-family: "Mulish", sans-serif;
  font-size: 66px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -3px;
  text-align: center;
}

.stories-quote__mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #fff;
}

.stories__intro {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 141px;
  padding-bottom: 50px;
  text-align: center;
}

.stories-title {
  margin: 0 auto;
  font-family: "Mulish", sans-serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -3px;
}

.stories-title span {
  display: block;
  color: #ff480e;
}

.stories-title span:nth-child(1) {
  transform: translateX(-60px);
}

.stories-title span:nth-child(2) {
  transform: translateX(-200px);
}

.stories-title span:last-child {
  color: #272727;
  transform: translateX(34px);
}

.stories-cards {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 32px;
}

.stories-cards::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: -260px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-image: linear-gradient(180deg, rgba(218, 53, 14, 0.68) 0%, rgba(255, 72, 14, 0.88) 100%),
    url("assets/stories/glow-bg.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.stories-tape {
  --stories-tape-start: clamp(42px, 4vw, 72px);
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: var(--stories-tape-start);
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--stories-tape-start);
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.stories-tape.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.stories-tape:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: -2px;
}

.stories-tape::-webkit-scrollbar {
  display: none;
}

.stories-tape__track {
  position: relative;
  width: 2925px;
  min-height: 527px;
}

.story-person-card {
  --card-height: 360px;
  --image-left: 15px;
  --image-top: 15px;
  --image-width: 325px;
  --image-height: 175px;
  --title-top: 210.62px;
  --text-top: 286px;
  --text-width: 285px;
  --text-size: 13px;
  --text-line: 18px;
  --text-weight: 500;
  --text-font: "Mulish";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 355px;
  min-height: var(--card-height);
  padding: var(--text-top) 25px 22px;
  scroll-snap-align: start;
  border-radius: 20px;
  background: #fff;
}

.story-person-card__photo {
  position: absolute;
  top: var(--image-top);
  left: var(--image-left);
  width: var(--image-width);
  height: var(--image-height);
  border-radius: 13px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.story-person-card h3 {
  position: absolute;
  top: var(--title-top);
  left: 25px;
  margin: 0;
  color: #171717;
  font-family: "Mulish", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.story-person-card p {
  position: static;
  width: var(--text-width);
  margin: 0;
  color: #83809b;
  font-family: var(--text-font), sans-serif;
  font-size: var(--text-size);
  font-weight: var(--text-weight);
  line-height: var(--text-line);
  letter-spacing: -0.5px;
}

.story-person-card--andrey {
  --x: 0px;
  --y: 27px;
  --card-height: 360px;
  --text-top: 286.5px;
  --text-width: 276px;
}

.story-person-card--damir {
  --x: 375px;
  --y: 137px;
  --card-height: 360px;
  --image-left: 18px;
  --image-width: 322px;
  --image-height: 152px;
  --title-top: 180px;
  --text-top: 286px;
  --text-width: 305px;
}

.story-person-card--sergey {
  --x: 810px;
  --y: 0px;
  --card-height: 353px;
  --title-top: 203px;
  --text-top: 279.5px;
  --text-width: 285px;
  --text-size: 12px;
  --text-line: 17px;
  --text-font: "Inter";
}

.story-person-card--anastasia {
  --x: 1185px;
  --y: 80px;
  --card-height: 353px;
  --title-top: 203px;
  --text-top: 280px;
  --text-width: 311px;
  --text-size: 12px;
  --text-line: 17px;
  --text-font: "Inter";
}

.story-person-card--roberto {
  --x: 1630px;
  --y: 27px;
  --card-height: 353px;
  --title-top: 210.62px;
  --text-top: 284.5px;
  --text-width: 285px;
  --text-size: 12px;
  --text-line: 17px;
  --text-font: "Inter";
}

.story-person-card--evgeniy {
  --x: 2145px;
  --y: 80px;
  --card-height: 360px;
  --image-left: 17px;
  --image-width: 323px;
  --image-height: 147px;
  --title-top: 180px;
  --text-top: 286px;
  --text-width: 315px;
}

.story-person-card--anton {
  --x: 2520px;
  --y: 28px;
  --card-height: 360px;
  --title-top: 210.62px;
  --text-top: 286px;
  --text-width: 284px;
  --text-weight: 600;
}

.story-person-card__deco {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.story-person-card__deco--flower {
  top: 170px;
  left: 340px;
  width: 141px;
  height: 146px;
}

.story-person-card__deco--plane {
  top: 240px;
  left: 200px;
  width: 224px;
  height: 284px;
}

.vacancies {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  scroll-margin-top: 88px;
  padding: 96px 0 96px;
  background: #ff480e;
  overflow: visible;
  isolation: isolate;
}

.vacancies::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(180deg, rgba(218, 53, 14, 0.74) 0%, rgba(255, 72, 14, 0.78) 58%, rgba(255, 226, 220, 0.92) 100%),
    url("assets/vacancies/vacancies-bg.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.vacancies .container {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 20px));
}

.vacancies-stage {
  position: relative;
}

.vacancies-card {
  --vacancies-panel-top: 46px;
  --vacancies-panel-height: 650px;
  --vacancies-action-height: 142px;
  position: relative;
  z-index: 1;
  min-height: calc(var(--vacancies-panel-top) + var(--vacancies-panel-height) + var(--vacancies-action-height));
  padding-top: var(--vacancies-panel-top);
}

.vacancies-tab {
  position: absolute;
  z-index: 1;
  top: -13px;
  left: 0;
  width: 285px;
  height: 114px;
  display: grid;
}

.vacancies-tab img,
.vacancies-tab span {
  grid-area: 1 / 1;
}

.vacancies-tab img {
  width: 100%;
  height: 100%;
}

.vacancies-tab span {
  align-self: start;
  justify-self: start;
  margin: 15px 0 0 68px;
  color: #171717;
  font-family: "Mulish", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

.vacancies-card__body {
  min-height: var(--vacancies-panel-height);
  padding: 60px 40px 0;
  border-radius: 25px 25px 0 0;
  background: #fff;
  position: relative;
  z-index: 2;
}

.vacancies-title {
  max-width: 880px;
  margin: 0;
  color: #ff480e;
  font-family: "Mulish", sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: -2px;
}

.vacancies-title span {
  display: block;
}

.vacancies-pagination {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
  align-items: center;
  gap: 19px;
  color: rgba(153, 153, 153, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18.6px;
}

.vacancies-pagination span {
  display: inline-grid;
  min-width: 16px;
  min-height: 16px;
  place-items: center;
}

.vacancies-pagination .is-active {
  width: 35px;
  height: 35px;
  border: 1px solid #ff480e;
  border-radius: 50%;
  color: #999;
}

.vacancies-list {
  display: grid;
  margin-top: 39px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.vacancy-row {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #272727;
  font-family: "Mulish", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.3px;
}

.vacancy-row__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ff480e;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16.8px;
}

.vacancies-action {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: calc(var(--vacancies-panel-top) + var(--vacancies-panel-height));
  min-height: var(--vacancies-action-height);
  pointer-events: none;
}

.vacancies-action__base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  border-radius: 0 0 25px 25px;
  background: #fff;
}

.vacancies-action__shape {
  position: absolute;
  top: 21px;
  left: 50%;
  width: 466px;
  height: auto;
  aspect-ratio: 466 / 121;
  transform: translateX(-50%);
}

.vacancies-button {
  position: absolute;
  top: 76px;
  left: 50%;
  min-width: 285px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 40px;
  border-radius: 30px;
  color: #fff;
  background: #ff480e;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  letter-spacing: -0.5px;
  pointer-events: auto;
  transform: translateX(-50%);
  transition: background-color 160ms ease;
}

.vacancies-button:hover,
.vacancies-button:focus-visible {
  background: #272727;
}

.vacancies-deco {
  position: absolute;
  z-index: 2;
  top: -50px;
  right: 0;
  width: 219px;
  height: 215px;
  object-fit: contain;
  pointer-events: none;
}

.faq {
  margin-top: -1px;
  padding: 68px 0 98px;
  background: url("assets/faq/faq-bg.svg") center top / 100% 100% no-repeat;
  overflow: hidden;
  border-radius:0 0 30px 30px;
}

.faq .container {
  width: min(1100px, calc(100% - 100px));
}

.faq-head {
  margin: 0 auto 45px;
  text-align: center;
}

.faq-head h2 {
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-size: 66px;
  font-weight: 600;
  line-height: 59px;
  letter-spacing: -3px;
}

.faq-head h2 span {
  display: block;
}

.faq-head h2 span:first-child {
  color: #272727;
}

.faq-head h2 span:last-child {
  color: #fff;
}

.faq-stack {
  position: relative;
  display: grid;
  isolation: isolate;
}

.faq-panel {
  --faq-panel-bg: #fff;
  --faq-panel-tab: url("assets/faq/faq-tab-light.svg");
  position: relative;
  min-height: 225px;
  padding: 75px 30px 34px;
  font-family: "Mulish", sans-serif;
  background: transparent;
}

.faq-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 360.5px;
  height: 86px;
  background: var(--faq-panel-bg);
  transform: scaleY(-1);
  transform-origin: center;
  -webkit-mask-image: var(--faq-panel-tab);
  mask-image: var(--faq-panel-tab);
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.faq-panel::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 33px 0 0;
  border-radius: 25px;
  background: var(--faq-panel-bg);
}

.faq-panel h3 {
  position: absolute;
  top: 11px;
  left: 30px;
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.faq-panel p {
  margin: 0;
  max-width: 980px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.faq-panel--accent {
  --faq-panel-bg: #ff480e;
  --faq-panel-tab: url("assets/faq/faq-tab-accent.svg");
  z-index: 1;
  min-height: 225px;
  color: #fff;
}

.faq-panel--light {
  --faq-panel-bg: #fff;
  --faq-panel-tab: url("assets/faq/faq-tab-light.svg");
  z-index: 2;
  min-height: 260px;
  margin-top: -60px;
  color: #171717;
}

.faq-panel--light h3 {
  color: #ff480e;
}

.faq-panel--dark {
  --faq-panel-bg: #171717;
  --faq-panel-tab: url("assets/faq/faq-tab-dark.svg");
  z-index: 3;
  min-height: 260px;
  margin-top: -89px;
  color: #fff;
}

.faq-panel--final {
  --faq-panel-tab: url("assets/faq/faq-tab-final.svg");
  z-index: 4;
  min-height: 250px;
  margin-top: -34px;
}

.section--contact {
  padding: 0;
  background: #fff;
}

.section--contact .container {
  width: min(1201px, 100%);
}

.contact-panel {
  position: relative;
  overflow: visible;
  width: min(1201px, 100vw);
  min-height: 850px;
  margin: 0 auto;
  padding: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  transform: translateY(-92px) !important;
}

.contact-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 265px;
  left: 20px;
  width: 1160px;
  height: 629px;
  border-radius: 30px;
  background: linear-gradient(35.793deg, #f9450e 0%, #ffc1ad 100%);
}

.contact-panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 829px;
  left: 452px;
  width: 296px;
  height: 66px;
  background: url("assets/contact/contact-bottom-notch.svg") left top / 100% 100% no-repeat;
}

.contact-card {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 34px;
  width: 1100px;
  max-width: calc(100% - 68px);
  height: 659px;
  color: #171717;
}

.contact-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 27px;
  left: 1px;
  width: 1099px;
  max-width: calc(100% - 1px);
  height: 533px;
  background: url("assets/contact/contact-top-bg.svg") left top / 100% 100% no-repeat;
}

.contact-panel__copy {
  position: absolute;
  top: 80px;
  left: 47px;
  width: 910px;
  z-index: 1;
}

.contact-panel__copy h2 {
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 63px;
  letter-spacing: -4.2px;
}

.contact-panel__copy h2 span {
  display: block;
}

.contact-panel__copy h2 span:first-child {
  margin-left: 143px;
  color: #ff480e;
}

.contact-panel__copy h2 span:last-child {
  color: #272727;
}

.contact-form {
  position: absolute;
  z-index: 1;
  top: 243px;
  left: 34px;
  display: grid;
  grid-template-columns: 340px 340px;
  gap: 19px;
  width: 699px;
  color: #999;
}

.contact-form__left,
.contact-form__right {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-phone {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #171717;
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.contact-form input {
  height: 40px;
  padding: 0 20px;
}

.contact-form textarea {
  height: 90px;
  padding: 11px 20px;
  overflow: auto;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(153, 153, 153, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 72, 14, 0.24);
}

.contact-phone:focus-within {
  outline: 2px solid rgba(255, 72, 14, 0.24);
}

.contact-phone {
  position: relative;
  display: grid;
  grid-template-columns: 18px 11px max-content minmax(0, 1fr);
  column-gap: 6px;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  overflow: hidden;
}

.contact-phone__select {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 58px;
  height: 40px;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.contact-phone__flag {
  display: block;
  width: 18px;
  height: 13px;
  overflow: hidden;
  border-radius: 1px;
  background: #fff;
  background-image: url("assets/contact/phone-flag-sprite.png");
  background-repeat: no-repeat;
  background-size: 390px 368px;
  background-position: -285px -281px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.contact-phone__flag[data-country="RU"] {
  background-position: -285px -281px;
}

.contact-phone__flag[data-country="KZ"] {
  background-position: -145px -281px;
}

.contact-phone__flag[data-country="BY"] {
  background-position: -89px -51px;
}

.contact-phone__flag[data-country="AM"] {
  background-position: -145px -5px;
}

.contact-phone__flag[data-country="GE"] {
  background-position: -145px -120px;
}

.contact-phone__flag[data-country="KG"] {
  background-position: -201px -166px;
}

.contact-phone__flag[data-country="UA"] {
  background-position: -341px -166px;
}

.contact-phone__arrow {
  width: 0;
  height: 0;
  border-left: 3.75px solid transparent;
  border-right: 3.75px solid transparent;
  border-top: 5px solid #9a9a9a;
}

.contact-phone__code {
  color: #999;
  font-size: 10.9px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
}

.contact-phone__input {
  min-width: 0;
  height: 40px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 10.9px;
  font-weight: 600;
  line-height: 15.96px;
}

.contact-phone__input:focus {
  outline: none !important;
  border: none !important;
}

.contact-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 8px 0 0 4px;
  max-width: 332px;
  min-height: 31px;
  color: #999;
  font-family: "Mulish", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
}

.contact-check input {
  appearance: none;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 72, 14, 0.6);
  border-radius: 0;
  background: transparent;
}

.contact-check input::before {
  content: "✓";
  color: rgba(255, 72, 14, 0.6);
  font-size: 14px;
  line-height: 1;
  opacity: 0;
}

.contact-check input:checked::before {
  opacity: 1;
}

.contact-check input:focus-visible {
  outline: 2px solid rgba(255, 72, 14, 0.24);
  outline-offset: 2px;
}

.contact-submit {
  justify-self: center;
  width: 107px;
  height: 42px;
  margin-top: 9px;
  border: 0;
  border-radius: 30px;
  background: #ff480e;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: -0.5px;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #272727;
}

.contact-submit:disabled {
  cursor: default;
  opacity: 0.72;
}

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

.form-toast {
  --toast-color: #ff480e;
  --toast-glow: rgba(255, 72, 14, 0.16);
  position: fixed;
  z-index: 100;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(16px, 4vw, 42px);
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(420px, calc(100vw - 32px));
  min-height: 64px;
  padding: 16px 18px 16px 16px;
  border: 1px solid rgba(255, 72, 14, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(39, 39, 39, 0.18);
  color: #272727;
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.22;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.form-toast::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--toast-color);
  box-shadow: 0 0 0 6px var(--toast-glow);
}

.form-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-toast--success {
  --toast-color: #20a65a;
  --toast-glow: rgba(32, 166, 90, 0.16);
}

.form-toast--error {
  --toast-color: #ff480e;
  --toast-glow: rgba(255, 72, 14, 0.16);
}

.form-toast--sending {
  --toast-color: #ff8a63;
  --toast-glow: rgba(255, 138, 99, 0.18);
}

.contact-quote {
  position: absolute;
  z-index: 2;
  top: 182px;
  right: 49px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 256px;
  height: 74px;
  padding: 0 18px 0 7px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.14);
}

.contact-quote__avatar {
  width: 61px;
  height: 61px;
  border-radius: 120px;
  object-fit: cover;
}

.contact-quote__text {
  display: grid;
  align-content: center;
  min-width: 0;
  font-family: "Mulish", sans-serif;
  line-height: 1;
}

.contact-quote__text strong {
  color: #171717;
  font-size: 14px;
  font-weight: 700;
}

.contact-quote__text span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.contact-quote__mark {
  position: absolute;
  top: -24px;
  right: -10px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #fff;
  color: #ff480e;
  font-family: "Mulish", sans-serif;
  font-size: 66px;
  font-weight: 600;
  line-height: 1;
}

.contact-brand {
  position: absolute;
  z-index: 2;
  top: 674px;
  left: 95px;
  color: #fff;
}

.contact-brand .brand__title {
  font-size: 30.84px;
  line-height: 40.46px;
  letter-spacing: -1.84px;
}

.contact-brand .brand__subtitle {
  margin-top: -8px;
  font-size: 15.13px;
  line-height: 15px;
  letter-spacing: -0.41px;
}

.contact-link-card {
  position: absolute;
  z-index: 4;
  display: block;
  width: 291.99px;
  height: 183px;
  border-radius: 13px;
  background: linear-gradient(140deg, #ffd8cc 0%, #fc835d 100%);
  color: #fff;
  font-family: "Mulish", sans-serif;
  text-decoration: none;
  backdrop-filter: blur(15px);
}

.contact-link-card--hr {
  left: 511px;
  top: 531px;
}

.contact-link-card--mail {
  left: 818px;
  top: 568px;
}

.contact-link-card__label {
  position: absolute;
  top: 24px;
  left: 25px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 16px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: -0.5px;
}

.contact-link-card__value {
  position: absolute;
  left: 25px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 26px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: -1px;
  white-space: nowrap;
}

.contact-link-card img {
  position: absolute;
  z-index: 2;
  top: -25px;
  right: 25px;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.site-footer {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 860px;
  height: 14px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 13.2px;
  letter-spacing: -0.5px;
}

.site-footer__copy {
  position: absolute;
  left: 95px;
  top: 0;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: -0.5px;
  opacity: 0.6;
}

.site-footer p,
.site-footer a {
  position: absolute;
  top: 0;
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 11.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 13.2px;
  letter-spacing: -0.5px;
}

.site-footer a:nth-of-type(1) {
  left: 803px;
}

.site-footer a:nth-of-type(2) {
  left: 849px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero .container {
    width: 100%;
  }

  .hero-card {
    height: clamp(560px, 72vw, 760px);
  }

  .hero-card::before,
  .hero-frame__middle,
  .hero-frame__bottom {
    left: 16px;
    width: calc(100% - 32px);
  }

  .hero-card::before {
    right: 16px;
  }

  .hero-photo {
    inset: 8px 25px auto;
  }

  .hero-frame__side {
    width: clamp(48px, 6vw, 65px);
    height: clamp(96px, 12vw, 130px);
  }

  .hero-frame__side--left {
    left: 16px;
  }

  .hero-frame__side--right {
    right: 16px;
  }

  .hero-vacancy-cta {
    left: 12%;
    width: 28%;
  }

  .hero-title {
    left: 36px;
    max-width: 650px;
    font-size: clamp(42px, 5.8vw, 58px);
  }

  .hero-title__line--middle {
    padding-left: 74px;
  }

  .hero-award-card {
    right: 11%;
    width: 190px;
    min-height: 104px;
    font-size: 18px;
    line-height: 24px;
  }

  .hero-trophy {
    right: 5%;
    width: clamp(108px, 13.5vw, 148px);
  }

  .deco--hero-spiral {
    right: 8%;
    width: clamp(156px, 20vw, 210px);
  }

  .stories::before {
    width: max(100%, 1180px);
  }

  .stories-title {
    font-size: clamp(46px, 5.3vw, 58px);
  }

  .stories-title span:nth-child(1) {
    transform: translateX(-5vw);
  }

  .stories-title span:nth-child(2) {
    transform: translateX(-14vw);
  }

  .stories-title span:last-child {
    transform: translateX(3vw);
  }

  .vacancies-card__body {
    padding-inline: clamp(38px, 5vw, 54px);
  }

  .vacancies-title {
    font-size: clamp(42px, 4.6vw, 50px);
    line-height: 0.9;
  }

  .values .container {
    min-height: 980px;
  }

  .values-quote {
    right: 24px;
  }

  .values-grid {
    --value-card-width: clamp(216px, 22vw, 265px);
    margin-top: 84px;
  }

  .value-card {
    --value-hover-x: clamp(24px, 3vw, 33px);
    --value-hover-y: clamp(72px, 8vw, 84px);
  }

  .value-card__title {
    font-size: clamp(21px, 2.4vw, 25px);
    line-height: 0.92;
  }

  .values-deco--flower {
    left: auto;
    right: 21vw;
    top: 332px;
  }

  .values-deco--bottom-spiral {
    left: 35vw;
    bottom: 0;
  }
}

@media (max-width: 900px) {
  .stories {
    min-height: 0;
    padding-bottom: 72px;
  }

  .stories::before {
    top: 18px;
    width: max(100%, 1080px);
  }

  .stories .container {
    min-height: 0;
    padding-top: 54px;
  }

  .stories-tag {
    position: relative;
    top: auto;
    left: auto;
    min-width: 164px;
    min-height: 48px;
    margin-left: clamp(18px, 7vw, 65px);
    font-size: 16px;
  }

  .stories-quote {
    position: relative;
    top: auto;
    right: auto;
    margin: 14px 18px 0 auto;
  }

  .stories__intro {
    padding-top: 0;
    margin-top: 10px;
  }

  .stories-title {
    font-size: clamp(36px, 7.1vw, 54px);
    line-height: 0.96;
    letter-spacing: -2px;
  }

  .stories-title span:nth-child(1),
  .stories-title span:nth-child(2),
  .stories-title span:last-child {
    transform: none;
  }

  .stories-cards {
    margin-top: 38px;
    padding-top: 36px;
  }

  .vacancies {
    padding-bottom: 78px;
  }

  .vacancies-card {
    --vacancies-panel-top: 40px;
    --vacancies-panel-height: 560px;
    --vacancies-action-height: 132px;
  }

  .vacancies-tab {
    width: 250px;
    height: 100px;
  }

  .vacancies-tab span {
    margin: 13px 0 0 60px;
    font-size: 16px;
  }

  .vacancies-title {
    max-width: 760px;
    font-size: clamp(34px, 5.8vw, 44px);
    line-height: 0.94;
    letter-spacing: -1.7px;
  }

  .vacancies-pagination {
    margin-top: 28px;
  }

  .vacancy-row {
    min-height: 58px;
    font-size: clamp(16px, 2.4vw, 19px);
    line-height: 1.25;
  }

  .vacancies-deco {
    width: 172px;
    height: 169px;
    top: -38px;
  }

  .values .container {
    width: min(var(--page), calc(100% - 24px));
    min-height: 0;
    padding: 46px 0 82px;
  }

  .values .section-head {
    max-width: 720px;
  }

  .values .section-head h2 {
    font-size: clamp(34px, 7.1vw, 54px);
    letter-spacing: -2px;
  }

  .values-quote {
    position: relative;
    top: auto;
    right: auto;
    width: min(296px, calc(100% - 32px));
    margin: 22px auto 0;
  }

  .values-grid {
    margin-top: 38px;
    padding: 0 16px;
    grid-template-columns: repeat(2, minmax(0, min(265px, calc((100vw - 72px) / 2))));
    justify-content: center;
    gap: 16px;
  }

  .value-card {
    min-height: 260px;
    grid-column: auto;
    grid-row: auto;
  }

  .value-card__title {
    font-size: clamp(20px, 3.3vw, 25px);
    line-height: 0.95;
  }

  .values-deco--flower {
    width: 106px;
    height: 106px;
    top: 390px;
    right: -16px;
    left: auto;
  }

  .values-deco--bottom-spiral {
    width: 210px;
    height: 271px;
    top: auto;
    bottom: 0;
    left: auto;
    right: 8%;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 0;
  }

  .site-header__inner {
    width: min(var(--page), calc(100% - 24px));
    min-height: 0;
    padding: 12px 4px;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .site-header__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .site-header__actions .pill,
  .site-header__actions .button {
    flex: 1 1 100%;
  }

  .section {
    padding: 28px 0;
  }

  .hero {
    padding: 0;
  }

  .hero-card {
    height: clamp(560px, 138vw, 650px);
  }

  .hero-card::before {
    left: 10px;
    right: 10px;
    height: 48%;
    border-radius: 24px;
  }

  .hero-photo {
    inset: 8px 18px auto;
    height: 43%;
    border-radius: 20px;
  }

  .hero-frame__middle,
  .hero-frame__bottom {
    left: 10px;
    width: calc(100% - 20px);
  }

  .hero-frame__middle {
    top: 34%;
    height: 42%;
  }

  .hero-frame__bottom {
    top: 68.5%;
    height: 18%;
  }

  .hero-frame__side {
    top: 8px;
    width: 52px;
    height: 104px;
  }

  .hero-frame__side--left {
    left: 10px;
  }

  .hero-frame__side--right {
    right: 10px;
  }

  .hero-vacancy-cta {
    left: 24px;
    top: 34.5%;
    width: 240px;
    height: 78px;
  }

  .hero-vacancy-button {
    top: 14%;
    min-height: 38px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero-title {
    left: 22px;
    top: 45%;
    max-width: calc(100% - 44px);
    font-size: clamp(35px, 9.5vw, 48px);
    line-height: 1.04;
    letter-spacing: -2px;
  }

  .hero-title__line--middle {
    padding-left: 0;
  }

  .hero-award-card {
    right: 18px;
    top: 56%;
    width: 148px;
    min-height: 78px;
    padding: 13px 14px;
    font-size: 15px;
    line-height: 19px;
    border-radius: 14px;
  }

  .hero-trophy {
    right: -2px;
    top: 51%;
    width: 98px;
  }

  .deco--hero-spiral {
    right: 6px;
    bottom: 12px;
    width: clamp(132px, 34vw, 160px);
  }

  .values.section {
    padding: 0;
  }

  .stories {
    padding-bottom: 56px;
  }

  .stories::before {
    top: 12px;
    width: max(100%, 920px);
  }

  .stories .container {
    width: min(var(--page), calc(100% - 24px));
    padding-top: 44px;
  }

  .stories-tag {
    min-width: 142px;
    min-height: 40px;
    margin-left: 16px;
    font-size: 14px;
  }

  .stories-quote {
    width: min(336px, calc(100% - 16px));
    margin: 12px 8px 0 auto;
    transform: scale(0.88);
    transform-origin: top right;
  }

  .stories-title {
    max-width: 640px;
    font-size: clamp(32px, 8.2vw, 48px);
    line-height: 0.98;
    letter-spacing: -1.8px;
  }

  .stories-cards {
    margin-top: 28px;
    padding-top: 28px;
  }

  .vacancies {
    padding: 0 0 62px;
  }

  .vacancies .container {
    width: min(100%, calc(100% - 20px));
  }

  .vacancies-card {
    --vacancies-panel-top: 34px;
    --vacancies-panel-height: 560px;
    --vacancies-action-height: 122px;
  }

  .vacancies-card__body {
    border-radius: 22px 22px 0 0;
  }

  .vacancies-tab {
    width: 210px;
    height: 84px;
  }

  .vacancies-tab span {
    margin: 11px 0 0 50px;
    font-size: 13px;
  }

  .vacancies-title {
    font-size: clamp(30px, 7vw, 40px);
    line-height: 0.96;
    letter-spacing: -1.4px;
  }

  .vacancies-pagination {
    gap: 14px;
    margin-top: 24px;
  }

  .vacancies-list {
    margin-top: 24px;
  }

  .vacancy-row {
    min-height: 56px;
    gap: 14px;
    font-size: 15px;
  }

  .vacancy-row__icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .vacancies-action {
    min-height: 122px;
  }

  .vacancies-action__base {
    height: 76px;
    border-radius: 0 0 22px 22px;
  }

  .vacancies-action__shape {
    width: min(360px, 74vw);
    top: 16px;
  }

  .vacancies-button {
    min-width: min(285px, calc(100vw - 92px));
    min-height: 42px;
    top: 62px;
    font-size: 14px;
  }

  .vacancies-deco {
    display: none;
  }

  .faq {
    padding-top: 48px;
  }

  .faq .container {
    width: min(100%, calc(100% - 40px));
  }

  .faq-head {
    margin-bottom: 34px;
  }

  .faq-head h2 {
    font-size: clamp(40px, 8vw, 58px);
    line-height: 0.95;
    letter-spacing: -2px;
  }

  .faq-head h2 span:first-child,
  .faq-head h2 span:last-child {
    transform: none;
  }

  .faq-panel {
    min-height: auto;
    padding: 70px 26px 30px;
  }

  .faq-panel::before {
    width: min(360.5px, 72vw);
  }

  .faq-panel p {
    font-size: clamp(16px, 2.6vw, 19px);
    line-height: 1.22;
  }

  .faq-panel--light,
  .faq-panel--dark {
    margin-top: -54px;
  }

  .faq-panel--final {
    margin-top: -28px;
  }

  .contact-panel {
    width: min(1126px, calc(100vw - 24px));
  }

  .contact-card {
    top: 18px;
    left: 24px;
    max-width: calc(100% - 48px);
    height: 610px;
  }

  .contact-panel__copy {
    top: 68px;
    left: 36px;
  }

  .contact-panel__copy h2 {
    font-size: clamp(42px, 7vw, 62px);
    line-height: 0.94;
    letter-spacing: -3px;
  }

  .contact-panel__copy h2 span:first-child {
    margin-left: clamp(0px, 12vw, 110px);
  }

  .contact-form {
    top: 205px;
    left: 30px;
    grid-template-columns: 1fr;
    width: min(340px, calc(100% - 60px));
  }

  .contact-quote {
    top: 500px;
    left: 30px;
    right: auto;
  }

  .contact-brand {
    top: 620px;
    left: 76px;
  }

  .contact-link-card--hr {
    left: 76px;
    top: 690px;
  }

  .contact-link-card--mail {
    left: min(390px, calc(100% - 356px));
    right: auto;
    top: 724px;
  }

  .site-footer {
    left: 64px;
    right: 64px;
    bottom: 34px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .hero-card {
    height: clamp(500px, 148vw, 590px);
  }

  .hero-card::before {
    left: 8px;
    right: 8px;
    height: 43%;
    border-radius: 20px;
  }

  .hero-photo {
    inset: 7px 14px auto;
    height: 38%;
    border-radius: 18px;
  }

  .hero-frame__middle,
  .hero-frame__bottom {
    left: 8px;
    width: calc(100% - 16px);
  }

  .hero-frame__middle {
    top: 31%;
    height: 44%;
  }

  .hero-frame__bottom {
    top: 68%;
    height: 18%;
  }

  .hero-frame__side {
    top: 7px;
    width: 44px;
    height: 88px;
  }

  .hero-frame__side--left {
    left: 8px;
  }

  .hero-frame__side--right {
    right: 8px;
  }

  .hero-vacancy-cta {
    left: 18px;
    top: 31.5%;
    width: 218px;
    height: 70px;
  }

  .hero-vacancy-button {
    top: 14%;
    min-height: 36px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero-title {
    left: 18px;
    top: 42.5%;
    max-width: calc(100% - 30px);
    font-size: clamp(31px, 10vw, 38px);
    letter-spacing: -1.5px;
  }

  .hero-award-card {
    right: 14px;
    top: 56%;
    width: 130px;
    min-height: 70px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 17px;
  }

  .hero-trophy {
    top: 51.5%;
    width: 84px;
  }

  .deco--hero-spiral {
    bottom: 18px;
    width: clamp(118px, 38vw, 148px);
  }

  .values .container {
    width: 100%;
    padding: 38px 16px 72px;
  }

  .values .section-head h2 {
    font-size: clamp(31px, 10vw, 40px);
    line-height: 0.94;
    letter-spacing: -1.4px;
  }

  .values-quote {
    width: min(296px, 100%);
    min-height: 60px;
    padding-right: 30px;
    gap: 10px;
  }

  .values-quote__avatar {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .values-quote__text span {
    white-space: normal;
  }

  .values-grid {
    max-width: 290px;
    margin: 34px auto 0;
    padding: 0;
    grid-template-columns: minmax(0, 265px);
    gap: 14px;
  }

  .value-card {
    min-height: 0;
  }

  .value-card__title {
    font-size: clamp(20px, 6.8vw, 25px);
  }

  .values-deco--flower {
    width: 86px;
    height: 86px;
    top: 350px;
    right: -30px;
  }

  .values-deco--bottom-spiral {
    width: 174px;
    height: 225px;
    right: -28px;
    bottom: 0;
  }

  .stories::before {
    width: max(100%, 760px);
    height: 980px;
  }

  .stories .container {
    padding-top: 36px;
  }

  .stories-tag {
    min-width: 126px;
    min-height: 36px;
    margin-left: 12px;
    font-size: 13px;
  }

  .stories-quote {
    margin-top: 10px;
    transform: scale(0.78);
  }

  .stories__intro {
    margin-top: -6px;
  }

  .stories-title {
    font-size: clamp(28px, 9.2vw, 38px);
    line-height: 1;
    letter-spacing: -1.3px;
  }

  .stories-cards {
    margin-top: 22px;
    padding-top: 24px;
  }

  .vacancies-card {
    --vacancies-panel-top: 31px;
    --vacancies-panel-height: 560px;
    --vacancies-action-height: 108px;
  }

  .vacancies-tab {
    width: 190px;
    height: 76px;
  }

  .vacancies-tab span {
    margin: 10px 0 0 45px;
  }

  .vacancies-title {
    font-size: clamp(27px, 8.8vw, 34px);
    line-height: 0.98;
    letter-spacing: -1.1px;
  }

  .faq {
    padding: 38px 0 28px;
  }

  .faq .container {
    width: min(100%, calc(100% - 24px));
  }

  .faq-head {
    margin-bottom: 28px;
  }

  .faq-head h2 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1;
    letter-spacing: -1.4px;
  }

  .faq-panel {
    padding: 60px 18px 24px;
    border-radius: 20px;
  }

  .faq-panel::before {
    width: min(260px, 78vw);
    height: 76px;
  }

  .faq-panel h3 {
    top: 12px;
    left: 18px;
    font-size: 22px;
    line-height: 22px;
  }

  .faq-panel p {
    font-size: 15px;
    line-height: 1.25;
  }

  .faq-panel--light,
  .faq-panel--dark {
    margin-top: -38px;
  }

  .faq-panel--final {
    margin-top: -22px;
  }

  .vacancies-pagination {
    gap: 9px;
  }

  .vacancies-pagination .is-active {
    width: 31px;
    height: 31px;
  }

  .vacancy-row {
    min-height: 54px;
    font-size: 14px;
  }

  .vacancy-row span:first-child {
    min-width: 0;
  }

  .vacancies-action {
    min-height: 108px;
  }

  .vacancies-action__shape {
    width: min(310px, 82vw);
    top: 14px;
  }

  .vacancies-button {
    top: 54px;
  }

  .section--contact {
    padding-bottom: 44px;
  }

  .contact-panel {
    width: min(100%, calc(100vw - 16px));
    border-radius: 0 0 20px 20px;
  }

  .contact-panel::before {
    width: 82px;
    height: 54px;
    border-radius: 0 0 18px 0;
  }

  .contact-panel::after {
    width: 36px;
    height: 54px;
    border-radius: 0 0 0 18px;
  }

  .contact-card {
    top: 18px;
    left: 12px;
    max-width: calc(100% - 24px);
    height: 610px;
  }

  .contact-panel__copy {
    top: 58px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .contact-panel__copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.98;
    letter-spacing: -2px;
  }

  .contact-panel__copy h2 span:first-child {
    margin-left: 0;
  }

  .contact-form {
    top: 185px;
    left: 18px;
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-submit {
    justify-self: start;
    margin-left: 0;
  }

  .contact-quote {
    top: 515px;
    left: 18px;
    right: auto;
    width: min(256px, calc(100% - 36px));
  }

  .contact-quote__text span {
    white-space: normal;
  }

  .contact-brand {
    top: 640px;
    left: 28px;
  }

  .contact-link-card {
    width: min(292px, calc(100% - 56px));
    height: 183px;
  }

  .contact-link-card--hr {
    left: 28px;
    top: 704px;
  }

  .contact-link-card--mail {
    left: 28px;
    right: auto;
    top: 876px;
  }

  .contact-link-card__value {
    font-size: clamp(20px, 6vw, 26px);
  }

  .site-footer {
    left: 28px;
    right: 28px;
    bottom: 24px;
    gap: 12px 22px;
    font-size: 11px;
  }

  .form-toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .hero-card {
    height: clamp(470px, 156vw, 535px);
  }

  .hero-vacancy-cta {
    left: 12px;
    width: 205px;
  }

  .hero-title {
    left: 14px;
    top: 43%;
    max-width: calc(100% - 22px);
    font-size: clamp(28px, 10vw, 34px);
  }

  .hero-award-card {
    right: 10px;
    top: 58%;
    width: 116px;
    min-height: 64px;
    font-size: 12px;
    line-height: 15px;
  }

  .hero-trophy {
    right: -8px;
    top: 53%;
    width: 78px;
  }

  .stories-tag {
    margin-left: 6px;
  }

  .stories-quote {
    margin-right: -18px;
    transform: scale(0.7);
  }

  .stories-title {
    font-size: clamp(27px, 9.3vw, 34px);
  }

  .vacancies-title {
    font-size: clamp(25px, 8.5vw, 31px);
  }

  .vacancy-row {
    font-size: 13px;
  }

  .vacancy-row__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 900px) {
  .values .container {
    width: 100%;
    min-height: 0;
    padding: 46px 10px 58px;
  }

  .values .section-head {
    max-width: 720px;
    padding: 0 4px;
  }

  .values-quote {
    width: min(296px, calc(100% - 20px));
    margin: 20px auto 0;
  }

  .values-grid {
    width: 100%;
    max-width: none;
    margin: 28px auto 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .value-card {
    min-height: 250px;
    aspect-ratio: auto;
    padding: 22px;
    display: block;
    border-radius: 14px;
    background: #fff;
    color: #272727;
  }

  .value-card__title {
    display: none;
  }

  .value-card__hover-content {
    width: 100%;
    max-width: none;
    margin: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .value-card__hover-title {
    max-width: none;
    color: #ff480e;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.6px;
  }

  .value-card__details {
    width: auto;
    max-width: none;
    margin-top: 12px;
    color: #545454;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -0.2px;
  }

  .value-card__arrow,
  .value-card--light .value-card__arrow,
  .value-card:hover .value-card__arrow,
  .value-card:focus .value-card__arrow {
    right: 18px;
    bottom: 18px;
    width: 30px;
    background-image: url("assets/values/arrow-orange.svg");
  }

  .values-deco {
    display: none;
  }

  .stories {
    min-height: 0;
    padding: 46px 0 56px;
    background: linear-gradient(180deg, #df2e0b 0%, #ff480e 100%);
    overflow: hidden;
  }

  .stories::before {
    display: none;
  }

  .stories .container {
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 0 10px;
  }

  .stories-tag {
    position: relative;
    top: auto;
    left: auto;
    width: max-content;
    min-width: 0;
    min-height: 34px;
    margin: 0 auto;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
  }

  .stories-quote {
    display: none;
  }

  .stories__intro {
    margin: 0;
    padding: 14px 0 0;
  }

  .stories-title {
    max-width: 680px;
    font-size: clamp(31px, 7vw, 48px);
    line-height: 1.02;
    letter-spacing: -1.2px;
    text-align: center;
  }

  .stories-title span,
  .stories-title span:last-child {
    color: #fff;
    transform: none;
  }

  .stories-title span:last-child {
    color: #ffd8cc;
  }

  .stories-cards {
    margin-top: 24px;
    padding-top: 0;
  }

  .stories-cards::before {
    top: -20px;
    bottom: -80px;
    background: linear-gradient(180deg, rgba(255, 72, 14, 0) 0%, rgba(218, 53, 14, 0.42) 100%);
  }

  .stories-tape {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    scroll-padding-left: 0;
  }

  .stories-tape__track {
    width: max-content;
    min-height: 0;
    height: auto !important;
    display: flex;
    align-items: stretch;
    gap: 10px;
  }

  .story-person-card {
    position: relative;
    left: auto;
    top: auto;
    width: min(355px, calc(100vw - 20px));
    min-height: 0;
    padding: 12px 12px 18px;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
  }

  .story-person-card__photo {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 170px;
    border-radius: 10px;
  }

  .story-person-card h3 {
    position: static;
    margin: 14px 0 8px;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.4px;
  }

  .story-person-card p {
    width: auto;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: -0.3px;
  }

  .story-person-card__deco {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
  }

  .site-header__inner {
    position: relative;
    width: 100%;
    min-height: 64px;
    padding: 10px 16px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .site-header__toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-header.is-menu-open .site-header__toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-header__actions {
    position: absolute;
    top: calc(100% - 1px);
    left: 10px;
    right: 10px;
    width: auto;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 0 0 18px 18px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(39, 39, 39, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-header.is-menu-open .site-header__actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .pill--ghost,
  .site-header .button--sm,
  .site-header__actions .pill,
  .site-header__actions .button {
    width: 100%;
    flex: none;
  }

  .hero {
    padding: 0;
    background: linear-gradient(180deg, #ffc2ae 0%, #ff480e 100%);
  }

  .hero .container {
    width: 100%;
  }

  .hero-card {
    height: auto;
    min-height: 0;
    padding: 8px 8px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: visible;
  }

  .hero-card::before,
  .hero-frame,
  .hero-award-card,
  .hero-trophy,
  .deco--hero-spiral,
  .hero-vacancy-backplate {
    display: none;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 359 / 240;
    border-radius: 18px;
    z-index: 1;
  }

  .hero-title {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    max-width: none;
    margin: 0;
    padding: 18px 14px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 38px rgba(82, 18, 0, 0.12);
    font-size: clamp(28px, 8.9vw, 42px);
    line-height: 1.05;
    letter-spacing: -1.2px;
    z-index: 2;
  }

  .hero-title__line--middle {
    padding-left: 0;
  }

  .hero-vacancy-cta {
    position: relative;
    left: auto;
    top: auto;
    order: 3;
    width: auto;
    height: auto;
    align-self: flex-start;
    margin: 0 14px;
    z-index: 2;
  }

  .hero-vacancy-button {
    position: static;
    height: auto;
    min-height: 42px;
    padding: 0 18px;
    transform: none;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .values .container {
    padding: 34px 10px 48px;
  }

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

  .value-card {
    min-height: 0;
    padding: 22px 18px 58px;
  }

  .value-card__hover-title {
    font-size: 20px;
  }

  .value-card__details {
    font-size: 13.5px;
  }
}

@media (max-width: 420px) {
  .site-header__inner {
    padding-inline: 12px;
  }

  .hero-card {
    padding: 8px 6px 24px;
  }

  .hero-title {
    padding: 16px 12px 18px;
    border-radius: 16px;
    font-size: clamp(27px, 9.5vw, 34px);
    letter-spacing: -0.8px;
  }

  .hero-vacancy-cta {
    margin: 0 12px;
  }

  .stories-title {
    font-size: clamp(28px, 9vw, 34px);
  }
}

@media (max-width: 760px) {
  .section-head h2,
  .hero-title,
  .stories-title,
  .vacancies-title,
  .faq-head h2,
  .contact-panel__copy h2 {
    overflow-wrap: break-word;
  }

  .vacancies {
    padding: 48px 0 58px;
  }

  .vacancies .container {
    width: min(100%, calc(100% - 20px));
  }

  .vacancies-card {
    --vacancies-panel-top: 32px;
    --vacancies-panel-height: auto;
    --vacancies-action-height: 96px;
    min-height: 0;
    padding-top: var(--vacancies-panel-top);
  }

  .vacancies-card__body {
    min-height: 0;
    padding: 48px 18px 22px;
    border-radius: 20px 20px 0 0;
  }

  .vacancies-title {
    max-width: 100%;
    font-size: clamp(26px, 7.2vw, 32px);
    line-height: 1.03;
    letter-spacing: -0.8px;
  }

  .vacancies-list {
    margin-top: 24px;
  }

  .vacancy-row {
    min-height: 54px;
    font-size: 14px;
    line-height: 1.25;
  }

  .vacancies-action {
    position: relative;
    top: auto;
    min-height: var(--vacancies-action-height);
    background: #fff;
    border-radius: 0 0 20px 20px;
  }

  .vacancies-action__base,
  .vacancies-action__shape {
    display: none;
  }

  .vacancies-button {
    top: 24px;
    width: min(285px, calc(100% - 36px));
    min-width: 0;
    min-height: 44px;
    padding: 0 18px;
  }

  .faq {
    padding: 42px 0;
    border-radius: 0;
    background: linear-gradient(180deg, #ffc7b8 0%, #ff480e 100%);
  }

  .faq .container {
    width: min(100%, calc(100% - 20px));
  }

  .faq-head {
    margin-bottom: 22px;
  }

  .faq-head h2 {
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.9px;
  }

  .faq-head h2 span:first-child,
  .faq-head h2 span:last-child {
    color: #fff;
  }

  .faq-stack {
    gap: 10px;
  }

  .faq-panel,
  .faq-panel--light,
  .faq-panel--dark,
  .faq-panel--final {
    min-height: 0;
    margin-top: 0;
    padding: 20px 18px;
    border-radius: 16px;
    background: var(--faq-panel-bg);
  }

  .faq-panel::before,
  .faq-panel::after {
    display: none;
  }

  .faq-panel h3 {
    position: static;
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.4px;
  }

  .faq-panel p {
    max-width: none;
    font-size: 14px;
    line-height: 1.32;
    letter-spacing: -0.2px;
  }

  .section--contact {
    padding: 0 0 40px;
    background: #fff;
  }

  .contact-panel {
    width: 100%;
    min-height: 0;
    padding: 24px 10px 34px;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ff480e 0%, #ffc7b8 100%);
    transform: none !important;
  }

  .contact-panel::before,
  .contact-panel::after,
  .contact-card::before {
    display: none;
  }

  .contact-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 24px 18px 26px;
    border-radius: 20px;
    background: #ffe2da;
  }

  .contact-panel__copy {
    position: static;
    width: auto;
  }

  .contact-panel__copy h2 {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1;
    letter-spacing: -1px;
  }

  .contact-panel__copy h2 span:first-child {
    margin-left: 0;
  }

  .contact-form {
    position: static;
    width: 100%;
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-submit {
    justify-self: start;
    margin-left: 0;
  }

  .contact-quote {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: min(280px, 100%);
    margin: 16px auto 0;
  }

  .contact-brand {
    position: relative;
    top: auto;
    left: auto;
    margin: 28px 18px 0;
  }

  .contact-link-card,
  .contact-link-card--hr,
  .contact-link-card--mail {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: min(292px, 100%);
    margin: 22px auto 0;
  }

  .site-footer {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    height: auto;
    margin: 28px 18px 0;
    display: grid;
    gap: 8px;
  }

  .site-footer p,
  .site-footer a,
  .site-footer__copy {
    position: static;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .values .section-head h2 {
    font-size: clamp(25px, 8.2vw, 32px);
    line-height: 1.02;
    letter-spacing: -0.8px;
  }

  .stories-title {
    font-size: clamp(24px, 7.5vw, 31px);
    line-height: 1.05;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(25px, 8.3vw, 32px);
    line-height: 1.08;
  }

  .values-quote {
    transform: scale(0.94);
    transform-origin: center top;
  }

  .vacancies-card__body {
    padding-inline: 14px;
  }

  .vacancies-title {
    font-size: clamp(24px, 7.6vw, 29px);
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  .container {
    max-width: 100%;
  }

  .site-header {
    overflow: visible;
  }

  .site-header__actions a {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-photo img {
    object-position: center top;
  }

  .hero-title,
  .values .section-head h2,
  .stories-title,
  .vacancies-title,
  .faq-head h2,
  .contact-panel__copy h2 {
    max-width: 100%;
    text-wrap: balance;
  }

  .hero-title__line,
  .stories-title span,
  .vacancies-title span,
  .faq-head h2 span,
  .contact-panel__copy h2 span {
    display: inline;
  }

  .hero-title__line::after,
  .stories-title span::after,
  .vacancies-title span::after,
  .faq-head h2 span::after,
  .contact-panel__copy h2 span::after {
    content: " ";
  }

  .values {
    background: #ff480e;
  }

  .values .container {
    overflow: hidden;
  }

  .values .section-head h2 {
    text-align: center;
  }

  .values-quote {
    max-width: calc(100vw - 20px);
    transform: none;
  }

  .value-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .value-card__hover-title,
  .value-card__details {
    overflow-wrap: break-word;
  }

  .value-card:hover,
  .value-card:focus {
    background: #fff;
  }

  .value-card:hover .value-card__hover-content,
  .value-card:focus .value-card__hover-content {
    opacity: 1;
    transform: none;
  }

  .stories {
    overflow: hidden;
  }

  .stories-tag {
    left: auto;
    right: auto;
  }

  .stories-title {
    margin-inline: auto;
    padding-inline: 8px;
  }

  .stories-tape {
    max-width: 100%;
    overflow-x: auto;
  }

  .stories-tape__track {
    max-width: none;
  }

  .story-person-card {
    flex: 0 0 min(355px, calc(100vw - 20px));
  }

  .vacancies {
    overflow: hidden;
  }

  .vacancies-card {
    max-width: 100%;
  }

  .vacancies-card__body {
    overflow: hidden;
  }

  .vacancy-row {
    align-items: center;
  }

  .vacancy-row span:first-child {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .faq {
    overflow: hidden;
  }

  .faq-panel {
    overflow: hidden;
  }

  .faq-panel h3,
  .faq-panel p {
    overflow-wrap: break-word;
  }

  .contact-card,
  .contact-form,
  .contact-form__left,
  .contact-form__right,
  .contact-phone,
  .contact-link-card {
    min-width: 0;
    max-width: 100%;
  }

  .contact-panel__copy h2 {
    text-wrap: balance;
  }

  .contact-form input,
  .contact-form textarea {
    min-width: 0;
  }

  .contact-check span,
  .contact-link-card__value,
  .site-footer {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .brand__title {
    font-size: 21px;
    line-height: 26px;
  }

  .site-header__toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

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

  .hero-vacancy-button,
  .site-header .pill,
  .site-header .button--sm {
    font-size: 13px;
  }

  .values .section-head h2,
  .stories-title,
  .faq-head h2,
  .contact-panel__copy h2 {
    font-size: 28px;
  }

  .value-card__hover-title,
  .faq-panel h3 {
    font-size: 20px;
  }

  .value-card__details,
  .faq-panel p {
    font-size: 13px;
  }

  .vacancy-row {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #fff;
  }

  main,
  .section,
  .site-header,
  .hero,
  .values,
  .stories,
  .vacancies,
  .faq,
  .section--contact {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    border-radius: 0;
  }

  .container,
  .site-header__inner {
    width: min(1120px, calc(100% - 48px)) !important;
    max-width: 1120px;
  }

  .values {
    background: #ff480e !important;
  }

  .values::before,
  .stories::before,
  .stories::after,
  .contact-panel::before,
  .contact-panel::after,
  .contact-card::before {
    display: none !important;
  }

  .values .container {
    min-height: 0 !important;
    padding: 58px 0 72px !important;
    overflow: visible !important;
  }

  .values .section-head {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
  }

  .values .section-head h2 {
    font-size: clamp(40px, 5.1vw, 58px);
    line-height: 1;
    letter-spacing: -1.6px;
    text-align: center;
  }

  .values-quote {
    position: relative !important;
    inset: auto !important;
    width: min(296px, 100%);
    margin: 24px auto 0;
  }

  .values-grid {
    width: 100%;
    margin: 42px auto 0 !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
    gap: 18px !important;
    justify-content: stretch !important;
    align-items: start;
  }

  .value-card,
  .value-card--one,
  .value-card--two,
  .value-card--three,
  .value-card--four,
  .value-card--five {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .value-card {
    width: 100% !important;
    min-width: 0;
    min-height: 300px !important;
    aspect-ratio: auto !important;
    padding: 28px 24px 64px !important;
    display: block !important;
    border-radius: 18px;
    overflow: hidden;
    background: var(--value-adaptive-bg, #fff);
    color: var(--value-adaptive-color, #272727);
  }

  .value-card--accent {
    --value-adaptive-bg: #ff5a25;
    --value-adaptive-color: #fff;
  }

  .value-card--dark {
    --value-adaptive-bg: #171717;
    --value-adaptive-color: #fff;
  }

  .value-card--light {
    --value-adaptive-bg: #fff;
    --value-adaptive-color: #ff480e;
  }

  .value-card__title {
    display: block !important;
    max-width: 100% !important;
    margin: 0;
    color: inherit;
    opacity: 1 !important;
    transform: none !important;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.08;
    letter-spacing: -0.7px;
  }

  .value-card__hover-content {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    margin: 16px 0 0 !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none !important;
    transition: opacity 180ms ease, max-height 220ms ease;
  }

  .value-card__hover-title {
    display: none;
  }

  .value-card__details {
    width: auto !important;
    max-width: none !important;
    margin: 0;
    color: currentColor;
    opacity: 0.72;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -0.2px;
    overflow-wrap: break-word;
  }

  .value-card:hover,
  .value-card:focus,
  .value-card:focus-within {
    min-height: auto !important;
    background: #fff;
    color: #272727;
  }

  .value-card:hover .value-card__title,
  .value-card:focus .value-card__title,
  .value-card:focus-within .value-card__title {
    opacity: 1 !important;
    transform: none !important;
  }

  .value-card:hover .value-card__hover-content,
  .value-card:focus .value-card__hover-content,
  .value-card:focus-within .value-card__hover-content {
    opacity: 1;
    max-height: 900px;
    pointer-events: auto;
  }

  .value-card__arrow,
  .value-card--light .value-card__arrow,
  .value-card:hover .value-card__arrow,
  .value-card:focus .value-card__arrow,
  .value-card:focus-within .value-card__arrow {
    right: 20px;
    bottom: 20px;
    width: 30px;
    background-image: url("assets/values/arrow-orange.svg") !important;
  }

  .values-deco {
    display: none !important;
  }

  .stories {
    min-height: 0 !important;
    padding: 68px 0 76px !important;
    background: #ff480e !important;
    overflow: hidden;
  }

  .stories .container {
    position: relative !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    display: flex;
    flex-direction: column;
  }

  .stories__intro {
    order: 1;
    margin: 0;
    padding: 0 !important;
    text-align: center;
  }

  .stories-title {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(42px, 5.2vw, 58px);
    line-height: 1.04;
    letter-spacing: -1.8px;
  }

  .stories-title span,
  .stories-title span:nth-child(1),
  .stories-title span:nth-child(2),
  .stories-title span:last-child {
    display: inline;
    transform: none !important;
    color: #fff;
  }

  .stories-title span:last-child {
    color: #ffe1d9;
  }

  .stories-tag {
    position: relative !important;
    inset: auto !important;
    width: max-content;
    min-width: 0;
    min-height: 40px;
    margin: 0 auto 22px !important;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    font-size: 16px;
  }

  .stories-quote {
    display: none !important;
  }

  .stories-cards {
    order: 3;
    margin-top: 38px !important;
    padding-top: 0 !important;
  }

  .stories-cards::before {
    display: none !important;
  }

  .stories-tape {
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-left: 0;
  }

  .stories-tape__track {
    width: max-content !important;
    min-height: 0 !important;
    height: auto !important;
    display: flex;
    align-items: stretch;
    gap: 18px;
  }

  .story-person-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    flex: 0 0 min(355px, calc(100vw - 48px));
    width: min(355px, calc(100vw - 48px)) !important;
    min-height: 430px !important;
    padding: 16px 16px 22px !important;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
  }

  .story-person-card__photo {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 188px !important;
    border-radius: 14px;
  }

  .story-person-card h3 {
    position: static !important;
    margin: 18px 0 12px;
    font-size: 24px;
    line-height: 1.08;
  }

  .story-person-card p {
    width: auto !important;
    font-size: 14px;
    line-height: 1.35;
  }

  .story-person-card__deco {
    display: none !important;
  }

  .section--contact {
    padding: 72px 0 80px !important;
    background: #ff480e !important;
    overflow: hidden;
  }

  .section--contact .container {
    width: min(1120px, calc(100% - 48px)) !important;
    max-width: 1120px;
  }

  .contact-panel {
    position: relative !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto;
    padding: 32px !important;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    overflow: hidden !important;
    border-radius: 28px;
    background: linear-gradient(35deg, #f9450e 0%, #ffc1ad 100%);
    transform: none !important;
  }

  .contact-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    padding: 34px 34px 30px;
    border-radius: 24px;
    background: #ffe2da;
    color: #171717;
  }

  .contact-panel__copy {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
  }

  .contact-panel__copy h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(40px, 5.8vw, 66px);
    line-height: 1.02;
    letter-spacing: -2px;
  }

  .contact-panel__copy h2 span:first-child {
    margin-left: 0 !important;
  }

  .contact-form {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: min(760px, 100%) !important;
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-quote {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: min(256px, 100%);
    margin: 20px 0 0;
  }

  .contact-brand,
  .contact-link-card,
  .contact-link-card--hr,
  .contact-link-card--mail,
  .site-footer,
  .site-footer p,
  .site-footer a,
  .site-footer__copy,
  .site-footer a:nth-of-type(1),
  .site-footer a:nth-of-type(2) {
    position: relative !important;
    inset: auto !important;
  }

  .contact-brand {
    margin: 0;
  }

  .contact-link-card {
    width: min(292px, 100%);
    margin: 0;
  }

  .site-footer {
    height: auto !important;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;
  }

  .site-footer p,
  .site-footer a,
  .site-footer__copy {
    margin: 0;
  }
}

@media (max-width: 900px) {
  .container,
  .site-header__inner,
  .values .container,
  .stories .container,
  .section--contact .container {
    width: min(100%, calc(100% - 24px)) !important;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .contact-panel {
    padding: 22px !important;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .site-header__inner,
  .values .container,
  .stories .container,
  .section--contact .container {
    width: min(100%, calc(100% - 20px)) !important;
  }

  .values-grid {
    grid-template-columns: 1fr !important;
  }

  .value-card {
    min-height: 0 !important;
  }

  .stories-title,
  .values .section-head h2,
  .contact-panel__copy h2 {
    font-size: clamp(28px, 8.5vw, 38px);
    letter-spacing: -0.8px;
  }

  .story-person-card {
    flex-basis: calc(100vw - 40px);
    width: calc(100vw - 40px) !important;
    min-height: 0 !important;
  }

  .contact-panel {
    padding: 10px !important;
    border-radius: 20px;
  }

  .contact-card {
    padding: 24px 18px 26px;
    border-radius: 18px;
  }
}

@media (max-width: 1200px) {
  .values-grid {
    width: 100%;
    max-width: 980px;
    margin: 42px auto 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: stretch;
    gap: 18px !important;
  }

  .value-card,
  .value-card--one,
  .value-card--two,
  .value-card--three,
  .value-card--four,
  .value-card--five {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .value-card {
    --value-hover-x: clamp(22px, 2.4vw, 33px);
    --value-hover-y: clamp(56px, 5vw, 84px);
    flex: 0 1 300px;
    width: 300px !important;
    max-width: 300px;
    min-width: 0;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 265 / 366 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center;
    border-radius: 16px;
    overflow: hidden;
  }

  .value-card--accent {
    color: #fff;
    background: #ff480e;
  }

  .value-card--dark {
    color: #fff;
    background: #171717;
  }

  .value-card--light {
    color: var(--accent);
    background: #fff;
  }

  .value-card__title {
    display: block !important;
    grid-area: 1 / 1;
    margin: 0;
    max-width: min(var(--value-title-width, 190px), calc(100% - 48px)) !important;
    color: inherit;
    opacity: 1 !important;
    transform: none !important;
    font-size: clamp(21px, 2.2vw, 25px);
    line-height: 0.95;
    letter-spacing: -1px;
    transition: opacity 180ms ease, transform 240ms ease;
    z-index: 1;
  }

  .value-card__hover-content {
    position: relative !important;
    grid-area: 1 / 1;
    width: min(196px, calc(100% - var(--value-hover-x) - var(--value-hover-x))) !important;
    max-width: none !important;
    max-height: none !important;
    align-self: start;
    justify-self: start;
    margin: var(--value-hover-y) var(--value-hover-x) 0 !important;
    opacity: 0;
    overflow: visible;
    pointer-events: none;
    transform: translateY(12px) !important;
    transition: opacity 180ms ease, transform 240ms ease;
    z-index: 1;
  }

  .value-card__hover-title {
    display: block;
    max-width: min(var(--value-hover-title-width, 196px), 100%) !important;
    color: #272727;
    font-size: clamp(17px, 1.8vw, 19px);
    line-height: 1.18;
    letter-spacing: -0.8px;
  }

  .value-card__details {
    width: auto !important;
    max-width: 100% !important;
    margin-top: 12px;
    color: #777;
    opacity: 1;
    font-size: clamp(11px, 1.15vw, 12px);
    line-height: 1.35;
    letter-spacing: -0.45px;
    overflow-wrap: break-word;
  }

  .value-card:hover,
  .value-card:focus,
  .value-card:focus-within {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 265 / 366 !important;
    background: #fff;
    color: #272727;
  }

  .value-card:hover .value-card__title,
  .value-card:focus .value-card__title,
  .value-card:focus-within .value-card__title {
    opacity: 0 !important;
    transform: translateY(-12px) !important;
  }

  .value-card:hover .value-card__hover-content,
  .value-card:focus .value-card__hover-content,
  .value-card:focus-within .value-card__hover-content {
    opacity: 1;
    transform: translateY(0) !important;
    pointer-events: auto;
  }
}

@media (max-width: 860px) {
  .values-grid {
    max-width: 650px;
  }
}

@media (max-width: 560px) {
  .values-grid {
    max-width: 320px;
  }

  .value-card {
    flex-basis: 100%;
    width: 100% !important;
    max-width: 320px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-menu-open,
  .site-header__inner {
    overflow: visible !important;
  }

  .site-header {
    z-index: 1000;
  }

  .site-header__actions {
    z-index: 1001;
  }

  .hero-card {
    gap: 0 !important;
    padding: 10px 10px 28px !important;
  }

  .hero-photo {
    margin-bottom: 14px;
  }

  .hero-title {
    order: 2;
    margin: 0 !important;
    padding: 22px 18px 10px !important;
    border-radius: 20px 20px 0 0 !important;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 14px 34px rgba(80, 17, 0, 0.1);
  }

  .hero-vacancy-cta {
    order: 3;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 22px 18px 22px !important;
    align-self: stretch !important;
    border-radius: 0 0 20px 20px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(80, 17, 0, 0.12);
    display: flex;
    justify-content: center;
  }

  .hero-vacancy-button {
    position: static !important;
    min-height: 44px;
    padding: 0 22px !important;
    transform: none !important;
    background: #ff480e;
    box-shadow: 0 12px 22px rgba(255, 72, 14, 0.22);
  }
}

@media (max-width: 560px) {
  .values .container {
    padding-top: 48px !important;
    padding-bottom: 58px !important;
  }

  .values-grid {
    max-width: min(430px, 100%) !important;
    gap: 16px !important;
  }

  .value-card {
    flex: 0 1 100% !important;
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: auto !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 26px 24px 74px !important;
    display: block !important;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(95, 19, 0, 0.16);
  }

  .value-card--accent {
    background: #ff6333;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .value-card--dark {
    background: #171717;
    color: #fff;
  }

  .value-card--light {
    background: #fff;
    color: #ff480e;
  }

  .value-card__title {
    display: block !important;
    max-width: 100% !important;
    font-size: 27px !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
  }

  .value-card__hover-content {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    margin: 18px 0 0 !important;
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .value-card__hover-title {
    display: none !important;
  }

  .value-card__details {
    width: auto !important;
    max-width: none !important;
    color: currentColor !important;
    opacity: 0.82;
    font-size: 17px !important;
    line-height: 1.45 !important;
    letter-spacing: 0 !important;
  }

  .value-card:hover,
  .value-card:focus,
  .value-card:focus-within {
    aspect-ratio: auto !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .value-card:hover .value-card__title,
  .value-card:focus .value-card__title,
  .value-card:focus-within .value-card__title {
    opacity: 1 !important;
    transform: none !important;
  }

  .value-card:hover .value-card__hover-content,
  .value-card:focus .value-card__hover-content,
  .value-card:focus-within .value-card__hover-content {
    opacity: 1 !important;
    max-height: 900px !important;
    overflow: visible !important;
    transform: none !important;
  }

  .value-card__arrow {
    position: absolute;
    right: 22px !important;
    bottom: 22px !important;
  }
}
