/* 가격 카드 */
.pricing-card {
    padding: 36px; text-align: center; position: relative;
}
.pricing-highlight { border: 2px solid var(--primary); transform: scale(1.03); }
.pricing-badge {
    position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary); color: white;
    padding: 4px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 700;
}
.pricing-card h3 { font-size: 22px; font-weight: 700; }
.pricing-target { font-size: 14px; color: var(--text-light); margin: 4px 0 20px; }
.pricing-price {
    font-size: 32px; font-weight: 800;
    color: var(--primary); margin-bottom: 28px; letter-spacing: -0.02em;
}
.pricing-features { list-style: none; padding: 0; text-align: left; margin-bottom: 28px; }
.pricing-features li {
    padding: 8px 0; font-size: 14px; color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
}
