/* sk/index.php – fullbleed hero */

/* ── Fullbleed hero ────────────────────────────────────── */
.hero--fullbleed {
  position: relative;
  padding: 0;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e1a2a;
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}

/* Dark overlay – uniform center-aligned design */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8, 18, 34, 0.62) 0%,
    rgba(8, 18, 34, 0.58) 60%,
    rgba(8, 18, 34, 0.75) 100%
  );
}

/* Content – full container width, centered */
.hero--fullbleed .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.hero--fullbleed .hero-badge {
  display: inline-flex;
  align-items: center;
  padding: .35rem .95rem;
  background: rgba(249,115,22,.14);
  border: 1px solid rgba(249,115,22,.42);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ffb07a;
  margin-bottom: 1.25rem;
}

/* Headline – large, two lines */
.hero--fullbleed h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 980px;
}

/* Subtitle */
.hero--fullbleed .hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.175rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
  max-width: 580px;
  margin-bottom: 2rem;
}

/* CTAs */
.hero--fullbleed .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .875rem;
  margin-bottom: 2.75rem;
}

/* ── Stat bar ──────────────────────────────────────────── */
.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 1.5rem;
  width: 100%;
  max-width: 560px;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat__val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.hero-stat__label {
  font-size: .68rem;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 500;
  text-align: center;
}

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero--fullbleed {
    min-height: 95svh;
    align-items: flex-end;
    padding-bottom: 2.5rem;
  }

  .hero--fullbleed h1 {
    font-size: 2.1rem;
    letter-spacing: -.015em;
  }

  .hero--fullbleed .hero-content {
    padding-block: 2rem;
    text-align: left;
    align-items: flex-start;
  }

  .hero--fullbleed .hero-ctas {
    justify-content: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .9rem;
    max-width: 100%;
  }

  .hero-stat {
    width: 100%;
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
    padding: 0 0 .9rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .hero-stat__label {
    text-align: left;
  }
}

/* Na mniejszych tabletach statystyki nie mieszczą się wygodnie w jednym rzędzie. */
@media (min-width: 641px) and (max-width: 900px) {
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    gap: .9rem;
    max-width: 100%;
  }

  .hero-stat {
    width: 100%;
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
    padding: 0 0 .9rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .hero-stat__label {
    text-align: left;
  }
}
