/* pricing.css — pricing.html */
.header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-size: 1.5rem; font-weight: 700; color: var(--teal); text-decoration: none; }
.header-nav { display: flex; gap: 1rem; align-items: center; }
.header-nav a { color: var(--text); text-decoration: none; font-size: 0.9rem; padding: 0.4rem 0.8rem; border-radius: 6px; }
.header-nav a:hover { background: var(--bg); }
.header-nav .btn-cta { background: var(--teal); color: white; font-weight: 500; }
.header-nav .btn-cta:hover { background: var(--teal-dark); }

.container { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem; }
h1 { font-size: 2.5rem; text-align: center; margin-bottom: 0.5rem; }
.subtitle { text-align: center; font-size: 1.1rem; color: var(--muted); margin-bottom: 3rem; }

.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.plan { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 2rem 1.75rem; display: flex; flex-direction: column; position: relative; }
.plan.featured { border-color: var(--teal); box-shadow: 0 8px 30px rgba(20,184,166,0.12); }
.plan.current { border-color: #1E40AF; box-shadow: 0 4px 16px rgba(30,64,175,0.15); }

.featured-badge, .current-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 0.3rem 0.8rem; border-radius: 999px; font-size: 0.75rem;
  font-weight: 600; color: white; white-space: nowrap;
}
.featured-badge { background: var(--teal); }
.current-badge { background: #1E40AF; }

.plan-name { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.plan-price { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.plan-price small { font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan-tagline { color: var(--muted); font-size: 0.875rem; margin-bottom: 1.5rem; }
.plan-features { list-style: none; margin-bottom: 1.5rem; flex-grow: 1; }
.plan-features li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--text); display: flex; align-items: flex-start; gap: 0.5rem; }
.plan-features li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.plan-features li.muted { color: var(--muted); }
.plan-features li.muted::before { content: "—"; color: var(--muted); }

.plan-button { width: 100%; padding: 0.75rem; border: 1px solid var(--border); background: white; color: var(--text); border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600; cursor: pointer; }
.plan-button.primary { background: var(--teal); color: white; border-color: var(--teal); }
.plan-button.primary:hover { background: var(--teal-dark); }
.plan-button.current { background: #DBEAFE; color: #1E40AF; border-color: #93C5FD; cursor: default; }
.plan-button.downgrade { background: #F3F4F6; color: var(--muted); cursor: not-allowed; border-color: var(--border); }
.plan-button:hover:not(.current):not(.downgrade) { background: var(--bg); }
.plan-button.primary:hover:not(.current):not(.downgrade) { background: var(--teal-dark); }

.annual-savings { color: var(--teal-dark); font-size: 0.85rem; margin-top: 0.75rem; text-align: center; line-height: 1.4; }
.annual-savings strong { color: var(--teal-dark); font-weight: 700; }
.annual-savings a { color: var(--teal-dark); text-decoration: underline; cursor: pointer; }

.help { text-align: center; margin-top: 3rem; color: var(--muted); font-size: 0.9rem; }
.help a { color: var(--teal); text-decoration: none; }

@media (max-width: 640px) {
  h1 { font-size: 1.75rem; }
  .plans { grid-template-columns: 1fr; }
}
