:root {
  --font-main: Tahoma, Verdana, "Segoe UI", Arial, sans-serif;
  --radius: 8px;
  --shell: 1220px;
  --shadow-web: 0 18px 42px rgba(33, 81, 142, 0.18);
  --shadow-dark: 0 18px 46px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-main);
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

section,
#catalog,
#manager {
  scroll-margin-top: 96px;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.theme-web2 {
  color: #1b2b3d;
  background:
    linear-gradient(180deg, #dcecff 0%, #f7fbff 42%, #e9f4ff 100%);
}

.theme-dark {
  color: #d8e9ff;
  background:
    radial-gradient(circle at 50% -12%, rgba(28, 169, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #070b13 0%, #101827 46%, #070b13 100%);
}

.top-strip {
  color: #ffffff;
  font-size: 13px;
}

.theme-web2 .top-strip {
  background: linear-gradient(180deg, #2387dd 0%, #0865b7 48%, #034987 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.theme-dark .top-strip {
  background: #05070c;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
}

.top-strip strong {
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.theme-web2 .site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(224, 240, 255, 0.92));
  border-bottom: 1px solid rgba(55, 113, 176, 0.22);
  box-shadow: 0 8px 22px rgba(44, 89, 150, 0.12);
}

.theme-dark .site-header {
  background: rgba(7, 11, 19, 0.9);
  border-bottom: 1px solid rgba(0, 229, 255, 0.17);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  font-weight: 900;
}

.theme-web2 .brand-mark {
  background: linear-gradient(180deg, #57bdff, #0b64bb 52%, #034482);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 9px 18px rgba(1, 87, 162, 0.24);
}

.theme-dark .brand-mark {
  background: linear-gradient(135deg, #00e5ff, #2365ff);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.36);
}

.brand strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0;
}

.theme-web2 .brand strong {
  color: #083a6b;
  text-shadow: 0 1px 0 #ffffff;
}

.theme-dark .brand strong {
  color: #ffffff;
}

.brand small {
  display: block;
  color: inherit;
  opacity: 0.72;
  font-size: 12px;
}

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

.site-nav a {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.theme-web2 .site-nav a {
  color: #295173;
  background: linear-gradient(180deg, #ffffff, #eaf4ff);
  border: 1px solid rgba(53, 116, 180, 0.18);
  box-shadow: inset 0 1px 0 #ffffff;
}

.theme-dark .site-nav a {
  color: #a9c8e7;
  border: 1px solid rgba(0, 229, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

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

.btn-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 13px;
}

.theme-web2 .btn {
  color: #ffffff;
  background: linear-gradient(180deg, #ffb957 0%, #ff8c18 50%, #d96700 100%);
  border: 1px solid rgba(143, 74, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 8px 18px rgba(198, 88, 0, 0.24);
  text-shadow: 0 1px 1px rgba(89, 45, 0, 0.34);
}

.theme-web2 .btn-primary {
  background: linear-gradient(180deg, #47c7ff 0%, #0b77d8 52%, #055096 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 22px rgba(6, 95, 174, 0.28);
}

.theme-web2 .btn-glass {
  color: #074c88;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(220, 240, 255, 0.82));
  border: 1px solid rgba(58, 120, 190, 0.26);
  text-shadow: none;
}

.theme-dark .btn {
  color: #031016;
  background: linear-gradient(180deg, #7ff6ff, #00d4ff 54%, #0b91de);
  border: 1px solid rgba(0, 229, 255, 0.36);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.26);
}

.theme-dark .btn-glass {
  color: #dffaff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.24);
  box-shadow: none;
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 64px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 34px;
}

.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: 54px;
  line-height: 1.04;
}

.hero-copy p {
  max-width: 680px;
}

.lead {
  font-size: 19px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 5px 10px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.theme-web2 .eyebrow {
  color: #065caa;
  background: linear-gradient(180deg, #ffffff, #dff1ff);
  border: 1px solid rgba(36, 125, 204, 0.2);
  box-shadow: inset 0 1px 0 #ffffff;
}

.theme-dark .eyebrow {
  color: #94f9ff;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.theme-web2 .hero-copy h1,
.theme-web2 h2,
.theme-web2 h3 {
  color: #0f2940;
  text-shadow: 0 1px 0 #ffffff;
}

.theme-dark .hero-copy h1,
.theme-dark h2,
.theme-dark h3 {
  color: #ffffff;
}

.theme-web2 .hero-copy p,
.theme-web2 .section-copy p,
.theme-web2 .manager-text,
.theme-web2 .catalog-note {
  color: #4e6680;
}

.theme-dark .hero-copy p,
.theme-dark .section-copy p,
.theme-dark .manager-text,
.theme-dark .catalog-note {
  color: #aac1d8;
}

.hero-board {
  border-radius: var(--radius);
}

.theme-web2 .hero-board {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(214, 235, 255, 0.84));
  border: 1px solid rgba(42, 116, 190, 0.22);
  box-shadow: var(--shadow-web), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.board-screen {
  padding: 18px;
  border-radius: var(--radius);
  color: #e9f7ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 35%),
    linear-gradient(135deg, #08345f, #0a74ba);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.screen-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.screen-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ef2ff;
}

.screen-row,
.console-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.screen-row:last-child,
.console-line:last-child {
  border-bottom: 0;
}

.screen-row strong {
  font-size: 34px;
}

.glass-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.glass-badges span {
  min-height: 58px;
  padding: 10px;
  border-radius: var(--radius);
  color: #0a4c85;
  background: linear-gradient(180deg, #ffffff, #dff1ff);
  border: 1px solid rgba(54, 116, 180, 0.18);
  box-shadow: inset 0 1px 0 #ffffff;
  font-size: 13px;
  font-weight: 850;
}

.dark-console {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(2, 8, 18, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.24);
  box-shadow: var(--shadow-dark), 0 0 44px rgba(0, 229, 255, 0.08);
}

.console-line strong {
  color: #6ff7ff;
  font-size: 26px;
}

.section {
  padding: 68px 0;
}

.about-layout,
.process-layout,
.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.section-copy h2,
.section-head h2,
.final-cta h2 {
  margin: 12px 0 14px;
  font-size: 36px;
  line-height: 1.1;
}

.work-list,
.panel,
.category-grid article,
.faq-list details,
.final-form {
  border-radius: var(--radius);
}

.theme-web2 .work-list,
.theme-web2 .panel,
.theme-web2 .category-grid article,
.theme-web2 .faq-list details,
.theme-web2 .final-form {
  background: linear-gradient(180deg, #ffffff, #edf6ff);
  border: 1px solid rgba(57, 115, 177, 0.2);
  box-shadow: var(--shadow-web), inset 0 1px 0 #ffffff;
}

.theme-dark .work-list,
.theme-dark .panel,
.theme-dark .category-grid article,
.theme-dark .faq-list details,
.theme-dark .final-form {
  background: rgba(9, 16, 29, 0.92);
  border: 1px solid rgba(0, 229, 255, 0.16);
  box-shadow: var(--shadow-dark);
}

.work-list {
  padding: 22px;
}

.work-list h3 {
  margin: 0 0 14px;
}

.work-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
}

.work-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #05a786;
  font-weight: 900;
}

.catalog-section {
  padding: 30px 0 68px;
}

.catalog-grid {
  display: grid;
  align-items: start;
  gap: 18px;
}

.catalog-grid-web2 {
  grid-template-columns: 300px minmax(0, 1fr) 300px;
}

.catalog-grid-dark {
  grid-template-columns: 300px minmax(0, 1fr) 300px;
}

.manager-card,
.filters-panel {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.manager-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.manager-head img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
}

.manager-head h2,
.manager-head p {
  margin: 0;
}

.manager-head p {
  font-size: 12px;
  opacity: 0.72;
}

.online-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.16);
}

.manager-text {
  margin: 0 0 16px;
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span,
.range-row span {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.72;
}

.field input,
.field textarea,
.range-row input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: var(--radius);
  outline: 0;
  resize: vertical;
}

.theme-web2 .field input,
.theme-web2 .field textarea,
.theme-web2 .range-row input {
  color: #13314d;
  background: linear-gradient(180deg, #ffffff, #eff7ff);
  border: 1px solid rgba(65, 122, 184, 0.24);
  box-shadow: inset 0 1px 2px rgba(14, 63, 117, 0.08);
}

.theme-dark .field input,
.theme-dark .field textarea,
.theme-dark .range-row input {
  color: #e7f8ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.18);
}

.field input:focus,
.field textarea:focus,
.range-row input:focus {
  border-color: #00bfd8;
  box-shadow: 0 0 0 4px rgba(0, 191, 216, 0.12);
}

.panel-title-row,
.catalog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.catalog-head {
  padding: 18px;
  margin-bottom: 12px;
}

.catalog-head h2 {
  margin: 9px 0 0;
  font-size: 34px;
  line-height: 1.05;
}

.catalog-note {
  max-width: 190px;
  font-size: 13px;
  text-align: right;
}

.text-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #0a81d8;
  font-weight: 900;
}

.theme-dark .text-btn {
  color: #6ff7ff;
}

.filter-group {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.filter-group h3 {
  margin: 0;
  font-size: 18px;
}

.chips {
  display: grid;
  gap: 8px;
}

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

.chip {
  min-height: 38px;
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  font-weight: 850;
}

.theme-web2 .chip {
  color: #244f76;
  background: linear-gradient(180deg, #ffffff, #eaf4ff);
  border: 1px solid rgba(65, 122, 184, 0.22);
  box-shadow: inset 0 1px 0 #ffffff;
}

.theme-web2 .chip.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, #47c7ff, #096fc9);
  text-shadow: 0 1px 1px rgba(0, 48, 88, 0.34);
}

.theme-dark .chip {
  color: #bfd8f2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.theme-dark .chip.is-active {
  color: #031016;
  background: linear-gradient(180deg, #9dffff, #00d4ff);
}

.range-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.active-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

button.active-chip {
  cursor: pointer;
}

.theme-web2 .active-chip {
  color: #07589e;
  background: linear-gradient(180deg, #ffffff, #dff1ff);
  border: 1px solid rgba(36, 125, 204, 0.2);
}

.theme-dark .active-chip {
  color: #a8f9ff;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
}

.vacancy-list {
  display: grid;
  gap: 12px;
}

.vacancy-card {
  padding: 18px;
  border-radius: var(--radius);
}

.theme-web2 .vacancy-card {
  background: linear-gradient(180deg, #ffffff, #f3f9ff);
  border: 1px solid rgba(57, 115, 177, 0.18);
  box-shadow: 0 12px 28px rgba(33, 81, 142, 0.1), inset 0 1px 0 #ffffff;
}

.theme-dark .vacancy-card {
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 17, 30, 0.94);
  border: 1px solid rgba(0, 229, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.vacancy-top,
.vacancy-meta,
.vacancy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.vacancy-top {
  margin-bottom: 12px;
}

.vacancy-code,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.theme-web2 .vacancy-code,
.theme-web2 .meta-pill {
  color: #07589e;
  background: linear-gradient(180deg, #ffffff, #dff1ff);
  border: 1px solid rgba(36, 125, 204, 0.18);
}

.theme-dark .vacancy-code,
.theme-dark .meta-pill {
  color: #92f8ff;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.salary {
  font-size: 21px;
  font-weight: 900;
}

.theme-web2 .salary {
  color: #07824f;
}

.theme-dark .salary {
  color: #7fffd4;
}

.vacancy-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.vacancy-card p {
  margin: 12px 0;
}

.vacancy-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.vacancy-details div {
  min-height: 88px;
  padding: 10px;
  border-radius: var(--radius);
}

.theme-web2 .vacancy-details div {
  background: rgba(225, 241, 255, 0.74);
  border: 1px solid rgba(57, 115, 177, 0.12);
}

.theme-dark .vacancy-details div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.vacancy-details dt {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 900;
  opacity: 0.72;
}

.vacancy-details dd {
  margin: 0;
  font-size: 13px;
}

.load-more {
  width: 100%;
  margin-top: 16px;
}

.empty-state {
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}

.is-hidden {
  display: none !important;
}

.section-head {
  max-width: 720px;
  margin-bottom: 22px;
}

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

.category-grid article {
  padding: 20px;
}

.category-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 900;
  opacity: 0.62;
}

.category-grid h3,
.category-grid p {
  margin: 0;
}

.category-grid p {
  margin-top: 9px;
}

.process-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 850;
}

.theme-web2 .process-list li {
  background: linear-gradient(180deg, #ffffff, #edf6ff);
  border: 1px solid rgba(57, 115, 177, 0.18);
}

.theme-dark .process-list li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.12);
}

.process-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(180deg, #47c7ff, #096fc9);
}

.faq-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
}

.final-cta {
  padding: 62px 0;
}

.theme-web2 .final-cta {
  color: #ffffff;
  background: linear-gradient(180deg, #0d7edc, #064f94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.theme-dark .final-cta {
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(35, 101, 255, 0.12)),
    #060a12;
  border-top: 1px solid rgba(0, 229, 255, 0.14);
}

.theme-web2 .final-cta h2,
.theme-web2 .final-cta p {
  color: #ffffff;
  text-shadow: none;
}

.theme-web2 .final-cta .eyebrow {
  color: #064f94;
  text-shadow: none;
}

.final-form {
  padding: 18px;
}

.site-footer {
  padding: 28px 0;
}

.theme-web2 .site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(57, 115, 177, 0.18);
}

.theme-dark .site-footer {
  background: #05070c;
  border-top: 1px solid rgba(0, 229, 255, 0.14);
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.footer-inner p {
  margin: 4px 0 0;
  font-size: 12px;
  opacity: 0.74;
}

.footer-legal {
  text-align: center;
}

.footer-inner a {
  font-weight: 900;
}

.thanks-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 20px;
}

.thanks-card {
  width: min(620px, 100%);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
}

.theme-web2 .thanks-card {
  background: linear-gradient(180deg, #ffffff, #edf6ff);
  border: 1px solid rgba(57, 115, 177, 0.2);
  box-shadow: var(--shadow-web);
}

.theme-dark .thanks-card {
  background: rgba(9, 16, 29, 0.94);
  border: 1px solid rgba(0, 229, 255, 0.16);
  box-shadow: var(--shadow-dark);
}

@media (max-width: 1180px) {
  .catalog-grid-web2,
  .catalog-grid-dark {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .theme-web2 .filters-panel,
  .theme-dark .manager-card {
    position: static;
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .top-strip-inner,
  .header-inner,
  .hero-grid,
  .about-layout,
  .process-layout,
  .faq-layout,
  .final-layout,
  .catalog-grid-web2,
  .catalog-grid-dark,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .top-strip-inner {
    align-items: flex-start;
    padding: 10px 0;
  }

  .header-inner {
    gap: 12px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .manager-card,
  .filters-panel {
    position: static;
  }

  .catalog-head {
    flex-direction: column;
  }

  .catalog-note {
    max-width: none;
    text-align: left;
  }

  .vacancy-details {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .brand small,
  .site-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

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

  .hero {
    padding: 44px 0 26px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .glass-badges,
  .chips-countries,
  .range-row,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .section-copy h2,
  .section-head h2,
  .final-cta h2,
  .catalog-head h2 {
    font-size: 30px;
  }

  .manager-card,
  .filters-panel,
  .catalog-head,
  .vacancy-card,
  .work-list,
  .category-grid article,
  .final-form {
    padding: 16px;
  }

  .vacancy-top,
  .vacancy-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
