/* =============================================
   Product Listing
   ============================================= */

.pricing-page {
  padding: 140px 0 100px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-subtle);
}

.product-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-card-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.product-card-period {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.product-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.product-card-features li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.product-card-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  font-size: 15px;
}

/* Placeholder card */
.product-card.card-placeholder {
  background: transparent;
  border: 1.5px dashed var(--color-border);
  box-shadow: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0.5;
}

.product-card.card-placeholder:hover {
  opacity: 0.8;
  border-color: var(--color-primary-lighter);
  transform: none;
}

.product-card.card-placeholder .product-card-name {
  color: var(--color-text-muted);
  font-size: 18px;
}

.product-card.card-placeholder .product-card-desc {
  color: var(--color-text-muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .pricing-page {
    padding: 120px 0 60px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
