:root {
  /* BasePack brandbook (Pantone): 185 C / Cool Gray 2 C / Process Black C */
  --brand: #e83237;
  --brand-dark: #ce2731;
  --brand-light: #f28587;
  --ink: #0d0d0d;
  --muted: #e6e7e8;
  --white: #ffffff;
  --font: "Proxima Nova", Arial, Helvetica, Verdana, sans-serif;
  --font-display: "Proxima Nova", Arial, Helvetica, Verdana, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Simple motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.hero-anim .badge,
.hero-anim h1,
.hero-anim p,
.hero-anim .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s ease forwards;
}

.hero-anim .badge {
  animation-delay: 0.1s;
}

.hero-anim h1 {
  animation-delay: 0.2s;
}

.hero-anim p {
  animation-delay: 0.35s;
}

.hero-anim .btn {
  animation-delay: 0.45s;
}

.vacancy-hero-anim .vacancy-back,
.vacancy-hero-anim .vacancy-tags,
.vacancy-hero-anim h1,
.vacancy-hero-anim .vacancy-salary {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.65s ease forwards;
}

.vacancy-hero-anim .vacancy-back {
  animation-delay: 0.05s;
}

.vacancy-hero-anim .vacancy-tags {
  animation-delay: 0.15s;
}

.vacancy-hero-anim h1 {
  animation-delay: 0.25s;
}

.vacancy-hero-anim .vacancy-salary {
  animation-delay: 0.35s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  transition:
    background-color 0.2s,
    color 0.2s,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

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

  .reveal,
  .hero-anim .badge,
  .hero-anim h1,
  .hero-anim p,
  .hero-anim .btn,
  .vacancy-hero-anim .vacancy-back,
  .vacancy-hero-anim .vacancy-tags,
  .vacancy-hero-anim h1,
  .vacancy-hero-anim .vacancy-salary,
  .btn {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

svg.icon-fill {
  fill: currentColor;
  stroke: none;
}

.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: 44px;
}

.btn--red {
  background: var(--brand);
  color: var(--white);
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
}

.btn--red:hover {
  background: var(--white);
  color: var(--brand);
}

.btn--white {
  background: var(--white);
  color: var(--brand);
  padding: 1rem 1.75rem;
}

.btn--white:hover {
  background: var(--ink);
  color: var(--white);
}

.btn--lg {
  padding: 1rem 1.75rem;
  min-height: 56px;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn--block svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .btn--red:not(.btn--lg):not(.btn--block) {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--white);
  border-bottom: 4px solid var(--brand);
}

.header__inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .header__inner {
    height: 5rem;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  display: block;
  height: 1.375rem;
  width: auto;
}

.logo--lg {
  margin-bottom: 1rem;
}

.logo--lg img {
  height: 2rem;
}

@media (min-width: 640px) {
  .logo img {
    height: 2.5rem;
  }

  .logo--lg img {
    height: 3.25rem;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .header__actions {
    gap: 1.25rem;
  }
}

.header__contacts {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  gap: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  transition:
    color 0.2s,
    border-color 0.2s,
    background-color 0.2s;
}

.header__phone:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.header__phone svg {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--white);
}

.header__phone span {
  display: none;
}

.header__messenger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  transition:
    color 0.2s,
    border-color 0.2s,
    background-color 0.2s;
}

.header__messenger:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.header__messenger svg {
  width: 1.3rem;
  height: 1.3rem;
}

@media (min-width: 640px) {
  .header__contacts {
    gap: 0.625rem;
  }

  .header__phone {
    width: auto;
    height: auto;
    justify-content: flex-start;
    gap: 0.5rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 0.875rem;
  }

  .header__phone:hover {
    color: var(--brand);
    background: transparent;
    border-color: transparent;
  }

  .header__phone svg {
    width: 1rem;
    height: 1rem;
    color: var(--brand);
  }

  .header__phone span {
    display: inline;
  }

  .header__messenger {
    display: flex;
  }
}

.lang {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  padding: 0.375rem 0.625rem;
  font-size: 0.75rem;
}

.lang svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--brand);
}

.lang__active {
  font-weight: 700;
}

.lang__sep {
  color: rgba(255, 255, 255, 0.3);
}

