/* MentoraX repositioning design system: Bootstrap-compatible B2B components. */
:root {
  --rx-ink: #111a28;
  --rx-ink-2: #19212a;
  --rx-ink-soft: #26323f;
  --rx-paper: #f7f5fc;
  --rx-paper-2: #f1eafe;
  --rx-line: #eae6f2;
  --rx-muted: #5a6579;
  --rx-accent: #7c3aed;
  --rx-accent-dark: #6d28d9;
  /* Removed yellow hazard accent to avoid unexpected yellow highlights */
  --rx-hazard: transparent;
  --rx-blue: #6d28d9;
  --rx-green: #28c840;
  --rx-radius: 8px;
  --rx-shadow: 0 18px 46px rgba(16, 20, 25, 0.14);
  --rx-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mx-navy: #17092b;
  --mx-navy-2: #241338;
  --mx-navy-3: #2e1a4d;
  --mx-violet: #7c3aed;
  --mx-purple: #a855f7;
  --mx-lavender: #c4a2ff;
  --mx-soft: #f1eafe;
  --mx-grad: linear-gradient(90deg, #7c3aed, #a855f7);
  --mx-shadow: 0 18px 50px rgba(23, 9, 43, 0.14);
}

.rx-page {
  background: var(--rx-paper);
  color: var(--rx-ink);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.rx-page a {
  color: inherit;
}

.rx-section {
  padding: 80px 0;
}

.rx-section--compact {
  padding: 56px 0;
}

.rx-section--dark {
  background: var(--rx-ink);
  color: #fff;
}

.rx-section--paper {
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), transparent 34%),
    var(--rx-paper);
}

.rx-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      110deg,
      rgba(16, 20, 25, 0.98) 0%,
      rgba(25, 33, 42, 0.94) 62%,
      rgba(25, 33, 42, 0.8) 100%
    ),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045) 0 1px,
      transparent 1px 12px
    );
  color: #fff;
  padding: 132px 0 88px;
}

.rx-hero--mockup {
  isolation: isolate;
  background: var(--mx-navy);
  padding: 104px 0 82px;
}

.rx-hero--mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      600px 340px at 12% 8%,
      rgba(168, 85, 247, 0.28),
      transparent 60%
    ),
    radial-gradient(
      560px 320px at 88% 12%,
      rgba(124, 58, 237, 0.42),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 60% 120%,
      rgba(109, 40, 217, 0.5),
      transparent 60%
    );
  animation: rxAuroraDrift 14s ease-in-out infinite alternate;
}

@keyframes rxAuroraDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(0, -14px, 0) scale(1.05);
  }
}

.rx-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--rx-hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(0.9);
}

.rx-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--rx-hazard) 0 18px,
    transparent 18px 30px
  );
  opacity: 0.95;
}

.rx-hero--mockup::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 80%);
}

.rx-hero > .container {
  position: relative;
  z-index: 2;
}

.rx-hero--mockup .rx-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.rx-hero--mockup .rx-eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  border: 1px solid rgba(180, 130, 255, 0.35);
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.08);
  padding: 7px 13px;
  color: #d9c7ff;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.rx-hero--mockup .rx-eyebrow::before {
  display: none;
}

.rx-hero--mockup .rx-title {
  max-width: 760px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(2.3rem, 3.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.rx-hero--mockup .rx-lede {
  max-width: 60ch;
  margin-top: 18px;
  color: #cfc3e6;
  font-size: 1.05rem;
  line-height: 1.7;
}

.rx-hero--mockup .rx-btn {
  min-height: 50px;
  border-radius: 11px;
  padding: 14px 24px;
}

.rx-hero--mockup .rx-btn-primary {
  border-color: transparent;
  background: var(--mx-grad);
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(168, 85, 247, 0.3);
}

.rx-hero--mockup .rx-btn-primary:hover,
.rx-hero--mockup .rx-btn-primary:focus-visible {
  border-color: transparent;
  background: var(--mx-grad);
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(168, 85, 247, 0.45);
}

.rx-hero--mockup .rx-btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

.rx-hero--mockup .rx-metric-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
}

.rx-hero--mockup .rx-metric {
  min-height: 0;
  flex: 1 1 150px;
  padding: 0;
  background: transparent;
}

.rx-hero--mockup .rx-metric strong {
  font-size: 1.38rem;
}

.rx-hero--mockup .rx-metric span {
  color: #a99ec6;
  font-size: 0.76rem;
}

.rx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.74fr);
  gap: 48px;
  align-items: center;
}

