
/* Все стили остаются без изменений */
.page-wrapper[data-v-f28a789f] {
  min-height: 100vh;
  position: relative;
}
.global-grid[data-v-f28a789f] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.grid-main[data-v-f28a789f] {
  position: absolute;
  width: 100%;
  height: 100%;
}
.grid-line-h[data-v-f28a789f] {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  transform-origin: left center;
  animation: expandH-f28a789f 1.5s ease-out forwards;
}
.grid-line-v[data-v-f28a789f] {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
  transform-origin: center top;
  animation: expandV-f28a789f 1.5s ease-out forwards;
  animation-delay: 0.5s;
}
.global-grid.dark .grid-line-h[data-v-f28a789f],
.global-grid.dark .grid-line-v[data-v-f28a789f] {
  background: rgba(255, 255, 255, 0.06);
}
@keyframes expandH-f28a789f {
from { transform: scaleX(0);
}
to { transform: scaleX(1);
}
}
@keyframes expandV-f28a789f {
from { transform: scaleY(0);
}
to { transform: scaleY(1);
}
}
.grid-perspective[data-v-f28a789f] {
  position: absolute;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}
.perspective-line[data-v-f28a789f] {
  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-f28a789f] {
  transform: rotate(45deg);
}
.perspective-line.line-2[data-v-f28a789f] {
  transform: rotate(-45deg);
}
.global-grid.dark .perspective-line[data-v-f28a789f] {
  background: linear-gradient(to bottom, transparent 0%, rgba(25, 118, 210, 0.15) 50%, transparent 100%);
}
.grid-nodes[data-v-f28a789f] {
  position: absolute;
  width: 100%;
  height: 100%;
}
.grid-node[data-v-f28a789f] {
  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-f28a789f] {
  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-f28a789f] {
  background: rgba(25, 118, 210, 0.4);
}
.grid-dimensions[data-v-f28a789f] {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  opacity: 0.5;
}
.dimension-h[data-v-f28a789f] {
  position: absolute;
  left: 65px;
  border-top: 1px dashed rgba(0,0,0,0.2);
  width: 50px;
}
.dimension-v[data-v-f28a789f] {
  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-f28a789f] {
  background: rgba(255,255,255,0.9);
  padding: 2px 4px;
  border-radius: 2px;
}
.global-grid.dark .dim-text[data-v-f28a789f] {
  background: rgba(0,0,0,0.9);
  color: rgba(255,255,255,0.7);
}
.global-grid.dark .dimension-h[data-v-f28a789f],
.global-grid.dark .dimension-v[data-v-f28a789f] {
  border-color: rgba(255,255,255,0.2);
}
.corner-markers[data-v-f28a789f] {
  position: absolute;
  width: 100%;
  height: 100%;
}
.marker[data-v-f28a789f] {
  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-f28a789f] { top: 60px; left: 80px; border-right: none; border-bottom: none;
}
.marker-tr[data-v-f28a789f] { top: 60px; right: 20px; border-left: none; border-bottom: none;
}
.marker-bl[data-v-f28a789f] { bottom: 80px; left: 80px; border-right: none; border-top: none;
}
.marker-br[data-v-f28a789f] { bottom: 80px; right: 20px; border-left: none; border-top: none;
}
.global-grid.dark .marker[data-v-f28a789f] {
  border-color: rgba(25, 118, 210, 0.4);
  color: rgba(25, 118, 210, 0.6);
}
.scroll-progress[data-v-f28a789f] {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #00d9ff;
  z-index: 9999;
  transition: width 0.1s;
}
.content-wrapper[data-v-f28a789f] {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
.full-width[data-v-f28a789f] {
  width: 100%;
}
.block[data-v-f28a789f] {
  display: block;
}
.text-primary[data-v-f28a789f] {
  color: #00d9ff;
}
.header-meta[data-v-f28a789f] {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #00d9ff;
  letter-spacing: 2px;
}
.portfolio-title[data-v-f28a789f] {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}
.portfolio-title_m[data-v-f28a789f] {
  font-size: clamp(28px, 8vw, 100px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}
.dimension-badge[data-v-f28a789f] {
  border: 1px solid rgba(25, 118, 210, 0.3);
  padding: 8px 16px;
  border-radius: 2px;
  position: relative;
  font-family: 'Courier New', monospace;
  font-size: 18px;
}
.dimension-badge[data-v-f28a789f]::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 4px;
  height: 4px;
  background: #00d9ff;
}
.filters-meta[data-v-f28a789f] {
  font-family: 'Courier New', monospace;
}
.filter-btn[data-v-f28a789f] {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(25, 118, 210, 0.2);
  color: inherit;
  font-family: 'Courier New', monospace;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.filter-btn[data-v-f28a789f]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00d9ff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.filter-btn[data-v-f28a789f]:hover {
  border-color: #00d9ff;
}
.filter-btn.active[data-v-f28a789f] {
  background: #00d9ff;
  color: white;
  border-color: #00d9ff;
}
.filter-number[data-v-f28a789f] {
  font-size: 12px;
  opacity: 0.7;
}
.filter-name[data-v-f28a789f] {
  font-weight: 500;
}
.filter-count[data-v-f28a789f] {
  font-size: 12px;
  padding: 2px 6px;
  background: rgba(25, 118, 210, 0.1);
  border-radius: 2px;
}
.filter-btn.active .filter-count[data-v-f28a789f] {
  background: rgba(255, 255, 255, 0.2);
}
.project-card[data-v-f28a789f] {
  position: relative;
  border: 1px solid rgba(25, 118, 210, 0.2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  height: 100%;
}
.project-card[data-v-f28a789f]:hover {
  border-color: #00d9ff;
  transform: translateY(-5px);
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}
.card-grid-bg[data-v-f28a789f] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
}
.card-grid-line-h[data-v-f28a789f],
.card-grid-line-v[data-v-f28a789f] {
  position: absolute;
  background: rgba(25, 118, 210, 0.1);
}
.card-grid-line-h[data-v-f28a789f] {
  left: 0;
  width: 100%;
  height: 1px;
}
.card-grid-line-v[data-v-f28a789f] {
  top: 0;
  height: 100%;
  width: 1px;
}
.project-image-link[data-v-f28a789f] {
  text-decoration: none;
  display: block;
}
.project-image[data-v-f28a789f] {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.image-grid-cell[data-v-f28a789f] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-overlay[data-v-f28a789f] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(25, 118, 210, 0.2), transparent 70%);
}
.project-badge[data-v-f28a789f] {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: #00d9ff;
  color: white;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  z-index: 2;
}
.project-info[data-v-f28a789f] {
  position: relative;
  padding: 30px;
  z-index: 1;
}
.info-header[data-v-f28a789f] {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.project-number[data-v-f28a789f] {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #00d9ff;
  opacity: 0.7;
}
.project-name[data-v-f28a789f] {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}
.project-meta[data-v-f28a789f] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(25, 118, 210, 0.2);
}
.meta-item[data-v-f28a789f] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.meta-label[data-v-f28a789f] {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #00d9ff;
  opacity: 0.7;
}
.meta-value[data-v-f28a789f] {
  font-size: 14px;
  font-weight: 500;
}
.project-details-btn[data-v-f28a789f] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(25, 118, 210, 0.2);
  color: inherit;
  font-family: 'Courier New', monospace;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-details-btn[data-v-f28a789f]:hover {
  color: #00d9ff;
  border-top-color: #00d9ff;
}
.btn-icon[data-v-f28a789f] {
  font-size: 24px;
  line-height: 1;
}
.expanded-info[data-v-f28a789f] {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(25, 118, 210, 0.2);
  animation: slideDown-f28a789f 0.4s ease;
}
@keyframes slideDown-f28a789f {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.project-description[data-v-f28a789f] {
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}
.project-features[data-v-f28a789f] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.feature-item[data-v-f28a789f] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.feature-dot[data-v-f28a789f] {
  width: 4px;
  height: 4px;
  background: #00d9ff;
  border-radius: 50%;
}
.project-team[data-v-f28a789f] {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  padding: 15px;
  background: rgba(25, 118, 210, 0.05);
}
.team-label[data-v-f28a789f] {
  color: #00d9ff;
  margin-right: 10px;
}
.stats-grid[data-v-f28a789f] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 30px;
  border: 1px solid rgba(25, 118, 210, 0.2);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}
.stats-grid[data-v-f28a789f]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(25, 118, 210, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.stat-chart[data-v-f28a789f] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.chart-bar[data-v-f28a789f] {
  display: flex;
  align-items: center;
  gap: 15px;
}
.chart-label[data-v-f28a789f] {
  min-width: 150px;
  font-size: 18px;
  font-family: 'Courier New', monospace;
}
.chart-progress[data-v-f28a789f] {
  flex: 1;
  height: 8px;
  background: rgba(25, 118, 210, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill[data-v-f28a789f] {
  height: 100%;
  background: #00d9ff;
  border-radius: 4px;
  transition: width 1s ease;
}
.chart-value[data-v-f28a789f] {
  min-width: 30px;
  font-family: 'Courier New', monospace;
  font-weight: 600;
}
.stat-numbers[data-v-f28a789f] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-number-item[data-v-f28a789f] {
  position: relative;
  padding-left: 30px;
}
.stat-number-item[data-v-f28a789f]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #00d9ff;
}
.stat-big[data-v-f28a789f] {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}
.stat-small[data-v-f28a789f] {
  font-size: 18px;
  color: #00d9ff;
  margin-left: 5px;
}
.stat-desc[data-v-f28a789f] {
  font-size: 14px;
  opacity: 0.6;
  margin-top: 5px;
}
.pagination-container[data-v-f28a789f] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.pagination-btn[data-v-f28a789f] {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(25, 118, 210, 0.2);
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination-btn[data-v-f28a789f]:hover:not(:disabled) {
  border-color: #00d9ff;
  background: #00d9ff;
  color: white;
}
.pagination-btn[data-v-f28a789f]:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.pagination-info[data-v-f28a789f] {
  font-family: 'Courier New', monospace;
}
.download-btn[data-v-f28a789f] {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #00d9ff;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.download-btn[data-v-f28a789f]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00d9ff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.download-btn[data-v-f28a789f]:hover:not(:disabled) {
  color: white;
}
.download-btn[data-v-f28a789f]:hover:not(:disabled)::before {
  opacity: 1;
}
.download-btn[data-v-f28a789f]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-dimension[data-v-f28a789f] {
  font-size: 12px;
  opacity: 0.6;
}

/* Pinterest кнопки */
.pinterest-share-btn[data-v-f28a789f] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 15px;
  padding: 12px 20px;
  background: #BD081C;
  color: white;
  border: none;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pinterest-share-btn[data-v-f28a789f]:hover {
  background: #8B0615;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(189, 8, 28, 0.3);
}
.pinterest-board-btn[data-v-f28a789f] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #BD081C;
  border: none;
  color: white;
  font-family: 'Courier New', monospace;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #BD081C;
}
.pinterest-board-btn[data-v-f28a789f]:hover {
  background: #8B0615;
  border-color: #8B0615;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(189, 8, 28, 0.3);
}
.pinterest-icon[data-v-f28a789f] {
  font-size: 18px;
  line-height: 1;
}
@keyframes pulse-f28a789f {
0% { opacity: 1;
}
50% { opacity: 0.5;
}
100% { opacity: 1;
}
}
.download-btn:disabled .btn-text[data-v-f28a789f] {
  animation: pulse-f28a789f 1.5s ease-in-out infinite;
}
.loading-overlay[data-v-f28a789f] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader[data-v-f28a789f] {
  color: #00d9ff;
  font-family: 'Courier New', monospace;
  font-size: 24px;
  letter-spacing: 4px;
  animation: blink-f28a789f 1s infinite;
}
.error-page[data-v-f28a789f] {
  text-align: center;
  padding: 100px 20px;
}
@keyframes blink-f28a789f {
0%, 100% { opacity: 1;
}
50% { opacity: 0.3;
}
}
.no-projects[data-v-f28a789f] {
  padding: 80px 0;
  text-align: center;
}
.no-projects-content[data-v-f28a789f] {
  max-width: 400px;
  margin: 0 auto;
}
.no-projects-icon[data-v-f28a789f] {
  font-size: 64px;
  color: #00d9ff;
  opacity: 0.3;
  display: block;
  margin-bottom: 20px;
}
.no-projects h3[data-v-f28a789f] {
  font-size: 24px;
  margin-bottom: 10px;
}
.no-projects p[data-v-f28a789f] {
  opacity: 0.6;
  margin-bottom: 30px;
}
.reset-filter-btn[data-v-f28a789f] {
  padding: 12px 30px;
  background: transparent;
  border: 1px solid #00d9ff;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Courier New', monospace;
}
.reset-filter-btn[data-v-f28a789f]:hover {
  background: #00d9ff;
  color: white;
}
.project-action[data-v-f28a789f] {
  margin-top: 25px;
  width: 100%;
}
.project-open-btn[data-v-f28a789f] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  border: 1px solid #00d9ff;
  color: inherit;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.project-open-btn[data-v-f28a789f]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00d9ff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.project-open-btn[data-v-f28a789f]:hover {
  color: white;
}
.project-open-btn[data-v-f28a789f]:hover::before {
  opacity: 1;
}
.project-open-btn .btn-arrow[data-v-f28a789f] {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.project-open-btn:hover .btn-arrow[data-v-f28a789f] {
  transform: translateX(5px);
}

/* Архитектурные элементы для секции статистики */
.stats-grid[data-v-f28a789f] {
  position: relative;
  overflow: hidden;
}
.stats-grid[data-v-f28a789f]::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(25, 118, 210, 0.2);
  pointer-events: none;
  z-index: 0;
}

/* Угловые маркеры для карточек */
.project-card[data-v-f28a789f] {
  position: relative;
}
.project-card[data-v-f28a789f]::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-top: 1px solid rgba(25, 118, 210, 0.3);
  border-left: 1px solid rgba(25, 118, 210, 0.3);
  z-index: 2;
  pointer-events: none;
}
.project-card[data-v-f28a789f]::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid rgba(25, 118, 210, 0.3);
  border-right: 1px solid rgba(25, 118, 210, 0.3);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1024px) {
.project-meta[data-v-f28a789f] {
    grid-template-columns: 1fr;
}
.project-features[data-v-f28a789f] {
    grid-template-columns: 1fr;
}
.stats-grid[data-v-f28a789f] {
    grid-template-columns: 1fr;
}
.row.q-px-xl[data-v-f28a789f] {
    padding-left: 24px !important;
    padding-right: 24px !important;
}
}
@media (max-width: 768px) {
.portfolio-title[data-v-f28a789f] {
    font-size: clamp(36px, 6vw, 60px);
}
.filter-btn[data-v-f28a789f] {
    width: 100%;
}
.stats-grid[data-v-f28a789f] {
    padding: 20px;
}
.stat-big[data-v-f28a789f] {
    font-size: 36px;
}
.row.q-px-xl[data-v-f28a789f] {
    padding-left: 16px !important;
    padding-right: 16px !important;
}
.project-info[data-v-f28a789f] {
    padding: 20px;
}
.project-name[data-v-f28a789f] {
    font-size: 22px;
}
.download-btn[data-v-f28a789f],
  .pinterest-board-btn[data-v-f28a789f] {
    width: 100%;
}
}
@media (max-width: 480px) {
.row.q-gutter-md[data-v-f28a789f] {
    flex-direction: column;
}
.dimension-badge[data-v-f28a789f] {
    width: 100%;
    text-align: center;
}
}
