/* ===========================================================
   Anketa-me.ru — redesign / design system
   Mobile-first. Blue-green "trust" palette. Onest type.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700;800&display=swap');

:root {
  /* Surfaces */
  --bg:        #ffffff;
  --bg-soft:   #f3f6f6;
  --bg-cool:   #eef4f3;
  --card:      #ffffff;

  /* Ink */
  --ink:       #0d1c1b;
  --ink-2:     #4a5d5b;
  --ink-3:     #7d908d;
  --line:      #e4ecea;
  --line-2:    #d3dedc;

  /* Brand — blue-green trust */
  --brand:       #0aa18c;
  --brand-600:   #0a8d7b;
  --brand-700:   #086b5e;
  --brand-deep:  #0a3433;   /* near-black teal for headers */
  --brand-soft:  #e6f4f1;
  --brand-tint:  #f0f8f6;

  /* Money / success */
  --money:      #14894e;
  --money-soft: #e7f5ed;

  /* Urgency */
  --urgent:      #d9480f;
  --urgent-soft: #fdede4;

  /* Verify accent (cool blue) */
  --verify:      #1f6fd6;
  --verify-soft: #e9f1fc;

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Shadow */
  --sh-1: 0 1px 2px rgba(10,52,51,.05), 0 1px 3px rgba(10,52,51,.04);
  --sh-2: 0 4px 16px rgba(10,52,51,.07), 0 1px 4px rgba(10,52,51,.05);
  --sh-3: 0 12px 36px rgba(10,52,51,.12), 0 3px 10px rgba(10,52,51,.06);
  --sh-cta: 0 6px 18px rgba(10,161,140,.30);

  --maxw: 1080px;
  --gut: 16px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Onest', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg-soft);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01";
}
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 12px; height: 56px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; letter-spacing: -0.03em; color: var(--brand-deep); }
.logo__mark {
  width: 28px; height: 28px; border-radius: 7px; flex: none; display: block;
  box-shadow: 0 1px 4px rgba(10,52,51,.18);
}
.hdr__spacer { flex: 1; }
.city-btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 38px; padding: 0 12px; border-radius: var(--r-pill);
  background: var(--brand-soft); color: var(--brand-700);
  font-weight: 600; font-size: 14px; white-space: nowrap; max-width: 46vw;
}
.city-btn b { font-weight: 700; overflow: hidden; text-overflow: ellipsis; }
.city-btn svg { flex: none; }
.hdr__tg { display: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(120% 90% at 85% -10%, #0c4543 0%, transparent 55%),
    linear-gradient(168deg, var(--brand-deep) 0%, #0b3f3c 60%, #0a3433 100%);
  color: #eafaf6;
  padding: 26px 0 26px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -60px; top: -40px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(10,161,140,.45), transparent 65%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(10,161,140,.18); color: #7ff0db;
  border: 1px solid rgba(125,240,219,.28);
  padding: 5px 12px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600; letter-spacing: .01em;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #2be0bd; box-shadow: 0 0 0 4px rgba(43,224,189,.22); }
.hero h1 { font-size: clamp(27px, 8vw, 44px); margin: 14px 0 10px; color: #fff; }
.hero h1 em { font-style: normal; color: #5ef0d0; }
.hero__sub { font-size: 15.5px; color: #b9d6cf; max-width: 30em; }

.hero__search {
  margin-top: 18px; background: #fff; border-radius: var(--r-lg);
  padding: 8px; box-shadow: var(--sh-3); display: flex; flex-direction: column; gap: 8px;
}
.search-field { display: flex; align-items: center; gap: 10px; padding: 0 12px; height: 50px; color: var(--ink); }
.search-field svg { flex: none; color: var(--ink-3); }
.search-field input {
  flex: 1; border: none; outline: none; font-family: inherit; font-size: 16px; color: var(--ink); background: none; min-width: 0;
}
.search-field input::placeholder { color: var(--ink-3); }
.btn-search {
  height: 50px; border-radius: var(--r-md); background: var(--brand); color: #fff;
  font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--sh-cta); transition: background .15s, transform .1s;
}
.btn-search:active { transform: translateY(1px); }

.hero__stats { display: flex; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
.stat b { display: block; font-size: 19px; font-weight: 800; color: #fff; }
.stat span { font-size: 12.5px; color: #9fc4bc; }

/* ---------- Chips (profession filter) ---------- */
.chips {
  display: flex; gap: 8px; overflow-x: auto; padding: 14px var(--gut); margin: 0 calc(-1 * var(--gut));
  -ms-overflow-style: none; scrollbar-width: none; scroll-snap-type: x proximity;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; height: 40px; padding: 0 16px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line-2); color: var(--ink-2);
  font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 7px;
  transition: all .14s; scroll-snap-align: start;
}
.chip[aria-pressed="true"] { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; }
.chip .cnt { font-size: 12px; opacity: .6; font-weight: 600; }

/* ---------- Section ---------- */
.section { padding: 24px 0; }
.section__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.section__head h2 { font-size: clamp(20px, 5.2vw, 28px); color: var(--brand-deep); }
.section__head .muted { font-size: 13.5px; color: var(--ink-3); font-weight: 500; }
.live { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--money); white-space: nowrap; flex: none; }
.live .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--money); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(20,137,78,.4)} 70%{box-shadow:0 0 0 7px rgba(20,137,78,0)} 100%{box-shadow:0 0 0 0 rgba(20,137,78,0)} }

/* ---------- Vacancy card (the conversion unit) ---------- */
.feed { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 16px; }

.vac {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 16px; box-shadow: var(--sh-1); position: relative;
  transition: box-shadow .18s, transform .12s, border-color .18s; cursor: pointer;
  display: flex; flex-direction: column; gap: 13px;
}
.vac:hover { box-shadow: var(--sh-2); border-color: var(--line-2); }
.vac:active { transform: scale(.995); }

.vac__top { display: flex; align-items: center; gap: 12px; }
.emblem {
  width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 19px; letter-spacing: -.02em;
}
.vac__titles { min-width: 0; flex: 1; }
.vac__emp { font-size: 12.5px; color: var(--ink-3); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.vac__emp .verify { color: var(--verify); display: inline-flex; }
.vac__role { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-top: 1px; }

.pay { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pay__amt { font-size: 25px; font-weight: 800; color: var(--money); letter-spacing: -.03em; }
.pay__per { font-size: 13px; color: var(--ink-3); font-weight: 600; white-space: nowrap; }

.badges { display: flex; flex-wrap: wrap; gap: 7px; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: var(--r-pill); font-size: 12.5px; font-weight: 600;
  background: var(--bg-cool); color: var(--ink-2); border: 1px solid transparent;
}
.badge svg { flex: none; }
.badge--verify { background: var(--verify-soft); color: var(--verify); }
.badge--money  { background: var(--money-soft);  color: var(--money); }
.badge--exp    { background: var(--brand-soft);  color: var(--brand-700); }

.urgency {
  display: flex; align-items: center; gap: 8px;
  background: var(--urgent-soft); border-radius: var(--r-sm); padding: 8px 11px;
  font-size: 13px; font-weight: 600; color: var(--urgent);
}
.urgency .flame { flex: none; }
.urgency .seats { margin-left: auto; font-variant-numeric: tabular-nums; white-space: nowrap; }
.seatbar { height: 5px; border-radius: 3px; background: rgba(217,72,15,.18); overflow: hidden; flex: 1; max-width: 120px; }
.seatbar i { display: block; height: 100%; background: var(--urgent); border-radius: 3px; }

.vac__cta {
  width: 100%; height: 52px; border-radius: var(--r-md); background: var(--brand); color: #fff;
  font-size: 16.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: var(--sh-cta); transition: background .15s, transform .1s, box-shadow .15s;
}
.vac__cta:hover { background: var(--brand-600); }
.vac__cta:active { transform: translateY(1px); box-shadow: 0 3px 10px rgba(10,161,140,.3); }
.vac__cta svg { transition: transform .18s; }
.vac:hover .vac__cta svg { transform: translateX(3px); }

.vac__foot { display: flex; align-items: center; justify-content: space-between; margin-top: -2px; }
.vac__resp { font-size: 12.5px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.avatars { display: flex; }
.avatars i { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #fff; margin-left: -7px; background: var(--bg-cool); display: inline-block; }
.avatars i:first-child { margin-left: 0; }
.vac__all { font-size: 12.5px; color: var(--brand-700); font-weight: 600; }

.feed__more { margin: 18px 0 0; }
.btn-ghost {
  width: 100%; height: 50px; border-radius: var(--r-md); background: #fff;
  border: 1.5px solid var(--line-2); color: var(--brand-deep); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center; gap: 8px; transition: border-color .15s;
}
.btn-ghost:hover { border-color: var(--brand); }

/* ---------- Trust strip ---------- */
.trustbar { background: var(--brand-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trustbar__in { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 12px; padding: 20px 0; }
.tcol { display: flex; gap: 11px; align-items: flex-start; }
.tcol__ic { width: 38px; height: 38px; border-radius: 11px; flex: none; display: grid; place-items: center; background: #fff; color: var(--brand); box-shadow: var(--sh-1); }
.tcol b { font-size: 14.5px; display: block; color: var(--brand-deep); }
.tcol span { font-size: 12.5px; color: var(--ink-2); line-height: 1.35; }

/* ---------- Employers ---------- */
.emps { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 16px; }
.emp {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px;
  display: flex; align-items: center; gap: 11px; transition: border-color .15s, box-shadow .15s;
}
.emp:hover { border-color: var(--line-2); box-shadow: var(--sh-1); }
.emp__mark { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 17px; }
.emp b { font-size: 14px; color: var(--ink); display: block; }
.emp span { font-size: 12px; color: var(--ink-3); }

/* ---------- FAQ ---------- */
.faq { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.qa { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.qa__q { width: 100%; text-align: left; display: flex; align-items: center; gap: 12px; padding: 16px; font-size: 15.5px; font-weight: 700; color: var(--ink); }
.qa__q .ic { margin-left: auto; flex: none; transition: transform .22s; color: var(--ink-3); }
.qa[open] .qa__q .ic { transform: rotate(45deg); color: var(--brand); }
.qa__a { padding: 0 16px 16px; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* ---------- Cities ---------- */
.cities { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-top: 16px; }
.city-link {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 14px; font-size: 14.5px; font-weight: 600; color: var(--ink); transition: border-color .15s;
}
.city-link:hover { border-color: var(--brand); color: var(--brand-700); }
.city-link span { font-size: 12px; color: var(--ink-3); font-weight: 600; }

/* ---------- CTA banner ---------- */
.cta-band {
  margin-top: 8px; border-radius: var(--r-xl); overflow: hidden; position: relative;
  background: linear-gradient(150deg, var(--brand-deep), #0b423d); color: #eafaf6;
  padding: 28px 22px; text-align: center;
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 120% at 50% -20%, rgba(10,161,140,.4), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(22px,6vw,30px); }
.cta-band p { color: #b9d6cf; margin: 10px auto 18px; max-width: 26em; font-size: 14.5px; }
.btn-on-dark {
  display: inline-flex; height: 54px; padding: 0 30px; border-radius: var(--r-pill); background: var(--brand); color: #fff;
  font-weight: 700; font-size: 16.5px; align-items: center; gap: 9px; box-shadow: var(--sh-cta);
}

/* ---------- Footer ---------- */
.foot { background: var(--brand-deep); color: #a9c7c0; padding: 30px 0 26px; margin-top: 24px; }
.foot__cols { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px 16px; }
.foot__cols h4 { color: #e6f4f1; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; font-weight: 700; }
.foot__cols a { display: block; font-size: 13.5px; color: #93b6ae; padding: 5px 0; }
.foot__cols a:hover { color: #fff; }
.foot__note { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; color: #7da39b; line-height: 1.5; }
.foot__brand { display: flex; align-items: center; gap: 9px; color: #e6f4f1; font-weight: 800; font-size: 16px; margin-bottom: 14px; }

/* ===========================================================
   Vacancy detail page
   =========================================================== */
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink-2); padding: 14px 0 2px; }
.vhero { background: #fff; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.vhero__top { display: flex; align-items: center; gap: 14px; padding-top: 6px; }
.vhero .emblem { width: 56px; height: 56px; border-radius: 15px; font-size: 23px; }
.vhero__emp { font-size: 13.5px; color: var(--ink-3); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.vhero h1 { font-size: clamp(24px,6.4vw,34px); color: var(--brand-deep); margin: 12px 0 0; }
.vhero__pay { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; }
.vhero__pay b { font-size: 34px; font-weight: 800; color: var(--money); letter-spacing: -.03em; }
.vhero__pay span { font-size: 14px; color: var(--ink-3); font-weight: 600; white-space: nowrap; }
.vhero__badges { margin-top: 14px; }

.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--sh-1); }
.panel + .panel { margin-top: 14px; }
.panel h3 { font-size: 17px; color: var(--brand-deep); margin-bottom: 12px; }
.deflist { display: grid; gap: 12px; }
.deflist .row { display: flex; gap: 12px; align-items: flex-start; }
.deflist .ic { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-700); }
.deflist b { font-size: 14.5px; display: block; color: var(--ink); }
.deflist span { font-size: 13px; color: var(--ink-2); }
.bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.bullets .check { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--money-soft); color: var(--money); display: grid; place-items: center; margin-top: 1px; }

.steps { counter-reset: s; display: grid; gap: 14px; }
.step { display: flex; gap: 12px; align-items: flex-start; }
.step__n { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--brand-deep); color: #fff; font-weight: 800; font-size: 14px; display: grid; place-items: center; }
.step b { font-size: 14.5px; display: block; }
.step span { font-size: 13px; color: var(--ink-2); }

/* sticky apply bar (mobile high-CTR pattern) */
.applybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px rgba(10,52,51,.08);
  display: flex; align-items: center; gap: 12px;
  transform: translateY(0); transition: transform .25s;
}
.applybar__info { min-width: 0; }
.applybar__info b { display: block; font-size: 17px; color: var(--money); font-weight: 800; }
.applybar__info span { font-size: 11.5px; color: var(--ink-3); }
.applybar .vac__cta { width: auto; flex: 1; box-shadow: var(--sh-cta); }
.page--detail { padding-bottom: 92px; }

/* ===========================================================
   Apply modal
   =========================================================== */
.modal-back {
  position: fixed; inset: 0; z-index: 100; background: rgba(8,30,29,.55);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .22s;
}
.modal-back.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; width: 100%; max-width: 460px; border-radius: 24px 24px 0 0;
  padding: 8px 20px calc(22px + env(safe-area-inset-bottom));
  transform: translateY(20px); transition: transform .26s cubic-bezier(.2,.8,.2,1);
  max-height: 92vh; overflow-y: auto;
}
.modal-back.open .modal { transform: translateY(0); }
.modal__grab { width: 40px; height: 4px; border-radius: 3px; background: var(--line-2); margin: 8px auto 14px; }
.modal__emp { display: flex; align-items: center; gap: 11px; margin-bottom: 4px; }
.modal__emp .emblem { width: 42px; height: 42px; border-radius: 12px; font-size: 18px; }
.modal__emp b { font-size: 16px; display: block; color: var(--ink); }
.modal__emp span { font-size: 12.5px; color: var(--ink-3); }
.modal h3 { font-size: 21px; color: var(--brand-deep); margin: 14px 0 4px; }
.modal__lead { font-size: 14px; color: var(--ink-2); margin-bottom: 16px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input {
  width: 100%; height: 52px; border-radius: var(--r-md); border: 1.5px solid var(--line-2);
  padding: 0 14px; font-family: inherit; font-size: 16px; color: var(--ink); outline: none; transition: border-color .15s;
}
.field input:focus { border-color: var(--brand); }
.field input.err { border-color: var(--urgent); }
.modal__submit { width: 100%; height: 54px; border-radius: var(--r-md); background: var(--brand); color: #fff; font-weight: 700; font-size: 16.5px; box-shadow: var(--sh-cta); margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 9px; }
.modal__submit:active { transform: translateY(1px); }
.modal__fine { font-size: 11.5px; color: var(--ink-3); text-align: center; margin-top: 12px; line-height: 1.45; }
.modal__trust { display: flex; gap: 14px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }
.modal__trust span { font-size: 12px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 5px; }
.modal__trust svg { color: var(--money); }

/* success */
.success { text-align: center; padding: 20px 6px 6px; }
.success__ic { width: 76px; height: 76px; border-radius: 50%; background: var(--money-soft); color: var(--money); display: grid; place-items: center; margin: 0 auto 16px; animation: pop .4s cubic-bezier(.2,.9,.3,1.3); }
@keyframes pop { 0%{transform:scale(.4);opacity:0} 100%{transform:scale(1);opacity:1} }
.success h3 { font-size: 23px; color: var(--brand-deep); }
.success p { font-size: 14.5px; color: var(--ink-2); margin: 10px auto 0; max-width: 24em; }
.success__next { margin-top: 20px; background: var(--brand-tint); border-radius: var(--r-md); padding: 14px; text-align: left; font-size: 13px; color: var(--ink-2); display: flex; gap: 10px; align-items: flex-start; }

/* city sheet */
.citysheet-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.citysheet-list button { text-align: left; padding: 13px 14px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: #fff; font-family: inherit; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.citysheet-list button[aria-pressed="true"] { border-color: var(--brand); background: var(--brand-tint); color: var(--brand-700); }

/* ===========================================================
   Salary article page (/zarplata/<prof>-v-<city>-2026)
   =========================================================== */
.srange { margin-top: 16px; position: relative; }
.srange__track { height: 12px; border-radius: 7px; background: rgba(255,255,255,.14); position: relative; overflow: hidden; }
.srange__fill { position: absolute; top: 0; bottom: 0; border-radius: 7px; background: linear-gradient(90deg, rgba(94,240,208,.55), #5ef0d0); }
.srange__avg { position: absolute; top: -3px; width: 4px; height: 18px; border-radius: 3px; background: #fff; box-shadow: 0 0 0 3px rgba(94,240,208,.35); transform: translateX(-50%); }
.srange__ends { display: flex; justify-content: space-between; margin-top: 9px; font-size: 12.5px; color: #9fc4bc; font-weight: 600; }
.srange__ends b { color: #d6efe8; }

.byline { display: flex; align-items: center; gap: 9px; margin-top: 16px; position: relative; font-size: 12.5px; color: #9fc4bc; }
.byline__av { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; color: #d6efe8; font-weight: 800; font-size: 12px; flex: none; }
.byline a { color: #cdeae2; font-weight: 600; }

/* employer salary breakdown row (apply) */
.erow {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px 15px;
  cursor: pointer; transition: border-color .15s, box-shadow .15s;
}
.erow:hover { border-color: var(--brand); box-shadow: var(--sh-1); }
.erow__head { display: flex; align-items: center; gap: 11px; }
.erow__head .emp__mark { width: 34px; height: 34px; border-radius: 9px; font-size: 15px; flex: none; }
.erow__name { font-size: 14.5px; font-weight: 700; color: var(--ink); flex: 1; min-width: 0; }
.erow__avg { font-size: 17px; font-weight: 800; color: var(--money); white-space: nowrap; }
.erow__avg small { font-size: 11px; color: var(--ink-3); font-weight: 600; }
.erow__track { height: 7px; border-radius: 5px; background: var(--bg-cool); margin-top: 10px; overflow: hidden; }
.erow__fill { height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--brand-700), var(--brand)); }
.erow__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.erow__max { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.erow__cta { font-size: 12.5px; color: var(--brand-700); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }

@media (min-width: 760px){
  .erow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ===========================================================
   Salary explorer (/zarplata)
   =========================================================== */
.sal-top {
  margin-top: 16px; border-radius: var(--r-lg); overflow: hidden; position: relative;
  background: linear-gradient(150deg, var(--brand-deep), #0b423d); color: #eafaf6; padding: 18px;
}
.sal-top::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 130% at 90% -10%, rgba(10,161,140,.4), transparent 60%); }
.sal-top > * { position: relative; }
.sal-top__lbl { font-size: 12.5px; font-weight: 600; color: #8fd6c6; display: inline-flex; align-items: center; gap: 7px; }
.sal-top__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.sal-top__city { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.sal-top__city span { display: block; font-size: 13px; font-weight: 600; color: #9fc4bc; margin-top: 2px; }
.sal-top__amt { font-size: 34px; font-weight: 800; color: #5ef0d0; letter-spacing: -.03em; line-height: 1; }
.sal-top__amt small { font-size: 14px; color: #9fc4bc; font-weight: 600; }
.sal-top a.vac__cta { margin-top: 16px; }

.sal-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.sal-meta .lbl { font-size: 13px; color: var(--ink-3); font-weight: 600; }
.sal-search { display: flex; align-items: center; gap: 9px; height: 42px; border: 1.5px solid var(--line-2); border-radius: var(--r-pill); padding: 0 14px; max-width: 220px; flex: 1; transition: border-color .15s; }
.sal-search:focus-within { border-color: var(--brand); }
.sal-search svg { color: var(--ink-3); flex: none; }
.sal-search input { border: none; outline: none; font-family: inherit; font-size: 14px; background: none; width: 100%; min-width: 0; }

.sallist { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.salrow {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px 15px;
  cursor: pointer; transition: border-color .15s, box-shadow .15s; position: relative;
}
.salrow:hover { border-color: var(--brand); box-shadow: var(--sh-1); }
.salrow__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.salrow__city { font-size: 15px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 9px; min-width: 0; }
.salrow__rank { flex: none; width: 22px; height: 22px; border-radius: 6px; background: var(--bg-cool); color: var(--ink-3); font-size: 12px; font-weight: 800; display: grid; place-items: center; }
.salrow--lead .salrow__rank { background: var(--brand); color: #fff; }
.salrow__amt { font-size: 18px; font-weight: 800; color: var(--money); letter-spacing: -.02em; white-space: nowrap; }
.salrow__amt small { font-size: 11px; color: var(--ink-3); font-weight: 600; }
.salrow__track { height: 8px; border-radius: 5px; background: var(--bg-cool); margin-top: 10px; overflow: hidden; }
.salrow__fill { height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--brand-700), var(--brand)); }
.salrow__cta { font-size: 12.5px; color: var(--brand-700); font-weight: 600; margin-top: 8px; display: inline-flex; align-items: center; gap: 5px; }

.sal-note { font-size: 12px; color: var(--ink-3); margin-top: 14px; line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; }
.sal-note svg { flex: none; margin-top: 1px; color: var(--ink-3); }

@media (min-width: 760px){
  .sallist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .sal-top { padding: 24px; }
  .sal-top__amt { font-size: 42px; }
}

/* ===========================================================
   City landing page (vakansii/<emp>/<role>/<city>)
   =========================================================== */
.ehero__fresh { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #5ef0d0; background: rgba(10,161,140,.16); border: 1px solid rgba(125,240,219,.24); padding: 5px 11px; border-radius: var(--r-pill); margin-top: 14px; position: relative; }
.ehero__fresh .pulse { width: 8px; height: 8px; border-radius: 50%; background: #2be0bd; animation: pulse 1.8s infinite; }
.salary { margin-top: 14px; position: relative; }
.salary__row { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.salary__row b { font-size: clamp(30px, 9vw, 48px); font-weight: 800; color: #5ef0d0; letter-spacing: -.03em; line-height: 1; }
.salary__row .to { font-size: 20px; color: #9fc4bc; font-weight: 700; margin: 0 2px; }
.salary__row .per { font-size: 15px; color: #9fc4bc; font-weight: 600; align-self: flex-end; margin-left: 4px; }
.salary__note { font-size: 12.5px; color: #8fb3ab; margin-top: 7px; }
.cta-note { font-size: 11.5px; color: #8fb3ab; margin-top: 9px; display: flex; align-items: center; gap: 6px; position: relative; }
.cta-note svg { flex: none; opacity: .8; }

/* quick conditions strip */
.qcond { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 16px; }
.qc { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px; display: flex; gap: 10px; align-items: center; }
.qc__ic { width: 38px; height: 38px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-700); }
.qc b { font-size: 14px; color: var(--ink); display: block; }
.qc span { font-size: 12px; color: var(--ink-3); }

/* perks grid */
.perks { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 16px; }
.perk { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px; display: flex; gap: 12px; align-items: flex-start; transition: border-color .15s, box-shadow .15s; }
.perk:hover { border-color: var(--line-2); box-shadow: var(--sh-1); }
.perk__ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--money-soft); color: var(--money); }
.perk b { font-size: 14.5px; color: var(--ink); display: block; }
.perk span { font-size: 13px; color: var(--ink-2); line-height: 1.4; }

/* key-value table */
.kv { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); margin-top: 14px; }
.kv__row { display: flex; gap: 14px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.kv__row:last-child { border-bottom: none; }
.kv__row:nth-child(even) { background: var(--brand-tint); }
.kv__k { flex: none; width: 38%; font-size: 13.5px; color: var(--ink-3); font-weight: 600; }
.kv__v { font-size: 13.5px; color: var(--ink); font-weight: 600; }
.kv__v.money { color: var(--money); font-weight: 700; }

/* similar links */
.simrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.simrow a { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); color: var(--brand-deep); font-size: 13.5px; font-weight: 600; transition: border-color .15s; }
.simrow a:hover { border-color: var(--brand); color: var(--brand-700); }
.simlist { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 14px; }
.simlist a { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px 15px; font-size: 14px; font-weight: 600; color: var(--ink); transition: border-color .15s; }
.simlist a:hover { border-color: var(--brand); color: var(--brand-700); }
.simlist a .arr { color: var(--ink-3); }

@media (min-width: 760px){
  .qcond { grid-template-columns: repeat(4,1fr); }
  .perks { grid-template-columns: 1fr 1fr; }
  .simlist { grid-template-columns: 1fr 1fr; }
}

/* ===========================================================
   Employer hub page (vakansii/<emp>)
   =========================================================== */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 12px 0 2px; font-size: 12.5px; color: var(--ink-3); }
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--brand-700); }
.crumbs .sep { opacity: .5; }
.crumbs b { color: var(--ink-2); font-weight: 600; }

/* employer hero */
.ehero { background: linear-gradient(168deg, var(--brand-deep) 0%, #0b3f3c 70%, #0a3433 100%); color: #eafaf6; position: relative; overflow: hidden; padding: 18px 0 24px; }
.ehero::after { content:""; position:absolute; right:-70px; top:-50px; width:260px; height:260px; background: radial-gradient(circle, rgba(10,161,140,.4), transparent 65%); pointer-events:none; }
.ehero__top { display: flex; align-items: center; gap: 14px; position: relative; }
.ehero .emblem { width: 60px; height: 60px; border-radius: 16px; font-size: 26px; box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.ehero__emp { font-size: 13.5px; color: #8fd6c6; font-weight: 600; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ehero__emp .verify { color: #5ef0d0; display: inline-flex; }
.ehero h1 { font-size: clamp(26px, 7vw, 40px); color: #fff; margin-top: 7px; }
.ehero__lead { font-size: 14.5px; color: #b9d6cf; margin-top: 12px; max-width: 36em; position: relative; }
.ehero__pay { display: flex; align-items: baseline; gap: 9px; margin-top: 16px; position: relative; }
.ehero__pay b { font-size: 30px; font-weight: 800; color: #5ef0d0; letter-spacing: -.03em; }
.ehero__pay span { font-size: 13.5px; color: #9fc4bc; }
.ehero__bul { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; position: relative; }
.ehero__bul span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #d6efe8; background: rgba(255,255,255,.08); border: 1px solid rgba(125,240,219,.18); padding: 6px 11px; border-radius: var(--r-pill); }
.ehero__bul svg { color: #5ef0d0; flex: none; }
.ehero__cta { display: flex; gap: 10px; margin-top: 20px; position: relative; }
.ehero__cta .vac__cta { flex: 1; }
.btn-on-dark-ghost { height: 52px; padding: 0 18px; border-radius: var(--r-md); background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.22); color: #fff; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; }
.btn-on-dark-ghost:hover { background: rgba(255,255,255,.16); }

/* role cards */
.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.role {
  text-align: left; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 14px; display: flex; flex-direction: column; gap: 8px; transition: all .15s; cursor: pointer; position: relative;
}
.role:hover { border-color: var(--brand); box-shadow: var(--sh-2); transform: translateY(-1px); }
.role[aria-pressed="true"] { border-color: var(--brand); background: var(--brand-tint); }
.role__ic { width: 40px; height: 40px; border-radius: 11px; background: var(--brand-soft); color: var(--brand-700); display: grid; place-items: center; }
.role[aria-pressed="true"] .role__ic { background: var(--brand); color: #fff; }
.role b { font-size: 15px; color: var(--ink); }
.role span { font-size: 12.5px; color: var(--ink-3); }
.role__pay { font-size: 13.5px; font-weight: 700; color: var(--money); margin-top: 2px; }
.role__check { position: absolute; top: 12px; right: 12px; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #fff; display: none; place-items: center; }
.role[aria-pressed="true"] .role__check { display: grid; }

/* city finder */
.finder { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 16px; box-shadow: var(--sh-1); margin-top: 16px; }
.finder__search { display: flex; align-items: center; gap: 10px; height: 50px; border: 1.5px solid var(--line-2); border-radius: var(--r-md); padding: 0 14px; transition: border-color .15s; }
.finder__search:focus-within { border-color: var(--brand); }
.finder__search svg { color: var(--ink-3); flex: none; }
.finder__search input { flex: 1; border: none; outline: none; font-family: inherit; font-size: 16px; color: var(--ink); background: none; min-width: 0; }
.finder__pop { margin-top: 14px; }
.finder__pop .lbl { font-size: 12px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 9px; }
.poprow { display: flex; flex-wrap: wrap; gap: 8px; }
.poprow a { display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px; border-radius: var(--r-pill); background: var(--bg-cool); color: var(--brand-deep); font-size: 13.5px; font-weight: 600; transition: background .15s; }
.poprow a:hover { background: var(--brand-soft); color: var(--brand-700); }
.poprow a b { font-weight: 700; }

.alpha { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 14px; }
.alpha__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.alpha__head .lbl { font-size: 14px; font-weight: 700; color: var(--brand-deep); }
.alpha__count { font-size: 12.5px; color: var(--ink-3); }
.alpha__grid { columns: 2; column-gap: 18px; }
@media (min-width: 760px){ .alpha__grid { columns: 4; } }
.alpha__group { break-inside: avoid; margin-bottom: 14px; }
.alpha__letter { font-size: 13px; font-weight: 800; color: var(--brand); margin-bottom: 5px; }
.alpha__grid a { display: block; font-size: 13.5px; color: var(--ink-2); padding: 4px 0; transition: color .12s; }
.alpha__grid a:hover { color: var(--brand-700); }
.alpha__grid a:hover b { text-decoration: underline; }
.alpha__empty { color: var(--ink-3); font-size: 14px; padding: 16px 0; }
.alpha__more { width: 100%; height: 48px; margin-top: 6px; border-radius: var(--r-md); background: var(--brand-tint); color: var(--brand-700); font-weight: 700; font-size: 14.5px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.alpha__more:hover { background: var(--brand-soft); }

@media (min-width: 760px){
  .roles { grid-template-columns: repeat(4,1fr); }
  .ehero { padding: 30px 0 38px; }
  .ehero__cta .vac__cta { flex: none; padding: 0 32px; }
  .ehero__cta { max-width: 560px; }
}

/* ===========================================================
   Desktop
   =========================================================== */
/* ---------- Desktop ---------- */
@media (min-width: 760px){
  :root { --gut: 24px; }
  .hdr__in { height: 64px; }
  .hdr__tg { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 14px; border-radius: var(--r-pill); background: var(--brand-soft); color: var(--brand-700); font-weight: 600; font-size: 14px; }
  .city-btn { max-width: none; }
  .hero { padding: 48px 0 44px; }
  .hero__inner { max-width: 680px; }
  .hero__search { flex-direction: row; align-items: center; }
  .hero__search .search-field { flex: 1; }
  .btn-search { padding: 0 28px; }
  .hero__stats { gap: 34px; margin-top: 22px; }
  .feed { grid-template-columns: 1fr 1fr; }
  .trustbar__in { grid-template-columns: repeat(4,1fr); gap: 20px; }
  .emps { grid-template-columns: repeat(3,1fr); }
  .cities { grid-template-columns: repeat(4,1fr); }
  .faq { max-width: 760px; }
  .foot__cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  /* detail page: two-column */
  .detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 22px; align-items: start; }
  .detail-aside { position: sticky; top: 84px; }
  .applybar { display: none; }
  .page--detail { padding-bottom: 24px; }
  .aside-cta { display: block; }
  .modal-back { align-items: center; }
  .modal { border-radius: 24px; }
}
@media (max-width: 759px){ .aside-cta { display: none; } }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* ── Mobile overflow guard (min-width:auto у grid/flex детей ломал верстку) ── */
html, body { overflow-x: hidden; max-width: 100%; }
.role, .vac, .emp, .salrow, .erow, .qc, .tcol, .kv__row, .city-link, .vac__titles, .ehero__top > div, .salrow__city, .erow__name { min-width: 0; }
.ehero__cta, .poprow { flex-wrap: wrap; }
.role__pay { white-space: normal; }
.role__name, .role b { overflow-wrap: anywhere; }

/* ── Узкие телефоны: 2-кол сетки в 1 колонку (страховка от переполнения) ── */
@media (max-width: 520px){
  .roles, .emps, .trustbar__in, .cities { grid-template-columns: 1fr; }
}

/* ── Правки 11.06: жёлтый CTA (логотип) + контраст qc-иконок + подсветка выплат ── */
.vac__cta { background:#fce000; color:#15201d; box-shadow:0 6px 18px rgba(252,224,0,.32); }
.vac__cta:hover { background:#ffe92e; }
.vac__cta:active { box-shadow:0 3px 10px rgba(252,224,0,.3); }
.applybar .vac__cta { box-shadow:0 6px 18px rgba(252,224,0,.32); }
.qc__ic { background: var(--brand-deep); color:#fff; }
.ehero__bul span:last-child { background:rgba(252,224,0,.16); border-color:rgba(255,221,45,.55); color:#fff; font-weight:700; }
.ehero__bul span:last-child svg { color:#ffdd2d; }

/* ── Липкая applybar: доход в строку сверху, кнопка на 100% снизу (кликабельность на ходу) ── */
.applybar { flex-direction: column; align-items: stretch; gap: 8px; }
.applybar__info { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; line-height: 1.2; }
.applybar__info b { font-size: 15px; white-space: nowrap; }
.applybar__info span { font-size: 12px; }
.applybar .vac__cta { width: 100%; flex: none; height: 52px; }

/* ── TG в шапке на мобиле: иконка-кружок (без текста), ≥760 — иконка+текст ── */
@media (max-width: 759px){
  .hdr__tg { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; padding:0; border-radius:var(--r-pill); background:var(--brand-soft); color:var(--brand-700); font-size:0; flex:none; }
  .hdr__tg svg { width:18px; height:18px; }
  .city-btn { max-width:38vw; }
}


/* ====== legacy-bridge: старые компонент-классы из style.css, изолированные переменные --lg-*, без глобалей. Сгенерено extract-legacy.js ====== */
:root {
  --lg-bg: #f3f6f6;
  --lg-surface: #ffffff;
  --lg-surface-muted: #eef4f3;
  --lg-text: #0d1c1b;
  --lg-muted: #4a5d5b;
  --lg-line: #e4ecea;
  --lg-accent: #0aa18c;
  --lg-accent-dark: #0a3433;
  --lg-radius: 18px;
  --lg-shadow: 0 4px 16px rgba(10,52,51,.07), 0 1px 4px rgba(10,52,51,.05);
}
.site-header { max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
.nav { display: flex;
  gap: 18px;
  align-items: center; }
.nav a { text-decoration: none;
  color: var(--lg-muted);
  font-weight: 600; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--lg-text); }
.page-hero { max-width: 1120px;
  margin: 0 auto;
  padding: 58px 20px 36px; }
.hero-content { background: linear-gradient(135deg, #ffffff 0%, #e6f4f1 100%);
  border: 1px solid var(--lg-line);
  border-radius: 36px;
  padding: clamp(36px, 7vw, 82px);
  box-shadow: var(--lg-shadow); }
.lead { max-width: 700px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--lg-muted);
  margin-bottom: 0; }
.hero-actions { display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px; }
.button { display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none; }
.button.primary { background: var(--lg-accent);
  color: #000000;
  font-weight: 800; }
.button.primary:hover { filter: brightness(1.04); }
.button.secondary { background: #ffffff;
  border: 1px solid var(--lg-line); }
.section-heading { margin-bottom: 24px; }
.section-heading p { max-width: 680px;
  color: var(--lg-muted);
  font-size: 1.1rem; }
.cards { display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px; }
.card { background: var(--lg-surface);
  border: 1px solid var(--lg-line);
  border-radius: var(--lg-radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(25, 25, 25, 0.05); }
.link-card { text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease; }
.link-card:hover { transform: translateY(-3px);
  box-shadow: var(--lg-shadow); }
.card-label { display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lg-surface-muted);
  color: var(--lg-muted);
  font-weight: 800;
  font-size: 0.88rem; }
.card p, .features p, .faq-preview p, .faq-list p { color: var(--lg-muted);
  margin-bottom: 0; }
.vacancy-grid { align-items: stretch; }
.vacancy-grid .vacancy-card { display: flex;
  flex-direction: column;
  gap: 14px; }
.brand { display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.01em; }
.brand-yandex { background: #e8cb68;
  color: #2b2209; }
.brand-tbank { background: #1c1c1c;
  color: #ffdd2d; }
.brand-alfa { background: #ef3124;
  color: #ffffff; }
.brand-burger { background: #d62300;
  color: #ffffff; }
.brand-lavka { background: #4a3fc4;
  color: #ffffff; }
.brand-vkusvill { background: #2aa84a;
  color: #ffffff; }
.benefits { margin: 0;
  padding-left: 18px;
  color: var(--lg-muted); }
.benefits li { margin-bottom: 6px; }
.vacancy-grid .vacancy-card .button { margin-top: auto; }
.features { display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px; }
.faq-preview, .faq-list { display: grid;
  gap: 12px; }
.text-link { display: inline-flex;
  margin-top: 22px;
  font-weight: 800;
  text-decoration: none; }
.site-footer { max-width: 1120px;
  margin: 0 auto;
  padding: 36px 20px 48px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--lg-muted);
  border-top: 1px solid var(--lg-line); }
.site-footer p { margin: 0; }
.site-footer a { color: var(--lg-muted);
  text-decoration: none;
  font-weight: 700; }
.footer-nav { display: flex;
  flex-wrap: wrap;
  gap: 8px 20px; }
.footer-nav a { color: var(--lg-muted);
  text-decoration: none;
  font-weight: 700; }
.footer-nav a:hover { color: var(--fg); }
.visually-hidden { position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }
.vacancy-page .vacancy-article.section { max-width: 960px; }
.vacancy-page .vacancy-article { padding-top: clamp(18px, 3vw, 36px);
  padding-bottom: 56px; }
.vacancy-hero { background: linear-gradient(135deg, #ffffff 0%, #f3f9f8 52%, #e6f4f1 100%);
  border: 1px solid var(--lg-line);
  border-radius: 36px;
  padding: clamp(28px, 5vw, 72px);
  margin-bottom: 28px;
  box-shadow: var(--lg-shadow); }
.vacancy-tag-row { list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px; }
.vacancy-tag-pill { display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(25, 25, 25, 0.08);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lg-muted);
  letter-spacing: -0.02em; }
.vacancy-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-wrap: balance;
  max-width: 920px;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden; }
@media (max-width: 640px) {
  .vacancy-hero { padding: clamp(18px, 5vw, 28px);
    border-radius: 24px;
    margin-bottom: 22px; }
  .vacancy-hero h1 { -webkit-line-clamp: 5;
    font-size: clamp(1.65rem, 5.5vw, 2.4rem);
    line-height: 1.12;
    letter-spacing: -0.045em; }
}
.vacancy-short { max-width: 780px; }
.vacancy-income-line { margin-top: 14px;
  margin-bottom: 0;
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 700;
  color: var(--lg-text);
  letter-spacing: -0.02em; }
.meta-updated { margin-top: 14px;
  font-size: 0.95rem;
  color: var(--lg-muted); }
.meta-updated time { font-weight: 700; }
.button.vacancy-apply-hero { background: var(--lg-accent);
  color: #201800;
  border: none;
  font-weight: 800;
  min-height: 52px;
  padding: 16px 28px;
  box-shadow: 0 10px 28px rgba(244, 180, 0, 0.35); }
.button.vacancy-apply-hero:hover { filter: brightness(1.04); }
.vacancy-actions { margin-top: 28px; }
.vacancy-actions--hero { margin-top: 24px; }
.vacancy-actions--after-faq { margin-top: 36px; }
.vacancy-actions--after-faq { margin-bottom: 8px; }
.vacancy-page .vacancy-section { margin-top: 0; }
.vacancy-page .vacancy-section.vacancy-card { background: #fff;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  margin-bottom: 28px;
  border: 1px solid rgba(25, 25, 25, 0.06);
  box-shadow: 0 12px 36px rgba(25, 25, 25, 0.045); }
.vacancy-page .vacancy-card-inner { min-width: 0; }
.vacancy-section h2 { margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
.facts-grid { display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px; }
@media (min-width: 520px) {
  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 760px) {
  .facts-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .facts-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.facts-grid-card { background: #f7fbfa;
  border: 1px solid rgba(25, 25, 25, 0.06);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0; }
.facts-grid-card--placeholder .facts-grid-value { font-weight: 600;
  color: var(--lg-muted); }
.facts-grid-label { font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lg-muted); }
.facts-grid-value { font-weight: 700;
  font-size: 0.98rem;
  color: var(--lg-text);
  line-height: 1.35;
  overflow-wrap: anywhere; }
.conditions-points { list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px; }
.conditions-points-item { display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lg-line); }
.conditions-points-item:last-child { padding-bottom: 0;
  border-bottom: none; }
.conditions-points-label { font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lg-muted); }
.conditions-points-value { font-weight: 600;
  color: var(--lg-text);
  line-height: 1.45;
  overflow-wrap: anywhere; }
.req-strong { font-weight: 800;
  color: var(--lg-text); }
.vacancy-faq-list { display: grid;
  gap: 10px; }
.vacancy-faq-list .vacancy-faq-item { background: #fff;
  border: 1px solid #ebe6df;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 4px 14px rgba(25, 25, 25, 0.03); }
.vacancy-faq-list .vacancy-faq-item summary { font-weight: 800;
  letter-spacing: -0.02em; }
.vacancy-faq-list .vacancy-faq-item p { margin-top: 10px;
  margin-bottom: 0; }
.vacancy-page #faq { scroll-margin-top: 96px; }
.table-wrap { overflow-x: auto;
  border: 1px solid var(--lg-line);
  border-radius: var(--lg-radius);
  background: var(--lg-surface); }
.vacancy-page .table-wrap { background: #fff;
  border: 1px solid #e6ddcf;
  border-radius: 20px;
  padding: 18px;
  overflow-x: auto; }
.facts-table { width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem; }
.facts-table th, .facts-table td { padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--lg-line);
  vertical-align: top; }
.facts-table thead th { font-weight: 800;
  background: var(--lg-surface-muted); }
.facts-table tbody tr:last-child td { border-bottom: none; }
.vacancy-list { margin: 0;
  padding-left: 20px;
  color: var(--lg-muted); }
.vacancy-list li { margin-bottom: 10px; }
.vacancy-section.vacancy-city { padding: 22px 22px;
  border-radius: var(--lg-radius);
  background: var(--lg-surface-muted);
  border: 1px solid var(--lg-line); }
.vacancy-section.vacancy-city p { margin: 0;
  color: var(--lg-muted); }
.internal-links { list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px; }
.internal-links a { font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--lg-line); }
@media (max-width: 760px) {
  .site-header, .site-footer { align-items: flex-start;
    flex-direction: column; }
  .page-hero { padding-top: 24px; }
  .hero-content { padding: 32px 22px;
    border-radius: 28px; }
  .cards, .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav { gap: 14px; }
  .vacancy-page .vacancy-actions .button.primary.vacancy-apply-wide, .vacancy-page .vacancy-actions .button.vacancy-apply-hero.vacancy-apply-wide { width: 100%;
    max-width: 100%;
    display: flex; }
}
@media (max-width: 480px) {
  .cards, .features { grid-template-columns: 1fr; }
}
.search-filter { margin: 24px 0 16px; }
.search-filter input[type="search"] { width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  font-size: 1rem;
  border: 2px solid var(--lg-line);
  border-radius: 8px;
  background: var(--lg-bg);
  color: var(--fg);
  outline: none;
  transition: border-color .15s; }
.search-filter input[type="search"]:focus { border-color: var(--lg-accent); }
.search-empty { margin-top: 12px;
  color: var(--lg-muted);
  font-size: .95rem; }
.article-grid { display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; }
.article-card { display: flex;
  flex-direction: column;
  gap: 10px; }
.article-card h2 { font-size: 1.1rem !important;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0; }
.article-card h2 a { text-decoration: none;
  color: var(--lg-text); }
.article-card h2 a:hover { color: var(--lg-accent); }
.article-card-tags { display: none; }
.article-desc { color: var(--lg-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  flex: 1; }
.text-link { font-size: 0.88rem;
  font-weight: 600;
  color: var(--lg-muted);
  text-decoration: none;
  margin-top: 4px; }
.text-link:hover { color: var(--lg-text); }
.tag { display: inline-block;
  padding: 3px 12px;
  border-radius: 99px;
  background: var(--lg-surface-muted);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lg-muted);
  letter-spacing: 0.01em; }
.article-page { max-width: 720px;
  margin: 0 auto; }
.article-page .page-hero { padding-bottom: 0; }
.breadcrumb { font-size: 0.85rem;
  color: var(--lg-muted);
  margin-bottom: 20px; }
.breadcrumb a { color: var(--lg-muted);
  text-decoration: none; }
.breadcrumb a:hover { color: var(--lg-text); }
.article-meta { display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px; }
.article-body { max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.8; }
.article-body p { margin: 0 0 1.3em; }
.article-body strong { color: var(--lg-text); }
.article-apply { background: var(--lg-surface);
  border: 1px solid var(--lg-line);
  border-radius: var(--lg-radius);
  padding: 28px 32px;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 14px; }
.article-apply p { margin: 0;
  font-size: 1rem;
  color: var(--lg-muted);
  line-height: 1.55; }
.article-apply .button.primary { align-self: flex-start; }
.related-articles { max-width: 1120px;
  margin: 0 auto; }
.article-vacancy-links { margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lg-line); }
.article-vacancy-links h2 { font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--lg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em; }
.article-vacancy-links ul { list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px; }
.article-vacancy-links a { color: var(--lg-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem; }
.article-vacancy-links a:hover { color: var(--lg-accent); }
.article-card-small { display: flex;
  flex-direction: column;
  gap: 6px; }
.article-card-small h3 { font-size: 1rem !important;
  font-weight: 700;
  line-height: 1.35;
  margin: 0; }
.article-card-small h3 a { text-decoration: none;
  color: var(--lg-text); }
.article-card-small h3 a:hover { color: var(--lg-accent); }
.article-card-small .article-desc { font-size: 0.88rem; }
.city-list { list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px; }
.city-list li { padding-left: 0; }
.city-list a { display: inline-block;
  padding: 6px 0;
  color: var(--lg-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s; }
.city-list a:hover { border-bottom-color: var(--lg-accent, #f4b400); }
@media (min-width: 620px) {
  .city-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .city-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.article-list { list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 24px; }
.article-list li { padding: 4px 0; }
@media (min-width: 760px) {
  .article-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.facts-table { display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 14px -4px 0;
  padding: 0 4px; }
.facts-table table { width: 100%; min-width: 480px; }
.faq-preview details { margin-top: 10px;
  padding: 14px 16px;
  background: var(--lg-surface, #fff);
  border-radius: 12px;
  border: 1px solid var(--lg-line, #e4ecea); }
.faq-preview details + details { margin-top: 10px; }
.faq-preview summary { cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-right: 4px; }
.faq-preview summary::-webkit-details-marker { display: none; }
.faq-preview summary::after { content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  opacity: 0.55; }
.faq-preview details[open] summary::after { transform: rotate(-135deg) translateY(-2px);
  opacity: 0.85; }
.faq-preview summary:hover::after { opacity: 1; }
.faq-preview details[open] summary { margin-bottom: 10px;
  border-bottom: 1px solid var(--lg-line, #e4ecea);
  padding-bottom: 10px; }
.section-block + .section-block { margin-top: 28px; }
@media (max-width: 640px) {
  .section-block + .section-block { margin-top: 22px; }
  .section-block h2 { font-size: 1.25rem; line-height: 1.3; }
}
.meta-updated { margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--lg-line, #e4ecea);
  color: var(--lg-muted, #66615a); }
.cis-income-hero { display:flex;flex-direction:column;gap:2px;margin:16px 0 4px }
.cis-income-num { font-size:clamp(1.7rem,4.5vw,2.6rem);font-weight:800;letter-spacing:-.02em;line-height:1.05 }
.cis-income-sub { color:var(--lg-muted);font-weight:600;font-size:.95rem }
.cis-sticky-cta { position:fixed;left:0;right:0;bottom:0;z-index:60;display:none;padding:10px 14px;background:rgba(247,245,239,.94);backdrop-filter:blur(8px);box-shadow:0 -4px 16px rgba(0,0,0,.1) }
.cis-sticky-cta a { display:block;text-align:center;background:var(--lg-accent);color:#ffffff;font-weight:800;padding:15px;border-radius:999px;text-decoration:none }
@media(max-width:760px) {
  .cis-sticky-cta { display:block }
  body.vacancy-page main { padding-bottom:84px }
}
.cis-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:14px;margin-top:14px }
.cis-card { background:var(--lg-surface,#fff);border:1px solid var(--lg-line,#e4ecea);border-radius:18px;padding:18px 20px }
.cis-card h3 { margin:0 0 6px;font-size:1.02rem;letter-spacing:-.01em }
.cis-card p { margin:0;color:var(--lg-muted);font-size:.95rem }
.cis-calc { background:#1c1c1a;color:#fff;border-radius:20px;padding:24px 22px;margin-top:14px }
.cis-calc h2 { color:#fff;margin-top:0 }
.cis-calc label { display:flex;justify-content:space-between;margin:16px 0 6px;font-weight:600 }
.cis-calc input[type=range] { width:100%;accent-color:var(--lg-accent) }
.cis-calc-result { font-size:clamp(1.5rem,4vw,2.1rem);font-weight:800;color:var(--lg-accent);margin-top:18px }
.cis-calc-note { color:#9a9a9a;font-size:.82rem;margin-top:8px }
.cis-cta-center { text-align:center;margin:8px 0 4px }
.cis-cta-center a { display:inline-block;background:var(--lg-accent);color:#ffffff;font-weight:800;padding:15px 36px;border-radius:999px;text-decoration:none }
.vac-list { display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:16px;margin-top:8px }
.vac-card { display:flex;flex-direction:column;gap:10px;border:1px solid #e6e3d8;border-radius:14px;padding:18px 18px 16px;background:#fff;text-decoration:none;color:inherit;transition:box-shadow .15s,border-color .15s,transform .15s }
.vac-card:hover { box-shadow:0 6px 22px rgba(0,0,0,.08);border-color:#d8d3c0;transform:translateY(-2px) }
.vac-head { display:flex;align-items:center;gap:12px }
.vac-logo { flex:0 0 40px;width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:18px;color:#1a1a1a }
.vac-title { font-weight:700;font-size:17px;line-height:1.25;margin:0 }
.vac-emp { font-size:12px;color:#4a5d5b }
.vac-salary { font-size:20px;font-weight:800;color:#1a1a1a }
.vac-salary span { font-size:13px;font-weight:500;color:#4a5d5b }
.vac-tags { display:flex;flex-wrap:wrap;gap:6px }
.vac-tags span { font-size:12px;background:#f3f1e8;color:#5b5746;border-radius:999px;padding:4px 10px }
.vac-apply { margin-top:auto;align-self:flex-start;font-weight:700;font-size:14px;color:#1a1a1a;border-bottom:2px solid var(--lg-accent);padding-bottom:1px }
.vac-card:hover .vac-apply { border-bottom-color:#1a1a1a }
.lead + .section-block { margin-top: 36px; }
.hero-content h1 { line-height: 1.04;          
  letter-spacing: -0.03em;    
  text-wrap: balance; }
.hero-content .lead { max-width: 500px;
  line-height: 1.5;
  text-wrap: balance; }
.hero-actions .button { padding: 15px 34px;         
  border-radius: 16px; }
.hero-content { box-shadow: 0 12px 44px rgba(0,0,0,.07); }
.nav a { color: #55513f; }
.hero-actions .button.primary { padding: 15px 40px; }
.vacancy-card .button { padding-top: 18px;
  padding-bottom: 18px; }
.vacancy-card .text-link { color: #2a2a2a;
  font-size: 0.92rem;
  margin-top: 14px; }
.vacancy-card .benefits { min-height: 120px; }
.faq-preview details { padding: 22px 22px; }
.faq-preview summary::after { width: 11px; height: 11px;
  border-right-width: 3px; border-bottom-width: 3px;
  opacity: 0.8;
  transform: rotate(45deg) translateY(-3px); }
.faq-preview details[open] summary::after { transform: rotate(-135deg) translateY(-3px);
  opacity: 1; }
.text-link { color: #1a1a1a; }
.faq-preview + .text-link { margin-top: 30px;
  font-size: 1.05rem; }
.site-footer { border-top: 1px solid #d8d0bf; }
.faq-preview summary::after { transform: rotate(45deg); }
.faq-preview details[open] summary::after { transform: rotate(-135deg); }
.site-footer { margin-top: 48px;            
  padding-top: 34px;           
  padding-bottom: 52px;        
  border-top: 1px solid #e4ecea; }
.site-footer a { color: #222222; transition: color .2s ease; }
.site-footer a:hover { color: #666666; }
.site-footer { display: block;
  max-width: 1120px;
  margin: 56px auto 0;
  padding: 48px 20px 56px;
  border-top: 1px solid #e4ecea; }
.footer-cols { display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px; }
.footer-h { font-size: 14px;
  font-weight: 700;
  color: #555555;
  margin-bottom: 14px; }
.footer-col a { display: block;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  margin-bottom: 11px;
  transition: color .2s ease; }
.footer-col a:last-child { margin-bottom: 0; }
.footer-col a:hover { color: #4a5d5b; text-decoration: underline; text-underline-offset: 3px; }
.footer-cis { margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid #e4ecea;
  font-size: 13px;
  color: var(--lg-muted); }
.footer-cis span { margin-right: 6px; }
.footer-cis a { color: #333333;
  text-decoration: none;
  margin-right: 14px;
  transition: color .2s ease; }
.footer-cis a:hover { color: #4a5d5b; }
.footer-bottom { margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e4ecea;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px; }
.footer-bottom p { margin: 0; }
.footer-copy { font-size: 13px; color: #666666; }
.footer-disclaimer { font-size: 12px;
  color: #777777;
  max-width: 56%;
  text-align: right;
  line-height: 1.5; }
@media (max-width: 720px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 26px 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-disclaimer { max-width: 100%; text-align: left; }
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links li:last-child { margin-bottom: 0; }
.footer-col .footer-links a { margin-bottom: 0; }
.footer-h { text-transform: uppercase;
  letter-spacing: .4px;
  color: #6f6b61;
  font-size: 12.5px;
  margin-bottom: 16px; }
.footer-h { font-size: 13px; font-weight: 600; color: #777777; }
.footer-links li { margin-bottom: 12px; }
.footer-col .footer-links a { line-height: 1.4; }
.button { transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .12s ease, filter .2s ease, text-decoration-color .2s ease; }
.button:active { transform: scale(0.98); }
.footer-col a:hover { color: #111111;
  text-decoration: underline;
  text-decoration-color: #0aa18c;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px; }
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
}
.site-footer { max-width: none;
  width: 100%;
  margin: 56px 0 0;
  padding: 48px 0 56px;
  background: #f3f0e9;            
  border-top: 1px solid #e6e0d4; }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.page-hero .eyebrow { padding: 7px 20px; }
.page-hero + .section { padding-top: 6px; }
.faq-list { gap: 10px; }
.faq-list details { border: none;
  background: #eef4f3;                                 
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: none;
  transition: background .2s ease, box-shadow .2s ease; }
.faq-list details:hover { background: #ffffff; box-shadow: 0 6px 22px rgba(0,0,0,.06); }
.faq-list summary { list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "";
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-right: 2px solid #999999;
  border-bottom: 2px solid #999999;
  transform: rotate(45deg);
  transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(-135deg); }
.faq-list details p { margin-top: 14px; color: #4a4a4a; line-height: 1.6; }
#vacancy-list .related-links ul { column-count: 4; column-gap: 30px; list-style: none; margin: 0; padding: 0; }
#vacancy-list .related-links li { break-inside: avoid; margin-bottom: 7px; }
#vacancy-list .related-links li a { font-size: 14px; line-height: 1.4; }
#vacancy-list .related-links h2 { font-size: 1.05rem; margin: 26px 0 12px; letter-spacing: -0.02em; }
@media (max-width: 1000px) {
  #vacancy-list .related-links ul { column-count: 3; }
}
@media (max-width: 680px) {
  #vacancy-list .related-links ul { column-count: 2; }
}
@media (max-width: 430px) {
  #vacancy-list .related-links ul { column-count: 1; }
}
.nav { gap: 24px; align-items: center; }
.nav a { font-size: 14px; font-weight: 500; }
.breadcrumb, .breadcrumb a, .breadcrumb span { color: #9a9a9a; }
.breadcrumb a:hover { color: #555555; }
.vacancy-faq-list details { border: none; background: #eef4f3; border-radius: 14px; transition: background .2s ease, box-shadow .2s ease; }
.vacancy-faq-list details:hover { background: #ffffff; box-shadow: 0 6px 22px rgba(0,0,0,.06); }
.vacancy-faq-list details[open] { background: #ffffff; }
.vacancy-faq-list summary { font-weight: 600; }
.vacancy-faq-list details p { margin-top: 12px; color: #4b4b4b; font-weight: 400; }
.vacancy-card--conditions .vacancy-list { column-count: 2; column-gap: 32px; list-style: none; padding-left: 0; }
.vacancy-card--conditions .vacancy-list li { break-inside: avoid; position: relative; padding-left: 26px; margin-bottom: 10px; }
.vacancy-card--conditions .vacancy-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #2aa84a; font-weight: 800; }
.vacancy-card--requirements .vacancy-list { list-style: none; padding-left: 0; }
.vacancy-card--requirements .vacancy-list li { position: relative; padding-left: 22px; margin-bottom: 9px; }
.vacancy-card--requirements .vacancy-list li::before { content: "—"; position: absolute; left: 0; color: #9a9a9a; }
.related-links ul { column-count: 4; column-gap: 28px; list-style: none; padding-left: 0; margin: 0; }
.related-links li { break-inside: avoid; margin-bottom: 7px; }
.related-links li a { font-size: 14px; line-height: 1.4; }
@media (max-width: 1000px) {
  .related-links ul { column-count: 3; }
}
@media (max-width: 680px) {
  .related-links ul { column-count: 2; }
}
@media (max-width: 430px) {
  .related-links ul { column-count: 1; }
}
@media (max-width: 768px) {
  .vacancy-card--conditions .vacancy-list { column-count: 1; }
}
.vacancy-apply-sticky { display: none; }
@media (max-width: 768px) {
  .vacancy-apply-sticky { display: flex; align-items: center; justify-content: center;
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
    min-height: 54px; padding: 14px 22px;
    background: var(--lg-accent); color: #000000; font-weight: 800;
    border-radius: 16px; text-decoration: none;
    box-shadow: 0 8px 30px rgba(0,0,0,.2); }
  .vacancy-page .site-footer { padding-bottom: 92px; }
}
.related-links.section-block { margin-top: 52px; }
.related-links.section-block h2 { margin-bottom: 24px; }
.related-links.section-block ul { padding: 0; margin: 0; }
.related-links.section-block li { margin-left: 0; padding-left: 0; }
.related-links.section-block ul { display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 40px;
  list-style: none; padding: 0; margin: 0; }
.related-links.section-block li { margin: 0; }
.related-links.section-block li a { color: #444444;
  text-decoration: none;
  transition: color .15s ease; }
.related-links.section-block li a:hover { color: #111111;
  text-decoration: underline;
  text-decoration-color: #0aa18c;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px; }
.related-links.section-block { margin-bottom: 52px; }
@media (max-width: 1000px) {
  .related-links.section-block ul { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .related-links.section-block ul { grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
}
@media (max-width: 430px) {
  .related-links.section-block ul { grid-template-columns: 1fr; }
}
.city-map { display: grid; grid-template-columns: repeat(5, 1fr); gap: 11px 24px; list-style: none; padding: 0; margin: 20px 0 24px; }
.city-map a { color: #444444; text-decoration: none; font-size: 15px; transition: color .15s ease; }
.city-map a:hover { color: #111111; text-decoration: underline; text-decoration-color: #0aa18c; text-underline-offset: 3px; }
@media (max-width: 900px) {
  .city-map { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .city-map { grid-template-columns: repeat(2, 1fr); }
}
.employer-about { max-width: 760px; color: #444444; margin: 4px 0 10px; }
.hub-benefits { list-style:none;padding:0;margin:18px 0 30px;display:grid;grid-template-columns:repeat(4,1fr);gap:12px; }
.hub-benefits li { background:#eef4f3;border:1px solid var(--lg-line);border-radius:14px;padding:14px 16px;font-weight:600;font-size:.95rem;display:flex;align-items:center;gap:10px; }
.hub-benefits li span { font-size:1.4rem;line-height:1; }
@media(max-width:760px) {
  .hub-benefits { grid-template-columns:1fr 1fr; }
}
.author-card { display:grid;grid-template-columns:160px 1fr;gap:24px;align-items:start; }
.author-photo { width:160px;height:160px;border-radius:18px;object-fit:cover; }
.author-card .author-body h2 { font-size:1.4rem;margin-bottom:8px; }
.principle-tiles { list-style:none;padding:0;margin:18px 0 0;display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.principle-tiles li { display:flex;gap:14px;background:#eef4f3;border:1px solid var(--lg-line);border-radius:14px;padding:16px 18px; }
.principle-tiles li span { font-size:1.6rem;line-height:1;flex-shrink:0; }
@media(max-width:640px) {
  .author-card { grid-template-columns:1fr; }
  .author-photo { width:120px;height:120px; }
  .principle-tiles { grid-template-columns:1fr; }
}
.author-name { margin-bottom:4px; }
.author-role { color:var(--lg-muted);font-weight:600;font-size:1.05rem;margin:0 0 14px; }
.editorial { max-width:820px; }
.editorial .lead { font-size:1.15rem;line-height:1.6;margin-bottom:10px; }
.editorial .author-card { background:var(--lg-surface);border:1px solid var(--lg-line);border-radius:20px;padding:28px;margin:28px 0;box-shadow:0 6px 24px rgba(0,0,0,.04);grid-template-columns:132px 1fr;gap:26px; }
.editorial .author-photo { width:132px;height:132px;border-radius:16px; }
.editorial .author-name { font-size:1.5rem;letter-spacing:-.02em;margin-bottom:2px; }
.editorial .author-role { color:#2aa84a;font-weight:700;font-size:1rem;margin:0 0 14px; }
.editorial .author-body h3 { font-size:1.05rem;margin:18px 0 8px; }
.editorial .author-body ul { margin:0;padding-left:20px;color:var(--lg-muted); }
.editorial .author-body ul li { margin-bottom:5px; }
.editorial .section-block { margin-top:36px; }
@media(max-width:640px) {
  .editorial .author-card { grid-template-columns:1fr; }
  .editorial .author-photo { width:110px;height:110px; }
}
.button.primary { color:#fff; }
.button.primary:hover { background:#0a8d7b;filter:none; }
.site-header { position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);-webkit-backdrop-filter:saturate(1.4) blur(10px);backdrop-filter:saturate(1.4) blur(10px);border-bottom:1px solid var(--lg-line); }
.nav a { color:var(--lg-muted); }
.nav a:hover { color:var(--lg-accent-dark); }
.vacancy-hero { background:linear-gradient(168deg,var(--lg-accent-dark) 0%,#0b3f3c 60%,#0a3433 100%);color:#eafaf6;border-color:transparent; }
.vacancy-hero h1 { color:#fff; }
.vacancy-hero .lead, .vacancy-hero .vacancy-short { color:#b9d6cf; }
.vacancy-hero .vacancy-income-line { color:#fff; }
.vacancy-hero .vacancy-income-line strong, .vacancy-hero .vacancy-income-line b { color:#5ef0d0; }
.vacancy-hero .meta-updated { color:#9fc4bc; }
.site-footer { background:var(--lg-accent-dark);border-top:none; }
.footer-h { color:#e6f4f1; }
.footer-col a, .footer-cis a { color:#93b6ae; }
.footer-col a:hover { color:#fff;text-decoration-color:#5ef0d0; }
.footer-cis span { color:#93b6ae; }
.footer-copy { color:#a9c7c0; }
.footer-disclaimer { color:#7da39b; }
.footer-bottom, .footer-cis { border-top-color:rgba(255,255,255,.1); }
.button.vacancy-cta-hero, .button.vacancy-apply-hero { color:#fff; }
.vac-tags span { background:var(--lg-surface-muted);color:var(--lg-muted); }
.hero-content { background:linear-gradient(168deg,var(--lg-accent-dark) 0%,#0b3f3c 60%,#0a3433 100%);color:#eafaf6; }
.hero-content h1 { color:#fff; }
.hero-content .lead { color:#b9d6cf; }
.vacancy-hero h1 { color:#fff; }
.breadcrumb, .breadcrumb a, .breadcrumb span { color:#7d908d;font-size:14px; }
.breadcrumb a:hover { color:#086b5e; }
.card, .vacancy-card { border:1px solid var(--lg-line);border-radius:var(--lg-radius);box-shadow:var(--lg-shadow);background:var(--lg-surface); }
.card:hover, .link-card:hover { box-shadow:0 12px 36px rgba(10,52,51,.12),0 3px 10px rgba(10,52,51,.06);border-color:#d3dedc; }
.vacancy-section.vacancy-card, .vacancy-card--conditions { border:1px solid var(--lg-line);border-radius:var(--lg-radius);box-shadow:var(--lg-shadow);background:var(--lg-surface); }
.faq-list details, .faq-preview details, .vacancy-faq-list details { background:var(--lg-surface);border:1px solid var(--lg-line);border-radius:14px; }
.button { border-radius:14px; }
.principle-tiles li, .hub-benefits li { background:var(--lg-surface);border:1px solid var(--lg-line);border-radius:14px; }
.vacancy-card--conditions .vacancy-list li::before { color:var(--lg-accent); }
/* hero-CTA старых шаблонов -> жёлтый как новый .vac__cta (контраст на тёмном hero) */
.button.vacancy-apply-hero, .button.vacancy-cta-hero, .button.vacancy-apply-sticky { background:#fce000; color:#15201d; box-shadow:0 6px 18px rgba(252,224,0,.32); border:none; }
.button.vacancy-apply-hero:hover, .button.vacancy-cta-hero:hover, .button.vacancy-apply-sticky:hover { background:#ffe92e; filter:none; }
/* отступ снизу, чтобы липкая кнопка не перекрывала контент/футер (мобайл) */
@media (max-width: 768px) { body:has(.vacancy-apply-sticky) { padding-bottom: 84px; } }
/* ====== /legacy-bridge ====== */
