/* ╔═══════════════════════════════════════════════╗
   ║  ZaichenkoTeam — Vacancy Detail Page          ║
   ║  Vanilla CSS with shared design tokens        ║
   ╚═══════════════════════════════════════════════╝ */

/* ── DESIGN TOKENS (shared with homepage) ── */
:root {
  --bg: #f5f6fa;
  --bg-card: #ffffff;
  --fg: #111827;
  --fg-muted: #6b7280;
  --fg-light: #9ca3af;
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-fg: #ffffff;
  --success: #16a34a;
  --warning: #f59e0b;
  --info: #0ea5e9;
  --destructive: #ef4444;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 14px rgba(37,99,235,0.12);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-primary: 0 4px 14px rgba(37,99,235,0.25);
  --shadow-primary-hover: 0 8px 25px rgba(37,99,235,0.35);
  --radius: 1rem;
  --radius-sm: 0.75rem;
  --radius-full: 9999px;
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--fg);
  background:
    radial-gradient(circle at 50% 13rem, color-mix(in srgb, var(--company-brand) 18%, transparent) 0 9rem, transparent 24rem),
    radial-gradient(circle at 82% 28%, color-mix(in srgb, var(--company-brand) 14%, transparent) 0 13rem, transparent 30rem),
    radial-gradient(circle at 18% 72%, rgba(255, 242, 199, 0.32) 0 12rem, transparent 28rem),
    radial-gradient(circle at 84% 84%, rgba(255, 228, 241, 0.34) 0 13rem, transparent 30rem),
    linear-gradient(145deg, #f9fbff 0%, #f1f6ff 38%, #ffffff 64%, #f4f8ff 100%);
  line-height: 1.6;
}
body { --company-brand: var(--primary); }
body.zt-company-page {
  display: flex;
  flex-direction: column;
}
body.zt-company-page main {
  flex: 1 0 auto;
}
body.zt-company-page .footer {
  flex-shrink: 0;
  margin-bottom: 0 !important;
}
body.zt-company-page .footer-bottom {
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px)) !important;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ═══════════════════════════════════
   HEADER (shared — copy from homepage)
   ═══════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,246,250,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; }
.zt-wordmark {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.logo-svg { height: 22px; width: auto; max-width: 160px; color: var(--fg); }
.nav-desktop { display: flex; gap: 2rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--fg-muted); transition: color 0.2s; }
.nav-link:hover { color: var(--fg); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.lang-switch { display: inline-flex; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-full); padding: 2px; }
.lang-btn { padding: 0.3rem 0.7rem; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; color: var(--fg-light); background: transparent; border: none; border-radius: var(--radius-full); cursor: pointer; }
.lang-btn.active { background: var(--primary); color: var(--primary-fg); }
/* Burger — прихований на desktop, видимий на mobile */
.mobile-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; color: var(--fg);
  padding: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu { display: none; overflow: hidden; max-height: 0; transition: max-height 0.3s var(--ease); }
.mobile-menu.open { max-height: 420px; }
.mobile-nav { display: flex; flex-direction: column; gap: 1rem; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--border); }
.mobile-link { font-size: 0.875rem; font-weight: 500; color: var(--fg-muted); }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem;
  border-radius: var(--radius-full); padding: 0.625rem 1.5rem;
  border: none; cursor: pointer; transition: all 0.3s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--primary-fg); box-shadow: var(--shadow-primary); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-primary-hover); transform: translateY(-2px); }

@media (max-width: 768px) {
  .nav-desktop, .nav-right { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu { display: block; }
  .header-inner { height: 56px; }
  .logo-svg { height: 17px; max-width: 120px; }
}

/* ═══════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════ */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-card);
}
.breadcrumbs a { color: var(--fg-muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--primary); }
.bc-sep { margin: 0 0.5rem; color: var(--fg-light); }
.bc-current { color: var(--fg); font-weight: 500; }

@media (max-width: 768px) {
  .breadcrumbs { font-size: 0.75rem; padding: 0.75rem 0; }
}

/* ═══════════════════════════════════
   VACANCY PAGE LAYOUT
   ═══════════════════════════════════ */
.vacancy-page { padding: 2.5rem 0 4rem; }

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

@media (max-width: 1024px) {
  .vacancy-layout { grid-template-columns: 1fr 300px; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .vacancy-layout { grid-template-columns: 1fr; }
  .vacancy-page { padding: 1.5rem 0 3rem; }
}

/* ═══════════════════════════════════
   VACANCY HEADER
   ═══════════════════════════════════ */
.vacancy-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

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

.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem; font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}
.badge-hot { background: var(--destructive); color: white; }
.badge-new { background: rgba(22,163,74,0.1); color: var(--success); }
.badge-category { background: rgba(37,99,235,0.08); color: var(--primary); }
.badge-marketing { background: rgba(37,99,235,0.08); color: var(--primary); }
.badge-sales { background: rgba(22,163,74,0.08); color: var(--success); }
.badge-design { background: rgba(236,72,153,0.08); color: #ec4899; }
.badge-product { background: rgba(14,165,233,0.08); color: var(--info); }
.badge-hr { background: rgba(245,158,11,0.08); color: var(--warning); }

.vacancy-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
}

.vacancy-meta-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.5rem; margin-bottom: 1.25rem;
  font-size: 0.875rem; color: var(--fg-muted);
}
.vacancy-company {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; color: var(--fg);
  transition: color 0.2s;
}
.vacancy-company:hover { color: var(--primary); }
.company-avatar {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, #ff6b35, #f59e0b);
  color: white; font-family: var(--font-heading);
  font-weight: 800; font-size: 0.6875rem;
  display: flex; align-items: center; justify-content: center;
}
.vacancy-meta-item {
  display: inline-flex; align-items: center; gap: 0.375rem;
}
.vacancy-meta-item svg { color: var(--fg-light); flex-shrink: 0; }
.meta-sep { color: var(--border); }

