/* TradeBasis — /pricing standalone styles
   Loaded after /compare/compare.css; extends and overrides as needed.
   Design tokens: navy #0F1B2D · accent #4D7EF7 · text #E8ECF4 */

/* ─── Pricing cards section ─────────────────────────────────────────────── */
.pricing-cards-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Price cards ────────────────────────────────────────────────────────── */
.price-card {
  background: #0f1b2d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.price-card-pro {
  border-color: #4D7EF7;
  box-shadow: 0 0 0 1px #4D7EF7;
}

.price-ribbon {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: #4D7EF7;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  letter-spacing: 0.03em;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: #E8ECF4;
  margin: 1rem 0 0;
  line-height: 1.1;
}

.price-unit {
  font-size: 1rem;
  font-weight: 400;
  color: #9db3d4;
}

.card-tagline {
  color: #9db3d4;
  font-size: 0.95rem;
  margin: 0.25rem 0 1rem;
}

/* ─── Feature list ───────────────────────────────────────────────────────── */
.price-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  flex: 1;
}

.price-features li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: #c8d8ee;
  font-size: 0.95rem;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4D7EF7;
  font-weight: 700;
}

/* "Everything in Lite, plus:" — no checkmark needed, style as a divider label */
.price-card-pro .price-features li:first-child {
  color: #9db3d4;
  font-style: italic;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 0.6rem;
  margin-bottom: 0.25rem;
}

.price-card-pro .price-features li:first-child::before {
  content: "";
}

/* CTA button — full-width within the card */
.price-card .btn-primary {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
}

/* ─── Competitive screenshot section ─────────────────────────────────────── */
.comp-screenshot-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  text-align: center;
}

.comp-screenshot-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.comp-screenshot {
  margin: 1.5rem 0;
}

.comp-screenshot img {
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  margin: 0 auto;
}

.comp-intro {
  color: #9db3d4;
  max-width: 720px;
  margin: 0 auto 0.5rem;
  line-height: 1.7;
}

.comp-caption {
  color: #6b829e;
  font-size: 0.9rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ─── Feature table overrides for pricing page ───────────────────────────── */
/* compare.css sets max-width: 1200px for .compare-table-section;
   pricing page uses a narrower 800px */
.pricing-page .compare-table-section,
body .compare-table-section {
  max-width: 800px;
}

/* Center the ✓ and — cells */
.compare-table td {
  text-align: center;
}

/* ─── Differentiators — override compare.css max-width ──────────────────── */
.differentiators {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.differentiator h3 {
  color: #E8ECF4;
}

/* ─── FAQ — reuse compare.css .faq-item, just constrain width ───────────── */
.faq {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ─── Closing CTA ────────────────────────────────────────────────────────── */
.closing-cta {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
