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

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f8f7f5;
  --color-text: #1a1a1a;
  --color-muted: #5a5755;
  --color-accent: #e85d04;
  --color-accent-dark: #c44c00;
  --color-accent-light: #fff3ed;
  --color-border: #e0ddd9;
  --color-surface: #f5f4f1;
  --font-main: system-ui, -apple-system, sans-serif;
  --max-width: 1100px;
  --spacing: 1rem;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* ─── Header ─── */

.site-header {
  border-bottom: 2px solid var(--color-accent);
  padding: var(--spacing) 0;
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing);
}

.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.site-logo:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 0.4rem 1rem;
  border-radius: 5px;
}

.nav-cta:hover {
  background: var(--color-accent-dark);
  text-decoration: none;
}

/* ─── Layout ─── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
}

main {
  padding: 2.5rem 0 4rem;
}

/* ─── Footer ─── */

.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0 1.5rem;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand {
  flex: 0 0 auto;
  max-width: 260px;
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.footer-slogan {
  font-size: 0.825rem;
  color: var(--color-accent);
  margin: 0 0 0.85rem;
  font-style: italic;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0 0 0.25rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--color-muted);
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}

.footer-nav-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  flex: 1;
}

.footer-nav-col {
  min-width: 130px;
}

.footer-nav-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav-col a {
  color: var(--color-muted);
  font-size: 0.875rem;
}

.footer-nav-col a:hover {
  color: var(--color-text);
  text-decoration: none;
}

.footer-bottom {
  font-size: 0.8rem;
  color: var(--color-muted);
  opacity: 0.75;
}

/* legacy compat for any stray .footer-nav/.footer-brand p usage */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  list-style: none;
}
.footer-nav a { color: var(--color-muted); }
.footer-nav a:hover { color: var(--color-text); text-decoration: none; }
.footer-brand p { margin: 0; line-height: 1.6; }

/* ─── Typography ─── */

h1, h2, h3 {
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; margin-top: 2rem; }
h3 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