.vacancy-salary-row {
  display: flex; align-items: baseline; gap: 0.375rem;
  margin-bottom: 1.25rem;
}
.vacancy-salary {
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 800;
  color: var(--fg); letter-spacing: -0.03em;
}
.salary-period { font-size: 0.875rem; color: var(--fg-muted); }

.vacancy-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.tag {
  font-size: 0.75rem; font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--bg); border: 1px solid var(--border);
  color: var(--fg-muted);
  transition: all 0.2s;
}
.tag:hover { border-color: var(--primary); color: var(--primary); }

@media (max-width: 768px) {
  .vacancy-title { font-size: 1.5rem; }
  .vacancy-salary { font-size: 1.375rem; }
  .vacancy-meta-row { font-size: 0.8125rem; }
}

/* ═══════════════════════════════════
   VACANCY SECTIONS (description, requirements, etc)
   ═══════════════════════════════════ */
.vacancy-section {
  margin-bottom: 2rem;
}
.vacancy-section h2 {
  font-size: 1.125rem; font-weight: 700;
  color: var(--fg); margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}
.vacancy-section p {
  font-size: 0.9375rem; color: var(--fg-muted);
  line-height: 1.7; margin-bottom: 0.75rem;
}

.vacancy-list {
  display: flex; flex-direction: column; gap: 0.625rem;
  padding-left: 1.25rem;
}
.vacancy-list li {
  font-size: 0.9375rem; color: var(--fg-muted);
  line-height: 1.6; position: relative;
  padding-left: 0.75rem;
}
.vacancy-list li::before {
  content: '';
  position: absolute; left: -0.75rem; top: 0.6em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary);
}

.vacancy-list-check li::before {
  content: '✓';
  width: auto; height: auto;
  background: none;
  color: var(--success);
  font-weight: 700; font-size: 0.8125rem;
  left: -1rem; top: 0.15em;
  border-radius: 0;
}

/* ═══════════════════════════════════
   SHARE
   ═══════════════════════════════════ */
.vacancy-share {
  display: flex; align-items: center; gap: 0.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.share-label { font-size: 0.8125rem; color: var(--fg-muted); font-weight: 500; }
.share-btn {
  font-size: 0.75rem; font-weight: 600;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-full);
  background: var(--bg); border: 1px solid var(--border);
  color: var(--fg-muted); transition: all 0.2s;
}
.share-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ═══════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════ */
.vacancy-sidebar {
  display: flex; flex-direction: column; gap: 1rem;
  position: sticky; top: 80px;
}

@media (max-width: 768px) {
  .vacancy-sidebar {
    position: static;
    order: -1;
  }
}

/* Apply CTA Card */
.sidebar-apply {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-apply {
  width: 100%;
  justify-content: center;
  font-size: 1.0625rem;
  padding: 1rem 2rem;
  margin-bottom: 0.75rem;
}

.apply-hint {
  display: flex; align-items: center; justify-content: center;
  gap: 0.375rem;
  font-size: 0.75rem; color: var(--fg-muted);
  margin-bottom: 1rem;
}
.apply-hint svg { color: #27aeed; flex-shrink: 0; }

.apply-stats {
  display: flex; justify-content: center; gap: 1.5rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem; color: var(--fg-muted);
}

/* Company Card */
.sidebar-company {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sc-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.sc-logo {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #ff6b35, #f59e0b);
  color: white; font-family: var(--font-heading);
  font-weight: 800; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-name { font-size: 1rem; font-weight: 700; color: var(--fg); }
.sc-industry { font-size: 0.75rem; color: var(--fg-muted); }

.sc-desc {
  font-size: 0.8125rem; color: var(--fg-muted);
  line-height: 1.6; margin-bottom: 1rem;
}

.sc-stats {
  display: flex; gap: 1.5rem; margin-bottom: 1rem;
  padding-top: 0.875rem; border-top: 1px solid var(--border-light);
}
.sc-stat { text-align: center; }
.sc-stat-value {
  display: block; font-family: var(--font-heading);
  font-weight: 800; font-size: 1.25rem; color: var(--fg);
}
.sc-stat-label { font-size: 0.75rem; color: var(--fg-muted); }

.sc-link {
  display: block; text-align: center;
  font-family: var(--font-heading);
  font-size: 0.8125rem; font-weight: 600;
  color: var(--primary); transition: gap 0.2s;
}
.sc-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════
   SIMILAR VACANCIES
   ═══════════════════════════════════ */
.similar-section {
  padding: 3rem 0 4rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
}
.section-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700; color: var(--fg);
  text-align: center; margin-bottom: 2rem;
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .similar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .similar-grid { grid-template-columns: 1fr; } }

.job-card {
  padding: 1.5rem; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease);
  cursor: pointer;
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.2); }

.job-title {
  font-size: 1rem; font-weight: 600; color: var(--fg);
  margin: 0.5rem 0 0.625rem; transition: color 0.2s;
}
.job-card:hover .job-title { color: var(--primary); }

.job-meta {
  display: flex; flex-direction: column; gap: 0.25rem;
  font-size: 0.8125rem; color: var(--fg-muted); margin-bottom: 1rem;
}
.job-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.875rem; border-top: 1px solid var(--border-light);
}
.job-salary { font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; color: var(--fg); }
.job-type {
  font-size: 0.75rem; font-weight: 500; color: var(--fg-muted);
  background: var(--bg-card); padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════
   FOOTER (shared — matches homepage)
   ═══════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, #eef2ff 0%, #f0f4ff 40%, #f5f6fa 100%);
  color: var(--fg); padding: 3.5rem 0 0;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.18), transparent);
}
.footer-logo { color: var(--fg); height: 18px; width: auto; max-width: 160px; }
.footer-tagline { margin-top: 0.875rem; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--fg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.footer h4 { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; color: var(--fg); }
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer a { font-size: 0.8125rem; color: var(--fg-muted); transition: color 0.2s; }
.footer a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(37,99,235,0.1); padding: 1.5rem 0; text-align: center; font-size: 0.8125rem; color: var(--fg-muted); }

