/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #121212;
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
  overflow-wrap: break-word;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Nawigacja */
.header {
  background-color: #1f2937;
  color: #e0e0e0;
  padding: 20px 0 60px 0;
  border-radius: 0 0 20px 20px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: #60a5fa;
  text-decoration: none;
  margin-left: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #e0e0e0;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #60a5fa;
}

/* Hero */
.hero {
  margin-top: 40px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #60a5fa;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #a0aec0;
  margin-bottom: 30px;
}

/* Przycisk */
.btn-primary {
  background-color: #2563eb;
  color: #f9fafb;
  padding: 14px 40px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #1e40af;
}

/* Sekcja Dlaczego - statyczne karty bez slidera */
.why {
  margin: 80px 0;
  text-align: center;
}

.why h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #60a5fa;
  font-weight: 700;
}

/* Kontener kart - statyczne */
.cards-static {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Karta - max 3 na wiersz */
.cards-static .card {
  flex: 1 1 calc((100% - 60px) / 3);
  max-width: 300px;
  min-width: 220px;
  background: #1f2937;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.7);
  cursor: default;
  transition: transform 0.3s ease;
}

.cards-static .card:hover {
  transform: translateY(-8px);
}

.icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #2563eb;
}

.card h3 {
  color: #60a5fa;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.6rem;
}

.card p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Kontakt */
.contact {
  background: #1f2937;
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  margin-bottom: 80px;
}

.contact h2 {
  text-align: center;
  color: #60a5fa;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
}

form {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  color: #a0aec0;
  font-weight: 600;
  font-size: 1rem;
}

input[type="email"],
select,
textarea {
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  background: #111827;
  color: #e0e0e0;
  resize: vertical;
}

input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2563eb;
}

textarea {
  min-height: 120px;
}

button[type="submit"] {
  background-color: #2563eb;
  color: #f9fafb;
  padding: 15px 0;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #1e40af;
}

.success-message {
  margin-top: 20px;
  text-align: center;
  color: #34d399;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Po co strona - lista */
.benefits {
  margin: 80px 0;
}

.benefits h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #60a5fa;
  font-weight: 700;
}

.benefits-list {
  max-width: 650px;
  margin: 0 auto;
  list-style: none;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #cbd5e1;
  padding-left: 20px;
}

.benefits-list li {
  margin-bottom: 18px;
  position: relative;
  padding-left: 30px;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 700;
}

/* Stopka */
.footer {
  background-color: #1f2937;
  color: #718096;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  border-radius: 20px 20px 0 0;
  user-select: none;
}

/* Animacje pojawiania */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .cards-static {
    flex-direction: column;
    gap: 20px;
  }

  .cards-static .card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .nav-links {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}


@media (max-width: 480px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    padding-left: 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .why h2,
  .benefits h2,
  .contact h2 {
    font-size: 1.6rem;
  }

  .cards-static {
    flex-direction: column;
  }

  .cards-static .card {
    padding: 30px 20px;
  }

  .benefits-list {
    font-size: 1rem;
    padding-left: 10px;
  }

  .benefits-list li {
    padding-left: 24px;
  }

  .footer {
    font-size: 0.8rem;
  }

  h3 {
    margin: 20px 10px 40px 10px;
    font-size: 1rem;
    text-align: center;
  }

  input[type="email"],
  select,
  textarea {
    font-size: 0.95rem;
  }

  button[type="submit"] {
    font-size: 1rem;
    padding: 13px 0;
  }
}