.rx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #d9c7ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.rx-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--rx-accent);
  box-shadow: 14px 0 0 var(--rx-hazard);
}

.rx-title {
  margin: 0;
  font-family: "Arial Narrow", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 3.25rem;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.rx-title--sm {
  font-size: 2.35rem;
}

.rx-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.rx-section-title {
  margin: 0;
  color: var(--rx-ink);
  font-size: 2.2rem;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}

.rx-section-title.text-white {
  color: #fff !important;
}

.rx-section-kicker {
  margin-bottom: 12px;
  color: var(--rx-accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.rx-muted {
  color: var(--rx-muted);
}

.rx-hero .rx-muted,
.rx-section--dark .rx-muted {
  color: rgba(255, 255, 255, 0.68);
}

.rx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.rx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 220ms var(--rx-ease),
    border-color 220ms var(--rx-ease),
    background-color 220ms var(--rx-ease),
    box-shadow 220ms var(--rx-ease);
}

.rx-btn:hover,
.rx-btn:focus-visible {
  transform: translateY(-2px);
  text-decoration: none;
}

.rx-btn-primary {
  background: var(--mx-grad);
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.24);
}

.rx-btn-primary:hover,
.rx-btn-primary:focus-visible {
  background: linear-gradient(90deg, #6d28d9, #9333ea);
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.32);
}

.rx-btn-primary--green {
  background: #13c8a4;
  border-color: #13c8a4;
  color: #061210 !important;
  box-shadow: 0 12px 28px rgba(19, 200, 164, 0.24);
}

.rx-btn-primary--green:hover,
.rx-btn-primary--green:focus-visible {
  background: #22e0bb;
  border-color: #22e0bb;
  color: #061210 !important;
  box-shadow: 0 16px 34px rgba(19, 200, 164, 0.32);
}

.rx-btn-primary--purple {
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.24);
}

.rx-btn-primary--purple:hover,
.rx-btn-primary--purple:focus-visible {
  background: linear-gradient(90deg, #6d28d9, #9333ea);
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.32);
}

.rx-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff !important;
}

.rx-btn-ghost:hover,
.rx-btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
}

.rx-btn-dark {
  background: var(--rx-ink);
  border-color: var(--rx-ink);
  color: #fff !important;
}

.rx-btn-outline {
  background: transparent;
  border-color: var(--rx-line);
  color: var(--rx-ink) !important;
}

.rx-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--rx-radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--rx-shadow);
  backdrop-filter: blur(10px);
}

.rx-ops-card {
  padding: 22px;
}

.rx-ops-card__screen {
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    repeating-linear-gradient(
      0deg,
      rgba(124, 58, 237, 0.1) 0 1px,
      transparent 1px 26px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 180, 0, 0.08) 0 1px,
      transparent 1px 36px
    );
  padding: 18px;
}

.rx-cta-fab {
  position: fixed !important;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  /* Ensure FAB floats above all site chrome */
  z-index: 2147483647 !important;
  border-radius: 999px;
  padding: 12px 18px;
  min-width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.24);
}

.rx-cta-fab.rx-btn-primary {
  background: var(--mx-grad);
  color: #fff !important;
  border-color: transparent;
}

