/* ================================   QBO PRICING – PREMIUM MODERN UI   ================================ */

.qbo-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #f9fbfc 0%, #ffffff 100%);
  color: #0f172a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.qbo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- HEADER ---------- */

.qbo-pricing-header {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.qbo-pricing-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.qbo-pricing-intro {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.qbo-pricing-disclosure {
  font-size: 0.95rem;
  background: #f1f5f9;
  border-left: 4px solid #28a745;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
  color: #334155;
}

/* ---------- GRID ---------- */

.qbo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

/* ---------- PLAN CARD ---------- */

.qbo-plan-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qbo-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08), 0 6px 12px rgba(15, 23, 42, 0.05);
}

/* Highlighted plan */

.qbo-plan-highlight {
  border: 2px solid #28a745;
  position: relative;
}

/* ---------- PLAN HEADER ---------- */

.qbo-plan-head {
  margin-bottom: 1.25rem;
}

.qbo-plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.qbo-plan-tagline {
  font-size: 0.95rem;
  color: #64748b;
}

.qbo-plan-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

/* Badge colors */

.qbo-badge-green {
  background: #dcfce7;
  color: #166534;
}

.qbo-badge-blue {
  background: #e0f2fe;
  color: #075985;
}

.qbo-badge-teal {
  background: #ccfbf1;
  color: #065f46;
}

.qbo-badge-dark {
  background: #e5e7eb;
  color: #111827;
}

/* ---------- PRICING ---------- */

.qbo-plan-price {
  margin: 1.25rem 0;
}

.qbo-price-monthly {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.qbo-price-monthly span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  margin-left: 0.25rem;
}

.qbo-price-meta {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.qbo-price-annual {
  font-size: 0.85rem;
  color: #475569;
  margin-top: 0.75rem;
}

.qbo-price-discount span {
  color: #15803d;
  font-weight: 700;
}

/* ---------- ACTIONS ---------- */

.qbo-plan-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.qbo-billing-option {
  display: block;
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 0.4rem;
}

.qbo-billing-option input {
  margin-right: 0.4rem;
}

.qbo-buy-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 0.65rem;
  border: none;
  background: linear-gradient(135deg, #28a745, #22c55e);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.qbo-buy-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.qbo-plan-note {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.5rem;
}

/* ---------- FEATURES ---------- */

.qbo-plan-features {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
  list-style: none;
  padding-left: 0;
}

.qbo-plan-features li {
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.1rem;
}

.qbo-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* ---------- FOOTER ---------- */

.qbo-pricing-footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #64748b;
}

.qbo-pricing-contact {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .qbo-pricing-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .qbo-plan-card {
    padding: 1.5rem;
  }
}

/* ================================   QBO COMPARISON – PREMIUM TABLE   ================================ */

.qbo-compare-header {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.qbo-compare-title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.qbo-compare-subtitle {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

.qbo-compare-hint {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.5rem;
}

/* ---------- SCROLL ---------- */

.qbo-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
}

/* ---------- TABLE ---------- */

.qbo-compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}

.qbo-compare-table th, .qbo-compare-table td {
  padding: 0.85rem 0.9rem;
  font-size: 0.85rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

.qbo-compare-table th {
  font-weight: 700;
  background: #f8fafc;
  color: #0f172a;
  position: sticky;
  top: 0;
  z-index: 2;
}

.qbo-col-feature {
  text-align: left;
  min-width: 220px;
}

.qbo-col-plan {
  min-width: 120px;
}

.qbo-col-popular {
  background: #ecfdf5;
}

/* ---------- CATEGORY ROW ---------- */

.qbo-compare-category td {
  background: #f1f5f9;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #334155;
  text-align: left;
}

/* ---------- YES / NO ---------- */

.qbo-compare-table td.yes {
  color: #16a34a;
  font-weight: 700;
}

.qbo-compare-table td.no {
  color: #94a3b8;
}

/* ---------- FOOTNOTE ---------- */

.qbo-compare-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 1.5rem;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {
  .qbo-compare-title {
    font-size: 1.75rem;
  }
}