.footer-grid { align-items: start; }
.footer-brand { max-width: 280px; }
.footer-tagline {
  color: var(--fg) !important;
  margin-top: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.footer-socials {
  display: flex;
  gap: 0.625rem;
  margin-top: 1rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(37,99,235,0.08) !important;
  border: 1px solid rgba(37,99,235,0.08);
  color: var(--primary) !important;
  box-shadow: none;
  transition: all 0.25s ease;
}
.footer-social svg {
  width: 17px;
  height: 17px;
}
.footer-social:hover {
  background: rgba(37,99,235,0.15) !important;
  color: var(--primary-dark) !important;
  border-color: rgba(37,99,235,0.15);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  padding: 1rem 0 1.15rem;
  text-align: center;
}
.footer-bottom p {
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .footer { padding: 2.5rem 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-logo { height: 16px; max-width: 120px; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════
   COMPANIES ARCHIVE
   ═══════════════════════════════════ */
.companies-page {
  background: transparent;
}

.companies-hero {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 0 2.75rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(37,99,235,0.14), transparent 28rem),
    radial-gradient(circle at 92% 0%, rgba(14,165,233,0.12), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  border-bottom: 1px solid rgba(37,99,235,0.08);
}

.companies-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.25rem;
  color: var(--fg-muted);
  font-size: 0.8125rem;
}

.companies-breadcrumbs a {
  color: var(--fg-muted);
}

.companies-breadcrumbs a:hover {
  color: var(--primary);
}

.companies-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: end;
}

.companies-title {
  max-width: 780px;
  margin: 0;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.companies-subtitle {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--fg-muted);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
}

.companies-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.companies-stats div {
  min-width: 0;
  padding: 1.125rem;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.companies-stats strong {
  display: block;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1;
}

.companies-stats span {
  display: block;
  margin-top: 0.45rem;
  color: var(--fg-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.companies-toolbar {
  position: sticky;
  top: 64px;
  z-index: 40;
  padding: 1rem 0;
  background: rgba(245,246,250,0.86);
  border-bottom: 1px solid rgba(37,99,235,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.companies-filter {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 240px) minmax(180px, 240px) auto auto;
  gap: 0.75rem;
  align-items: end;
}

.companies-filter label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.375rem;
  color: var(--fg-muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.companies-filter input,
.companies-filter select {
  width: 100%;
  height: 42px;
  padding: 0 0.875rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  outline: none;
  box-shadow: var(--shadow-sm);
}

.companies-filter input:focus,
.companies-filter select:focus {
  border-color: rgba(37,99,235,0.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

.companies-reset {
  align-self: center;
  color: var(--fg-muted);
  font-size: 0.8125rem;
  font-weight: 700;
}

.companies-reset:hover {
  color: var(--primary);
}

.companies-results {
  padding: 3rem 0 4rem;
}

.companies-results-head {
  margin-bottom: 1.5rem;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.company-archive-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  padding: 1.125rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.company-archive-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37,99,235,0.22);
  box-shadow: var(--shadow-lg);
}

.company-archive-main {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.company-archive-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 30px -18px rgba(37,99,235,0.7);
}

.company-archive-logo-image {
  padding: 0.625rem;
  background: #fff;
  border: 1px solid var(--border);
}

.company-archive-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-archive-title-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.company-archive-title-row h3 {
  min-width: 0;
  margin: 0;
  color: var(--fg);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.company-verified {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  color: #067647;
  background: #ecfdf3;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 800;
}

.company-archive-copy p {
  margin: 0.55rem 0 0;
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.company-archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.8rem;
}

.company-archive-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.625rem;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.company-archive-jobs {
  padding: 0.9rem;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
}

.company-archive-jobs-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.625rem;
  color: var(--fg);
  font-size: 0.8125rem;
}

.company-archive-jobs-head a {
  color: var(--primary);
  font-weight: 800;
}

.company-archive-job-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--border-light);
  color: var(--fg);
  font-size: 0.875rem;
  font-weight: 700;
}

.company-archive-job-link:first-of-type {
  border-top: 0;
}

.company-archive-job-link span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-archive-job-link em {
  flex: 0 0 auto;
  color: var(--fg-muted);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
}

.companies-empty {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
}

.companies-empty h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.companies-empty p {
  margin: 0 auto 1rem;
  max-width: 460px;
  color: var(--fg-muted);
}

@media (max-width: 980px) {
  .companies-hero-grid,
  .companies-grid,
  .companies-filter {
    grid-template-columns: 1fr;
  }

  .companies-toolbar {
    position: static;
  }

  .companies-filter .btn,
  .companies-reset {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .companies-hero {
    padding: 2rem 0;
  }

  .companies-breadcrumbs {
    margin-bottom: 1.25rem;
  }

  .companies-stats {
    grid-template-columns: 1fr;
  }

  .companies-results {
    padding: 2rem 0 3rem;
  }

  .company-archive-main {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0.875rem;
  }

  .company-archive-logo-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════
   MOBILE APPLY BUTTON (bottom fixed)
   ═══════════════════════════════════ */
@media (max-width: 768px) {
  .sidebar-apply {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 50;
    background: var(--bg-card);
    border: none; border-radius: 0;
    border-top: 1px solid var(--border);
    padding: 0.875rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: flex; align-items: center; gap: 0.75rem;
  }
  .btn-apply { margin-bottom: 0; flex: 1; font-size: 0.9375rem; padding: 0.75rem 1rem; }
  .apply-hint, .apply-stats { display: none; }
  .vacancy-page { padding-bottom: 6rem; }
}

/* ═══════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════ */

/* ═══════════════════════════════════
   COMPANY PROFILE v3 — minimal
   ═══════════════════════════════════ */

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Reveal animations ── */
.reveal, .reveal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.in-view, .reveal-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.co-hero {
  position: relative;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}
.co-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(5rem, 12vw, 9rem);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(249, 251, 255, 0) 0%, color-mix(in srgb, var(--company-brand) 8%, #f7faff) 100%);
  z-index: -1;
}

.co-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: mesh-float 20s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--company-brand) 22%, #ffffff), transparent 60%);
  top: -160px; left: -100px;
}
.blob-2 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, color-mix(in srgb, var(--company-brand) 28%, #dbeafe), transparent 60%);
  top: -80px; right: -160px;
  animation-delay: -8s;
  animation-duration: 24s;
  opacity: 0.22;
}
@keyframes mesh-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,24,39,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,24,39,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 70%);
}

.co-breadcrumbs {
  position: absolute;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 2;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}
.co-breadcrumbs a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.co-breadcrumbs a:hover { color: var(--primary); }
.bc-sep { margin: 0 0.5rem; color: var(--fg-light); }
.bc-current { color: var(--fg); font-weight: 500; }

.co-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 1.5rem;
}

/* Logo with glow */
.co-logo-hero {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.co-logo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, color-mix(in srgb, var(--company-brand) 52%, transparent), transparent 65%);
  filter: blur(30px);
  z-index: -1;
  animation: glow-pulse 4.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.co-logo-big {
  width: 112px;
  height: 112px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--company-brand) 0%, color-mix(in srgb, var(--company-brand) 72%, #ffffff) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px -16px color-mix(in srgb, var(--company-brand) 45%, transparent), 0 12px 24px -8px rgba(0,0,0,0.1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.co-logo-big:hover {
  transform: scale(1.04) rotate(-2deg);
}
.co-logo-big-image {
  background: transparent;
  padding: 0;
  border: 1px solid rgba(111, 139, 255, 0.18);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  overflow: hidden;
}
.co-logo-big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.co-name {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--fg);
  margin: 0 0 0.875rem;
}

.co-tagline {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0 auto 1.5rem;
  max-width: 580px;
  text-wrap: balance;
}

.co-chips {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.45rem 0.875rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 139, 255, 0.14);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--fg);
  font-weight: 500;
}
.chip svg { color: var(--fg-light); flex-shrink: 0; }

