#pece {
  background:
    radial-gradient(circle at 82% 18%, rgba(141, 138, 216, 0.10), transparent 28%),
    #0c0c0f;
}

#pece .pece-head {
  max-width: 760px;
  margin-bottom: 32px;
}

#pece .pece-title {
  margin-bottom: 16px;
}

#pece .pece-text {
  max-width: 680px;
  color: var(--text-soft);
}

#pece .pece-grid {
  gap: 16px;
}

#pece .pece-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px 22px;
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition-fast),
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

/* Hover pro ne-highlighted karty (Care, Premium) — stejně jako ve sluzby */
#pece .pece-card:not(.is-highlighted):hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

#pece .pece-card.is-highlighted {
  border-color: rgba(141, 138, 216, 0.45);
  background:
    linear-gradient(180deg, rgba(141, 138, 216, 0.10) 0%, rgba(141, 138, 216, 0.04) 100%);
  box-shadow:
    0 22px 60px rgba(109, 111, 181, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

#pece .pece-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(109, 111, 181, 0.40);
}

#pece .pece-card-head {
  margin-bottom: 20px;
}

#pece .pece-card-name {
  margin: 0 0 12px;
  font-size: 2.4rem;
}

#pece .pece-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

#pece .pece-card-amount {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

#pece .pece-card-period {
  font-size: 1.4rem;
  color: var(--text-muted);
}

#pece .pece-card-tagline {
  margin: 0;
  font-size: 1.4rem;
  color: var(--text-soft);
  font-style: italic;
  line-height: 1.5;
}

#pece .pece-card-bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}

#pece .pece-card-bullets li {
  position: relative;
  padding-left: 24px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.5rem;
  line-height: 1.6;
}

#pece .pece-card-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 6px 16px rgba(109, 111, 181, 0.24);
}

#pece .pece-card-cta {
  margin-top: auto;
  width: 100%;
}

@media (min-width: 768px) {
  #pece .pece-head {
    margin-bottom: 40px;
  }

  #pece .pece-grid {
    gap: 20px;
  }

  #pece .pece-card {
    padding: 28px 24px 24px;
    border-radius: var(--radius-xl);
  }

  #pece .pece-card-name {
    font-size: 2.6rem;
  }

  #pece .pece-card-amount {
    font-size: 3.2rem;
  }

  #pece .pece-card-tagline {
    font-size: 1.5rem;
  }
}