.lang__inactive {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

@media (min-width: 640px) {
  .lang {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero {
    min-height: 640px;
  }
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  background: linear-gradient(
    to right,
    #0d0d0d,
    rgba(13, 13, 13, 0.88),
    rgba(13, 13, 13, 0.45)
  );
}

@media (min-width: 768px) {
  .hero__bg {
    background-position: 70% center;
  }

  .hero__overlay {
    background: linear-gradient(
      to right,
      rgba(13, 13, 13, 0.96) 0%,
      rgba(13, 13, 13, 0.78) 32%,
      rgba(13, 13, 13, 0.28) 62%,
      rgba(13, 13, 13, 0.08) 100%
    );
  }
}

.hero__slash {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: var(--brand);
  clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 100%);
}

.hero__content {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

@media (min-width: 640px) {
  .hero__content {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}

.badge {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin: 0 0 1.5rem;
}

.hero h1 span {
  color: var(--brand);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero__text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 32rem;
  margin: 0 0 2rem;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .hero__text p {
    font-size: 1.125rem;
  }
}

/* Stats */
.stats {
  background: var(--white);
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .stats {
    padding: 5rem 0;
  }
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats__item {
  text-align: center;
}

.stats__value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .stats__value {
    font-size: 3rem;
  }
}

.stats__label {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 500;
}

/* Sections */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--ink);
  margin: 0.5rem 0 0;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.section-head h2 span {
  color: var(--brand);
}

.section-head--light h2 {
  color: var(--white);
}

@media (min-width: 640px) {
  .section-head h2 {
    font-size: 3rem;
  }
}

.section-lead {
  text-align: center;
  color: rgba(26, 26, 26, 0.7);
  max-width: 42rem;
  margin: -2rem auto 3rem;
  line-height: 1.6;
}

/* Benefits */
.benefits {
  background: var(--white);
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .benefits {
    padding: 6rem 0;
  }
}

.benefits__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-top: 4px solid var(--brand);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card__icon {
  width: 3rem;
  height: 3rem;
  background: rgba(226, 35, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background-color 0.2s;
}

.benefit-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand);
  transition: color 0.2s;
}

.benefit-card:hover .benefit-card__icon {
  background: var(--brand);
}

.benefit-card:hover .benefit-card__icon svg {
  color: var(--white);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 800;
}

.benefit-card p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.625;
}

/* Vacancies */
.vacancies {
  background: var(--muted);
  padding: 4rem 0;
  scroll-margin-top: 5rem;
}

@media (min-width: 640px) {
  .vacancies {
    padding: 6rem 0;
  }
}

.vacancies__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .vacancies__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vacancies__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vacancy-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vacancy-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vacancy-card__salary {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--brand);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.vacancy-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0.75rem 0 0.75rem;
  color: var(--ink);
  line-height: 1.25;
  padding-right: 0.5rem;
  font-weight: 800;
}

@media (min-width: 640px) {
  .vacancy-card h3 {
    font-size: 1.25rem;
  }
}

.vacancy-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 1rem;
}

.vacancy-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.vacancy-card__meta svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}

.vacancy-card__desc {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.7);
  margin: 0 0 1.25rem;
  flex: 1;
  line-height: 1.625;
}

.vacancy-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  padding: 0.875rem 1.25rem;
  min-height: 44px;
  transition: background-color 0.2s;
}

.vacancy-card__link:hover {
  background: var(--brand);
}

.vacancy-card__link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.vacancy-card__link:hover svg {
  transform: translateX(0.25rem);
}

/* Steps */
.steps {
  position: relative;
  background: var(--muted);
  color: var(--ink);
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .steps {
    padding: 6rem 0;
  }
}

.steps__grid {
  display: grid;
  gap: 0.75rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .steps__grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
  }
}

.step-card {
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  background: var(--white);
  padding: 2rem;
  text-align: center;
}

.step-card__n {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  font-weight: 800;
  color: var(--ink);
}

.step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
  line-height: 1.625;
}

.steps__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  padding: 0.25rem 0;
}

.steps__arrow svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: steps-arrow-x 1.4s ease-in-out infinite;
}

/* Mobile: arrows point down between stacked cards */
@media (max-width: 767px) {
  .steps__arrow svg {
    transform: rotate(90deg);
    animation-name: steps-arrow-y;
  }
}

@keyframes steps-arrow-x {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.55;
  }
  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

