/* TheOldBear — /pricing only (loaded via marketingExtraHeadHtml) */

/* ---------- Plan tier cards (above matrix) ---------- */
.tb-pricing-tier-wrap {
  margin-top: clamp(8px, 2vw, 16px);
}

.tb-pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
  align-items: stretch;
}

@media (max-width: 1100px) {
  .tb-pricing-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.tb-plan-tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 26px);
  border-radius: var(--tb-radius-xl, 20px);
  border: 1px solid var(--tb-line, #e2e8f0);
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tb-plan-tier-card:hover {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
}

.tb-plan-tier-card__name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tb-muted, #64748b);
  margin: 0 0 6px;
}

.tb-plan-tier-card__price {
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--tb-ink, #0f172a);
}

.tb-plan-tier-card__price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tb-muted, #64748b);
  margin-left: 2px;
}

.tb-plan-tier-card__desc {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--tb-muted-2, #475569);
  margin: 0 0 14px;
  flex: 1;
}

.tb-plan-tier-card__benefits {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tb-plan-tier-card__benefits li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--tb-ink, #1e293b);
}

.tb-plan-tier-card__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tb-brand, #0d9488);
  opacity: 0.75;
}

.tb-plan-tier-card__cta {
  margin-top: auto;
  width: 100%;
}

.tb-plan-tier-card__cta .btn {
  width: 100%;
  justify-content: center;
}

