:root {
  --brand: #469DF8;
  --brand-dark: #3f7ab3;
  --brand-10: rgba(84, 140, 199, .10);
  --brand-15: rgba(84, 140, 199, .15);
  --ink: #1f2d3d;
  --muted: #64748b;
  --bgreen: #A2DBD8;
  --brand-green: #56BAB9;
  --brand-purple: #B5A1FF;
  --brand-blue: #1189ff;
  --lav: #bba7ff;

  --brand-teal: #10b7b2;
  --card-bg: #f6fbff;
  --card-stroke: #d6f0ff;
  --shadow: 0 14px 34px rgba(2, 8, 23, .10);
}


body {
  color: var(--ink);
  font-family: 'PP Mori', sans-serif;
}

.text-muted {
  color: var(--muted) !important;
}

.text-brand {
  color: var(--brand) !important;
}

.text-brand-green {
  color: var(--brand-green) !important;
}

.text-brand-green-title {
  color: var(--brand-green) !important;
}

.text-brand-blue-title {
  color: var(--brand) !important;
}

.text-brand-purple {
  color: var(--brand-purple) !important;
}

.text-brand-blue {
  color: var(--brand) !important;
  font-size: 1.65rem;
}

.bg-cloud-white, bg-cloud-white:hover {
  background-color: #F5F7FA;
}

.bg-brand-green {
  background-color: var(--brand-green);
  padding: 15px;
  border-radius: 6px;
  color: #fff !important;
}

.bg-brand-green-no-border {
  background-color: var(--brand-green);
}


.bg-brand {
  background: var(--brand);
  border-color: var(--brand);
}

.bg-lavender {
  background: #DDD7F9;
  border-color: #DDD7F9;
}

.bg-brand:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.bg-brand-purple {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
}

.bg-brand-purple:hover {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
}


.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.link-brand {
  color: var(--brand);
}

.badge-soft {
  background: var(--brand-10);
  color: var(--brand);
  border: 1px solid var(--brand-15);
}