@keyframes steps-arrow-y {
  0%,
  100% {
    transform: rotate(90deg) translateX(0);
    opacity: 0.55;
  }
  50% {
    transform: rotate(90deg) translateX(6px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .steps__arrow svg {
    animation: none;
    opacity: 0.8;
  }
}

/* Reviews */
.reviews {
  background: var(--white);
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .reviews {
    padding: 6rem 0;
  }
}

.reviews__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--muted);
  border-left: 4px solid var(--brand);
  padding: 1.5rem;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--white);
  border: 2px solid var(--ink);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.review-card__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__name {
  font-weight: 700;
  color: var(--ink);
}

.review-card__role {
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.review-card p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.625;
  font-style: italic;
}

/* CTA */
.cta {
  background: var(--brand);
  color: var(--white);
  padding: 3rem 0;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 900;
}

@media (min-width: 640px) {
  .cta__inner {
    flex-direction: row;
    text-align: left;
  }

  .cta h2 {
    font-size: 1.875rem;
  }
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__about {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0 0 1.25rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.footer__socials a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: background-color 0.2s, border-color 0.2s;
}

.footer__socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.footer__socials svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.footer__phone-row {
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.footer__messengers {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: 0.25rem;
}

.footer__messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  transition:
    border-color 0.2s,
    background-color 0.2s,
    color 0.2s;
}

.footer__messenger:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer__messenger svg,
.footer__contacts .footer__messenger svg {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--white);
  fill: currentColor;
  stroke: none;
}

.footer__contacts .footer__messenger:hover {
  color: var(--white);
}

.footer__contacts .footer__messengers {
  color: var(--white);
}

.footer h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 1rem;
  font-weight: 800;
}

.footer__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__contacts li:last-child {
  align-items: flex-start;
}

.footer__contacts svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
  flex-shrink: 0;
}

.footer__contacts li:last-child svg {
  margin-top: 0.125rem;
}

.footer__contacts a {
  transition: color 0.2s;
}

.footer__contacts a:hover {
  color: var(--brand);
}

.footer__contacts span {
  color: rgba(255, 255, 255, 0.7);
}

.apply-form {
  display: grid;
  gap: 0.75rem;
}

.apply-form input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--white);
  min-height: 44px;
  outline: none;
  transition: border-color 0.2s;
}

.apply-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.apply-form input:focus {
  border-color: var(--brand);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-message {
  font-size: 0.875rem;
  line-height: 1.4;
  padding: 0.75rem 1rem;
  margin-top: 0.25rem;
}

.form-message--success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #bbf7d0;
}

.form-message--error {
  background: rgba(232, 50, 55, 0.15);
  border: 1px solid rgba(232, 50, 55, 0.5);
  color: #fecaca;
}

.benefit-card__icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__lang {
  display: flex;
}

@media (min-width: 640px) {
  .footer__lang {
    display: none;
  }
}

.footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* Vacancy page */
.vacancy-hero {
  background: var(--brand);
  color: var(--white);
  padding: 3.5rem 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .vacancy-hero {
    padding: 5rem 0;
  }
}

.vacancy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.vacancy-back:hover {
  color: var(--white);
}

.vacancy-back svg {
  width: 1rem;
  height: 1rem;
}

.vacancy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.vacancy-tags span {
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 0.375rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.vacancy-tags svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--brand);
}

.vacancy-hero h1 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

@media (min-width: 640px) {
  .vacancy-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .vacancy-hero h1 {
    font-size: 3.75rem;
  }
}

.vacancy-salary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.vacancy-salary svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 640px) {
  .vacancy-salary {
    font-size: 1.5rem;
  }
}

.vacancy-body {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .vacancy-body {
    padding: 5rem 0;
  }
}

.vacancy-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .vacancy-layout {
    grid-template-columns: 3fr 2fr;
  }
}

.vacancy-main {
  display: grid;
  gap: 2.5rem;
}

.vacancy-intro {
  background: var(--muted);
  border-left: 4px solid var(--brand);
  padding: 1.25rem;
}

.vacancy-intro p {
  margin: 0;
  color: rgba(26, 26, 26, 0.8);
  line-height: 1.625;
}

.vacancy-main h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

@media (min-width: 640px) {
  .vacancy-main h2 {
    font-size: 1.875rem;
  }
}