.page-intro {
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 640px;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

/* ─── Hero ─── */

.hero {
  background: linear-gradient(140deg, #fffaf6 0%, #fff3e8 60%, #ffebd6 100%);
  border: 1px solid rgba(232, 93, 4, 0.1);
  border-radius: 12px;
  padding: 3.5rem 2.5rem;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(232,93,4,0.05);
  top: -90px;
  right: -60px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-slogan {
  font-size: 1.05rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 0.9rem;
  line-height: 1.45;
}

.hero-lead {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 520px;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ─── Mascot illustration placeholder ─── */

.illustration-placeholder {
  position: relative;
  background: radial-gradient(ellipse at 55% 40%, rgba(232,93,4,0.10) 0%, rgba(232,93,4,0.02) 70%);
  border: 1px solid rgba(232, 93, 4, 0.15);
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  user-select: none;
}

.mascot-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.mascot-bg-circle--a {
  width: 160px;
  height: 160px;
  background: rgba(232, 93, 4, 0.07);
  top: -40px;
  right: -30px;
}

.mascot-bg-circle--b {
  width: 90px;
  height: 90px;
  background: rgba(232, 93, 4, 0.05);
  bottom: 5px;
  left: -20px;
}

.mascot-bg-circle--c {
  width: 50px;
  height: 50px;
  background: rgba(232, 93, 4, 0.08);
  top: 45%;
  left: 12%;
}

.mascot-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.mascot-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px dashed rgba(232, 93, 4, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.mascot-icon-shape {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: rgba(232, 93, 4, 0.2);
  display: block;
}

.mascot-text {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 500;
}

.mascot-subtext {
  font-size: 0.7rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mascot-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
}

.mascot-pill {
  display: inline-block;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.18);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  color: var(--color-accent);
  white-space: nowrap;
}

/* ─── Brand strip ─── */

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  margin: 1.25rem 0 2.5rem;
  box-shadow: var(--shadow-sm);
}

.brand-strip-item {
  flex: 1 1 175px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.25rem;
  border-right: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.35;
}

.brand-strip-item:last-child {
  border-right: none;
}

.brand-strip-mark {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ─── Stats bar ─── */

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.1rem;
}

/* ─── Buttons ─── */

.btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.15s, box-shadow 0.15s;
}

.btn:hover {
  background: var(--color-accent-dark);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(232,93,4,0.25);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  padding: 0.5rem 1.35rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
}

/* ─── Section headers ─── */

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}

.section-header h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.section-header a {
  white-space: nowrap;
  font-size: 0.9rem;
}

.page-section {
  margin-top: 2.5rem;
}

.page-section--card {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.page-section--card > h2:first-child,
.page-section--card > .section-header:first-child {
  margin-top: 0;
}

/* ─── Cards ─── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--color-bg);
  transition: box-shadow 0.15s;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card h3 { margin-bottom: 0.35rem; }

.card-meta {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* ─── Salary ─── */

.salary {
  display: inline-block;
  background: var(--color-accent-light);
  border: 1px solid rgba(232,93,4,0.15);
  border-radius: 5px;
  padding: 0.25rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin-bottom: 0.5rem;
}

/* ─── Steps ─── */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(232,93,4,0.3);
}

.step-body h3 {
  margin-top: 0.3rem;
  margin-bottom: 0.25rem;
}

.step-body p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ─── Vacancy detail ─── */

.vacancy-sidebar {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.vacancy-salary-big {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.vacancy-meta .badge {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.prose p { margin-bottom: 1rem; }

/* ─── Badge ─── */

.badge {
  display: inline-block;
  background: var(--color-surface);
  border-radius: 4px;
  padding: 0.15rem 0.55rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.badge--accent {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

/* ─── FAQ ─── */

.faq-list {
  list-style: none;
  margin-top: 1rem;
}

.faq-list li {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-list li:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--color-muted);
  margin-bottom: 0;
}

/* ─── Contacts ─── */

.info-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.75rem;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.info-box dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.6rem 1.5rem;
  align-items: start;
  margin: 0;
}

.info-box dt {
  font-weight: 600;
  color: var(--color-muted);
}

/* ─── Combo links ─── */

.combo-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.combo-links a {
  display: inline-block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: background 0.1s, border-color 0.1s;
}

.combo-links a:hover {
  background: var(--color-accent-light);
  border-color: rgba(232,93,4,0.25);
  color: var(--color-accent);
  text-decoration: none;
}

/* ─── Empty state ─── */

.empty {
  color: var(--color-muted);
  padding: 2rem 0;
  font-size: 0.95rem;
}

/* ─── Breadcrumb ─── */

.breadcrumb {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-text);
  text-decoration: none;
}

/* ─── Lead form ─── */

.lead-form-section {
  margin-top: 3rem;
}

.lead-form-section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.lead-form-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  max-width: 600px;
}

.lead-form-intro {
  color: var(--color-muted);
  max-width: 520px;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.lead-form {
  max-width: 520px;
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-field label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-field input[type="text"],
.form-field input[type="number"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-main);
  background: var(--color-bg);
  transition: border-color 0.1s, box-shadow 0.1s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.12);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #c00;
}

.field-error {
  display: block;
  color: #c00;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.form-errors {
  background: #fff0f0;
  border: 1px solid #f5c0c0;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  color: #c00;
  font-size: 0.9rem;
}

.form-field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.5rem;
  background: rgba(232,93,4,0.03);
  border: 1px solid rgba(232,93,4,0.1);
  border-radius: 6px;
  padding: 0.65rem 0.8rem;
}

.form-field--checkbox input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
  accent-color: var(--color-accent);
}

.form-field--checkbox label {
  font-weight: normal;
  font-size: 0.875rem;
  color: var(--color-muted);
  cursor: pointer;
  margin-bottom: 0;
}

.form-field--checkbox .field-error {
  display: block;
  margin-top: 0.25rem;
}

.required {
  color: var(--color-accent);
}

/* ─── Calculator ─── */

.calculator-block {
  max-width: 520px;
  margin-top: 1.5rem;
}

.calculator-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.calculator-form .form-field input[type="number"] {
  max-width: 200px;
}