/* Hero */
.hero {
  background: radial-gradient(80rem 40rem at 110% -10%, var(--brand-10), transparent 60%),
  radial-gradient(60rem 30rem at -10% -10%, var(--brand-10), transparent 60%),
  linear-gradient(#fff, #fff);
}

.hero .lead {
  font-size: 1.15rem;
}

.pricing-section {
  padding: 48px 0;
  background: #fff;
}

.pricing-title {
  font-weight: 500;
  color: #111827;
  letter-spacing: .01em;
  margin-bottom: 26px;
  text-align: center;
}

.plan-card {
  background: var(--card-bg);
  border: 2px solid var(--card-stroke);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 26px 26px 22px;
  height: 100%;
}

.plan-name {
  font-size: 12px;
  letter-spacing: .08em;
  color: #111827;
  font-weight: 700;
}

.tier {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.tier .per {
  font-size: 13px;
  color: #475569;
  padding-bottom: 6px;
}

.btn-plan {
  width: 100%;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 800;
  border: 0;
}

.btn-blue, .btn-blue:hover {
  background: var(--brand-blue);
  color: #fff;
}

.btn-teal, .btn-teal:hover {
  background: var(--brand-teal);
  color: #fff;
}

.btn-purple, .btn-purple:hover {
  background: var(--brand-purple);
  color: #fff;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  color: #0f172a;
  font-size: 13px;
}

.check {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin-top: 1px;
}

.check svg {
  width: 12px;
  height: 12px;
}

.check.blue {
  border: 2px solid rgba(11, 132, 255, .35);
  color: var(--brand-blue);
}

.check.teal {
  border: 2px solid rgba(16, 183, 178, .35);
  color: var(--brand-teal);
}

.check.purple {
  border: 2px solid rgba(181, 156, 255, .45);
  color: var(--brand-purple);
}

/* spacing like screenshot */
@media (min-width: 992px) {
  .pricing-row {
    gap: 18px;
  }
}

/* Section headings */
.section-title {
  font-weight: 800;
  letter-spacing: .2px;
}

/* Checklist */
.check i {
  color: var(--brand);
}

/* Footer badges */
.trust-badges img {
  height: 28px;
  opacity: .85;
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.testi-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-btn .icon {
  width: 18px;
  height: 18px;
  fill: #fff;
}


/* Responsive */
@media (max-width: 991.98px) {
  .testi-left {
    padding: 32px 24px;
    min-height: auto;
  }

  .testi-right {
    min-height: 280px;
  }

  .testi-btn.prev {
    left: 10px;
  }

  .testi-btn.next {
    right: 10px;
  }
}

.pill-acc {
  background: var(--lav);
  border: 0;
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 600;
  color: #3b2a94;
  box-shadow: 0 6px 18px rgba(2, 8, 23, .06);
}

/* Bootstrap accordion reset + custom chevron */
.acc-clean .accordion-item {
  background: transparent;
  border: 0;
  margin-bottom: 18px;
}

.acc-clean .accordion-button {
  background: var(--lav);
  border-radius: 12px !important;
  padding: 16px 18px;
  /*font-weight: 600;*/
  color: #3b2a94;
  box-shadow: 0 6px 18px rgba(2, 8, 23, .06);
}

.acc-clean .accordion-button:focus {
  box-shadow: 0 0 0 .25rem rgba(203, 185, 255, .35);
}

.acc-clean .accordion-button:not(.collapsed) {
  color: #3b2a94;
  background: var(--lav);
}

/* Use a simple thin chevron like the screenshot */
.acc-clean .accordion-button::after {
  background-image: none;
  content: "⌄";
  font-size: 22px;
  color: #6d57ff;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: rotate(0deg);
}

.acc-clean .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.acc-clean .accordion-body {
  padding: 18px 18px 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .objection-img img {
    min-height: 260px;
  }
}

.main-header * {
  margin-bottom: 0;
}

.main-header h4 {
  margin-bottom: 0;
}

.main-header .navigation {
  padding-bottom: 0;
  margin-bottom: 0;
}


.pricing-hero {
  padding: 4rem 0;
}

.pricing-sub {
  max-width: 720px;
  margin: 0 auto;
}

/* --- Selectable card behavior --- */
.plan-label {
  cursor: pointer;
}

.plan-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  border-width: 2px;
  border-radius: 1.25rem;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, .12);
}

.btn-check:checked + .plan-card {
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .16);
  border-color: #0d6efd !important;
}

.btn-check:checked + .plan-card .select-btn {
  filter: saturate(1.2);
}

/* --- Most Popular badge --- */
.popular-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
}

/* --- Price emphasis --- */
.price {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: .25rem;
}

.price small {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}

.setup {
  color: #6c757d;
}

/* --- Feature list --- */
.feature-list li {
  padding: .35rem 0;
}

.feature-list li span {
  color: #6c757d;
}

/* --- Toggle pill --- */
.billing-toggle {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  padding: .4rem;
  display: inline-flex;
  gap: .35rem;
  box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .06);
}

.billing-toggle .btn {
  border-radius: 999px;
  padding: .45rem 1rem;
  font-weight: 600;
}

/* --- Comparison table --- */
.comparison-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
}

.comparison thead th {
  background: #f8f9fa;
}

.comparison td, .comparison th {
  vertical-align: middle;
}

.check {
  font-weight: 700;
}

/* --- Subtle section divider --- */
.soft-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, .12), transparent);
  margin: 2.5rem 0;
}

/* ===============================
   STREAMS (match pricing cards)
================================= */

.streams-wrap {
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 .75rem 1.75rem rgba(2, 8, 23, .06);
  overflow: hidden;
}

.streams-head {
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, rgba(70,157,248,.10), rgba(70,157,248,.02));
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.streams-head h5 {
  margin: 0;
  font-weight: 800;
  letter-spacing: .2px;
}

.streams-head p {
  margin: .25rem 0 0;
  color: #64748b;
  font-size: .95rem;
}

.stream-section {
  padding: 1.25rem;
}

.stream-section-title {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: .75rem;
  color: #0f172a;
}