.rx-card--dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.rx-delivery-section {
  position: relative;
  background:
    linear-gradient(
      120deg,
      rgba(9, 14, 25, 0.84) 0%,
      rgba(9, 14, 25, 0.68) 100%
    ),
    url("/static/assets/images/bg/hero_out.3f1a45408c1c.png") center/cover no-repeat;
}

.rx-delivery-section > .container {
  position: relative;
  z-index: 1;
}

.rx-delivery-section > .container {
  position: relative;
  z-index: 1;
}

.rx-delivery-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #18213b 0%, #2a355f 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.rx-delivery-card h3 {
  margin-bottom: 0.6rem;
}

.rx-delivery-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* Hidden by default; becomes visible after hero is passed */
.rx-cta-fab {
  transition:
    opacity 220ms var(--rx-ease),
    transform 220ms var(--rx-ease);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.rx-cta-fab.rx-cta-fab--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 1200px) {
  .rx-cta-fab {
    right: 2rem;
    bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .rx-cta-fab {
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: 48px;
    height: 48px;
    padding: 10px 12px;
  }
}

.rx-status-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.rx-status-row:last-child {
  border-bottom: 0;
}

.rx-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.16);
  color: #d9c7ff;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

.rx-metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--rx-radius);
  background: rgba(255, 255, 255, 0.14);
}

.rx-metric {
  min-height: 98px;
  padding: 18px;
  background: rgba(16, 20, 25, 0.78);
}

.rx-metric strong {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.rx-metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.45;
}

.rx-hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  justify-items: stretch;
  align-items: start;
}

.rx-hero--mockup .rx-hero-cards {
  position: relative;
  display: block;
  min-height: 360px;
}

.rx-float-card {
  position: relative;
  min-height: 116px;
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 52px rgba(16, 20, 25, 0.18);
  backdrop-filter: blur(18px);
  color: #fff;
}

.rx-hero--mockup .rx-float-card {
  position: absolute;
  min-height: 0;
  border-radius: 14px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  animation: rxFloaty 6s ease-in-out infinite;
  will-change: transform;
}

.rx-float-card--primary {
  border-color: rgba(124, 58, 237, 0.28);
  background: rgba(124, 58, 237, 0.16);
}

.rx-hero--mockup .rx-float-card--primary {
  border-color: transparent;
  background: var(--mx-grad);
}

.rx-float-card--1 {
  transform: translateY(10px);
}

.rx-hero--mockup .rx-float-card--1 {
  top: 6px;
  inset-inline-start: 0;
  width: min(230px, 64%);
  transform: none;
  animation-delay: 0s;
}

.rx-float-card--2 {
  grid-column: 1 / -1;
}

.rx-hero--mockup .rx-float-card--2 {
  top: 100px;
  inset-inline-start: 150px;
  width: min(240px, 66%);
  animation-delay: 0.6s;
}

.rx-float-card--3 {
  transform: translateY(-8px);
}

.rx-hero--mockup .rx-float-card--3 {
  top: 190px;
  inset-inline-end: 0;
  width: min(240px, 66%);
  transform: none;
  animation-delay: 1.2s;
}

.rx-float-card--4 {
  transform: translateY(12px);
}

.rx-hero--mockup .rx-float-card--4 {
  bottom: 6px;
  inset-inline-start: 30px;
  width: min(230px, 64%);
  transform: none;
  animation-delay: 2.1s;
}

@keyframes rxFloaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.rx-float-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
}

.rx-hero--mockup .rx-float-card strong {
  font-size: 0.82rem;
}

.rx-float-sub {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.rx-hero--mockup .rx-float-sub {
  margin-top: 2px;
  color: #b9a6e0;
  font-size: 0.72rem;
  line-height: 1.45;
}

.rx-hero--mockup .rx-float-card--primary .rx-float-sub {
  color: #ede9fe;
}

.rx-dot,
.rx-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  border-radius: 999px;
}

