/* Base reset (single-class only, BEM, longhand) */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1a2540;
  background-color: #fcfcfd;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border-width: 0;
  background-color: transparent;
  color: inherit;
}

/* ===== LAYOUT ===== */
.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fcfcfd;
  color: #1a2540;
}

.container {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.container--narrow {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.container--mid {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(252, 252, 253, 0.92);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e5e7eb;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.brand__logo-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.brand__name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2px;
}

.nav-desktop__link {
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  border-radius: 6px;
  transition-property: color, background-color;
  transition-duration: 0.15s;
}

.nav-desktop__link:hover {
  color: #2a4ec8;
  background-color: #f1f5f9;
}

.nav-desktop__link--active {
  color: #2a4ec8;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 18px -8px rgba(42, 78, 200, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  flex-shrink: 0;
}

.menu-toggle__icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav-mobile {
  display: none;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e5e7eb;
  background-color: rgba(252, 252, 253, 0.98);
}

.nav-mobile--open {
  display: block;
}

.nav-mobile__inner {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  display: grid;
  grid-row-gap: 4px;
}

.nav-mobile__link {
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2d3748;
  border-radius: 6px;
}

.nav-mobile__link:hover {
  background-color: #f1f5f9;
}

.nav-mobile__phone {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

/* ===== MAIN ===== */
.main {
  flex-grow: 1;
  width: 100%;
}

.page {
  display: none;
}

.page--active {
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(20, 30, 70, 0.88), rgba(40, 60, 140, 0.75));
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-right: 16px;
  padding-bottom: 80px;
  padding-left: 16px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 4px;
  padding-right: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 500;
}

.hero__title {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero__subtitle {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-right: 22px;
  padding-bottom: 12px;
  padding-left: 22px;
  border-radius: 8px;
  background-color: #ffffff;
  color: #2a4ec8;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px -8px rgba(42, 78, 200, 0.45);
  transition-property: transform;
  transition-duration: 0.15s;
}

.btn-primary:hover {
  transform: scale(1.02);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-right: 22px;
  padding-bottom: 12px;
  padding-left: 22px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.35);
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition-property: background-color;
  transition-duration: 0.15s;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-right: 22px;
  padding-bottom: 12px;
  padding-left: 22px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px -8px rgba(42, 78, 200, 0.5);
  transition-property: transform;
  transition-duration: 0.15s;
}

.btn-gradient:hover {
  transform: scale(1.02);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e5e7eb;
  background-image: linear-gradient(135deg, #1c2e6e, #3956c4);
}

.page-hero__inner {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 64px;
  padding-right: 16px;
  padding-bottom: 64px;
  padding-left: 16px;
}

.page-hero__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.page-hero__subtitle {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}

/* ===== SECTIONS ===== */
.section {
  width: 100%;
}

.section__inner {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56px;
  padding-right: 16px;
  padding-bottom: 56px;
  padding-left: 16px;
}

.section--alt {
  background-color: #f3f5fa;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e5e7eb;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e5e7eb;
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

.section__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section__lead {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}

/* ===== CARDS / GRID ===== */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

.grid--2 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

.grid--3 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

.grid--4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
}

.card {
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(42, 78, 200, 0.18);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  margin-bottom: 16px;
}

.card__icon-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.card__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
}

.card__text {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #4a5568;
}

.card__list {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 0;
}

.card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-top: 6px;
  color: #2d3748;
}

.card__check {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  color: #2a4ec8;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  text-align: center;
}

.stats__item {
  padding-top: 8px;
  padding-bottom: 8px;
}

.stats__num {
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.stats__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #4a5568;
}

/* ===== TESTIMONIALS ===== */
.review {
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
}

.review__quote {
  width: 24px;
  height: 24px;
  color: #2a4ec8;
  fill: currentColor;
}

.review__text {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}

.review__stars {
  margin-top: 16px;
  display: flex;
  gap: 2px;
  color: #2a4ec8;
}

.review__star {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review__author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  object-fit: cover;
}

.review__name {
  font-size: 14px;
  font-weight: 600;
}

.review__role {
  font-size: 12px;
  color: #4a5568;
  margin-top: 2px;
}

/* ===== FAQ / ACCORDION ===== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion__item {
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
}

.accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.accordion__toggle {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background-color: #f1f5f9;
  color: #2a4ec8;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  transition-property: transform;
  transition-duration: 0.2s;
}

.accordion__item--open .accordion__toggle {
  transform: rotate(45deg);
}

/* descendant selector for nested toggle state allowed only here for the open variant — avoid by using JS to toggle a sibling class */
.accordion__body {
  display: none;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
}

.accordion__body--open {
  display: block;
}

/* ===== VACANCY ===== */
.vacancy-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  margin-bottom: 20px;
}

.vacancy-search {
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 36px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  font-size: 14px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px 16px;
}

.vacancy-sort {
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  font-size: 14px;
  background-color: #ffffff;
}

.vacancy-count {
  font-size: 13px;
  color: #4a5568;
  margin-bottom: 12px;
}

