.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.pricing-card {
  background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: box-shadow var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card--popular { border-color: var(--amber-500); box-shadow: 0 8px 32px rgba(232,150,14,.18); transform: translateY(-6px); }
@media (max-width: 900px) { .pricing-card--popular { transform: none; } }
.pricing-card__popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); }
.pricing-card__header { margin-bottom: 1.75rem; }
.pricing-card__header h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.pricing-card__header p { color: var(--gray-600); font-size: .88rem; line-height: 1.5; }
.pricing-card__price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .5rem; }
.pricing-card__price .price { font-size: 2.5rem; font-weight: 800; color: var(--charcoal); }
.pricing-card__price .period { font-size: .85rem; color: var(--gray-600); }
.pricing-card__features { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: .65rem; }
.pricing-card__features li { font-size: .9rem; display: flex; align-items: center; gap: .6rem; color: var(--gray-700); }
.pricing-card__features li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; }
.pricing-card__features li.yes::before { background: rgba(27,77,56,.15); content: '✓'; font-size: .7rem; font-weight: 700; color: var(--forest-700); display: flex; align-items: center; justify-content: center; }
.pricing-card__features li.no { color: var(--gray-400); text-decoration: line-through; }
.pricing-card__features li.no::before { background: rgba(0,0,0,.06); content: '—'; font-size: .7rem; color: var(--gray-400); display: flex; align-items: center; justify-content: center; }

.pricing-note { text-align: center; color: var(--gray-600); font-size: .85rem; margin-top: 2rem; }
.pricing-note a { color: var(--forest-700); font-weight: 600; }

.full-compare {
  width: 100%; border-collapse: collapse; background: var(--white);
}
.full-compare th, .full-compare td { padding: .9rem 1.25rem; text-align: center; border-bottom: 1px solid var(--gray-200); font-size: .9rem; }
.full-compare td:first-child { text-align: left; font-weight: 500; color: var(--gray-800); }
.full-compare thead tr { background: var(--forest-900); }
.full-compare thead th { color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.full-compare thead th:first-child { text-align: left; }
.full-compare .highlight-col { background: rgba(232,150,14,.07); font-weight: 600; }
.full-compare thead .highlight-col { background: var(--amber-500); color: var(--forest-900); }
.full-compare .yes-cell { color: var(--forest-700); font-weight: 700; }
.full-compare .no-cell  { color: var(--gray-400); }
.full-compare tbody tr:last-child td { border-bottom: none; }
.full-compare tbody tr:hover { background: var(--gray-50); }
.full-compare tbody tr:hover .highlight-col { background: rgba(232,150,14,.1); }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden;
}
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem; background: none; border: none; text-align: left; font-size: .97rem; font-weight: 600; color: var(--charcoal); cursor: pointer; gap: 1rem; transition: background 150ms; }
.faq-item__question:hover { background: var(--gray-50); }
.faq-item__chevron { flex-shrink: 0; transition: transform 250ms; color: var(--gray-400); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.faq-item__answer p { padding: 0 1.5rem; color: var(--gray-600); font-size: .93rem; line-height: 1.7; }
.faq-item.open { border-color: var(--amber-400); }
.faq-item.open .faq-item__chevron { transform: rotate(180deg); }
.faq-item.open .faq-item__answer { max-height: 200px; }
.faq-item.open .faq-item__answer p { padding-bottom: 1.25rem; }