.calc-result {
  background: var(--color-accent);
  color: #fff;
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(232,93,4,0.3);
}

.calc-result__label {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.calc-result__value {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0;
}

.calc-note {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

/* ─── Thank you ─── */

.thank-you {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.thank-you-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.thank-you h1 { margin-bottom: 0.75rem; }
.thank-you p { color: var(--color-muted); }

/* ─── Vacancy job card ─── */

.vacancy-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem;
  background: var(--color-bg);
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.12s;
}

.vacancy-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.vacancy-card-top {
  flex: 1;
}

.vacancy-card-meta {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.vacancy-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.vacancy-card h3 a {
  color: var(--color-text);
}

.vacancy-card h3 a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.vacancy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.6rem;
  margin-bottom: 0.25rem;
}

.vacancy-card-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0.75rem;
}

.vacancy-card-actions .btn {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.link-more {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.link-more:hover {
  color: var(--color-accent);
  text-decoration: none;
}

/* ─── City card ─── */

.city-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  transition: box-shadow 0.15s, border-color 0.15s;
}

.city-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent);
}

.city-card h3 {
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.city-card h3 a { color: var(--color-text); }

.city-card h3 a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.city-card .region {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
}

/* ─── Service card ─── */

.service-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--color-bg);
  transition: box-shadow 0.15s, border-color 0.15s;
}

.service-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent);
}

.service-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.service-card h3 a { color: var(--color-text); }

.service-card h3 a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
}

/* ─── Features grid ─── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.feature-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  transition: box-shadow 0.15s;
}

.feature-item:hover {
  box-shadow: var(--shadow-sm);
}

.feature-item h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
}

/* ─── Landing intro accent ─── */

.landing-intro {
  background: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

.landing-intro p {
  margin: 0;
  font-size: 1rem;
}

/* ─── Vacancy filters ─── */

.vacancy-filters {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.vacancy-filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.vacancy-filters__field {
  flex: 1 1 180px;
}

.vacancy-filters__field label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.vacancy-filters__field select {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-main);
  background: var(--color-bg);
  transition: border-color 0.1s;
}

.vacancy-filters__field select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.vacancy-filters__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1.5rem;
}

/* ─── Legal pages ─── */

.legal-page { max-width: 720px; }

.legal-header { margin-bottom: 1.5rem; }

.legal-header h1 { margin-bottom: 0.25rem; }

.legal-date {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin: 0;
}

.legal-intro {
  background: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
}

.legal-intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.legal-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-section:last-of-type { border-bottom: none; }

.legal-section h2 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.legal-section p {
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.75rem;
}

.legal-list li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

.legal-operator {
  background: var(--color-surface);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin: 0.75rem 0 1rem;
}

.legal-operator p {
  margin-bottom: 0.4rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.legal-operator p:last-child { margin-bottom: 0; }

.legal-operator__name {
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--color-text) !important;
}

.legal-related {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-muted);
}

.legal-related p { margin: 0; }

/* ─── Vacancy hero (detail page) ─── */

.vacancy-hero {
  background: linear-gradient(130deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 24px rgba(232,93,4,0.22);
}

.vacancy-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.vacancy-hero__badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.vacancy-hero h1 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.vacancy-hero__salary {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.vacancy-hero__salary-unit {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.85;
  margin-left: 0.25rem;
}

.vacancy-hero__salary--fallback {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.85;
}

.vacancy-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.vacancy-hero__btn {
  background: #fff;
  color: var(--color-accent);
  font-size: 1rem;
  padding: 0.7rem 1.75rem;
}

.vacancy-hero__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-accent-dark);
  box-shadow: none;
}

/* ─── Vacancy two-column layout ─── */

.vacancy-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.vacancy-layout__sidebar {
  position: sticky;
  top: 80px;
}