.rx-dot {
  width: 12px;
  height: 12px;
  background: var(--rx-accent);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.rx-hero--mockup .rx-dot {
  display: inline-block;
  min-width: 8px;
  min-height: 8px;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: var(--mx-lavender);
  box-shadow: none;
  vertical-align: middle;
}

.rx-hero--mockup .rx-float-icon {
  min-width: auto;
  min-height: auto;
  margin-right: 6px;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
}

.rx-float-icon {
  color: #061210;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .rx-hero-cards {
    grid-template-columns: 1fr;
  }

  .rx-hero--mockup .rx-hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .rx-hero--mockup .rx-float-card,
  .rx-hero--mockup .rx-float-card--1,
  .rx-hero--mockup .rx-float-card--2,
  .rx-hero--mockup .rx-float-card--3,
  .rx-hero--mockup .rx-float-card--4 {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .rx-hero--mockup .rx-float-card--2 {
    grid-column: 1 / -1;
  }

  .rx-float-card--1,
  .rx-float-card--3,
  .rx-float-card--4 {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .rx-hero {
    padding: 96px 0 72px;
  }

  .rx-hero--mockup .rx-hero-grid {
    display: block;
    gap: 24px;
  }

  .rx-hero--mockup .rx-hero-cards {
    display: none;
  }

  .rx-hero--mockup .rx-title {
    font-size: 2rem;
    line-height: 1.08;
  }

  .rx-hero--mockup .rx-lede {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .rx-hero--mockup .rx-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .rx-hero--mockup .rx-btn {
    width: 100%;
    justify-content: center;
  }

  .rx-hero--mockup .rx-metric-strip {
    gap: 12px;
    margin-top: 24px;
  }

  .rx-hero--mockup .rx-metric {
    flex: 1 1 100%;
  }
}

.rx-trust-strip {
  margin-top: -1px;
  border-top: 1px solid var(--rx-line);
  border-bottom: 1px solid var(--rx-line);
  background: #fff;
}

.rx-trust-strip__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
}

.rx-trust-label {
  color: var(--rx-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.rx-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.rx-trust-item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--rx-line);
  border-radius: 6px;
  background: var(--rx-paper);
  padding: 8px 12px;
  color: var(--rx-ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.rx-trust-item img {
  max-height: 24px;
  max-width: 130px;
  object-fit: contain;
}

.rx-grid-2,
.rx-grid-3,
.rx-grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.rx-card {
  height: 100%;
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(16, 20, 25, 0.06);
  transition:
    transform 220ms var(--rx-ease),
    box-shadow 220ms var(--rx-ease),
    border-color 220ms var(--rx-ease);
}

.rx-card:hover,
.rx-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 18px 34px rgba(16, 20, 25, 0.1);
}

.rx-card--dark {
  background: var(--rx-ink-2);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.rx-card--dark .rx-muted {
  color: rgba(255, 255, 255, 0.68);
}

.rx-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  border-radius: 6px;
  object-fit: cover;
}

.rx-card h2,
.rx-card h3,
.rx-card h4 {
  margin-bottom: 12px;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0;
}

.rx-card p {
  color: var(--rx-muted);
  line-height: 1.65;
}

.rx-card--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.rx-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 6px;
  background: rgba(124, 58, 237, 0.13);
  color: var(--rx-accent-dark);
  font-weight: 900;
}

.rx-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rx-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--rx-line);
  border-radius: 999px;
  background: #fff;
  padding: 5px 10px;
  color: var(--rx-ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.rx-tag--dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.rx-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rx-check-list li {
  position: relative;
  padding-inline-start: 26px;
  color: var(--rx-muted);
}

.rx-check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.48em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--rx-accent);
  box-shadow: 8px 0 0 var(--rx-hazard);
}

.rx-section--dark .rx-check-list li,
.rx-card--dark .rx-check-list li {
  color: rgba(255, 255, 255, 0.7);
}

.rx-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: rx-step;
}

.rx-step {
  position: relative;
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
  background: #fff;
  padding: 22px;
  counter-increment: rx-step;
}

