*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Comfortaa', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Arial, sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top left, #e0f2fe, #f9fafb 40%, #e5e7eb);
  min-height: 100vh;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    180deg,
    rgba(97, 120, 135, 1) 0%,
    rgba(139, 172, 199, 1) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  color: #e5e7eb;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.6rem;
  color: #1f2853;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.9rem;
}

.main-nav a {
  padding: 0.35rem 0;
  position: relative;
  color: #1f2853;
  opacity: 0.9;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #f97316, #fb923c);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 160ms ease-out;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  padding: 4rem 0 3.5rem;
}

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

.hero--text-only .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hero--video-only .hero-inner {
  grid-template-columns: minmax(0, 1fr);
}

.hero--video-only .hero-media {
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #fb923c;
  margin-bottom: 0.6rem;
}

h1 {
  font-size: clamp(2.3rem, 3.2vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #374151;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out,
    background 120ms ease-out, color 120ms ease-out, border-color 120ms ease-out;
}

.btn.primary {
  background: linear-gradient(to right, #f97316, #fb923c);
  color: #111827;
  box-shadow: 0 18px 40px rgba(234, 88, 12, 0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 45px rgba(234, 88, 12, 0.5);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(148, 163, 184, 0.6);
  color: #111827;
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.06);
}

.hero-meta {
  font-size: 0.85rem;
  color: #4b5563;
  margin-top: 0.75rem;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 360px;
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #e5e7eb;
  border-radius: 1.5rem;
  padding: 1.3rem 1.3rem 1.4rem;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(248, 250, 252, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #e5e7eb;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.7);
  margin-bottom: 0.9rem;
}

.hero-video-placeholder {
  position: relative;
  border-radius: 1rem;
  background: radial-gradient(circle at top left, #0f172a, #020617);
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0;
  overflow: hidden;
}

.hero-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    130deg,
    rgba(248, 250, 252, 0.1),
    transparent 55%
  );
  mix-blend-mode: screen;
  opacity: 0.8;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
}

.hero-video-frame::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.hero-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.75rem;
}

.hero-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.75rem;
  object-fit: cover;
}

.signal-dot {
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(248, 250, 252, 0.3);
  animation: pulse 1.7s infinite;
  z-index: 2;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(248, 250, 252, 0.3);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(248, 250, 252, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(248, 250, 252, 0);
  }
}

.hero-video-placeholder p {
  position: relative;
  margin: 0;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.hero-stats {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.hero-stats strong {
  font-weight: 600;
}

.hero-stats span {
  color: #9ca3af;
}

.services {
  padding: 2.5rem 0 2.8rem;
}

.services h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 34rem;
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

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

.service-card {
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem 1.3rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  transition: transform 140ms ease-out, box-shadow 140ms ease-out,
    border-color 140ms ease-out, background 140ms ease-out;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.service-link {
  font-size: 0.85rem;
  color: #ea580c;
  font-weight: 500;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
  border-color: rgba(248, 113, 113, 0.8);
  background: #ffffff;
}

.about {
  padding: 0 0 3.2rem;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.about h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.about p {
  font-size: 0.95rem;
  color: #374151;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  font-size: 0.9rem;
  color: #374151;
}

.checklist li::before {
  content: '✓';
  color: #16a34a;
  margin-right: 0.5rem;
}

.about-box {
  padding: 1.3rem 1.3rem 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.8);
}

.about-box h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.about-box p {
  margin: 0.4rem 0;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.about-box a {
  color: #f97316;
}

.contact-highlight {
  margin-top: 0.8rem;
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  background: #1f2853;
  color: #9ca3af;
  padding: 1rem 0 1.2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-note {
  color: #e5e7eb;
}

/* Wspólny układ dla podstron */
.page-hero {
  padding: 3.5rem 0 2.5rem;
}

.page-hero h1 {
  margin-bottom: 0.6rem;
}

.page-hero .lead {
  max-width: 38rem;
}

.page-layout {
  padding-bottom: 3rem;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.transmisja-cols {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.transmisja-video {
  position: sticky;
  top: 1.5rem;
}

.video-showcase {
  padding: 2rem 0 3rem;
  background: rgba(248, 250, 252, 0.6);
}

.video-showcase h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

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

.instagram-embed-wrap {
  margin-top: 2.5rem;
}

.instagram-embed-wrap h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.instagram-embed-wrap .instagram-media {
  margin: 0;
  max-width: 100%;
}

.info-card {
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 1.1rem 1.2rem 1.2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  font-size: 0.9rem;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  color: #374151;
}

.info-list li {
  margin-bottom: 0.35rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #111827;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-card {
  padding: 1.3rem 1.3rem 1.4rem;
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
  font-size: 0.9rem;
}

.contact-card a {
  color: #fb923c;
}

.contact-rows {
  margin-top: 0.9rem;
}

.contact-row {
  margin-bottom: 0.5rem;
}

.contact-row-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.contact-row-value {
  font-size: 0.92rem;
}

.muted {
  color: #6b7280;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero-inner,
  .about-inner,
  .two-cols,
  .contact-grid,
  .transmisja-cols {
    grid-template-columns: minmax(0, 1fr);
  }

  .transmisja-video {
    position: static;
  }

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

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

  .hero-media {
    justify-content: flex-start;
  }

  .hero-card {
    max-width: 100%;
  }

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

  .site-header {
    position: static;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .main-nav {
    flex-wrap: wrap;
    row-gap: 0.35rem;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .logo img {
    height: 32px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

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

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

