*, *::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: 1220px;
  --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: 1.15rem 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 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  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-logo-mark {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.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 clamp(1rem, 3vw, 2rem);
}

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.65rem; 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 {
  position: relative;
  border: 1px solid rgba(232, 93, 4, 0.1);
  border-radius: 20px;
  margin-bottom: 0;
  overflow: hidden;
  min-height: 540px;
  box-shadow: var(--shadow-sm);
  background:
    radial-gradient(ellipse at 76% 38%, rgba(255, 255, 255, 0.65), transparent 58%),
    url("../img/brand/hero-skyline.fc2a0e924de8.svg") center bottom / 100% 180px no-repeat,
    radial-gradient(ellipse at 5% 100%, rgba(244, 157, 75, 0.18), transparent 62%),
    #f6f4f1;
}

/* A shallow ground shadow sits over the PNG's empty bottom margin.
   Its bounds follow the image without changing its layout or pixels. */
.hero::after {
  content: '';
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right: 25px;
  bottom: 0;
  width: 560px;
  max-width: 53%;
  height: 14px;
  background: radial-gradient(ellipse at 46% 65%, rgba(92, 62, 37, 0.15), transparent 65%);
}

.hero-content {
  box-sizing: content-box;
  position: relative;
  z-index: 2;
  width: 480px;
  max-width: 44%;
  padding: 80px 0 56px 48px;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.14;
  margin-bottom: 0.6rem;
}

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

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-actions .btn,
.hero-actions .btn-outline {
  padding: 0.85rem 1.25rem;
  font-size: 1.02rem;
}

/* ─── Hero mascot (single unified canvas) ─── */

/* Crop from mascot-approved.png: (1365, 328)–(1640, 580).
   Only the empty side margins fade; the mascot remains fully opaque. */
.hero-mascot-img {
  z-index: 1;
  right: 25px;
  bottom: 0;
  width: 560px;
  max-width: 53%;
  height: auto;
  display: block;
  margin: 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 2%, #000 98%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 2%, #000 98%, transparent);
  pointer-events: none;
  user-select: none;
}

/* Keep desktop positioning separate from the mobile flow layout. */
@media (min-width: 701px) {
  .hero-mascot-img { position: absolute !important; }
}

.start-work {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.start-work-mascot {
  display: block;
  width: 185px;
  max-width: 100%;
  height: auto;
}

.start-work-content h2 { margin-top: 0; }

/* ─── Benefit strip ─── */

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin: 2.75rem 0;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 68px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.35;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(232, 93, 4, 0.3);
}

.benefit-card__icon {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent-light);
}

.benefit-card__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

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

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 4.5rem;
  margin: 3rem 0;
  padding: 2rem 1.5rem;
  background: var(--color-bg-alt);
  border-radius: 14px;
}

.stat-item {
  text-align: center;
}

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

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
}

/* ─── 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: 4.5rem;
}

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

.page-section--card {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: 2.25rem 2.5rem;
  margin-top: 4.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;
}

.vacancy-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.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.3rem 0.75rem;
  font-size: 1rem;
  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: 4.5rem;
}

.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.5rem;
  background: var(--color-bg);
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.12s;
}

.vacancy-card:hover {
  box-shadow: var(--shadow-sm);
  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;
}

/* ─── Company/service logo ─── */

.service-logo {
  display: block;
  width: 56px;
  height: 56px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 6px;
}

.service-logo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-card__logo {
  margin-bottom: 0.6rem;
}

.lp-hero__logo {
  width: 64px;
  height: 64px;
  margin-bottom: 0.75rem;
}

/* ─── 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: 2.25rem 2.5rem;
  margin-top: 4.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: 1024px) {
  .hero {
    min-height: 460px;
  }
  .hero-content {
    width: 44%;
    padding: 64px 0 48px 24px;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero-mascot-img {
    right: 8px;
    max-width: 49%;
  }
  .hero::after {
    right: 8px;
    max-width: 49%;
    height: 8px;
  }
  .vacancy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@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 {
    min-height: 0;
    background-size: auto, auto 100px, auto, auto;
  }
  .hero::after {
    right: 50%;
    transform: translateX(50%);
    width: 300px;
    max-width: calc(100% - 40px);
    height: 6px;
  }
  .hero-content { box-sizing: border-box; width: auto; max-width: none; padding: 2rem 1.25rem 0; }
  .hero h1 { font-size: 2rem; max-width: none; }
  .hero-slogan, .hero-lead { font-size: 1rem; max-width: none; }
  .hero-mascot-img {
    position: static;
    right: auto;
    bottom: auto;
    display: block;
    width: 300px;
    max-width: calc(100% - 40px);
    margin: 1.5rem auto 0;
  }
  .start-work { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
  .start-work-mascot { width: 130px; margin: 0 auto; }
  .nav-cta { display: none; }
  .benefit-strip { grid-template-columns: repeat(2, 1fr); margin: 2rem 0; }
  .steps { grid-template-columns: 1fr; }
  .page-section { margin-top: 3rem; }
  .page-section--card { margin-top: 3rem; padding: 1.5rem 1.25rem; }
  .info-box { padding: 1.25rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-brand { max-width: none; }
  .stats-bar { gap: 1.25rem 2rem; padding: 1.5rem 1rem; margin: 2rem 0; }
  .stat-value { font-size: 1.75rem; }
  .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; }
  .vacancy-grid { 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; margin-top: 3rem; }
  .lead-form-section { margin-top: 3rem; }
  .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); }
  .benefit-strip { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .benefit-card { padding: 0.9rem 1rem; min-height: 0; }
  .stats-bar { gap: 1rem 1.5rem; }
}
