/* ============================================
   Component: Pricing Cards
   Extracted from design-system.css
   ============================================ */
.pricing-card {
  background: var(--dt-bg-card);
  border: 1px solid var(--dt-border);
  border-radius: var(--dt-radius-xl);
  padding: var(--dt-space-8) var(--dt-space-6);
  text-align: center;
  position: relative;
  transition: border-color var(--dt-transition-slow);
}
.pricing-card:hover { border-color: var(--dt-border-hover); }
.pricing-card--highlight {
  border-color: var(--dt-orange);
  box-shadow: 0 0 40px var(--dt-orange-glow);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dt-green);
  color: #fff;
  font-size: var(--dt-text-xs);
  font-weight: var(--dt-font-bold);
  padding: 0.3rem 1rem;
  border-radius: var(--dt-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pricing-card__name {
  font-size: var(--dt-text-2xl);
  font-weight: var(--dt-font-extrabold);
  color: var(--dt-text-heading);
  margin: 0 0 var(--dt-space-1);
}
.pricing-card__subtitle {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-dim);
  margin: 0 0 var(--dt-space-6);
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--dt-space-2);
  margin-bottom: var(--dt-space-2);
}
.pricing-card__old {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-dim);
  text-decoration: line-through;
}
.pricing-card__amount {
  font-size: clamp(var(--dt-text-3xl), 5vw, var(--dt-text-5xl));
  font-weight: var(--dt-font-extrabold);
  color: var(--dt-orange);
  line-height: 1;
}
.pricing-card__period {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-dim);
}
.pricing-card__info {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-muted);
  margin: 0 0 var(--dt-space-6);
}
.pricing-card__trial {
  display: block;
  margin-top: var(--dt-space-3);
  font-size: var(--dt-text-sm);
  color: var(--dt-green);
  text-decoration: none;
  font-weight: var(--dt-font-semibold);
}
.pricing-card__trial:hover { text-decoration: underline; }