.stream-section-sub {
  color: #64748b;
  font-size: .92rem;
  margin-top: -0.35rem;
  margin-bottom: 1rem;
}

.stream-card {
  background: var(--card-bg);
  border: 2px solid var(--card-stroke);
  border-radius: 1.25rem;
  box-shadow: 0 .75rem 1.75rem rgba(2, 8, 23, .06);
  padding: 14px 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor: pointer;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* lift like your pricing cards */
.stream-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, .12);
}

/* input hidden but still accessible */
.stream-card .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* content layout */
.stream-card .stream-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* icon chip */
.stream-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: rgba(70,157,248,.12);
  border: 1px solid rgba(70,157,248,.18);
  flex: 0 0 44px;
}

.stream-icon i {
  font-size: 20px;
  color: var(--brand);
}

.stream-title {
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.stream-meta {
  color: #64748b;
  font-size: .9rem;
  margin-top: 2px;
}

.stream-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  background: rgba(108,117,125,.14);
  border: 1px solid rgba(108,117,125,.22);
  color: #475569;
}

/* price tag for add-ons */
.stream-price {
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 800;
  color: #198754;
}

/* Selected state - glow animation */
@keyframes softGlow {
  0%   { box-shadow: 0 0 0 rgba(13,110,253,0); }
  35%  { box-shadow: 0 0 0 6px rgba(13,110,253,.12); }
  100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}

.stream-card.is-selected {
  border-color: #0d6efd !important;
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 3rem rgba(0,0,0,.16);
  animation: softGlow .55s ease;
}

.stream-card.is-selected .stream-icon {
  background: rgba(13,110,253,.14);
  border-color: rgba(13,110,253,.25);
}

.stream-card.is-selected .stream-icon i {
  color: #0d6efd;
}

/* Disabled (included stream) look */
.stream-card.is-disabled {
  opacity: .85;
  cursor: not-allowed;
}

.stream-card.is-disabled:hover {
  transform: none;
  box-shadow: 0 .75rem 1.75rem rgba(2, 8, 23, .06);
}

/* Divider between included/add-ons */
.stream-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,.12), transparent);
  margin: 0;
}

/* ===============================
   LIVE STACKED SUMMARY (addons)
================================= */

.pricing-stack {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 .75rem 1.75rem rgba(2, 8, 23, .06);
  padding: 16px 18px;
}

.pricing-stack .title {
  font-weight: 900;
  margin-bottom: 10px;
}

.stack-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,.10);
  color: #0f172a;
  font-size: .95rem;
}

.stack-line:last-child {
  border-bottom: 0;
}

.stack-muted {
  color: #64748b;
  font-weight: 600;
}

.stack-total {
  font-size: 1.05rem;
  font-weight: 900;
}

.addon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(25,135,84,.10);
  border: 1px solid rgba(25,135,84,.18);
  color: #198754;
  font-weight: 800;
  font-size: .85rem;
  margin: 8px 8px 0 0;
}

.addon-pill i {
  font-size: 16px;
}

/* Hide native inputs but keep them accessible */
.stream-input {
  position: absolute !important;
  opacity: 0 !important;
  width: 0px !important;
  height: 0px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* If bootstrap form-check adds spacing, neutralize */
.stream-label {
  display: block;
  position: relative;
}

/* Optional: remove any leftover space from form-check */
.stream-label .form-check-input,
.stream-label .form-check-label {
  margin-left: 5px !important;
  padding: 0 !important;
}

.jj .price {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  transition: all .2s ease;
}

.jj .small {
  font-size: .9rem;
  transition: all .2s ease;
}

/* When annual is active */
.jj.annual-active .price {
  font-size: .9rem;
  font-weight: 600;
  opacity: .65;
}

.jj.annual-active .small {
  font-size: 2rem;
  font-weight: 900;
  opacity: 1 !important;
  color: #ffffff;
}




/* Tooltip arrow */
.support-tooltip::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1f2d3d;
}

/* Show tooltip on hover */
.support-float-right:hover .support-tooltip {
  opacity: 1;
  transform: translateX(0);
}