.co-cta-row {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.625rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-tap-highlight-color: transparent;
}
.btn-hero-primary {
  background: var(--fg);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(17,24,39,0.4);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(17,24,39,0.5);
  background: var(--primary);
}
.btn-hero-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.625rem;
  height: 1.625rem;
  padding: 0 0.5rem;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 800;
}
.btn-hero-ghost {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, color-mix(in srgb, var(--company-brand) 14%, #ffffff) 100%);
  color: var(--fg);
  border: 1px solid color-mix(in srgb, var(--company-brand) 24%, rgba(111, 139, 255, 0.14));
  box-shadow:
    0 16px 34px rgba(72, 94, 170, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}
.btn-hero-ghost:hover {
  border-color: color-mix(in srgb, var(--company-brand) 45%, var(--primary));
  color: var(--company-brand);
  transform: translateY(-2px);
  box-shadow:
    0 20px 42px color-mix(in srgb, var(--company-brand) 18%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.btn-hero-light {
  background: #fff;
  color: var(--fg);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}
.btn-hero-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.4);
}

/* ═══════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════ */
.sec-head {
  margin-bottom: 1.75rem;
  text-align: center;
}
.sec-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  flex-wrap: wrap;
}
.sec-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 0.625rem; }

/* ═══════════════════════════════════
   ABOUT — 2 cols
   ═══════════════════════════════════ */
.co-about {
  padding: 3rem 0 3rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.co-cover {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0;
  margin-top: -1px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--company-brand) 8%, #f7faff) 0%, rgba(255, 255, 255, 0) 78%);
  isolation: isolate;
}
.co-cover::before {
  content: "";
  position: absolute;
  inset: -3rem 0 auto;
  height: clamp(12rem, 24vw, 20rem);
  pointer-events: none;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--company-brand) 18%, transparent), transparent 68%);
  filter: blur(24px);
  opacity: 0.55;
  z-index: -1;
}

.co-cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(111, 139, 255, 0.16);
  box-shadow:
    0 26px 70px rgba(72, 94, 170, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.co-brand {
  padding: 3rem 0;
  background: transparent;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.brand-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 139, 255, 0.14);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow:
    0 18px 44px rgba(72, 94, 170, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}

.brand-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: 0;
}

.brand-prose {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.brand-prose p + p {
  margin-top: 0.75rem;
}
.about-prose a,
.brand-prose a,
.benefit-copy a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--primary) 12%, transparent), color-mix(in srgb, var(--primary) 20%, transparent)) 0 92% / 100% 0.38em no-repeat;
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: border-color 0.2s var(--ease), background-size 0.2s var(--ease);
}
.about-prose a:hover,
.brand-prose a:hover,
.benefit-copy a:hover {
  background-size: 100% 0.6em;
  border-bottom-color: currentColor;
}

