/**
 * plan-cards.css — P1-12
 * 3 doporucene baliccky (Domacnost / Home Office / Cela rodina) nad kalkulackou.
 * Izolovane tridy .vhv-plans-*, bez !important.
 */

.vhv-plans-section {
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
}

.vhv-plans-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vhv-plans-head {
  text-align: center;
  margin-bottom: 2rem;
}

.vhv-plans-head h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  color: #0f172a;
}

.vhv-plans-head p {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
}

.vhv-plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 720px) {
  .vhv-plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vhv-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.vhv-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
}

.vhv-plan-card--featured {
  border: 2px solid #0061a5;
  box-shadow: 0 12px 35px rgba(0, 97, 165, 0.18);
}

@media (min-width: 720px) {
  .vhv-plan-card--featured {
    transform: scale(1.03);
  }
  .vhv-plan-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
  }
}

.vhv-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1rem;
  background: #da251d;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(218, 37, 29, 0.3);
}

.vhv-plan-name {
  margin: 0 0 0.25rem;
  font-size: 1.3rem;
  color: #0f172a;
  font-weight: 700;
}

.vhv-plan-tagline {
  margin: 0 0 1.25rem;
  color: #64748b;
  font-size: 0.95rem;
}

.vhv-plan-price {
  font-size: 2.75rem;
  line-height: 1;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.vhv-plan-price .vhv-plan-price-from {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 0.15rem;
}

.vhv-plan-price .vhv-plan-price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}

.vhv-plan-features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  flex: 1;
}

.vhv-plan-features li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.75rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}

.vhv-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: #16a34a;
  font-weight: 700;
}

.vhv-plan-cta {
  display: block;
  padding: 0.9rem 1.25rem;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: #0061a5;
  background: #fff;
  border: 2px solid #0061a5;
  border-radius: 10px;
  transition: background 150ms ease, color 150ms ease;
}

.vhv-plan-cta:hover {
  background: #0061a5;
  color: #fff;
}

.vhv-plan-card--featured .vhv-plan-cta {
  background: #0061a5;
  color: #fff;
}

.vhv-plan-card--featured .vhv-plan-cta:hover {
  background: #004f8a;
}

.vhv-plans-footnote {
  text-align: center;
  font-size: 0.95rem;
  color: #475569;
}

.vhv-plans-footnote a {
  color: #0061a5;
  font-weight: 600;
}

.vhv-plans-footnote a:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .vhv-plans-head h2 { font-size: 1.6rem; }
  .vhv-plan-price { font-size: 2.25rem; }
}
