/* /assets/css/pricing-public.css
   Optimized pricing page CSS.
   UTF-8, no BOM.
*/

.pricing-page {
  --pc-ink: #12091f;
  --pc-muted: #475569;
  --pc-soft: #64748b;
  --pc-border: rgba(226,232,240,.84);
  --pc-card: rgba(255,255,255,.94);
  --pc-purple: #7c3aed;
  --pc-purple-dark: #6d28d9;
  --pc-pink: #ec4899;
  --pc-green: #10b981;
  --pc-shadow: 0 18px 48px rgba(15,23,42,.08);

  background:
    radial-gradient(circle at 8% 0%, rgba(124,58,237,.18), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(236,72,153,.15), transparent 28%),
    radial-gradient(circle at 76% 100%, rgba(249,115,22,.09), transparent 32%),
    linear-gradient(135deg, #fff7fb 0%, #f8fafc 46%, #f5f3ff 100%);
  color: var(--pc-ink);
}

.pricing-page * {
  box-sizing: border-box;
}

.pricing-page .site-container {
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
}

.pricing-kicker,
.pricing-pill,
.pricing-card__label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(124,58,237,.10);
  color: var(--pc-purple-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .075em;
  text-transform: uppercase;
}

/* Hero */

.pricing-hero {
  padding: 34px 0 24px;
}

.pricing-hero__card,
.pricing-story__card,
.pricing-benefits__card,
.pricing-faq__card,
.pricing-estimator__card {
  border-radius: 36px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

.pricing-hero__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 62px);
  background:
    radial-gradient(circle at 92% 8%, rgba(236,72,153,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.84));
}

.pricing-hero__card::before,
.pricing-hero__card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.pricing-hero__card::before {
  right: -110px;
  top: -130px;
  width: 390px;
  height: 390px;
  background: linear-gradient(135deg, rgba(124,58,237,.16), rgba(236,72,153,.14));
}

.pricing-hero__card::after {
  left: -100px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, rgba(16,185,129,.10), rgba(249,115,22,.10));
}

.pricing-hero__content,
.pricing-hero__media {
  position: relative;
  z-index: 2;
}

.pricing-hero h1 {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--pc-ink);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: .98;
  letter-spacing: -.08em;
}

.pricing-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--pc-muted);
  font-size: 18px;
  line-height: 1.78;
}

.pricing-hero__chips,
.pricing-hero__actions,
.pricing-estimator__actions,
.pricing-estimator__converted {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-hero__chips {
  margin-top: 26px;
}

.pricing-hero__actions {
  margin-top: 30px;
}

.pricing-hero__chips span,
.pricing-estimator__converted span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(226,232,240,.78);
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

/* Buttons */

.pricing-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.pricing-page .btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #12091f, #7c3aed 55%, #ec4899);
  box-shadow: 0 20px 46px rgba(124,58,237,.24);
}

.pricing-page .btn--secondary,
.pricing-page .btn--ghost {
  color: var(--pc-ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226,232,240,.88);
  box-shadow: 0 12px 28px rgba(15,23,42,.07);
}

.pricing-page .btn:hover {
  transform: translateY(-2px);
}

/* Hero media */

.pricing-hero__media {
  min-height: 420px;
  display: grid;
  place-items: center;
}

.pricing-hero__glow {
  position: absolute;
  width: min(360px, 88%);
  height: min(360px, 88%);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124,58,237,.24), rgba(236,72,153,.18));
  filter: blur(10px);
}

.pricing-hero__image-card {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 4 / 3;
  padding: 12px;
  border-radius: 36px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.95);
  box-shadow: 0 30px 86px rgba(15,23,42,.18);
  transform: rotate(1.5deg);
}

.pricing-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
}

/* Sections */

.pricing-story,
.pricing-plans,
.pricing-estimator,
.pricing-benefits,
.pricing-faq {
  padding: 24px 0;
}

.pricing-section-head {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}

.pricing-section-head--left {
  margin-left: 0;
  text-align: left;
}

.pricing-section-head h2 {
  margin: 13px 0 0;
  color: var(--pc-ink);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -.06em;
}

.pricing-section-head p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--pc-soft);
  line-height: 1.72;
}

.pricing-section-head--left p {
  margin-left: 0;
}

.pricing-story__card,
.pricing-benefits__card,
.pricing-faq__card,
.pricing-estimator__card {
  padding: clamp(22px, 4vw, 34px);
}

.pricing-story__grid,
.pricing-estimator__grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.pricing-story__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-estimator__grid {
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
}

/* Info cards */

