/* pages/pricing.css */
.pricing-section { background: var(--bg); }

.pricing-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); align-items: start; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

.pricing-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.pricing-card--featured { border-color: var(--gold); border-width: 2px; box-shadow: 0 8px 32px rgba(200,169,106,0.12); }
.pricing-card-badge {
  background: var(--gold); color: var(--dark); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-align: center; padding: 8px; text-transform: uppercase;
}
.pricing-card-header { padding: var(--sp-4) var(--sp-4) 0; }
.pricing-card-name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 800; color: var(--text-1); }
.pricing-card-ideal { font-size: 13px; color: var(--text-2); margin-top: 4px; }
.pricing-card-price {
  margin: var(--sp-3) 0 0;
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.2;
}
.pricing-price-note {
  font-family: var(--font-body); font-size: var(--text-sm);
  font-weight: 400; color: var(--text-2); margin-top: 4px;
}

.pricing-card-features { padding: var(--sp-4); flex: 1; display: flex; flex-direction: column; gap: var(--sp-3); }
.pricing-divider { border: none; border-top: 1px solid var(--border); }
.pricing-features-list { display: flex; flex-direction: column; gap: 10px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); }
.pricing-feature-check {
  width: 18px; height: 18px; border-radius: 50%; background: rgba(26,60,94,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; color: var(--navy); font-size: 10px; font-weight: 700;
}

.pricing-card-footer { padding: 0 var(--sp-4) var(--sp-4); }
.pricing-card-footer .btn { width: 100%; justify-content: center; }

/* Add-ons */
.addons-section { background: var(--bg-white); }
.addons-table { width: 100%; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.addon-row {
  display: grid; grid-template-columns: 1fr auto; gap: var(--sp-4);
  align-items: center; padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--border);
}
.addon-row:last-child { border-bottom: none; }
.addon-row:nth-child(even) { background: var(--bg); }
.addon-name { font-size: var(--text-base); font-weight: 500; color: var(--text-1); }
.addon-desc { font-size: var(--text-sm); color: var(--text-2); }
.addon-price { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--navy); white-space: nowrap; }

/* FAQ */
.faq-section { background: var(--bg); }
.faq-list { display: flex; flex-direction: column; }
.faq-list .faq-item:first-child { border-top: 1px solid var(--border); }

/* Pricing Intro */
.pricing-note {
  text-align: center; font-size: var(--text-sm); color: var(--text-2);
  max-width: 520px; margin: var(--sp-5) auto 0;
  padding: var(--sp-3) var(--sp-4); background: var(--bg-white);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  border-left: 3px solid var(--gold);
}