.rx-step::before {
  content: counter(rx-step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  color: var(--rx-accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.rx-step h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.rx-step p {
  margin: 0;
  color: var(--rx-muted);
  line-height: 1.6;
}

.rx-comparison {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: var(--rx-radius);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.rx-comparison table {
  width: 100%;
  min-width: 640px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
}

.rx-comparison thead tr {
  background: linear-gradient(90deg, #1c0735 0%, #7b3cff 100%);
}

.rx-comparison th {
  color: #fff;
  font-weight: 800;
  border: none;
  padding: 18px 20px;
}

.rx-comparison tbody tr:nth-child(odd) {
  background: #faf5ff;
}

.rx-comparison tbody tr:last-child td {
  border-bottom: none;
}

.rx-comparison td,
.rx-comparison th {
  padding: 14px 16px;
  border-color: rgba(124, 58, 237, 0.12) !important;
  white-space: normal;
}

.rx-comparison td:first-child {
  font-weight: 700;
  color: #2b0f52;
}

.rx-comparison th:last-child,
.rx-comparison td:last-child {
  background: linear-gradient(180deg, #7c3aed 0%, #a855f7 100%);
  color: #fff;
}

.rx-comparison th:last-child {
  font-weight: 800;
}

.rx-comparison td:last-child {
  font-weight: 900;
}

.rx-highlight-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--rx-radius);
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(196, 162, 255, 0.18),
      transparent 32%
    ),
    linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(109, 40, 217, 0.22)),
    var(--mx-navy);
  color: #fff;
  padding: 42px;
}

.rx-highlight-band--green {
  background:
    linear-gradient(135deg, rgba(19, 200, 164, 0.16), transparent 42%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 180, 0, 0.16) 0 1px,
      transparent 1px 14px
    ),
    #101419;
  border: 1px solid rgba(19, 200, 164, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.rx-highlight-band--purple {
  background:
    linear-gradient(135deg, rgba(147, 51, 234, 0.18), transparent 42%),
    repeating-linear-gradient(
      135deg,
      rgba(192, 132, 252, 0.16) 0 1px,
      transparent 1px 14px
    ),
    #101419;
  border: 1px solid rgba(168, 85, 247, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.rx-highlight-band--purple .rx-section-kicker {
  color: #fff !important;
}

.rx-highlight-band--purple .rx-section-title {
  color: #fff !important;
}

.rx-highlight-band--purple .rx-muted {
  color: rgba(255, 255, 255, 0.72) !important;
}

.rx-highlight-band--single-action .rx-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.rx-highlight-band--single-action .rx-btn-primary {
  background: linear-gradient(90deg, #6d28d9, #9333ea) !important;
  border-color: #9333ea !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(147, 51, 234, 0.28);
}

.rx-highlight-band--single-action .rx-btn-primary:hover,
.rx-highlight-band--single-action .rx-btn-primary:focus-visible {
  background: linear-gradient(90deg, #7c3aed, #a855f7) !important;
  border-color: #a855f7 !important;
  color: #fff !important;
}

.rx-highlight-band--green .rx-section-kicker {
  color: #13c8a4 !important;
}

.rx-highlight-band--green .rx-section-title {
  color: #fff !important;
}

.rx-highlight-band--green .rx-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.rx-highlight-band--green .rx-btn-primary,
.rx-highlight-band--green .rx-btn-primary--green {
  background: #13c8a4 !important;
  border-color: #13c8a4 !important;
  color: #061210 !important;
  box-shadow: 0 12px 28px rgba(19, 200, 164, 0.24);
}

.rx-highlight-band--green .rx-btn-primary:hover,
.rx-highlight-band--green .rx-btn-primary:focus-visible,
.rx-highlight-band--green .rx-btn-primary--green:hover,
.rx-highlight-band--green .rx-btn-primary--green:focus-visible {
  background: #22e0bb !important;
  border-color: #22e0bb !important;
  color: #061210 !important;
}

.rx-highlight-band .rx-btn-primary {
  background: var(--mx-grad) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.24);
}

.rx-highlight-band .rx-btn-primary--purple {
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.24);
}

.rx-highlight-band .rx-btn-primary:hover,
.rx-highlight-band .rx-btn-primary:focus-visible,
.rx-highlight-band .rx-btn-primary--purple:hover,
.rx-highlight-band .rx-btn-primary--purple:focus-visible {
  background: linear-gradient(90deg, #6d28d9, #9333ea) !important;
  color: #fff !important;
}

.rx-quote {
  border-inline-start: 5px solid var(--rx-accent);
  padding: 8px 0 8px 22px;
  color: var(--rx-ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.rx-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rx-faq {
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
  background: #fff;
  padding: 20px;
}

.rx-faq h3 {
  font-size: 1rem;
  font-weight: 800;
}

.rx-faq p {
  margin: 0;
  color: var(--rx-muted);
}

.rx-contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 28px;
  align-items: start;
}

.rx-form-card {
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
  background: #fff;
  padding: 28px;
  box-shadow: var(--rx-shadow);
}

.rx-form-card .form-control,
.rx-form-card .form-select {
  min-height: 46px;
  border-color: var(--rx-line);
  border-radius: 6px;
}

.rx-form-card .form-control:focus,
.rx-form-card .form-select:focus {
  border-color: var(--rx-accent);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.18);
}

.rx-info-list {
  display: grid;
  gap: 12px;
}

.rx-info-item {
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
  background: #fff;
  padding: 16px;
}

.rx-program-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.rx-chip-cloud {
  overflow: hidden;
  max-width: 100%;
}

.rx-chip-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: rx-chip-scroll 20s linear infinite;
  will-change: transform;
}

.rx-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rx-line);
  border-radius: 999px;
  background: #fff;
  padding: 9px 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(16, 20, 25, 0.04);
}

@keyframes rx-chip-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.rx-case-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
  background: #fff;
  padding: 22px;
}

.rx-case-card__badge {
  align-self: start;
  border-radius: 6px;
  background: var(--rx-ink);
  color: #fff;
  padding: 12px;
  font-weight: 800;
}

.rx-empty-proof {
  border: 1px dashed var(--rx-line);
  border-radius: var(--rx-radius);
  background: #fff;
  padding: 28px;
}

.mx-service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.mx-service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e8def7;
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(247, 245, 252, 0.98)
    ),
    #fff;
  box-shadow: 0 18px 48px rgba(23, 9, 43, 0.1);
  transition:
    transform 220ms var(--rx-ease),
    box-shadow 220ms var(--rx-ease),
    border-color 220ms var(--rx-ease);
}