.vacancy {
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  overflow: hidden;
  margin-bottom: 12px;
}

.vacancy__head {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  cursor: pointer;
}

.vacancy__title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
}

.vacancy__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #4a5568;
}

.vacancy__chevron {
  width: 20px;
  height: 20px;
  color: #4a5568;
  flex-shrink: 0;
  transition-property: transform;
  transition-duration: 0.2s;
}

.vacancy--open .vacancy__chevron {
  transform: rotate(180deg);
}

.vacancy__body {
  display: none;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e5e7eb;
}

.vacancy__body--open {
  display: block;
}

.vacancy__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  margin-top: 0;
  margin-bottom: 16px;
}

.vacancy__cols {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

.vacancy__subtitle {
  font-size: 13px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
}

.vacancy__list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.vacancy__list-item {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.55;
  margin-top: 6px;
  padding-left: 14px;
  position: relative;
}

.vacancy__plus {
  margin-top: 16px;
  padding-top: 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e5e7eb;
}

.vacancy__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.vacancy__chip {
  font-size: 12px;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  border-radius: 9999px;
  background-color: #f1f5f9;
  color: #2d3748;
}

.vacancy__cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.form {
  display: grid;
  grid-gap: 14px;
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.form__label {
  font-size: 13px;
  font-weight: 500;
  color: #2d3748;
  display: block;
  margin-bottom: 6px;
}

.form__input {
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  font-size: 14px;
  font-family: inherit;
  background-color: #ffffff;
  color: #1a2540;
}

.form__input:focus {
  outline-width: 2px;
  outline-style: solid;
  outline-color: #2a4ec8;
  outline-offset: 0;
}

.form__textarea {
  width: 100%;
  min-height: 120px;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
}

.form__consent {
  font-size: 12px;
  color: #4a5568;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
}

.form__error {
  color: #c8201f;
  font-size: 12px;
  margin-top: 4px;
}

.form__success {
  color: #157a3c;
  font-size: 14px;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* ===== CONTACT CARDS ===== */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-bottom: 12px;
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  flex-shrink: 0;
}

.contact-card__icon-svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-card__label {
  font-size: 12px;
  color: #4a5568;
}

.contact-card__value {
  font-size: 16px;
  font-weight: 600;
  margin-top: 2px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  border-radius: 24px;
  padding-top: 36px;
  padding-right: 24px;
  padding-bottom: 36px;
  padding-left: 24px;
  text-align: center;
  background-image: linear-gradient(135deg, #1c2e6e, #3956c4);
  color: #ffffff;
}

.cta-banner__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-banner__text {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* ===== STEPS / PROCESS ===== */
.step {
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  margin-bottom: 16px;
}

.step__badge {
  font-size: 11px;
  font-weight: 700;
  color: #2a4ec8;
  letter-spacing: 0.05em;
}

.step__time {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  padding-top: 3px;
  padding-right: 10px;
  padding-bottom: 3px;
  padding-left: 10px;
  border-radius: 9999px;
  background-color: #f1f5f9;
  color: #4a5568;
}

.step__title {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.step__text {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.55;
}

.step__chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.step__chip {
  font-size: 11px;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
}

/* ===== CASE ===== */
.case {
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  margin-bottom: 16px;
}

.case__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2a4ec8;
  background-color: rgba(42, 78, 200, 0.1);
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.case__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.case__cols {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  margin-top: 16px;
}

.case__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4a5568;
  margin-bottom: 6px;
}

.case__para {
  font-size: 14px;
  line-height: 1.55;
  color: #2d3748;
  margin: 0;
}

.case__results {
  margin-top: 20px;
  padding-top: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e5e7eb;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 12px;
  text-align: center;
}

.case__result-num {
  font-size: 20px;
  font-weight: 700;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.case__result-label {
  font-size: 11px;
  color: #4a5568;
  margin-top: 4px;
}

/* ===== LEGAL PAGE ===== */
.legal {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56px;
  padding-right: 16px;
  padding-bottom: 56px;
  padding-left: 16px;
}

.legal__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 8px;
}

.legal__date {
  font-size: 13px;
  color: #4a5568;
  margin-top: 0;
  margin-bottom: 24px;
}

.legal__h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal__p {
  font-size: 15px;
  line-height: 1.65;
  color: #4a5568;
  margin-top: 0;
  margin-bottom: 0;
}

/* ===== ABOUT REQUISITES ===== */
.requisites {
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}

.requisites__title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 600;
}

.requisites__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-gap: 12px;
  padding-top: 0;
  padding-bottom: 12px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e5e7eb;
  margin-top: 12px;
}

.requisites__row--last {
  border-bottom-width: 0;
}

.requisites__key {
  font-size: 13px;
  color: #4a5568;
}

.requisites__val {
  font-size: 14px;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 64px;
  background-color: #f3f5fa;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e5e7eb;
}

.footer__inner {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 48px;
  padding-right: 16px;
  padding-bottom: 32px;
  padding-left: 16px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__brand-logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.footer__brand-name {
  font-weight: 600;
}

.footer__about {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.55;
  margin: 0;
}

.footer__req {
  font-size: 12px;
  color: #4a5568;
  margin-top: 8px;
}

.footer__title {
  font-size: 14px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
}

.footer__list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  grid-gap: 8px;
}

.footer__link {
  font-size: 14px;
  color: #4a5568;
  transition-property: color;
  transition-duration: 0.15s;
}

.footer__link:hover {
  color: #2a4ec8;
}

.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4a5568;
}

.footer__legal-title {
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px;
}

.footer__copyright {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e5e7eb;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 12px;
  color: #4a5568;
}

/* ===== CHAT ===== */
.chat-bubble {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 8px;
  border-radius: 9999px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  box-shadow: 0 12px 30px -8px rgba(42, 78, 200, 0.45);
  transition-property: transform;
  transition-duration: 0.15s;
}

.chat-bubble:hover {
  transform: scale(1.05);
}

.chat-bubble--hidden {
  display: none;
}

.chat-bubble__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
}