@media (max-width: 768px) {
  .co-cover { padding: 1.25rem 0; }
  .co-cover img { border-radius: 18px; max-height: 260px; }
  .co-brand { padding: 2rem 0; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card { border-radius: 18px; padding: 1.125rem; }
}

.about-text .sec-tag {
  text-align: left;
}
.about-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.text-accent {
  background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-prose p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--fg-muted);
  margin: 0;
}

.about-info {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(111, 139, 255, 0.14);
  border-radius: var(--radius);
  box-shadow:
    0 20px 50px rgba(72, 94, 170, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}
.info-dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.875rem;
  column-gap: 1rem;
}
.info-dl dt {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  grid-column: 1;
}
.info-dl dd {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
  grid-column: 2;
  text-align: right;
}
.company-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.about-info > .company-socials:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.company-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(111, 139, 255, 0.16);
  border-radius: 0.8rem;
  transition: transform 0.2s, color 0.2s, border-color 0.2s, background 0.2s;
}
.company-social:hover {
  color: var(--company-brand);
  background: color-mix(in srgb, var(--company-brand) 8%, #ffffff);
  border-color: color-mix(in srgb, var(--company-brand) 35%, var(--border));
  transform: translateY(-2px);
}
.company-social svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: currentColor;
  stroke: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.company-social-website svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.company-social-facebook svg,
.company-social-instagram svg,
.company-social-linkedin svg,
.company-social-telegram svg,
.company-social-x svg {
  width: 1.12rem;
  height: 1.12rem;
}
.company-social span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ═══════════════════════════════════
   BENEFITS (simple 4-col)
   ═══════════════════════════════════ */
.co-benefits {
  padding: 3rem 0;
  background: transparent;
}

.co-about + .co-benefits {
  padding-top: 1.25rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 280px));
  justify-content: center;
  gap: 0.875rem;
}
@media (max-width: 960px) { .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); } }
@media (max-width: 640px) { .benefits-grid { grid-template-columns: minmax(0, 1fr); } }

.benefit-tile {
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 139, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
}
.benefit-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.08);
  border-color: rgba(37,99,235,0.2);
}
.ben-emoji {
  display: inline-block;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.benefit-copy,
.benefit-tile h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.benefit-copy strong {
  font-weight: 800;
}
.benefit-tile p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
}

/* ═══════════════════════════════════
   JOBS LIST
   ═══════════════════════════════════ */
.co-jobs {
  padding: 3rem 0;
}
.co-jobs .sec-head-row {
  margin-bottom: 1.5rem;
}
.co-jobs .link-arrow {
  gap: 0.55rem;
  padding: 0.72rem 1.05rem;
  color: #1d4ed8;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    linear-gradient(135deg, color-mix(in srgb, var(--company-brand) 16%, transparent), rgba(37, 99, 235, 0.08));
  border: 1px solid color-mix(in srgb, var(--company-brand) 24%, rgba(255, 255, 255, 0.64));
  border-radius: var(--radius-full);
  box-shadow:
    0 14px 34px color-mix(in srgb, var(--company-brand) 12%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px) saturate(155%);
  -webkit-backdrop-filter: blur(14px) saturate(155%);
  transition:
    gap 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.co-jobs .link-arrow:hover {
  gap: 0.75rem;
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--company-brand) 38%, rgba(255, 255, 255, 0.72));
  box-shadow:
    0 18px 42px color-mix(in srgb, var(--company-brand) 18%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.zt-company-empty {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(111, 139, 255, 0.14);
  border-radius: var(--radius);
  color: var(--fg-muted);
  font-size: 0.9375rem;
}
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(111, 139, 255, 0.14);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow:
    0 18px 44px rgba(72, 94, 170, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.job-card:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: 0 10px 30px -8px rgba(37,99,235,0.18);
}
.jc-left { flex: 1; min-width: 0; }
.jc-cat-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.jc-cat {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.jc-pill {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.jc-hot { background: rgba(239,68,68,0.1); color: var(--destructive); }
.jc-new { background: rgba(22,163,74,0.1); color: var(--success); }
.jc-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.375rem;
  color: var(--fg);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.job-card:hover .jc-title { color: var(--primary); }
.jc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}
.jc-dot { color: var(--border); }
.jc-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.jc-salary {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.jc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--fg-muted);
  transition: all 0.3s;
  flex-shrink: 0;
}
.job-card:hover .jc-arrow {
  background: var(--primary);
  color: #fff;
  transform: rotate(-45deg);
}

/* Subscribe wide */
.subscribe-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(37,99,235,0.22);
  border-radius: var(--radius);
  flex-wrap: wrap;
  background-image: linear-gradient(135deg, rgba(37,99,235,0.04), transparent 60%);
}
.subscribe-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 240px;
}
.subscribe-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -6px rgba(37,99,235,0.4);
}
.subscribe-wide h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.125rem;
  color: var(--fg);
}
.subscribe-wide p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.4;
}
.btn-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(37,99,235,0.4);
}
.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(37,99,235,0.5);
  background: var(--primary-dark);
}

/* ═══════════════════════════════════
   SIMILAR COMPANIES
   ═══════════════════════════════════ */
.co-similar {
  padding: 3rem 0;
}
.sim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
}
@media (max-width: 900px) { .sim-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sim-grid { grid-template-columns: 1fr; } }

.sim-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.sim-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px -10px rgba(37,99,235,0.15);
}
.sim-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}
.sim-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--fg);
}
.sim-card p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin: 0 0 0.875rem;
  flex: 1;
}
.sim-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  background: rgba(37,99,235,0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════
   EMPLOYER CTA
   ═══════════════════════════════════ */
.co-employer-cta {
  padding: 1.5rem 0 4rem;
}
.emp-cta-card {
  position: relative;
  padding: 3rem 2.5rem;
  background: var(--fg);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.emp-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(37,99,235,0.3) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(255,107,53,0.2) 0%, transparent 40%);
  z-index: 0;
}
.emp-cta-content {
  position: relative;
  z-index: 1;
}
.emp-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.625rem;
  color: #fff;
  text-wrap: balance;
}
.emp-cta-content p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 1.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ═══════════════════════════════════
   MOBILE
   ═══════════════════════════════════ */