.pricing-info,
.pricing-card,
.pricing-estimator__panel,
.pricing-benefit,
.pricing-faq details,
.pricing-mini-grid article {
  background: var(--pc-card);
  border: 1px solid var(--pc-border);
  box-shadow: var(--pc-shadow);
}

.pricing-info {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 30px;
}

.pricing-info::after,
.pricing-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(124,58,237,.08);
  pointer-events: none;
}

.pricing-info--green::after {
  background: rgba(16,185,129,.12);
}

.pricing-info--pink::after {
  background: rgba(236,72,153,.12);
}

.pricing-info h3,
.pricing-benefit h3,
.pricing-mini-grid h3 {
  margin: 0 0 8px;
  color: var(--pc-ink);
}

.pricing-info h3 {
  font-size: 22px;
  letter-spacing: -.035em;
}

.pricing-info p,
.pricing-benefit p,
.pricing-mini-grid p {
  margin: 0;
  color: var(--pc-muted);
  line-height: 1.65;
}

.pricing-info p {
  margin-bottom: 16px;
}

/* Lists */

.pricing-info ul,
.pricing-card__features,
.pricing-estimator__rules ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-info li,
.pricing-card__features li,
.pricing-estimator__rules li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-weight: 750;
  line-height: 1.48;
}

.pricing-info li::before,
.pricing-card__features li::before,
.pricing-estimator__rules li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .1em;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: rgba(16,185,129,.12);
  color: #047857;
  font-size: 11px;
  font-weight: 900;
}

.pricing-info__bottom {
  margin-top: 18px;
  padding: 11px 13px;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--pc-purple-dark);
  font-weight: 900;
}

/* Strategy */

.pricing-strategy {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 18px;
  margin-top: 18px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, #12091f, #3b0764 50%, #7c3aed);
  color: #fff;
}

.pricing-strategy h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 23px;
}

.pricing-strategy p {
  margin: 0;
  color: #fff;
  opacity: .86;
  line-height: 1.65;
}

.pricing-strategy__formula {
  display: grid;
  gap: 10px;
}

.pricing-strategy__formula strong {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

/* Pricing cards */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 260px));
  gap: 18px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: 24px;
  border-radius: 32px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--pc-purple), var(--pc-pink));
  opacity: .8;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,.24);
  box-shadow: 0 30px 78px rgba(124,58,237,.14);
}

.pricing-card.is-featured {
  transform: translateY(-10px);
  border-color: rgba(236,72,153,.32);
  background:
    radial-gradient(circle at 86% 8%, rgba(236,72,153,.14), transparent 34%),
    rgba(255,255,255,.98);
  box-shadow: 0 36px 96px rgba(124,58,237,.18);
}

.pricing-card > * {
  position: relative;
  z-index: 2;
}

