
/* Обёртка всей страницы */
.page-wrapper[data-v-92f8d87b] {
  min-height: 100vh;
  position: relative;
}

/* Глобальная архитектурная сетка - фиксированный фон */
.global-grid[data-v-92f8d87b] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Основная сетка */
.grid-main[data-v-92f8d87b] {
  position: absolute;
  width: 100%;
  height: 100%;
}
.grid-line-h[data-v-92f8d87b] {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  transform-origin: left center;
  animation: expandH-92f8d87b 1.5s ease-out forwards;
}
.grid-line-v[data-v-92f8d87b] {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
  transform-origin: center top;
  animation: expandV-92f8d87b 1.5s ease-out forwards;
  animation-delay: 0.5s;
}
.global-grid.dark .grid-line-h[data-v-92f8d87b],
.global-grid.dark .grid-line-v[data-v-92f8d87b] {
  background: rgba(255, 255, 255, 0.06);
}
@keyframes expandH-92f8d87b {
from { transform: scaleX(0);
}
to { transform: scaleX(1);
}
}
@keyframes expandV-92f8d87b {
from { transform: scaleY(0);
}
to { transform: scaleY(1);
}
}

/* Линии перспективы */
.grid-perspective[data-v-92f8d87b] {
  position: absolute;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}
.perspective-line[data-v-92f8d87b] {
  position: absolute;
  top: -50%;
  height: 200%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(25, 118, 210, 0.1) 50%, transparent 100%);
  transform-origin: center top;
}
.perspective-line.line-1[data-v-92f8d87b] {
  transform: rotate(45deg);
}
.perspective-line.line-2[data-v-92f8d87b] {
  transform: rotate(-45deg);
}
.global-grid.dark .perspective-line[data-v-92f8d87b] {
  background: linear-gradient(to bottom, transparent 0%, rgba(25, 118, 210, 0.15) 50%, transparent 100%);
}