@media (max-width: 768px) {
  .co-hero { padding: 2.5rem 0 2.5rem; }
  .co-breadcrumbs { top: 0.875rem; }
  .co-hero-content { padding-top: 1rem; }
  .co-logo-big { width: 80px; height: 80px; font-size: 1.75rem; border-radius: 20px; }
  .co-logo-big-image img { border-radius: 18px; }
  .co-logo-glow { inset: -24px; }
  .co-name { font-size: 2rem; margin-bottom: 0.75rem; }
  .co-tagline { font-size: 0.9375rem; margin-bottom: 1.25rem; }
  .co-chips { margin-bottom: 1.25rem; gap: 0.375rem; }
  .chip { padding: 0.35rem 0.7rem; font-size: 0.75rem; }
  .btn-hero { padding: 0.75rem 1.25rem; font-size: 0.875rem; }

  .co-about, .co-benefits, .co-jobs, .co-similar { padding: 2rem 0; }
  .sec-head { margin-bottom: 1.25rem; }
  .co-jobs .link-arrow {
    width: 100%;
    justify-content: center;
  }

  .about-grid { gap: 1.25rem; }
  .about-info { padding: 1.125rem; }

  .benefit-tile { padding: 1.125rem 1rem; }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 1rem;
  }
  .jc-right {
    width: 100%;
    justify-content: space-between;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-light);
  }
  .jc-title { font-size: 0.9375rem; }

  .subscribe-wide { padding: 1.25rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-subscribe { width: 100%; justify-content: center; }

  .emp-cta-card { padding: 2rem 1.5rem; }
  .co-employer-cta { padding: 1rem 0 2.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mesh-blob, .co-logo-glow { animation: none !important; }
  .reveal, .reveal-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@supports (padding: env(safe-area-inset-bottom)) {
  body { padding-bottom: env(safe-area-inset-bottom, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ═══════════════════════════════════
   ПРАВКИ v2 — share icons, dark footer, mobile Safari
   ═══════════════════════════════════ */

/* 3. Share — SVG іконки замість тексту */
.share-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--border);
  color: var(--fg-muted);
  transition: all 0.2s var(--ease);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.share-icon:hover { border-color: var(--primary); color: var(--primary); }
.share-icon.copied { background: rgba(22,163,74,0.1); border-color: var(--success); color: var(--success); }
.share-icon svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .vacancy-share { flex-wrap: wrap; gap: 0.375rem; }
  .share-icon { width: 38px; height: 38px; }
  .share-label { width: 100%; margin-bottom: 0.25rem; }
}


.fd-links {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 6px; margin-bottom: 0.75rem;
  font-size: 0.75rem;
}
.fd-links a { color: rgba(255,255,255,0.65); transition: color 0.2s; white-space: nowrap; }
.fd-links a:hover { color: white; }
.fd-sep { color: rgba(255,255,255,0.25); }

.fd-copy {
  font-size: 0.6875rem; color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .fd-links { flex-direction: column; gap: 0.375rem; }
  .fd-sep { display: none; }
}

/* ═══════════════════════════════════
   MOBILE SAFARI / iPHONE ОПТИМІЗАЦІЯ
   ═══════════════════════════════════ */

/* Safe area для iPhone X+ (notch / home indicator) */
.vacancy-page {
  padding-bottom: calc(6rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 768px) {
  .sidebar-apply {
    bottom: 0; left: 0; right: 0;
    padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Prevent iOS Safari auto-zoom on inputs */
input, select, textarea {
  font-size: 16px !important; /* Safari зумить на <16px */
}

/* iOS momentum scrolling */
.vacancy-main, .vacancy-sidebar {
  -webkit-overflow-scrolling: touch;
}

/* Prevent rubber-band на body коли sidebar sticky */
body {
  overscroll-behavior-y: none;
}

/* Touch targets — мін 44px для Apple HIG */
.share-icon, .btn-apply, .breadcrumbs a, .vacancy-company, .tag {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Breadcrumbs на mobile — горизонтальний скрол */
@media (max-width: 768px) {
  .breadcrumbs .container {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .breadcrumbs .container::-webkit-scrollbar { display: none; }
}

/* Tags — wrap правильно на малих екранах */
@media (max-width: 480px) {
  .vacancy-tags { gap: 0.25rem; }
  .tag { padding: 0.25rem 0.625rem; font-size: 0.6875rem; min-height: 32px; min-width: auto; }
}

/* Company card sidebar — на mobile компактніше */
@media (max-width: 768px) {
  .sidebar-company { padding: 1.125rem; }
  .sc-logo { width: 38px; height: 38px; border-radius: 10px; font-size: 0.75rem; }
}

/* Vacancy title mobile */
@media (max-width: 480px) {
  .vacancy-title { font-size: 1.25rem; }
  .vacancy-salary { font-size: 1.25rem; }
}

/* Similar section mobile */
@media (max-width: 768px) {
  .similar-section { padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom, 0px)); }
}

/* Removed old footer styles — no longer needed (replaced by .footer-dark) */
/* footer visible */


/* ═══════════════════════════════════
   ПРАВКИ v3 — footer light, mobile CTA, hint visible
   ═══════════════════════════════════ */



/* 4. Mobile apply bar — показуємо hint + stats */
@media (max-width: 768px) {
  .sidebar-apply {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 50;
    background: var(--bg-card);
    border: none; border-radius: 0;
    border-top: 1px solid var(--border);
    padding: 0.625rem 1rem calc(0.625rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: flex; flex-direction: column; gap: 0.375rem;
    text-align: center;
  }
  .btn-apply {
    width: 100%; margin-bottom: 0;
    font-size: 0.9375rem; padding: 0.75rem 1rem;
    justify-content: center;
  }
  /* Hint і stats ВИДИМІ на mobile */
  .apply-hint-always {
    display: flex !important;
    align-items: center; justify-content: center;
    gap: 0.25rem;
    font-size: 0.6875rem; color: var(--fg-muted);
    margin: 0;
  }
  .apply-stats-always {
    display: flex !important;
    justify-content: center; gap: 1rem;
    font-size: 0.6875rem; color: var(--fg-muted);
    padding-top: 0.25rem;
    border-top: none;
    margin: 0;
  }
}

/* Share icons — оновлені розміри */
.share-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.share-icon:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37,99,235,0.04);
}
.share-icon svg { flex-shrink: 0; }

/* Footer responsive лого */
.footer-logo {
  max-width: 180px;
  height: auto;
}
@media (max-width: 768px) {
  .footer-logo { max-width: 140px; }
}
@media (max-width: 480px) {
  .footer-logo { max-width: 120px; }
}

/* ═══════════════════════════════════
   ПРАВКИ v4 — чистий mobile, без badges, текстова CTA
   ═══════════════════════════════════ */

/* 1. Category label (замість badges) */
.vacancy-category-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}


}


}

/* 3. Vacancy header mobile — чисте вирівнювання, без хаосу */
@media (max-width: 768px) {
  .vacancy-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }

  .vacancy-category-label {
    font-size: 0.6875rem;
    margin-bottom: 0.375rem;
  }

  .vacancy-title {
    font-size: 1.375rem !important;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .vacancy-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .meta-sep { display: none; }

  .vacancy-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
  }

  .vacancy-company {
    font-size: 0.9375rem;
  }
  .company-avatar {
    width: 32px; height: 32px;
    border-radius: 8px;
    font-size: 0.625rem;
  }

  .vacancy-salary-row {
    margin-bottom: 1rem;
  }
  .vacancy-salary {
    font-size: 1.5rem !important;
  }

  .vacancy-tags {
    gap: 0.25rem;
  }
  .tag {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
    min-height: auto;
    min-width: auto;
  }
}

/* Company card mobile — компактніший */
@media (max-width: 768px) {
  .sidebar-company {
    padding: 1rem;
    margin-bottom: 0.5rem;
  }
  .sc-header {
    margin-bottom: 0.625rem;
  }
  .sc-logo {
    width: 36px; height: 36px;
    border-radius: 9px;
    font-size: 0.6875rem;
  }
  .sc-name { font-size: 0.9375rem; }
  .sc-desc {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
  .sc-link {
    font-size: 0.8125rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
  }
}

/* Vacancy sections mobile — менші відступи */
@media (max-width: 768px) {
  .vacancy-section {
    margin-bottom: 1.5rem;
  }
  .vacancy-section h2 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .vacancy-section p,
  .vacancy-list li {
    font-size: 0.875rem;
  }
}

/* Share mobile */
@media (max-width: 768px) {
  .vacancy-share {
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    gap: 0.375rem;
  }
  .share-label {
    width: 100%;
    margin-bottom: 0.125rem;
    font-size: 0.75rem;
  }
  .share-icon {
    width: 40px; height: 40px;
  }
}

/* Similar section mobile */
@media (max-width: 768px) {
  .similar-section {
    padding: 1.5rem 0 2rem;
  }
  .section-title {
    font-size: 1.125rem !important;
    margin-bottom: 1rem;
  }
  .similar-grid {
    gap: 0.5rem;
  }
  .job-card {
    padding: 1rem;
  }
}

/* Breadcrumbs — на мобілі як одна лінія */
@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 0.6875rem;
    padding: 0.625rem 0;
  }
  .breadcrumbs .container {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .breadcrumbs .container::-webkit-scrollbar { display: none; }
}

/* Mobile: vacancy content ПЕРШИМ, company card внизу */
@media (max-width: 768px) {
  .vacancy-layout {
    display: flex;
    flex-direction: column;
  }
  .vacancy-main {
    order: 1;
  }
  .vacancy-sidebar {
    order: 2;
    position: static;
  }
  /* Apply bar = fixed bottom, не в потоці */
  .sidebar-apply {
    order: 99;
  }
}

}

