/* Podstawowe ustawienia strony */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #ffffff;
  color: #111111;
}

body {
  line-height: 1.5;
}

a {
  color: #d22630; /* czerwony z logo (przybliżony) */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */

.page-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

/* Nagłówek i logo */

.header {
  text-align: center;
  margin-bottom: 32px;
}

.logo-block {
  display: inline-block;
}

.logo-img {
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

.logo-tagline {
  margin: 0;
  font-size: 21px;
  letter-spacing: 0.02em;
  font-weight:600;
}

/* Sekcja z grafikami */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-left,
.hero-right {
  
  text-align: center;
}

.hero-devices,
.hero-cover {
  max-width: 100%;
  height: auto;
  
}

/* Teksty */

.copy {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight:500;
  text-align:center;
}

.copy p {
  margin: 0 0 24px;
}

.copy-pl {
  margin-top: 16px;
}

.copy-en {
  margin-top: 8px;
}

/* Linie oddzielające */

.divider {
  border: none;
  border-top: 1px solid #dddddd;
  margin: 20px 0;
}

/* Kontakty */

.contacts {
  font-size: 18px;
  margin-top: 8px;
  font-weight:500;
  text-align:center;
}

.contacts p {
  margin: 0 0 8px;
}

/* Responsywność */

@media (max-width: 640px) {
  .page-wrapper {
    padding: 16px 12px 32px;
  }

  .logo-img {
    max-width: 220px;
  }

  .hero {
    flex-direction: column;
  }
}