/* Podstawowy reset i typografia */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 45%, #020617 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Pasek nawigacji */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.92),
    rgba(15, 23, 42, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__logo {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: conic-gradient(from 210deg, #22d3ee, #0ea5e9, #6366f1, #22c55e, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
}

.nav__logo span {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
}

.nav__title {
  display: flex;
  flex-direction: column;
}

.nav__title-main {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.nav__title-sub {
  font-size: 0.7rem;
  color: #9ca3af;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav__link {
  position: relative;
  color: #cbd5f5;
  padding-bottom: 0.2rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #22d3ee, #6366f1);
  transition: width 0.18s ease-out;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #e5e7eb;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 55%, #000 100%);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.7);
}

.nav__cta span.icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.nav__cta:hover {
  border-color: #22c55e;
  box-shadow: 0 0 30px rgba(52, 211, 153, 0.6);
}

.nav__burger {
  display: none;
}

/* Layout strony */
.shell {
  flex: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
  color: #e5e7eb;
}

/* Sekcja hero wspólna (na głównej rozbudowana) */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.45);
  margin-bottom: 1rem;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #22c55e 0, #15803d 55%, transparent 100%);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.9);
}

.hero__eyebrow-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

.hero__headline {
  font-size: clamp(2.3rem, 3.1vw, 3.1rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero__headline span.gradient {
  background: linear-gradient(to right, #38bdf8, #22c55e, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__kicker {
  font-size: 1.05rem;
  color: #9ca3af;
  max-width: 35rem;
  margin-bottom: 1.6rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.hero__badge {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.7);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
  background: linear-gradient(to right, #22d3ee, #22c55e);
  box-shadow: 0 14px 35px rgba(56, 189, 248, 0.5);
}

.btn-primary span.icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: #a5b4fc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.65);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.65);
  color: #e5e7eb;
  font-size: 0.88rem;
}

.btn-ghost span.icon {
  font-size: 1rem;
}

.hero__meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero__meta-block {
  border-left: 1px solid rgba(148, 163, 184, 0.5);
  padding-left: 1.1rem;
}

.hero__meta-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.hero__meta-value {
  font-weight: 500;
  color: #e5e7eb;
}

.hero__visual {
  position: relative;
  min-height: 260px;
}

.hero__card {
  position: relative;
  height: 100%;
  border-radius: 1.7rem;
  padding: 1.7rem 1.6rem;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 65%, #000 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.95),
    0 0 35px rgba(59, 130, 246, 0.5);
  overflow: hidden;
}

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

.hero-tile {
  border-radius: 1rem;
  padding: 0.85rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-tile__label {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-tile__value {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-tile__tag {
  margin-top: 0.1rem;
  font-size: 0.68rem;
  color: #a5b4fc;
}

.hero__chip-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.68rem;
}

.chip {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px dashed rgba(148, 163, 184, 0.5);
  color: #cbd5f5;
}

.hero__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.7), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(34, 197, 94, 0.5), transparent 60%);
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__badge-floating {
  position: absolute;
  right: -0.3rem;
  bottom: 1.5rem;
  padding: 0.6rem 0.85rem;
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.93);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.72rem;
  color: #cbd5f5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #22c55e 0, #15803d 55%, transparent 100%);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

/* Sekcje treści */
.section {
  margin-top: 3rem;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section__eyebrow {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section__title {
  font-size: 1.4rem;
  font-weight: 700;
}

.section__subtitle {
  font-size: 0.9rem;
  color: #9ca3af;
  max-width: 32rem;
}

.section__pill {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.75rem;
  color: #9ca3af;
}

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

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

.card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  border-radius: 1.1rem;
  padding: 1.25rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.85);
}

.card--soft {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.92),
    rgba(15, 23, 42, 0.97),
    rgba(79, 70, 229, 0.28)
  );
}

.card__icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.2), transparent 70%);
  border: 1px solid rgba(148, 163, 184, 0.7);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.card__text {
  font-size: 0.9rem;
  color: #9ca3af;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: #9ca3af;
}

.list__bullet {
  font-size: 0.9rem;
  color: #22c55e;
  margin-top: 0.05rem;
}

/* Tabela / specyfikacja */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 0.7rem;
}

.table thead {
  background: rgba(15, 23, 42, 0.95);
}

.table th,
.table td {
  padding: 0.55rem 0.7rem;
  text-align: left;
}

.table th {
  font-weight: 600;
  font-size: 0.8rem;
  color: #9ca3af;
  border-bottom: 1px solid rgba(148, 163, 184, 0.5);
}

.table tr:nth-child(even) td {
  background: rgba(15, 23, 42, 0.85);
}

.table tr:nth-child(odd) td {
  background: rgba(15, 23, 42, 0.95);
}

.table td {
  border-bottom: 1px solid rgba(30, 41, 59, 0.9);
}

/* Blok cytatu / statystyk */
.stat-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.stat {
  min-width: 120px;
}

.stat__value {
  font-size: 1.3rem;
  font-weight: 700;
}

.stat__label {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Sekcja mapy i kontaktu */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.6rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-row {
  display: flex;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.contact-label {
  width: 80px;
  color: #6b7280;
}

.contact-value {
  color: #e5e7eb;
}

.contact-highlight {
  padding: 0.7rem 0.8rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.86rem;
  color: #9ca3af;
}

.contact-map {
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
  background: #020617;
}

.contact-map__frame {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

/* Stopka */
.footer {
  border-top: 1px solid rgba(30, 41, 59, 1);
  background: radial-gradient(circle at top, #020617 0, #000 100%);
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem 1.6rem;
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.footer__links {
  display: flex;
  gap: 0.9rem;
}

.footer__links a {
  color: #9ca3af;
}

/* Strony wewnętrzne */
.page-header {
  padding-top: 2.4rem;
  padding-bottom: 1.4rem;
}

.page-header__eyebrow {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.4rem;
}

.page-header__title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.page-header__subtitle {
  font-size: 0.95rem;
  color: #9ca3af;
  max-width: 34rem;
}

.content-text {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
}

.content-text p + p {
  margin-top: 0.7rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.pill {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.8rem;
  color: #cbd5f5;
}

/* Odpowiedź na różne ekrany */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__visual {
    order: -1;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    padding-inline: 1rem;
  }

  .nav__links {
    display: none;
  }

  .nav__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
    font-size: 1.1rem;
  }

  .shell {
    padding-inline: 1.25rem;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