/* Точки пересечения */
.grid-nodes[data-v-92f8d87b] {
  position: absolute;
  width: 100%;
  height: 100%;
}
.grid-node[data-v-92f8d87b] {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(25, 118, 210, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.grid-node.active[data-v-92f8d87b] {
  background: #00d9ff;
  box-shadow: 0 0 10px rgba(25, 118, 210, 0.8);
  transform: translate(-50%, -50%) scale(2);
}
.global-grid.dark .grid-node[data-v-92f8d87b] {
  background: rgba(25, 118, 210, 0.4);
}

/* Размеры */
.grid-dimensions[data-v-92f8d87b] {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  opacity: 0.5;
}
.dimension-h[data-v-92f8d87b] {
  position: absolute;
  left: 65px;
  border-top: 1px dashed rgba(0,0,0,0.2);
  width: 50px;
}
.dimension-v[data-v-92f8d87b] {
  position: absolute;
  top: 60px;
  border-left: 1px dashed rgba(0,0,0,0.2);
  height: 50px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.dim-text[data-v-92f8d87b] {
  background: rgba(255,255,255,0.9);
  padding: 2px 4px;
  border-radius: 2px;
}
.global-grid.dark .dim-text[data-v-92f8d87b] {
  background: rgba(0,0,0,0.9);
  color: rgba(255,255,255,0.7);
}
.global-grid.dark .dimension-h[data-v-92f8d87b],
.global-grid.dark .dimension-v[data-v-92f8d87b] {
  border-color: rgba(255,255,255,0.2);
}

/* Угловые маркеры */
.corner-markers[data-v-92f8d87b] {
  position: absolute;
  width: 100%;
  height: 100%;
}
.marker[data-v-92f8d87b] {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(25, 118, 210, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: rgba(25, 118, 210, 0.5);
  font-family: 'Courier New', monospace;
}
.marker-tl[data-v-92f8d87b] { top: 60px; left: 80px; border-right: none; border-bottom: none;
}
.marker-tr[data-v-92f8d87b] { top: 60px; right: 20px; border-left: none; border-bottom: none;
}
.marker-bl[data-v-92f8d87b] { bottom: 80px; left: 80px; border-right: none; border-top: none;
}
.marker-br[data-v-92f8d87b] { bottom: 80px; right: 20px; border-left: none; border-top: none;
}
.global-grid.dark .marker[data-v-92f8d87b] {
  border-color: rgba(25, 118, 210, 0.4);
  color: rgba(25, 118, 210, 0.6);
}

/* Прогресс скролла */
.scroll-progress[data-v-92f8d87b] {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #1976d2;
  z-index: 9999;
  transition: width 0.1s;
}

/* Обертка контента */
.content-wrapper[data-v-92f8d87b] {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: transparent;
}

/* Утилиты */
.full-width[data-v-92f8d87b] {
  width: 100%;
}
.block[data-v-92f8d87b] {
  display: block;
}
.text-primary[data-v-92f8d87b] {
  color: #00d9ff;
}

/* Типографика */
.header-meta[data-v-92f8d87b] {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #00d9ff;
  letter-spacing: 2px;
  display: flex;
  gap: 15px;
}
.project-code[data-v-92f8d87b] {
  position: relative;
  padding-left: 15px;
}
.project-code[data-v-92f8d87b]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: #00d9ff;
}
.project-date[data-v-92f8d87b] {
  opacity: 0.7;
}
.vacancies-title[data-v-92f8d87b] {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}
.dimension-badge[data-v-92f8d87b] {
  border: 1px solid rgba(25, 118, 210, 0.3);
  padding: 6px 12px;
  border-radius: 2px;
  position: relative;
  font-family: 'Courier New', monospace;
  font-size: 14px;
}
.dimension-badge[data-v-92f8d87b]::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 4px;
  height: 4px;
  background: #00d9ff;
}
.hero-text[data-v-92f8d87b] {
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px;
  opacity: 0.9;
}
.hero-actions[data-v-92f8d87b] {
  display: flex;
  gap: 15px;
}
.hero-btn[data-v-92f8d87b] {
  background: #00d9ff;
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.hero-btn[data-v-92f8d87b]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}
.hero-btn[data-v-92f8d87b]:hover::before {
  left: 0;
}
.hero-btn-outline[data-v-92f8d87b] {
  border: 1px solid #1976d2;
  color: #1976d2;
  background: transparent;
  padding: 12px 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.hero-btn-outline[data-v-92f8d87b]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(25, 118, 210, 0.1);
  transition: left 0.3s ease;
}
.hero-btn-outline[data-v-92f8d87b]:hover::before {
  left: 0;
}

/* Hero Grid */
.hero-grid[data-v-92f8d87b] {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, transparent 100%);
  border: 1px solid rgba(25, 118, 210, 0.2);
  overflow: hidden;
}
.grid-overlay[data-v-92f8d87b] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(25, 118, 210, 0.1) 20px),
    repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(25, 118, 210, 0.1) 20px);
}
.hero-dimensions[data-v-92f8d87b] {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.dimension-line-h[data-v-92f8d87b] {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1976d2;
  transform: scaleX(0.8);
  opacity: 0.3;
}
.dimension-line-v[data-v-92f8d87b] {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #1976d2;
  transform: scaleY(0.8);
  opacity: 0.3;
}
.dimension-point[data-v-92f8d87b] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #1976d2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

/* Section Meta */
.section-meta[data-v-92f8d87b] {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Courier New', monospace;
}
.meta-number[data-v-92f8d87b] {
  font-size: 14px;
  color: #1976d2;
  font-weight: bold;
}
.meta-text[data-v-92f8d87b] {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* Benefits Section */
.benefits-section[data-v-92f8d87b] {
  position: relative;
}
.benefit-card[data-v-92f8d87b] {
  position: relative;
  padding: 40px 30px;
  border: 1px solid rgba(25, 118, 210, 0.2);
  height: 100%;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  overflow: hidden;
}
.benefit-card[data-v-92f8d87b]:hover {
  border-color: #1976d2;
  transform: translateY(-5px);
}
.card-grid[data-v-92f8d87b] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.1;
}
.card-grid-line-h[data-v-92f8d87b],
.card-grid-line-v[data-v-92f8d87b] {
  position: absolute;
  background: #1976d2;
}
.card-grid-line-h[data-v-92f8d87b] {
  left: 0;
  width: 100%;
  height: 1px;
}
.card-grid-line-v[data-v-92f8d87b] {
  top: 0;
  height: 100%;
  width: 1px;
}
.card-number[data-v-92f8d87b] {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #1976d2;
  opacity: 0.5;
}
.benefit-icon[data-v-92f8d87b] {
  margin-bottom: 25px;
}
.benefit-title[data-v-92f8d87b] {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.benefit-title[data-v-92f8d87b]::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #1976d2;
}
.benefit-description[data-v-92f8d87b] {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

/* Card Corners */
.card-corner[data-v-92f8d87b] {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #1976d2;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.benefit-card:hover .card-corner[data-v-92f8d87b],
.vacancy-card:hover .card-corner[data-v-92f8d87b] {
  opacity: 1;
}
.corner-tl[data-v-92f8d87b] {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.corner-tr[data-v-92f8d87b] {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}
.corner-bl[data-v-92f8d87b] {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}
.corner-br[data-v-92f8d87b] {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

/* Filters Section */
.filters-header[data-v-92f8d87b] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filters-count[data-v-92f8d87b] {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #1976d2;
}
.filters-grid[data-v-92f8d87b] {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 15px;
}
.search-input[data-v-92f8d87b] .q-field__control {
  background: transparent;
  border: 1px solid rgba(25, 118, 210, 0.2);
  border-radius: 0;
}
.search-input[data-v-92f8d87b] .q-field__control:hover {
  border-color: #1976d2;
}
.filter-select[data-v-92f8d87b] .q-field__control {
  background: transparent;
  border: 1px solid rgba(25, 118, 210, 0.2);
  border-radius: 0;
}
.filter-select[data-v-92f8d87b] .q-field__control:hover {
  border-color: #1976d2;
}
.reset-btn[data-v-92f8d87b] {
  border: 1px solid rgba(25, 118, 210, 0.2);
  height: 40px;
  padding: 0 20px;
}
.reset-btn[data-v-92f8d87b]:hover {
  border-color: #1976d2;
  background: rgba(25, 118, 210, 0.05);
}

/* Vacancies Grid */
.vacancy-card[data-v-92f8d87b] {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(25, 118, 210, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  overflow: hidden;
}
.vacancy-card[data-v-92f8d87b]:hover {
  border-color: #1976d2;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.vacancy-grid-bg[data-v-92f8d87b] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
}
.vacancy-grid-line-h[data-v-92f8d87b],
.vacancy-grid-line-v[data-v-92f8d87b] {
  position: absolute;
  background: #1976d2;
}
.vacancy-grid-line-h[data-v-92f8d87b] {
  left: 0;
  width: 100%;
  height: 1px;
}
.vacancy-grid-line-v[data-v-92f8d87b] {
  top: 0;
  height: 100%;
  width: 1px;
}
.vacancy-header[data-v-92f8d87b] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.vacancy-number[data-v-92f8d87b] {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #1976d2;
  opacity: 0.7;
}
.vacancy-department[data-v-92f8d87b] {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  background: rgba(25, 118, 210, 0.1);
}
.dept-dot[data-v-92f8d87b] {
  width: 4px;
  height: 4px;
  background: #1976d2;
  border-radius: 50%;
}
.vacancy-title[data-v-92f8d87b] {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}
.vacancy-meta[data-v-92f8d87b] {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}
.meta-item[data-v-92f8d87b] {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-family: 'Courier New', monospace;
}
.vacancy-description[data-v-92f8d87b] {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vacancy-footer[data-v-92f8d87b] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed rgba(25, 118, 210, 0.2);
}
.view-details[data-v-92f8d87b] {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #1976d2;
  font-family: 'Courier New', monospace;
}
.vacancy-date[data-v-92f8d87b] {
  font-size: 12px;
  opacity: 0.5;
  font-family: 'Courier New', monospace;
}

/* Loading State */
.loading-state[data-v-92f8d87b] {
  text-align: center;
  padding: 60px 0;
}
.loading-grid[data-v-92f8d87b] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}
.loading-cell[data-v-92f8d87b] {
  aspect-ratio: 1;
  border: 1px solid rgba(25, 118, 210, 0.2);
  animation: pulse-92f8d87b 1.5s ease infinite;
}
.loading-text[data-v-92f8d87b] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #1976d2;
}
.loading-dot[data-v-92f8d87b] {
  width: 4px;
  height: 4px;
  background: #1976d2;
  border-radius: 50%;
  animation: pulse-92f8d87b 1.5s ease infinite;
}
@keyframes pulse-92f8d87b {
0%, 100% { opacity: 0.3;
}
50% { opacity: 1;
}
}

/* Empty State */
.empty-state[data-v-92f8d87b] {
  text-align: center;
  padding: 60px 0;
}
.empty-grid[data-v-92f8d87b] {
  position: relative;
  padding: 60px;
  border: 1px solid rgba(25, 118, 210, 0.2);
  background: rgba(255, 255, 255, 0.02);
}
.empty-code[data-v-92f8d87b] {
  font-size: 48px;
  font-weight: 800;
  color: #1976d2;
  opacity: 0.3;
  display: block;
  margin-bottom: 20px;
  font-family: 'Courier New', monospace;
}
.empty-message h3[data-v-92f8d87b] {
  font-size: 24px;
  margin-bottom: 10px;
}
.empty-message p[data-v-92f8d87b] {
  margin-bottom: 20px;
  opacity: 0.7;
}

/* CTA Section */
.cta-card[data-v-92f8d87b] {
  position: relative;
  padding: 60px;
  border: 1px solid #1976d2;
  background: rgba(25, 118, 210, 0.05);
  backdrop-filter: blur(5px);
  overflow: hidden;
}
.cta-grid[data-v-92f8d87b] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.1;
}
.cta-grid-line-h[data-v-92f8d87b],
.cta-grid-line-v[data-v-92f8d87b] {
  position: absolute;
  background: #1976d2;
}
.cta-grid-line-h[data-v-92f8d87b] {
  left: 0;
  width: 100%;
  height: 1px;
}
.cta-grid-line-v[data-v-92f8d87b] {
  top: 0;
  height: 100%;
  width: 1px;
}
.cta-meta[data-v-92f8d87b] {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #1976d2;
  margin-bottom: 15px;
}
.cta-title[data-v-92f8d87b] {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-text[data-v-92f8d87b] {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 500px;
}
.cta-btn[data-v-92f8d87b] {
  padding: 15px 40px;
  font-size: 16px;
  background: #1976d2;
  border: none;
  position: relative;
  overflow: hidden;
}
.cta-btn[data-v-92f8d87b]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}
.cta-btn[data-v-92f8d87b]:hover::before {
  left: 0;
}

/* Dialog Styles */
.vacancy-dialog-card[data-v-92f8d87b] {
  position: relative;
  background: #ffffff;
  color: #1a1a1a;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}
[data-v-92f8d87b] .dark .vacancy-dialog-card {
  background: #121212;
  color: #ffffff;
}
.dialog-grid-bg[data-v-92f8d87b] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
}
.dialog-grid-line-h[data-v-92f8d87b],
.dialog-grid-line-v[data-v-92f8d87b] {
  position: absolute;
  background: #1976d2;
}
.dialog-grid-line-h[data-v-92f8d87b] {
  left: 0;
  width: 100%;
  height: 1px;
}
.dialog-grid-line-v[data-v-92f8d87b] {
  top: 0;
  height: 100%;
  width: 1px;
}
.dialog-bar[data-v-92f8d87b] {
  background: #1976d2;
  color: white;
  padding: 10px 20px;
  font-family: 'Courier New', monospace;
  position: relative;
  z-index: 10;
}
.bar-coordinates[data-v-92f8d87b] {
  display: flex;
  gap: 20px;
  font-size: 12px;
}
.bar-close[data-v-92f8d87b] {
  color: white;
}
.dialog-content[data-v-92f8d87b] {
  position: relative;
  z-index: 1;
  height: calc(100vh - 50px);
  padding: 40px;
}
.dialog-inner[data-v-92f8d87b] {
  max-width: 800px;
  margin: 0 auto;
}
.dialog-header[data-v-92f8d87b] {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(25, 118, 210, 0.2);
  padding-bottom: 30px;
}
.header-number[data-v-92f8d87b] {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #1976d2;
  margin-bottom: 15px;
}
.dialog-title[data-v-92f8d87b] {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}
.header-badges[data-v-92f8d87b] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge[data-v-92f8d87b] {
  padding: 6px 12px;
  background: rgba(25, 118, 210, 0.1);
  font-family: 'Courier New', monospace;
  font-size: 12px;
  border: 1px solid rgba(25, 118, 210, 0.3);
}
.badge.remote[data-v-92f8d87b] {
  background: rgba(25, 118, 210, 0.2);
  border-color: #1976d2;
}
.dialog-actions[data-v-92f8d87b] {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}
.action-btn[data-v-92f8d87b] {
  padding: 12px 30px;
  background: #1976d2;
  color: white;
  border: none;
}
.action-btn-outline[data-v-92f8d87b] {
  padding: 12px 30px;
  border: 1px solid #1976d2;
  color: #1976d2;
  background: transparent;
}
.dialog-sections[data-v-92f8d87b] {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.dialog-section[data-v-92f8d87b] {
  border-left: 2px solid rgba(25, 118, 210, 0.2);
  padding-left: 30px;
}
.section-title[data-v-92f8d87b] {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 20px;
}
.title-number[data-v-92f8d87b] {
  font-family: 'Courier New', monospace;
  color: #1976d2;
  font-size: 14px;
}
.section-content[data-v-92f8d87b] {
  line-height: 1.8;
  opacity: 0.9;
}
.section-list[data-v-92f8d87b] {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.list-item[data-v-92f8d87b] {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.item-dot[data-v-92f8d87b] {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: #1976d2;
  border-radius: 50%;
  margin-top: 8px;
}

/* Application Dialog */
.application-dialog[data-v-92f8d87b],
.subscription-dialog[data-v-92f8d87b],
.resume-dialog[data-v-92f8d87b] {
  position: relative;
  min-width: 500px;
  border: 1px solid rgba(25, 118, 210, 0.3);
  border-radius: 0;
}
[data-v-92f8d87b] .dark .application-dialog,[data-v-92f8d87b] .dark .subscription-dialog,[data-v-92f8d87b] .dark .resume-dialog {
  background: #1a1a1a;
  color: #ffffff;
}
.dialog-grid-light[data-v-92f8d87b] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
}
.light-grid-line-h[data-v-92f8d87b],
.light-grid-line-v[data-v-92f8d87b] {
  position: absolute;
  background: #1976d2;
}
.light-grid-line-h[data-v-92f8d87b] {
  left: 0;
  width: 100%;
  height: 1px;
}
.light-grid-line-v[data-v-92f8d87b] {
  top: 0;
  height: 100%;
  width: 1px;
}
.dialog-header[data-v-92f8d87b] {
  display: flex;
  gap: 15px;
  padding: 30px 30px 0 30px;
}
.header-icon[data-v-92f8d87b] {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 118, 210, 0.1);
  border: 1px solid rgba(25, 118, 210, 0.3);
}
.header-label[data-v-92f8d87b] {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #1976d2;
  margin-bottom: 5px;
}
.header-title[data-v-92f8d87b] {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.application-form[data-v-92f8d87b],
.resume-form[data-v-92f8d87b] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-input[data-v-92f8d87b] .q-field__control {
  background: transparent;
  border: 1px solid rgba(25, 118, 210, 0.2);
  border-radius: 0;
}
.form-input[data-v-92f8d87b] .q-field__control:hover {
  border-color: #1976d2;
}
.form-input[data-v-92f8d87b] .q-field__label {
  font-family: 'Courier New', monospace;
  font-size: 12px;
}
.subscription-label[data-v-92f8d87b] {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #1976d2;
  margin-bottom: 15px;
}
.subscription-options[data-v-92f8d87b] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.option-item[data-v-92f8d87b] .q-checkbox__label {
  font-size: 13px;
}
.dialog-actions[data-v-92f8d87b] {
  padding: 20px 30px;
  border-top: 1px solid rgba(25, 118, 210, 0.1);
}
.resume-note[data-v-92f8d87b] {
  padding: 20px;
  background: rgba(25, 118, 210, 0.05);
  border-left: 3px solid #1976d2;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

/* Arch Notification */
.arch-notification[data-v-92f8d87b] {
  border-radius: 0;
  border-left: 3px solid #1976d2;
  font-family: 'Courier New', monospace;
}

/* Responsive */
@media (max-width: 1200px) {
.filters-grid[data-v-92f8d87b] {
    grid-template-columns: 1fr;
}
.row.q-px-xl[data-v-92f8d87b] {
    padding-left: 40px !important;
    padding-right: 40px !important;
}
}
@media (max-width: 1024px) {
.row.q-px-xl[data-v-92f8d87b] {
    padding-left: 30px !important;
    padding-right: 30px !important;
}
}
@media (max-width: 768px) {
.row.q-px-xl[data-v-92f8d87b] {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.vacancies-title[data-v-92f8d87b] {
    font-size: clamp(36px, 8vw, 48px);
}
.hero-actions[data-v-92f8d87b] {
    flex-direction: column;
}
.hero-btn[data-v-92f8d87b],
  .hero-btn-outline[data-v-92f8d87b] {
    width: 100%;
}
.title-dimensions[data-v-92f8d87b] {
    flex-direction: column;
    gap: 10px;
}
.benefit-card[data-v-92f8d87b] {
    padding: 30px 20px;
}
.cta-card[data-v-92f8d87b] {
    padding: 40px 20px;
}
.cta-title[data-v-92f8d87b] {
    font-size: 28px;
}
.dialog-title[data-v-92f8d87b] {
    font-size: 32px;
}
.application-dialog[data-v-92f8d87b],
  .subscription-dialog[data-v-92f8d87b],
  .resume-dialog[data-v-92f8d87b] {
    min-width: 90vw;
}
.subscription-options[data-v-92f8d87b] {
    grid-template-columns: 1fr;
}
.dialog-actions[data-v-92f8d87b] {
    flex-direction: column;
}
.filters-header[data-v-92f8d87b] {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
}

/* Dark mode adjustments */
[data-v-92f8d87b] .dark .vacancy-card,[data-v-92f8d87b] .dark .benefit-card,[data-v-92f8d87b] .dark .cta-card {
  background: rgba(0, 0, 0, 0.3);
}
[data-v-92f8d87b] .dark .empty-grid {
  background: rgba(0, 0, 0, 0.2);
}
[data-v-92f8d87b] .dark .form-input .q-field__control {
  background: rgba(255, 255, 255, 0.05);
}
[data-v-92f8d87b] .dark .form-input input,[data-v-92f8d87b] .dark .form-input textarea {
  color: white;
}
[data-v-92f8d87b] .dark .form-input .q-field__label {
  color: rgba(255, 255, 255, 0.7);
}
