.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 60px auto;
  align-items: stretch;
}

/* KARTA */
.pricing-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 42px 34px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #161b34;
}

.pricing-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #a8693c;
  margin: 12px auto 0;
  border-radius: 2px;
}

.pricing-sub {
  color: #9B9B9B;
  font-size: 14px;
  margin-bottom: 28px;
}

/* LISTA */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #161b34;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.price {
  color: #a8693c;
  font-weight: 600;
  white-space: nowrap;
}

.full {
  justify-content: center;
  color: #9B9B9B;
  font-style: italic;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-list li {
    font-size: 15px;
  }
}

/* AIRBAG – na wypadek cudzych styli */
body {
  overflow-x: hidden;
}