.mx-service-card::before {
  display: none;
}

.mx-service-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 68%);
  pointer-events: none;
}

.mx-service-card:hover,
.mx-service-card:focus-within {
  transform: translateY(-6px);
  border-color: #d6c3f7;
  box-shadow: 0 24px 60px rgba(23, 9, 43, 0.16);
}

.mx-service-photo {
  position: relative;
  z-index: 1;
  margin: 22px 22px 0;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  background: var(--mx-navy-2);
}

.mx-service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 320ms var(--rx-ease);
}

.mx-service-card:hover .mx-service-photo img,
.mx-service-card:focus-within .mx-service-photo img {
  transform: scale(1.04);
}

.mx-service-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.mx-service-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.mx-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--mx-grad);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(168, 85, 247, 0.26);
}

.mx-service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #e5d7fb;
  border-radius: 999px;
  background: var(--mx-soft);
  padding: 6px 12px;
  color: var(--mx-violet);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mx-service-card h3 {
  margin: 0 0 12px;
  color: var(--mx-navy);
  font-size: 1.22rem;
  line-height: 1.25;
  font-weight: 900;
}

.mx-service-card p {
  margin: 0;
  color: #4f5b70;
  font-size: 0.92rem;
  line-height: 1.65;
}

.mx-service-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.mx-service-list li {
  position: relative;
  padding-inline-start: 25px;
  color: #4f5b70;
  font-size: 0.88rem;
  line-height: 1.35;
}