.chat-bubble__text {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.chat-bubble__small {
  font-size: 11px;
  opacity: 0.9;
}

.chat-bubble__title {
  font-size: 13px;
  font-weight: 600;
}

.chat-bubble__dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: #22c55e;
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
}

.chat-panel {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: calc(100vw - 32px);
  max-width: 380px;
  height: 540px;
  max-height: calc(100vh - 96px);
  border-radius: 20px;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  box-shadow: 0 16px 40px -8px rgba(42, 78, 200, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-panel--hidden {
  display: none;
}

.chat-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
}

.chat-panel__person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-panel__avatar {
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  object-fit: cover;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.6);
}

.chat-panel__name {
  font-size: 14px;
  font-weight: 600;
}

.chat-panel__role {
  font-size: 11px;
  opacity: 0.9;
}

.chat-panel__close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  color: #ffffff;
  transition-property: background-color;
  transition-duration: 0.15s;
}

.chat-panel__close:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.chat-panel__close-svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.chat-panel__body {
  flex-grow: 1;
  overflow-y: auto;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  background-color: #f3f5fa;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg-bot {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: flex-end;
}

.chat-msg-bot__avatar {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}

.chat-msg-bot__bubble {
  max-width: 78%;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 16px;
  padding-top: 8px;
  padding-right: 14px;
  padding-bottom: 8px;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.4;
}

.chat-msg-bot__time {
  font-size: 10px;
  color: #4a5568;
  margin-top: 4px;
}

.chat-msg-user {
  display: flex;
  justify-content: flex-end;
}

.chat-msg-user__bubble {
  max-width: 78%;
  background-color: #2a4ec8;
  color: #ffffff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 4px;
  padding-top: 8px;
  padding-right: 14px;
  padding-bottom: 8px;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.4;
}

.chat-msg-user__time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.chat-panel__form {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e5e7eb;
  background-color: #ffffff;
}

.chat-panel__input {
  flex-grow: 1;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  padding-top: 8px;
  padding-right: 14px;
  padding-bottom: 8px;
  padding-left: 14px;
  font-size: 13px;
  font-family: inherit;
  background-color: #fcfcfd;
}

.chat-panel__send {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  flex-shrink: 0;
}

.chat-panel__send-svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ===== COOKIE BANNER ===== */
.cookie {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  border-radius: 16px;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.18);
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cookie--hidden {
  display: none;
}

.cookie__text {
  font-size: 13px;
  line-height: 1.5;
  color: #2d3748;
  margin: 0;
}

.cookie__link {
  color: #2a4ec8;
  text-decoration: underline;
}

.cookie__actions {
  display: flex;
  gap: 8px;
}

.cookie__accept {
  flex-grow: 1;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, #2a4ec8, #5b7cef);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.cookie__decline {
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  font-size: 13px;
  font-weight: 600;
  color: #2d3748;
  background-color: #ffffff;
}

/* ===== TABLET ===== */
@media (min-width: 640px) {
  .hero__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .hero__title { font-size: 44px; }
  .hero__subtitle { font-size: 17px; }
  .page-hero__inner { padding-top: 96px; padding-bottom: 96px; }
  .page-hero__title { font-size: 40px; }
  .section__title { font-size: 32px; }
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .stats__num { font-size: 44px; }
  .vacancy-controls { flex-direction: row; }
  .vacancy-controls .vacancy-search-wrap { flex-grow: 1; }
  .vacancy__cols { grid-template-columns: 1fr 1fr; }
  .case__cols { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .cookie { flex-direction: row; align-items: center; }
  .cookie__actions { flex-shrink: 0; }
  .form__submit { width: auto; }
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header__phone { display: inline-flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .grid--3 { grid-template-columns: 1fr 1fr 1fr; }
  .chat-bubble__text { display: flex; }
  .hero__title { font-size: 56px; }
  .page-hero__title { font-size: 48px; }
  .section__title { font-size: 38px; }
  .cookie { left: auto; right: 24px; max-width: 460px; }
}