.vacancy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.vacancy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(26, 26, 26, 0.8);
  line-height: 1.625;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.375rem;
  flex-shrink: 0;
}

.dot--red {
  background: var(--brand);
}

.dot--dark {
  background: var(--ink);
}

.vacancy-offer {
  background: var(--muted);
  border: 3px solid var(--ink);
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
}

.seal {
  width: 6rem;
  height: 6rem;
  color: var(--ink);
  margin: 0 auto 1rem;
  position: relative;
}

.seal__ring {
  width: 100%;
  height: 100%;
  animation: seal-spin 20s linear infinite;
}

.seal text {
  fill: currentColor;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-family: Arial, Helvetica, sans-serif;
}

.seal__bp {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  pointer-events: none;
}

@keyframes seal-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.vacancy-offer h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.vacancy-offers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.vacancy-offers li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.vacancy-offers svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.vacancy-offers span {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.8);
  line-height: 1.625;
}

.vacancy-offer__btn {
  margin-top: 1.5rem;
  padding: 0.875rem 1.25rem;
}

.vacancy-offer__btn:hover {
  background: var(--ink);
  color: var(--white);
}

.vacancy-apply {
  background: var(--ink);
  color: var(--white);
  padding: 4rem 0;
  scroll-margin-top: 5rem;
}

@media (min-width: 640px) {
  .vacancy-apply {
    padding: 5rem 0;
  }
}

.vacancy-apply__inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .vacancy-apply__inner {
    padding: 0 1.5rem;
  }
}

.vacancy-apply .section-head {
  margin-bottom: 2.5rem;
}

.vacancy-apply__lead {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
}

.vacancy-form {
  display: grid;
  gap: 1rem;
}

.vacancy-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.vacancy-form input[type='text'],
.vacancy-form input[type='tel'] {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--white);
  min-height: 44px;
  outline: none;
  transition: border-color 0.2s;
}

.vacancy-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.vacancy-form input:focus {
  border-color: var(--brand);
}

.file-field {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  padding: 0.875rem 1rem;
  cursor: pointer;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  transition: border-color 0.2s;
  margin-bottom: 0 !important;
}

.file-field:hover {
  border-color: var(--brand);
}

.file-field svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand);
}

.file-field input {
  display: none;
}

.vacancy-form .btn--white:hover {
  background: var(--brand);
  color: var(--white);
}

.related {
  background: var(--white);
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .related {
    padding: 5rem 0;
  }
}

.related__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0 0 2rem;
}

.related__title span {
  color: var(--brand);
}

@media (min-width: 640px) {
  .related__title {
    font-size: 1.875rem;
  }
}

/* Floating sticker widget */
.sticker-widget {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}

@media (min-width: 640px) {
  .sticker-widget {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

.sticker-widget__toggle {
  pointer-events: auto;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 1.25rem;
  animation: sticker-float 3s ease-in-out infinite;
  transition: transform 0.25s ease;
}

@media (min-width: 640px) {
  .sticker-widget__toggle {
    width: 9rem;
    height: 9rem;
  }
}

.sticker-widget.is-open .sticker-widget__toggle {
  animation: none;
  transform: scale(1.05);
}

.sticker-widget__anim {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 18px rgba(13, 13, 13, 0.28));
}

.sticker-widget__anim svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.sticker-widget__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--brand);
  line-height: 1;
}

.sticker-widget__panel {
  pointer-events: auto;
  width: min(16.5rem, calc(100vw - 2rem));
  background: var(--white);
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(13, 13, 13, 0.18);
}

.sticker-widget__panel[hidden] {
  display: none;
}

.sticker-widget__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.sticker-widget__cta {
  margin-bottom: 0.625rem;
}

.sticker-widget__phone {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}

.sticker-widget__phone:hover {
  color: var(--brand);
}

.sticker-widget__messengers {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.sticker-widget__messengers a {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand);
  transition: opacity 0.2s;
}

.sticker-widget__messengers a:hover {
  opacity: 0.75;
}

.sticker-widget__socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.sticker-widget__socials a {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: background-color 0.2s, border-color 0.2s;
}

.sticker-widget__socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
  opacity: 1;
}

.sticker-widget__socials svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

@keyframes sticker-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticker-widget__toggle {
    animation: none;
  }
}