.mx-service-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mx-grad);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
}

.mx-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.mx-service-link,
.mx-service-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 220ms var(--rx-ease),
    box-shadow 220ms var(--rx-ease),
    border-color 220ms var(--rx-ease),
    background-color 220ms var(--rx-ease);
}

.mx-service-link {
  background: var(--mx-grad);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(168, 85, 247, 0.26);
}

.mx-service-quote {
  border: 1px solid #e1d4f5;
  background: #fff;
  color: var(--mx-navy) !important;
}

.mx-service-link:hover,
.mx-service-link:focus-visible,
.mx-service-quote:hover,
.mx-service-quote:focus-visible {
  transform: translateY(-2px);
  text-decoration: none;
}

.mx-service-quote:hover,
.mx-service-quote:focus-visible {
  border-color: #c9b3ef;
  background: #fbf8ff;
}

.mx-engage-section {
  background: #fff;
}

.mx-engage-header {
  max-width: 720px;
  margin-bottom: 28px;
}

.mx-engage-header .rx-section-kicker {
  color: var(--mx-violet);
  letter-spacing: 3px;
}

.mx-engage-header .rx-section-title {
  color: var(--mx-navy);
}

.mx-process-circle {
  position: relative;
  padding: 60px 0 40px;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(124, 58, 237, 0.12),
      transparent 35%
    ),
    rgba(255, 255, 255, 0.96);
  border-radius: 40px;
  overflow: hidden;
}

.mx-process-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(124, 58, 237, 0.08),
    transparent 42%
  );
}

.mx-process-center {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 52px;
  text-align: center;
}

.mx-process-center .rx-section-kicker {
  color: var(--mx-violet);
}

.mx-process-center .rx-lede {
  max-width: 58ch;
  margin: 18px auto 0;
  color: #5a6579;
}

.mx-process-steps {
  position: relative;
  width: min(920px, 100%);
  height: 520px;
  margin: 0 auto;
}

.mx-process-steps::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.04);
}

.mx-process-step {
  position: absolute;
  width: min(260px, 45%);
  padding: 28px 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(23, 9, 43, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.08);
  z-index: 1;
}

.mx-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--mx-grad);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.16);
}

.mx-process-step h3 {
  margin: 0 0 10px;
  color: var(--mx-navy);
  font-size: 1rem;
}

.mx-process-step p {
  margin: 0;
  color: #5a6579;
  font-size: 0.95rem;
  line-height: 1.65;
}

.mx-process-step--1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -10%);
}

.mx-process-step--2 {
  top: 50px;
  right: 0;
  transform: translate(10%, 0);
}

.mx-process-step--3 {
  bottom: 50px;
  right: 36%;
  transform: translate(10%, 0);
}

.mx-process-step--4 {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 10%);
}

@media (max-width: 1024px) {
  .mx-process-steps {
    height: auto;
  }

  .mx-process-step {
    position: static;
    width: 100%;
    transform: none;
  }

  .mx-process-step--1,
  .mx-process-step--2,
  .mx-process-step--3,
  .mx-process-step--4 {
    transform: none;
  }

  .mx-process-circle {
    padding: 48px 0 32px;
  }
}

@media (max-width: 680px) {
  .mx-process-center {
    padding: 0 18px;
  }

  .mx-process-step {
    padding: 22px 18px;
  }
}

.mx-process-step h3 {
  margin: 0 0 8px;
  color: var(--mx-navy);
  font-size: 1rem;
  font-weight: 900;
}

.mx-process-step p {
  margin: 0;
  color: #4f5b70;
  font-size: 0.92rem;
  line-height: 1.6;
}

.mx-service-cta {
  margin-top: 96px;
  border-radius: 20px;
  background: linear-gradient(110deg, var(--mx-navy), #5b21b6 58%, #6d28d9);
  padding: 54px 28px;
  text-align: center;
  color: #fff;
}

.mx-service-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 1.85rem;
  line-height: 1.2;
  font-weight: 900;
}

