/* ================================================
   REALIZACJE PAGE STYLES
   ================================================ */

.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__content { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.page-hero__heading {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px;
}
.page-hero__desc {
  font-size: 18px; color: var(--text-muted);
  max-width: 600px; margin-inline: auto; line-height: 1.7;
}

/* ------------------------------------------------
   Stats bar
   ------------------------------------------------ */
.real-stats-bar {
  background: linear-gradient(180deg, #1a1d22 0%, #1e2228 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.real-stats-bar__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.real-stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.real-stats-bar__item:last-child { border-right: none; }

.real-stats-bar__item strong {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.real-stats-bar__item > span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ------------------------------------------------
   Filters
   ------------------------------------------------ */
.real-grid-section {
  background: linear-gradient(180deg, #121518 0%, #1a1d22 100%);
}

.real-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.real-filter {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--t) var(--ease);
}

.real-filter:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
}

.real-filter--active {
  color: var(--accent);
  background: rgba(252,119,8,0.10);
  border-color: rgba(252,119,8,0.35);
}

/* ------------------------------------------------
   Cards grid
   ------------------------------------------------ */
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.real-card {
  background: linear-gradient(180deg, #1a1d22 0%, #1e2228 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  display: flex;
  flex-direction: column;
}

.real-card:hover {
  border-color: rgba(252,119,8,0.30);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.40);
}

/* Image */
.real-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0e1115;
}

.real-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease);
}

.real-card:hover .real-card__img {
  transform: scale(1.04);
}

.real-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 11px;
  background: rgba(252,119,8,0.90);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

/* Body */
.real-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.real-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.real-card__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.real-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.real-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text);
}

.real-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}

/* Results row */
.real-card__results {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.real-card__result {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.real-card__result strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.real-card__result span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* No results */
.real-no-results {
  text-align: center;
  padding: 64px;
  color: var(--text-muted);
  font-size: 16px;
}

/* CTA — reuse from other pages */
.products-cta {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.products-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* ------------------------------------------------
   Responsive
   ------------------------------------------------ */
@media (max-width: 1100px) {
  .real-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .real-stats-bar__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .real-stats-bar__item:nth-child(2) { border-right: none; }
  .real-stats-bar__item:nth-child(3),
  .real-stats-bar__item:nth-child(4) { border-top: 1px solid var(--border); }

  .real-grid {
    grid-template-columns: 1fr;
  }

  .products-cta__btns { flex-direction: column; align-items: center; }
}