/* Starter — neutral */
.tb-plan-tier-card--starter {
  background: linear-gradient(180deg, #fafafa 0%, #fff 45%);
  border-color: #e8e8ec;
}

/* Growth — featured tier (conversion focus) */
.tb-plan-tier-card--growth {
  position: relative;
  padding-top: clamp(28px, 3vw, 34px);
  border: 2px solid var(--tb-brand, #0d9488);
  background: linear-gradient(165deg, rgba(13, 148, 136, 0.1) 0%, #fff 52%);
  box-shadow: 0 18px 52px rgba(13, 148, 136, 0.22);
  transform: translateY(-4px);
}

.tb-plan-tier-card--growth .tb-plan-tier-card__name {
  color: var(--tb-brand, #0f766e);
}

.tb-plan-tier-card--growth::before {
  content: "Most popular";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--tb-brand, #0d9488);
  padding: 5px 10px;
  border-radius: 999px;
}

/* Pro — strong, not the hero card */
.tb-plan-tier-card--pro {
  border: 1px solid #99f6e4;
  background: linear-gradient(165deg, rgba(13, 148, 136, 0.05) 0%, #fff 55%);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
}

.tb-plan-tier-card--pro .tb-plan-tier-card__name {
  color: #0f766e;
}

.tb-plan-tier-card__price .tb-price-plus {
  font-size: 0.55em;
  font-weight: 800;
  vertical-align: super;
  margin-left: 1px;
  letter-spacing: 0;
}

/* Enterprise — premium dark */
.tb-plan-tier-card--enterprise {
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
  color: #e2e8f0;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.35);
}

.tb-plan-tier-card--enterprise .tb-plan-tier-card__name {
  color: #94a3b8;
}

.tb-plan-tier-card--enterprise .tb-plan-tier-card__price {
  color: #f8fafc;
}

.tb-plan-tier-card--enterprise .tb-plan-tier-card__price span {
  color: #94a3b8;
}

.tb-plan-tier-card--enterprise .tb-plan-tier-card__desc,
.tb-plan-tier-card--enterprise .tb-plan-tier-card__benefits li {
  color: #cbd5e1;
}

.tb-plan-tier-card--enterprise .tb-plan-tier-card__benefits li::before {
  background: #5eead4;
  opacity: 1;
}

.tb-plan-tier-card--enterprise .btn-brand {
  background: #f8fafc;
  color: #0f172a;
  border-color: #f8fafc;
}

.tb-plan-tier-card--enterprise .btn-brand:hover {
  filter: brightness(0.96);
}

/* ---------- Matrix: column tint ---------- */
.tb-pricing-matrix-wrap.tb-pricing-matrix-wrap--premium {
  border: none;
  overflow: visible;
  background: transparent;
}

.tb-pricing-matrix.tb-pricing-matrix--premium.table {
  border-collapse: separate;
}

.tb-pricing-matrix.tb-pricing-matrix--premium {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  border-radius: var(--tb-radius-xl, 20px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--tb-line, #e2e8f0);
  background: #fff;
}

.tb-pricing-matrix.tb-pricing-matrix--premium thead th {
  padding: 18px 14px;
  vertical-align: bottom;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  border-bottom: 1px solid var(--tb-line, #e2e8f0);
  background: #f8fafc;
}

.tb-pricing-matrix.tb-pricing-matrix--premium thead th:first-child {
  text-align: left;
  border-radius: var(--tb-radius-xl, 20px) 0 0 0;
  background: #fff;
}

.tb-pricing-matrix.tb-pricing-matrix--premium thead th.tb-pcol-starter {
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
}

.tb-pricing-matrix.tb-pricing-matrix--premium thead th.tb-pcol-growth {
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.16) 0%, #ecfdf5 100%);
  color: #0f766e;
  box-shadow: inset 0 -2px 0 var(--tb-brand, #0d9488);
}

.tb-pricing-matrix.tb-pricing-matrix--premium thead th.tb-pcol-pro {
  background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 100%);
  color: #075985;
}

.tb-pricing-matrix.tb-pricing-matrix--premium thead th.tb-pcol-enterprise {
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  color: #f1f5f9;
}

.tb-pricing-matrix.tb-pricing-matrix--premium tbody td {
  padding: 16px 12px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.tb-pricing-matrix.tb-pricing-matrix--premium tbody td:first-child {
  background: #fff !important;
  min-width: min(280px, 38vw);
}

.tb-pricing-matrix.tb-pricing-matrix--premium tbody tr:last-child td {
  border-bottom: none;
}

.tb-pricing-matrix.tb-pricing-matrix--premium tbody tr.tb-pricing-row--key td:first-child {
  font-weight: 800;
  color: #0f172a;
}

.tb-pricing-matrix.tb-pricing-matrix--premium tbody tr:hover td:not(:first-child) {
  background: rgba(248, 250, 252, 0.9);
}

.tb-pricing-matrix.tb-pricing-matrix--premium td.tb-pcol-starter {
  background: rgba(250, 250, 250, 0.5);
}

.tb-pricing-matrix.tb-pricing-matrix--premium td.tb-pcol-growth {
  background: rgba(236, 253, 245, 0.6);
}

.tb-pricing-matrix.tb-pricing-matrix--premium td.tb-pcol-pro {
  background: rgba(240, 249, 255, 0.45);
}

.tb-pricing-matrix.tb-pricing-matrix--premium td.tb-pcol-enterprise {
  background: rgba(241, 245, 249, 0.35);
}

/* Group separator rows */
.tb-pricing-matrix.tb-pricing-matrix--premium tr.tb-pricing-matrix__group td {
  padding: 12px 16px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
  background: #f1f5f9 !important;
  border-bottom: 1px solid #e2e8f0;
}

.tb-pricing-matrix.tb-pricing-matrix--premium tr.tb-pricing-matrix__group td:first-child {
  border-radius: 0;
}

.tb-pricing-matrix.tb-pricing-matrix--premium tr.tb-pricing-matrix__group + tr td {
  border-top: none;
}

/* Feature label + icon */
.tb-pfeat-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.tb-pfeat-ic {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--tb-brand, #0d9488);
  opacity: 0.9;
}

.tb-pfeat-ic svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- Badges ---------- */
.tb-pbadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
}

.tb-pbadge__icon {
  font-size: 12px;
  line-height: 1;
}

.tb-pbadge--included {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.tb-pbadge--limited {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.tb-pbadge--addon {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.tb-pbadge--none {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

/* Tooltip wrapper (limited / add-on) */
.tb-pbadge-tip {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  cursor: help;
  outline: none;
}

.tb-pbadge-tip:focus-visible {
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.35);
}

.tb-pbadge-tip__bubble {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  width: min(280px, 70vw);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  color: #f8fafc;
  background: #0f172a;
  border: 1px solid #334155;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.tb-pbadge-tip__bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #0f172a;
}

.tb-pbadge-tip:hover .tb-pbadge-tip__bubble,
.tb-pbadge-tip:focus .tb-pbadge-tip__bubble,
.tb-pbadge-tip:focus-within .tb-pbadge-tip__bubble {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Legend */
.tb-pricing-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

/* ---------- Mobile: feature stack ---------- */
.tb-pricing-mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.tb-pricing-mobile__group {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
  margin: 4px 0 -4px;
  padding: 0 2px;
}

.tb-pricing-mobile__card {
  border-radius: var(--tb-radius-lg, 16px);
  border: 1px solid var(--tb-line, #e2e8f0);
  background: #fff;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
  padding: 16px 16px 14px;
}

.tb-pricing-mobile__card-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.tb-pricing-mobile__plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

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

.tb-pricing-mobile__plan {
  padding: 10px 10px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fafafa;
}

.tb-pricing-mobile__plan.tb-pmob-growth {
  background: #ecfdf5;
  border-color: #5eead4;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.12);
}

.tb-pricing-mobile__plan.tb-pmob-pro {
  background: #f0f9ff;
  border-color: #bae6fd;
}

.tb-pricing-mobile__plan.tb-pmob-enterprise {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.tb-pricing-mobile__plan-name {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
}

.tb-pricing-mobile__plan .tb-pbadge-tip,
.tb-pricing-mobile__plan .tb-pbadge {
  width: 100%;
  justify-content: center;
}

/* Breakpoint: stack table → cards */
@media (max-width: 900px) {
  .tb-pricing-matrix-desktop {
    display: none;
  }

  .tb-pricing-mobile {
    display: flex;
  }

  .tb-pricing-matrix-wrap.tb-pricing-matrix-wrap--premium {
    border: none;
    box-shadow: none;
  }
}

/* ---------- CTA band below matrix ---------- */
.tb-pricing-cta-band {
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 32px);
  border-radius: var(--tb-radius-xl, 20px);
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 40%, #ecfdf5 100%);
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.tb-pricing-cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  letter-spacing: -0.02em;
}

.tb-pricing-cta-band p {
  margin: 0 0 18px;
  color: var(--tb-muted, #64748b);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.tb-pricing-cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  max-width: 400px;
  margin: 0 auto;
}

.tb-pricing-cta-band__actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 520px) {
  .tb-pricing-cta-band__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }

  .tb-pricing-cta-band__actions .btn {
    width: auto;
    min-width: 180px;
  }
}

.tb-pricing-cta-band__fine {
  margin: 16px 0 0 !important;
  font-size: 0.85rem !important;
}

.tb-pricing-cta-band__fine a {
  font-weight: 700;
  color: var(--tb-brand, #0d9488);
}

/* ---------- High-converting pricing page v2 ---------- */
.tb-pricing-page {
  --tb-ph-ink: #0f172a;
  --tb-ph-muted: #64748b;
  --tb-ph-line: #e2e8f0;
}

.tb-pricing-hero {
  padding: clamp(28px, 5vw, 56px) 0 clamp(20px, 3vw, 36px);
  border-bottom: 1px solid var(--tb-ph-line);
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.tb-pricing-hero__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.tb-pricing-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tb-brand, #0d9488);
}

.tb-pricing-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--tb-ph-ink);
}

.tb-pricing-hero__lead {
  margin: 0 0 20px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  color: #475569;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.tb-pricing-hero__bullets {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  max-width: 420px;
  text-align: left;
}

.tb-pricing-hero__bullets li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tb-ph-ink);
  line-height: 1.35;
}

.tb-pricing-hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tb-brand, #0d9488);
  opacity: 0.9;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 12px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.tb-pricing-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  max-width: 360px;
  margin: 0 auto 14px;
}

.tb-pricing-hero__ctas .btn {
  justify-content: center;
}

@media (min-width: 480px) {
  .tb-pricing-hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }

  .tb-pricing-hero__ctas .btn {
    min-width: 160px;
  }
}

.tb-pricing-hero__fine {
  margin: 0;
  font-size: 0.8rem;
  color: var(--tb-ph-muted);
}

.tb-pricing-section {
  padding: clamp(36px, 6vw, 64px) 0;
}

.tb-pricing-section--tight {
  padding: clamp(28px, 4vw, 44px) 0;
}

.tb-pricing-section__head {
  max-width: 640px;
  margin: 0 auto clamp(22px, 3vw, 32px);
  text-align: center;
}

.tb-pricing-section__head .kicker {
  margin-bottom: 8px;
}

.tb-pricing-section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tb-ph-ink);
}

.tb-pricing-section__head .lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #475569;
}

/* Module icon grid */
.tb-pricing-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
  max-width: 880px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .tb-pricing-modules {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .tb-pricing-modules {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.tb-pricing-mod {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(16px, 2vw, 22px) 12px;
  border-radius: var(--tb-radius-lg, 16px);
  border: 1px solid var(--tb-ph-line);
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  min-height: 120px;
  justify-content: center;
}

.tb-pricing-mod__ic {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  color: var(--tb-brand, #0d9488);
}

.tb-pricing-mod__ic svg {
  display: block;
  width: 100%;
  height: 100%;
}

.tb-pricing-mod__label {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--tb-ph-ink);
}

/* Triangulation */
.tb-pricing-triang {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tb-pricing-triang {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tb-pricing-triang__card {
  padding: clamp(20px, 2.5vw, 26px);
  border-radius: var(--tb-radius-xl, 20px);
  border: 1px solid var(--tb-ph-line);
  background: linear-gradient(165deg, #f8fafc 0%, #fff 100%);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.tb-pricing-triang__card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--tb-ph-ink);
}

.tb-pricing-triang__card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #475569;
}

/* Service scaling table */
.tb-pricing-scale-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tb-pricing-scale-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  border-radius: var(--tb-radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--tb-ph-line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  background: #fff;
}

.tb-pricing-scale-table th,
.tb-pricing-scale-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}

.tb-pricing-scale-table th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #64748b;
  background: #f8fafc;
}

.tb-pricing-scale-table tbody tr:last-child td {
  border-bottom: none;
}

.tb-pricing-scale-table td strong {
  color: var(--tb-ph-ink);
}

/* Add-ons strip */
.tb-pricing-addons {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .tb-pricing-addons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tb-pricing-addon {
  padding: 18px 16px;
  border-radius: var(--tb-radius-lg, 16px);
  border: 1px dashed #cbd5e1;
  background: #fafafa;
}

.tb-pricing-addon h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--tb-ph-ink);
}

.tb-pricing-addon p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #64748b;
}

/* Final CTA */
.tb-pricing-close {
  margin: clamp(32px, 5vw, 56px) 0 clamp(40px, 6vw, 72px);
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
  border-radius: var(--tb-radius-xl, 22px);
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #134e4a 100%);
  color: #e2e8f0;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
  border: 1px solid #334155;
}

.tb-pricing-close h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.tb-pricing-close p {
  margin: 0 auto 22px;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.55;
  color: #94a3b8;
}

.tb-pricing-close__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  max-width: 380px;
  margin: 0 auto;
}

.tb-pricing-close__actions .btn {
  justify-content: center;
}

@media (min-width: 520px) {
  .tb-pricing-close__actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

  .tb-pricing-close__actions .btn {
    min-width: 170px;
  }
}

.tb-pricing-close .btn-brand {
  background: #f8fafc;
  color: #0f172a;
  border-color: #f8fafc;
}

.tb-pricing-close .btn-brand:hover {
  filter: brightness(0.97);
}

.tb-pricing-close .btn-light {
  background: transparent;
  color: #f8fafc;
  border: 1px solid rgba(248, 250, 252, 0.35);
}

.tb-pricing-close .btn-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tb-pricing-close__fine {
  margin: 18px 0 0;
  font-size: 0.8rem;
  color: #64748b;
}

.tb-pricing-close__fine a {
  color: #5eead4;
  font-weight: 600;
}

/* Card copy clamp for equal visual height */
.tb-plan-tier-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tb-plan-tier-card__benefits {
  flex: 1 1 auto;
}

.tb-plan-tier-card--growth .tb-plan-tier-card__benefits li {
  font-size: 0.86rem;
}