.vacancy-section {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.vacancy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.vacancy-section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.vacancy-conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.vacancy-condition-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.vacancy-condition-label {
  font-size: 0.775rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.vacancy-condition-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

.vacancy-info-card {
  background: var(--color-surface);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.vacancy-info-salary {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.vacancy-info-salary small {
  display: block;
  font-size: 0.775rem;
  font-weight: 400;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

.vacancy-info-list {
  list-style: none;
  margin-bottom: 1.25rem;
}

.vacancy-info-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text);
}

.vacancy-info-list li:last-child { border-bottom: none; }

.vacancy-info-label {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-right: 0.25rem;
}

.vacancy-info-cta {
  display: block;
  text-align: center;
  width: 100%;
}

.vacancy-related-links {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem;
  background: var(--color-bg);
}

.vacancy-related-links h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vacancy-related-list { list-style: none; }

.vacancy-related-list li {
  border-bottom: 1px solid var(--color-border);
}

.vacancy-related-list li:last-child { border-bottom: none; }

.vacancy-related-list a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

.vacancy-related-list a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

/* ─── Landing page hero (city/service pages) ─── */

.lp-hero {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.lp-hero__body {
  flex: 1;
  min-width: 0;
}

.lp-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.lp-hero__lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 580px;
  margin-bottom: 0;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.lp-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lp-stat {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  text-align: center;
  min-width: 110px;
  box-shadow: var(--shadow-sm);
}

.lp-stat__value {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}

.lp-stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

/* ─── Combo landing hero ─── */

.combo-hero {
  background: linear-gradient(130deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 24px rgba(232,93,4,0.22);
}

.combo-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.combo-hero__badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.combo-hero h1 {
  color: #fff;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.combo-hero__salary {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.combo-hero__salary-unit {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.85;
  margin-left: 0.25rem;
}

.combo-hero__salary-fallback {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.85;
}

.combo-hero__lead {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 580px;
  margin-bottom: 0;
}

.combo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.combo-hero__btn {
  background: #fff;
  color: var(--color-accent);
  font-size: 1rem;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  line-height: 1.4;
  transition: background 0.15s;
}

.combo-hero__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-accent-dark);
  text-decoration: none;
}

.combo-hero__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 0.55rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  display: inline-block;
  line-height: 1.4;
}

.combo-hero__btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
}

/* ─── FAQ more link ─── */

.faq-more {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* ─── CTA band ─── */

.cta-band {
  background: linear-gradient(130deg, var(--color-accent) 0%, #d95200 100%);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.cta-band__sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.cta-band__btn {
  background: #fff;
  color: var(--color-accent);
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  display: inline-block;
  flex-shrink: 0;
  transition: background 0.15s;
}

.cta-band__btn:hover {
  background: rgba(255,255,255,0.9);
  color: var(--color-accent-dark);
  text-decoration: none;
}

/* ─── Responsive ─── */

@media (max-width: 900px) {
  .vacancy-layout {
    grid-template-columns: 1fr;
  }
  .vacancy-layout__sidebar {
    position: static;
  }
  .vacancy-conditions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  h1 { font-size: 1.6rem; }
  .hero { padding: 2rem 1.25rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .illustration-placeholder { display: none; }
  .nav-cta { display: none; }
  .brand-strip { display: none; }
  .steps { grid-template-columns: 1fr; }
  .info-box { padding: 1.25rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-brand { max-width: none; }
  .stats-bar { gap: 1rem 2rem; }
  .stat-value { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .vacancy-hero { padding: 1.75rem 1.25rem; }
  .vacancy-hero h1 { font-size: 1.6rem; }
  .vacancy-hero__salary { font-size: 1.5rem; }
  .vacancy-conditions { grid-template-columns: 1fr; }
  .lp-hero { flex-direction: column; padding: 1.75rem 1.25rem; }
  .lp-hero__aside { flex-direction: row; }
  .lp-hero h1 { font-size: 1.75rem; }
  .combo-hero { padding: 1.75rem 1.25rem; }
  .combo-hero h1 { font-size: 1.75rem; }
  .combo-hero__salary { font-size: 1.4rem; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 1.5rem 1.25rem; }
  .page-section--card { padding: 1.5rem 1.25rem; }
  .lead-form-box { padding: 1.25rem 1.25rem; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .lp-hero__aside { flex-wrap: wrap; }
  .lp-stat { flex: 1 1 calc(50% - 0.375rem); }
}