.mx-service-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  border-radius: 11px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  padding: 12px 24px;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(168, 85, 247, 0.3);
  transition:
    transform 220ms var(--rx-ease),
    box-shadow 220ms var(--rx-ease);
}

.mx-service-cta a:hover,
.mx-service-cta a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(168, 85, 247, 0.42);
  text-decoration: none;
}

html[dir="rtl"] .rx-actions,
html[dir="rtl"] .rx-tag-row,
html[dir="rtl"] .rx-chip-cloud,
html[dir="rtl"] .rx-trust-items,
html[dir="rtl"] .mx-service-actions,
html[dir="rtl"] .mx-service-meta {
  direction: rtl;
}

html[dir="rtl"] .rx-status-row {
  grid-template-columns: auto 1fr 90px;
}

html[dir="rtl"] .rx-quote {
  padding: 8px 22px 8px 0;
}

@media (max-width: 991.98px) {
  .rx-section {
    padding: 58px 0;
  }

  .rx-hero {
    padding: 112px 0 70px;
  }

  .rx-hero--mockup {
    padding: 96px 0 64px;
  }

  .rx-hero-grid,
  .rx-grid-2,
  .rx-grid-3,
  .rx-grid-4,
  .mx-service-cards,
  .mx-process-grid,
  .rx-step-list,
  .rx-contact-shell,
  .rx-program-grid,
  .rx-case-card {
    grid-template-columns: 1fr;
  }

  .rx-title {
    font-size: 2.38rem;
  }

  .rx-hero--mockup .rx-title {
    font-size: 2.4rem;
  }

  .rx-title--sm,
  .rx-section-title {
    font-size: 1.9rem;
  }

  .rx-trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .rx-trust-items {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .rx-page .container > .row,
  .rx-highlight-band > .row {
    --bs-gutter-x: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .rx-metric-strip,
  .rx-faq-grid {
    grid-template-columns: 1fr;
  }

  .rx-actions .rx-btn,
  .rx-form-card .rx-btn {
    width: 100%;
  }

  .rx-hero--mockup .rx-hero-cards {
    grid-template-columns: 1fr;
  }

  .rx-hero--mockup .rx-eyebrow {
    letter-spacing: 1px;
  }

  .rx-hero--mockup .rx-title {
    font-size: 2.08rem;
  }

  .rx-hero--mockup .rx-metric-strip {
    gap: 16px;
  }

  .mx-service-card__body {
    padding: 20px;
  }

  .mx-service-photo {
    margin: 20px 20px 0;
  }

  .mx-service-link,
  .mx-service-quote {
    width: 100%;
  }

  .mx-service-cta {
    margin-top: 62px;
    padding: 40px 22px;
  }

  .mx-service-cta h2 {
    font-size: 1.45rem;
  }

  .rx-highlight-band {
    padding: 28px;
  }

  .rx-comparison td,
  .rx-comparison th {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rx-btn,
  .rx-card,
  .rx-hero--mockup::before,
  .rx-hero--mockup .rx-float-card,
  .mx-service-card,
  .mx-service-photo img,
  .mx-service-link,
  .mx-service-quote,
  .mx-service-cta a {
    animation: none;
    transition: none;
  }

  .rx-btn:hover,
  .rx-btn:focus-visible,
  .rx-card:hover,
  .rx-card:focus-within,
  .mx-service-card:hover,
  .mx-service-card:focus-within,
  .mx-service-card:hover .mx-service-photo img,
  .mx-service-card:focus-within .mx-service-photo img,
  .mx-service-link:hover,
  .mx-service-link:focus-visible,
  .mx-service-quote:hover,
  .mx-service-quote:focus-visible,
  .mx-service-cta a:hover,
  .mx-service-cta a:focus-visible {
    transform: none;
  }
}