/* ═══════════════════════════════════
   HEADER — оригінальний з UA/EN на mobile
   ═══════════════════════════════════ */



.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}
.mobile-menu.open { max-height: 420px; }
.mobile-nav {
  display: flex; flex-direction: column;
  gap: 1rem; padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--fg-muted);
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-right { display: none; }
  .mobile-menu { display: block; }
  .header {
    background: rgba(245, 246, 250, 0.58);
    border-bottom-color: rgba(229, 231, 235, 0.46);
    box-shadow: 0 10px 32px rgba(72, 94, 170, 0.08);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
  }
  .mobile-menu {
    background: rgba(245, 246, 250, 0.64);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
  }
  .mobile-nav {
    border-top-color: rgba(229, 231, 235, 0.46);
  }
  .header-inner { height: 56px; }
  .logo-svg { height: 17px !important; max-width: 120px; }
}

/* Breadcrumbs — видимі на всіх розмірах */
.breadcrumbs {
  display: block;
}
@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 0.6875rem;
    padding: 0.625rem 0;
  }
  .breadcrumbs .container {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumbs .container::-webkit-scrollbar { display: none; }
}

/* ═══════════════════════════════════
   КНОПКИ — візуальна ієрархія
   ═══════════════════════════════════ */

/* "Опублікувати вакансію" — напівпрозора, secondary */
.nav-cta {
  background: rgba(37, 99, 235, 0.1) !important;
  color: var(--primary) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  box-shadow: none !important;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  background: rgba(37, 99, 235, 0.18) !important;
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

/* "Відгукнутися" — головна CTA, анімована тінь */
.btn-apply {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 60%, #3b82f6 100%) !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3), 0 1px 3px rgba(37, 99, 235, 0.15);
  animation: apply-pulse 3s ease-in-out infinite;
  position: relative;
}
.btn-apply:hover {
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4), 0 2px 6px rgba(37, 99, 235, 0.2) !important;
  transform: translateY(-2px);
}