.pricing-card h3 {
  margin: 0;
  color: var(--pc-ink);
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.pricing-card__price {
  margin-top: 18px;
  color: var(--pc-ink);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.055em;
}

.pricing-card__interval {
  margin-top: 7px;
  color: var(--pc-soft);
  font-size: 13px;
  font-weight: 850;
}

.pricing-card__desc {
  min-height: 78px;
  margin: 18px 0;
  color: var(--pc-muted);
  line-height: 1.62;
}

.pricing-card__features {
  margin-bottom: 22px;
}

.pricing-card__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.pricing-card__actions .btn {
  width: 100%;
  min-height: 44px;
}

.pricing-card--pro::before {
  background: linear-gradient(180deg, #12091f, #7c3aed, #ec4899);
}

.pricing-card--creator::before {
  background: linear-gradient(180deg, #ec4899, #f97316);
}

.pricing-card--starter::before {
  background: linear-gradient(180deg, #7c3aed, #06b6d4);
}

.pricing-card--free::before {
  background: linear-gradient(180deg, #10b981, #22c55e);
}

/* Mini grid */

.pricing-mini-grid,
.pricing-benefits__grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.pricing-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-benefits__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-mini-grid article {
  padding: 20px;
  border-radius: 24px;
}

/* Estimator */

.pricing-estimator__panel {
  padding: 22px;
  border-radius: 30px;
}

.pricing-estimator__field + .pricing-estimator__field {
  margin-top: 20px;
}

.pricing-estimator__field label {
  display: block;
  margin-bottom: 10px;
  color: var(--pc-ink);
  font-weight: 900;
}

.pricing-estimator__field input[type="range"] {
  width: 100%;
  accent-color: var(--pc-purple);
}

.pricing-estimator__value {
  margin-top: 8px;
  color: var(--pc-purple-dark);
  font-size: 18px;
  font-weight: 900;
}

.pricing-estimator__result {
  padding: 18px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid rgba(226,232,240,.82);
}

.pricing-estimator__result + .pricing-estimator__result {
  margin-top: 14px;
}

.pricing-estimator__result span,
.pricing-estimator__result small {
  display: block;
  color: var(--pc-soft);
}

.pricing-estimator__result span {
  font-weight: 850;
}

.pricing-estimator__result strong {
  display: block;
  margin-top: 6px;
  color: var(--pc-ink);
  font-size: 34px;
  letter-spacing: -.05em;
}

.pricing-estimator__result small {
  margin-top: 6px;
  line-height: 1.45;
}

.pricing-estimator__result--highlight {
  background:
    radial-gradient(circle at 92% 10%, rgba(236,72,153,.15), transparent 38%),
    linear-gradient(135deg, #12091f, #3b0764);
  border-color: rgba(255,255,255,.18);
}

.pricing-estimator__result--highlight span,
.pricing-estimator__result--highlight strong,
.pricing-estimator__result--highlight small {
  color: #fff;
}

.pricing-estimator__converted {
  margin-top: 10px;
}

.pricing-estimator__converted span {
  min-height: 28px;
  padding: 0 10px;
  background: rgba(124,58,237,.08);
  color: var(--pc-purple-dark);
  font-size: 12px;
  font-weight: 900;
}

.pricing-estimator__converted--highlight span {
  background: rgba(255,255,255,.14);
  color: #fff;
}

.pricing-estimator__formula,
.pricing-estimator__note,
.pricing-estimator__rules {
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--pc-border);
  color: var(--pc-muted);
  line-height: 1.6;
}

.pricing-estimator__formula {
  display: grid;
  gap: 6px;
}

.pricing-estimator__formula strong,
.pricing-estimator__note strong,
.pricing-estimator__rules h3 {
  color: var(--pc-ink);
}

.pricing-estimator__rules h3 {
  margin: 0 0 12px;
}

.pricing-estimator__actions {
  margin-top: 18px;
}

/* Benefits + FAQ */

.pricing-benefit {
  padding: 22px;
  border-radius: 26px;
}

.pricing-benefit__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124,58,237,.13), rgba(236,72,153,.11));
  font-size: 24px;
}

.pricing-faq details {
  border-radius: 20px;
}

.pricing-faq details + details {
  margin-top: 12px;
}

.pricing-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--pc-ink);
  font-weight: 900;
  list-style: none;
}

.pricing-faq summary::-webkit-details-marker {
  display: none;
}

.pricing-faq summary::after {
  content: "+";
  float: right;
  color: var(--pc-purple);
  font-size: 22px;
  line-height: 1;
}

.pricing-faq details[open] summary::after {
  content: "−";
}

.pricing-faq details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--pc-soft);
  line-height: 1.65;
}

/* Responsive */

@media (max-width: 1120px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .pricing-card.is-featured {
    transform: none;
  }

  .pricing-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .pricing-hero__card,
  .pricing-story__grid,
  .pricing-strategy,
  .pricing-estimator__grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero__media {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .pricing-page .site-container {
    width: calc(100% - 20px);
  }

  .pricing-hero {
    padding-top: 18px;
  }

  .pricing-hero__card,
  .pricing-story__card,
  .pricing-benefits__card,
  .pricing-faq__card,
  .pricing-estimator__card {
    padding: 22px;
    border-radius: 28px;
  }

  .pricing-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.02;
    letter-spacing: -.055em;
  }

  .pricing-hero p {
    font-size: 15.5px;
    line-height: 1.68;
  }

  .pricing-hero__chips,
  .pricing-hero__actions,
  .pricing-estimator__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pricing-page .btn {
    width: 100%;
  }

  .pricing-grid,
  .pricing-mini-grid,
  .pricing-benefits__grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    border-radius: 26px;
  }

  .pricing-estimator__result strong {
    font-size: 28px;
  }
}

/* Dark mode */

html[data-theme="dark"] .pricing-page,
body.theme-dark.pricing-page {
  --pc-ink: #f8fafc;
  --pc-muted: #e2e8f0;
  --pc-soft: #cbd5e1;
  --pc-border: rgba(255,255,255,.10);
  --pc-card: #111827;
  --pc-shadow: 0 22px 60px rgba(0,0,0,.28);

  background:
    radial-gradient(circle at 8% 0%, rgba(124,58,237,.24), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(236,72,153,.16), transparent 28%),
    #0f172a;
  color: #f8fafc;
}

