/* pricing.css — sdílený, vizuálně obnovený styl srovnávací cenové tabulky
   (extra.html, clenstvi.html) */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap");

.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  padding: 8px 0 32px;
}

.pricing .plan {
  background: #ffffff;
  border: 1px solid #e4e6eb;
  border-radius: 14px;
  padding: 2.25rem 2rem;
  margin: 0;
  width: 260px;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(11, 27, 61, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing .plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 27, 61, 0.14);
  border-color: rgb(11, 27, 61);
}

.pricing .plan h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgb(11, 27, 61);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pricing .plan .price {
  font-size: 34px;
  font-weight: 800;
  color: rgb(11, 27, 61);
  margin-bottom: 1.1rem;
}

.pricing ul.features {
  list-style-type: none;
  text-align: left;
  padding: 0;
  margin: 0 0 1.4rem;
  flex-grow: 1;
}

.pricing ul.features li {
  margin: 10px 0;
  font-size: 15px;
  color: #3a3f4b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing ul.features li .fa-check-circle {
  color: #22a35a;
}

.pricing ul.features li .fa-times-circle {
  color: #d64545;
}

.pricing .plan button {
  border: none;
  width: 100%;
  padding: 13px 35px;
  margin-top: auto;
  background: rgb(11, 27, 61);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}

.pricing .plan button:hover {
  background: rgb(18, 41, 87);
  transform: translateY(-1px);
}

.pricing .plan.popular {
  border: 2px solid rgb(252, 134, 0);
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(252, 134, 0, 0.18);
}

.pricing .plan.popular:hover {
  transform: scale(1.06) translateY(-6px);
}

.pricing .plan.popular span {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(252, 134, 0);
  color: #fff;
  padding: 5px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing .plan.popular button {
  background: rgb(252, 134, 0);
}

.pricing .plan.popular button:hover {
  background: rgb(224, 118, 0);
}

@media (max-width: 480px) {
  .pricing .plan {
    width: 100%;
    max-width: 320px;
  }

  .pricing .plan.popular {
    transform: scale(1);
  }

  .pricing .plan.popular:hover {
    transform: translateY(-6px);
  }
}