@keyframes apply-pulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3), 0 1px 3px rgba(37, 99, 235, 0.15);
  }
  50% {
    box-shadow: 0 6px 28px rgba(37, 99, 235, 0.45), 0 2px 8px rgba(37, 99, 235, 0.2);
  }
}


/* UA/EN switcher inside burger menu */
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0;
}
.mobile-lang .lang-btn {
  padding: 0.35rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--fg-light);
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-lang .lang-btn.active {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}

/* ═══════════════════════════════════
   BREADCRUMBS — фікс вирівнювання
   ═══════════════════════════════════ */
.breadcrumbs .container {
  display: flex;
  align-items: baseline;  /* всі елементи на одній базовій лінії */
  flex-wrap: wrap;
  gap: 0;
}
.breadcrumbs a,
.breadcrumbs .bc-sep,
.breadcrumbs .bc-current {
  display: inline;
  line-height: 1.5;
  vertical-align: baseline;
  font-size: 0.8125rem;
}
.bc-sep {
  margin: 0 0.5rem;
  color: var(--fg-light);
}
.bc-current {
  color: var(--fg);
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumbs .container {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    align-items: baseline;
  }
  .breadcrumbs .container::-webkit-scrollbar { display: none; }

  .breadcrumbs a,
  .breadcrumbs .bc-sep,
  .breadcrumbs .bc-current {
    font-size: 0.75rem;
  }
  .bc-sep {
    margin: 0 0.375rem;
  }
}


/* Зарплата — синій як MARKETING label */
.vacancy-salary {
  color: var(--primary) !important;
}

/* Final mobile burger tap polish */
.mobile-toggle {
  border-radius: 14px !important;
  -webkit-tap-highlight-color: transparent !important;
}

.mobile-toggle:focus,
.mobile-toggle:active {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.mobile-toggle:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14) !important;
}

/* Final site-wide heading weight polish */
.section-title,
.sec-title,
.hero-title,
.jobs-hero-title,
.blog-hero-title,
.thanks-page .section-title {
  font-weight: 600 !important;
}

/* Final company typography and salary polish */
.co-about .sec-title,
.co-brand .sec-title,
.co-benefits .sec-title,
.co-jobs .sec-title,
.co-similar .sec-title,
.about-headline {
  font-size: clamp(1.375rem, 3vw, 1.875rem) !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.015em !important;
}

.co-brand .sec-head {
  text-align: left !important;
}

.co-benefits .sec-head,
.co-benefits .sec-title {
  align-items: flex-start !important;
  text-align: left !important;
}

.benefits-grid {
  justify-content: flex-start !important;
}

.benefit-tile,
.benefit-copy {
  text-align: left !important;
}

.brand-card-story-only {
  text-align: left !important;
}

.co-about .sec-tag,
.co-brand .sec-tag,
.co-benefits .sec-tag,
.co-jobs .sec-tag,
.co-similar .sec-tag {
  display: none !important;
}

.info-dl dt {
  font-weight: 560 !important;
}

.info-dl dd {
  font-weight: 500 !important;
  letter-spacing: -0.005em !important;
}

.co-name {
  font-weight: 700 !important;
}

.sec-tag,
.co-chips .chip,
.jc-cat,
.jc-pill {
  font-weight: 560 !important;
}

.benefit-copy,
.benefit-tile h3,
.benefit-copy strong,
.jc-title {
  font-weight: 560 !important;
}

.co-jobs .jc-salary,
.jc-salary,
.job-salary,
.vacancy-salary {
  font-size: 0.75rem !important;
  font-weight: 560 !important;
  letter-spacing: -0.005em !important;
}

@media (max-width: 768px) {
  .co-about .sec-title,
  .co-brand .sec-title,
  .co-benefits .sec-title,
  .co-jobs .sec-title,
  .co-similar .sec-title,
  .about-headline {
    font-size: clamp(1.375rem, 8vw, 1.875rem) !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
  }

  .co-brand .sec-head {
    text-align: left !important;
  }

  .co-benefits .sec-head,
  .co-benefits .sec-title {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .benefits-grid {
    justify-content: flex-start !important;
  }

  .benefit-tile,
  .benefit-copy {
    text-align: left !important;
  }

  .co-about .sec-tag,
  .co-brand .sec-tag,
  .co-benefits .sec-tag,
  .co-jobs .sec-tag,
  .co-similar .sec-tag {
    display: none !important;
  }

  .info-dl dt {
    font-weight: 560 !important;
  }

  .info-dl dd {
    font-weight: 500 !important;
  }

  .co-name {
    font-weight: 700 !important;
  }

  .sec-tag,
  .co-chips .chip,
  .jc-cat,
  .jc-pill,
  .benefit-copy,
  .benefit-tile h3,
  .benefit-copy strong,
  .jc-title {
    font-weight: 560 !important;
  }

  .co-jobs .jc-salary,
  .jc-salary,
  .job-salary,
  .vacancy-salary {
    font-size: 0.75rem !important;
    font-weight: 560 !important;
  }
}