html[data-theme="dark"] .pricing-hero__card,
body.theme-dark .pricing-hero__card,
html[data-theme="dark"] .pricing-story__card,
body.theme-dark .pricing-story__card,
html[data-theme="dark"] .pricing-benefits__card,
body.theme-dark .pricing-benefits__card,
html[data-theme="dark"] .pricing-faq__card,
body.theme-dark .pricing-faq__card,
html[data-theme="dark"] .pricing-estimator__card,
body.theme-dark .pricing-estimator__card,
html[data-theme="dark"] .pricing-card,
body.theme-dark .pricing-card,
html[data-theme="dark"] .pricing-info,
body.theme-dark .pricing-info,
html[data-theme="dark"] .pricing-estimator__panel,
body.theme-dark .pricing-estimator__panel,
html[data-theme="dark"] .pricing-benefit,
body.theme-dark .pricing-benefit,
html[data-theme="dark"] .pricing-faq details,
body.theme-dark .pricing-faq details,
html[data-theme="dark"] .pricing-mini-grid article,
body.theme-dark .pricing-mini-grid article {
  background: #111827;
  border-color: rgba(255,255,255,.10);
}

html[data-theme="dark"] .pricing-hero__chips span,
body.theme-dark .pricing-hero__chips span,
html[data-theme="dark"] .pricing-estimator__formula,
body.theme-dark .pricing-estimator__formula,
html[data-theme="dark"] .pricing-estimator__note,
body.theme-dark .pricing-estimator__note,
html[data-theme="dark"] .pricing-estimator__rules,
body.theme-dark .pricing-estimator__rules,
html[data-theme="dark"] .pricing-estimator__result,
body.theme-dark .pricing-estimator__result,
html[data-theme="dark"] .pricing-info__bottom,
body.theme-dark .pricing-info__bottom {
  background: #0f172a;
  border-color: rgba(255,255,255,.10);
}

html[data-theme="dark"] .pricing-kicker,
body.theme-dark .pricing-kicker,
html[data-theme="dark"] .pricing-pill,
body.theme-dark .pricing-pill,
html[data-theme="dark"] .pricing-card__label,
body.theme-dark .pricing-card__label {
  color: #fff;
  background: rgba(168,85,247,.24);
}

html[data-theme="dark"] .pricing-info li,
body.theme-dark .pricing-info li,
html[data-theme="dark"] .pricing-card__features li,
body.theme-dark .pricing-card__features li,
html[data-theme="dark"] .pricing-estimator__rules li,
body.theme-dark .pricing-estimator__rules li,
html[data-theme="dark"] .pricing-hero__chips span,
body.theme-dark .pricing-hero__chips span {
  color: #e5e7eb;
}

html[data-theme="dark"] .pricing-page .btn--secondary,
body.theme-dark .pricing-page .btn--secondary,
html[data-theme="dark"] .pricing-page .btn--ghost,
body.theme-dark .pricing-page .btn--ghost {
  color: #f8fafc;
  background: #1f2937;
  border-color: rgba(255,255,255,.12);
}

html[data-theme="dark"] .pricing-estimator__field input[type="range"],
body.theme-dark .pricing-estimator__field input[type="range"] {
  accent-color: #a855f7;
}
/* Strong dark-mode readability fix */
html[data-theme="dark"] .pricing-page,
body.theme-dark .pricing-page,
body.theme-dark.pricing-page {
  color: #f8fafc !important;
}

html[data-theme="dark"] .pricing-page p,
html[data-theme="dark"] .pricing-page span,
html[data-theme="dark"] .pricing-page small,
html[data-theme="dark"] .pricing-page li,
html[data-theme="dark"] .pricing-page label,
html[data-theme="dark"] .pricing-page strong,
body.theme-dark .pricing-page p,
body.theme-dark .pricing-page span,
body.theme-dark .pricing-page small,
body.theme-dark .pricing-page li,
body.theme-dark .pricing-page label,
body.theme-dark .pricing-page strong,
body.theme-dark.pricing-page p,
body.theme-dark.pricing-page span,
body.theme-dark.pricing-page small,
body.theme-dark.pricing-page li,
body.theme-dark.pricing-page label,
body.theme-dark.pricing-page strong {
  color: #f1f5f9 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

html[data-theme="dark"] .pricing-page h1,
html[data-theme="dark"] .pricing-page h2,
html[data-theme="dark"] .pricing-page h3,
body.theme-dark .pricing-page h1,
body.theme-dark .pricing-page h2,
body.theme-dark .pricing-page h3,
body.theme-dark.pricing-page h1,
body.theme-dark.pricing-page h2,
body.theme-dark.pricing-page h3 {
  color: #ffffff !important;
  opacity: 1 !important;
}

html[data-theme="dark"] .pricing-card__interval,
html[data-theme="dark"] .pricing-card__desc,
html[data-theme="dark"] .pricing-section-head p,
html[data-theme="dark"] .pricing-faq details p,
html[data-theme="dark"] .pricing-benefit p,
html[data-theme="dark"] .pricing-info p,
body.theme-dark .pricing-card__interval,
body.theme-dark .pricing-card__desc,
body.theme-dark .pricing-section-head p,
body.theme-dark .pricing-faq details p,
body.theme-dark .pricing-benefit p,
body.theme-dark .pricing-info p,
body.theme-dark.pricing-page .pricing-card__interval,
body.theme-dark.pricing-page .pricing-card__desc,
body.theme-dark.pricing-page .pricing-section-head p,
body.theme-dark.pricing-page .pricing-faq details p,
body.theme-dark.pricing-page .pricing-benefit p,
body.theme-dark.pricing-page .pricing-info p {
  color: #e5e7eb !important;
  opacity: 1 !important;
}

html[data-theme="dark"] .pricing-estimator__result span,
html[data-theme="dark"] .pricing-estimator__result small,
body.theme-dark .pricing-estimator__result span,
body.theme-dark .pricing-estimator__result small,
body.theme-dark.pricing-page .pricing-estimator__result span,
body.theme-dark.pricing-page .pricing-estimator__result small {
  color: #e5e7eb !important;
}

html[data-theme="dark"] .pricing-page .btn--secondary,
html[data-theme="dark"] .pricing-page .btn--ghost,
body.theme-dark .pricing-page .btn--secondary,
body.theme-dark .pricing-page .btn--ghost,
body.theme-dark.pricing-page .btn--secondary,
body.theme-dark.pricing-page .btn--ghost {
  color: #ffffff !important;
}
/* Final dark-mode contrast repair */
html[data-theme="dark"] .pricing-page,
body.theme-dark .pricing-page,
body.theme-dark.pricing-page {
  --pc-ink: #ffffff;
  --pc-muted: #f1f5f9;
  --pc-soft: #e5e7eb;
}

html[data-theme="dark"] .pricing-page .pricing-section-head h2,
html[data-theme="dark"] .pricing-page .pricing-section-head p,
html[data-theme="dark"] .pricing-page .pricing-faq summary,
body.theme-dark .pricing-page .pricing-section-head h2,
body.theme-dark .pricing-page .pricing-section-head p,
body.theme-dark .pricing-page .pricing-faq summary,
body.theme-dark.pricing-page .pricing-section-head h2,
body.theme-dark.pricing-page .pricing-section-head p,
body.theme-dark.pricing-page .pricing-faq summary {
  color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="dark"] .pricing-page .pricing-faq summary *,
body.theme-dark .pricing-page .pricing-faq summary *,
body.theme-dark.pricing-page .pricing-faq summary * {
  color: #ffffff !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="dark"] .pricing-page .pricing-pill,
body.theme-dark .pricing-page .pricing-pill,
body.theme-dark.pricing-page .pricing-pill {
  color: #ffffff !important;
  background: rgba(168, 85, 247, .35) !important;
}
/* Remove unwanted text highlight blocks */
.pricing-section-head h1,
.pricing-section-head h2,
.pricing-section-head h3,
.pricing-section-head p,
.pricing-section-head span,
.pricing-plans .pricing-section-head h2,
.pricing-plans .pricing-section-head p {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

.pricing-plans .pricing-section-head h2 {
  color: #12091f !important;
  -webkit-text-fill-color: #12091f !important;
}

.pricing-plans .pricing-section-head p {
  color: #334155 !important;
  -webkit-text-fill-color: #334155 !important;
}
/* Force AVAILABLE PLANS section to stay readable on light background */
html[data-theme="dark"] .pricing-page .pricing-plans .pricing-section-head h2,
body.theme-dark .pricing-page .pricing-plans .pricing-section-head h2,
body.theme-dark.pricing-page .pricing-plans .pricing-section-head h2 {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  background: transparent !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

html[data-theme="dark"] .pricing-page .pricing-plans .pricing-section-head p,
body.theme-dark .pricing-page .pricing-plans .pricing-section-head p,
body.theme-dark.pricing-page .pricing-plans .pricing-section-head p {
  color: #334155 !important;
  -webkit-text-fill-color: #334155 !important;
  background: transparent !important;
  text-shadow: none !important;
  opacity: 1 !important;
}