/* ===========================
   RAPIDX PAGE
=========================== */

/* ── Sticky Sub-Nav ── */
.rx-subnav {
  position: sticky;
  top: 64px; /* sits just below the main header */
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.rx-subnav.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.rx-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.rx-subnav-inner::-webkit-scrollbar { display: none; }
.rx-subnav-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.1rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
}
.rx-subnav-link i { font-size: 0.85rem; transition: color 0.2s; }
.rx-subnav-link:hover { color: var(--dark); background: #f9fafb; }
.rx-subnav-link.active {
  color: var(--red);
  border-bottom-color: var(--red);
  background: #fff0f0;
}
.rx-subnav-link.active i { color: var(--red); }

@media (max-width: 380px) {
  .rx-subnav-link span { display: none; }
  .rx-subnav-link { padding: 1rem 1.1rem; font-size: 1rem; }
  .rx-subnav-link i { font-size: 1.1rem; }
}

/* ── Hero ── */
.rx-hero {
  position: relative;
  background-color: #080f1e;
  background-image:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(227,28,33,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 55% 70% at 90% 30%, rgba(1,112,185,0.16) 0%, transparent 60%);
  padding: 6rem 0 5rem;
  overflow: hidden;
  text-align: center;
}
.rx-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.rx-hero-inner { position: relative; z-index: 1; }
.rx-eyebrow {
  color: #f87171 !important;
  background: rgba(227,28,33,0.14);
  border: 1.5px solid rgba(227,28,33,0.28);
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.rx-hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.rx-accent { color: var(--red); }
.rx-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.58);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.rx-nav-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.rx-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  transition: all 0.25s;
}
.rx-pill:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.rx-pill-logo {
  height: 31px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Section Mastheads ── */
.rx-masthead {
  width: 100%;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.rx-masthead-red {
  background: #0d1520;
  background-image:
    radial-gradient(ellipse 55% 100% at 0% 50%, rgba(227,28,33,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(227,28,33,0.08) 0%, transparent 55%);
  border-bottom: 1px solid rgba(227,28,33,0.2);
}
.rx-masthead-blue {
  background: #0d1520;
  background-image:
    radial-gradient(ellipse 55% 100% at 0% 50%, rgba(1,112,185,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(1,112,185,0.08) 0%, transparent 55%);
  border-bottom: 1px solid rgba(1,112,185,0.2);
}
.rx-masthead-inner {
  display: block;
}
.rx-masthead-label-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.rx-masthead-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.rx-masthead-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}
.rx-masthead-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.rx-masthead-logo-wrap img {
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.25));
}

@media (max-width: 768px) {
  .rx-masthead-logo-wrap { display: none; }
  .rx-masthead-inner { grid-template-columns: 1fr; }
  .rx-masthead { padding: 2.5rem 0; }
}

/* ── Product Sections ── */
.rx-product { background: #fff; padding-top: 0; }
.rx-alt { background: #f9fafb; padding-top: 0; }

/* Offset sticky header (68px) + sticky subnav (~52px) + breathing room */
.rx-product { scroll-margin-top: 136px; }

/* Gap below masthead */
#flow .rx-masthead ~ .container { padding-top: 2rem; }
#dms .rx-masthead ~ .container,
#tract .rx-masthead ~ .container,
#test .rx-masthead ~ .container { padding-top: 3rem; }

/* Section intro — centered heading block */
.rx-section-intro {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}
.rx-section-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

/* Badge */
.rx-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.rx-badge-red { background: #fff0f0; color: var(--red); }
.rx-badge-blue { background: #eff6ff; color: var(--blue); }

.rx-lead {
  font-size: 1.08rem;
  color: #374151;
  line-height: 1.7;
}
.rx-body {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ── Video Row (RapidXflow) ── */
.rx-video-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.rx-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13);
}
.rx-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.rx-video-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.rx-video-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Check list */
.rx-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.rx-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #374151;
}
.rx-check-list li i { color: var(--red); font-size: 0.8rem; margin-top: 0.2rem; flex-shrink: 0; }
.rx-check-blue li i { color: var(--blue); }

/* ── Sub headings ── */
.rx-sub-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}
.rx-sub-heading-sm {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ── Capabilities grid ── */
.rx-cap-section { margin-top: 4rem; }
.rx-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.rx-cap-grid-3 { grid-template-columns: repeat(3, 1fr); }
.rx-cap-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.rx-alt .rx-cap-card { background: #fff; }
.rx-cap-card:hover { border-color: transparent; box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.rx-cap-icon {
  width: 44px; height: 44px;
  background: #fff0f0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.rx-cap-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.rx-cap-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Accelerators grid ── */
.rx-accel-section { margin-top: 4rem; }
.rx-accel-intro { color: var(--muted); font-size: 0.95rem; margin: 0.5rem 0 2rem; }
.rx-accel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.rx-accel-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.rx-accel-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(227,28,33,0.12);
  transform: translateY(-5px);
}
.rx-accel-icon {
  width: 100%;
  padding: 2rem 0;
  background: #fff0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 2.2rem;
  transition: background 0.25s, color 0.25s;
}
.rx-accel-card:hover .rx-accel-icon {
  background: var(--red);
  color: #fff;
}
.rx-accel-body {
  padding: 1.25rem 1.35rem 1.5rem;
}
.rx-accel-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.rx-accel-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── DMS Capabilities Dark Band ── */
.rx-dms-caps {
  margin: 4rem calc(50% - 50vw);
  width: 100vw;
  background: #1a2340;
  background-image:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(1,112,185,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(1,112,185,0.12) 0%, transparent 60%);
  padding: 4rem 0;
}
.rx-dms-caps h3 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 2.75rem;
  letter-spacing: -0.01em;
}
.rx-dms-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.rx-dms-cap-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1rem;
}
.rx-dms-cap-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.1rem;
  background: rgba(255,255,255,0.06);
  transition: border-color 0.2s, background 0.2s;
}
.rx-dms-cap-card:hover .rx-dms-cap-icon {
  border-color: var(--blue);
  background: rgba(1,112,185,0.2);
}
.rx-dms-cap-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.rx-dms-cap-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin: 0;
}

.rx-flow-caps {
  background-image:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(227,28,33,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(227,28,33,0.08) 0%, transparent 60%);
}
.rx-flow-caps .rx-dms-cap-card:hover .rx-dms-cap-icon {
  border-color: var(--red);
  background: rgba(227,28,33,0.18);
}

@media (max-width: 900px) {
  .rx-dms-cap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .rx-dms-cap-grid { grid-template-columns: 1fr; }
}

/* ── Two-column product layout ── */
.rx-product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.rx-reversed { direction: rtl; }
.rx-reversed > * { direction: ltr; }

.rx-product-text .rx-features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.rx-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.rx-feature-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: #fff0f0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 0.9rem;
}
.rx-feature strong { display: block; font-size: 0.92rem; color: var(--dark); margin-bottom: 0.15rem; }
.rx-feature p { font-size: 0.86rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* Visual column */
.rx-product-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rx-product-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}
.rx-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-top: 1.5rem;
  max-width: 360px;
  width: 100%;
}
.rx-stat-icon { font-size: 1.4rem; color: var(--red); flex-shrink: 0; }
.rx-stat-card strong { display: block; font-size: 0.9rem; color: var(--dark); }
.rx-stat-card span { font-size: 0.8rem; color: var(--muted); }

/* CTA */
.rx-cta { margin-top: 0.5rem; }

/* ── Stats banner (RapidXtract) ── */
.rx-stats-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #080f1e;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.rx-stat-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.rx-stat-big strong { font-size: 2.8rem; font-weight: 800; color: var(--red); line-height: 1; }
.rx-stat-big span { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 0.4rem; }
.rx-stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); flex-shrink: 0; margin: 0 1rem; }

/* Doc types box */
.rx-doc-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  width: 100%;
}
.rx-doc-box h5 {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.rx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rx-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: #374151;
}

/* ── Supercharge 4-column (RapidXtest) ── */
.rx-supercharge {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.rx-supercharge h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.rx-supercharge > p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.rx-assess-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.rx-assess-col {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, border-color 0.2s;
  cursor: default;
}
.rx-assess-col:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.11);
  border-color: transparent;
}
.rx-assess-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.rx-assess-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.rx-assess-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.rx-assess-col ul li {
  font-size: 0.88rem;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.rx-assess-col ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  min-width: 7px;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
  margin-top: 0.38em;
}

/* ── Assessment Types Photo Cards ── */
.rx-assess-types {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.rx-assess-types-sub {
  max-width: 700px;
  margin: 0.75rem auto 2.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.rx-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.rx-photo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease, border-color 0.2s;
  cursor: default;
}
.rx-photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.13);
  border-color: transparent;
}
.rx-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.rx-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.rx-photo-card:hover .rx-photo-wrap img {
  transform: scale(1.1);
}
.rx-photo-body {
  padding: 1.1rem 1.15rem 1.35rem;
}
.rx-photo-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.45rem;
  line-height: 1.35;
}
.rx-photo-body p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .rx-photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .rx-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .rx-photo-grid { grid-template-columns: 1fr; }
}

/* Sectors row */
.rx-sectors-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}
.rx-sector-item { padding: 2rem 1.5rem; background: #fff; border-radius: 12px; border: 1px solid var(--border); }
.rx-sector-item i { font-size: 2rem; color: var(--blue); margin-bottom: 0.75rem; display: block; }
.rx-sector-item h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; text-transform: none; letter-spacing: 0; }
.rx-sector-item p { font-size: 0.86rem; color: var(--muted); margin: 0; }

/* FAQ Accordion */
.rx-faq-section { margin-top: 3.5rem; }
.rx-accordion {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.rx-acc-item { border-bottom: 1px solid var(--border); }
.rx-acc-item:last-child { border-bottom: none; }

.rx-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.18s, color 0.18s;
}
.rx-acc-trigger:hover { background: #f9fafb; color: var(--blue); }
.rx-acc-trigger[aria-expanded="true"] { background: #eff6ff; color: var(--blue); }

.rx-acc-icon {
  font-size: 0.75rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), color 0.18s;
}
.rx-acc-trigger[aria-expanded="true"] .rx-acc-icon {
  transform: rotate(180deg);
  color: var(--blue);
}

.rx-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1);
}
.rx-acc-body p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Bottom CTA + Demo Form ── */
.rx-bottom-cta {
  background: #080f1e;
  background-image:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(227,28,33,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(1,112,185,0.14) 0%, transparent 60%);
  padding: 5rem 0 6rem;
  text-align: center;
}
.rx-bottom-cta h2 { color: #fff; margin-bottom: 1rem; }
.rx-bottom-cta > .container > p {
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Form card */
.rx-demo-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  backdrop-filter: blur(6px);
}
.rx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.rx-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rx-form-group label {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rx-required { color: var(--red); }
.rx-form-group input,
.rx-form-group select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.rx-form-group input::placeholder { color: rgba(255,255,255,0.3); }
.rx-form-group input:focus,
.rx-form-group select:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.10);
}
.rx-form-group select option { background: #1a2340; color: #fff; }

/* Checkbox group */
.rx-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.rx-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.5rem 0.85rem 0.5rem 0.65rem;
  transition: border-color 0.2s, background 0.2s;
}
.rx-checkbox-label:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.10); }
.rx-checkbox-label input[type="checkbox"] { display: none; }
.rx-checkbox-box {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 5px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.rx-checkbox-label input:checked ~ .rx-checkbox-box {
  background: var(--red);
  border-color: var(--red);
}
.rx-checkbox-label input:checked ~ .rx-checkbox-box::after {
  content: '';
  display: block;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(42deg) translateY(-1px);
}
.rx-checkbox-label input:checked ~ .rx-cb-logo { opacity: 1; }
.rx-cb-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.rx-checkbox-label:has(input:checked) { border-color: var(--red); background: rgba(227,28,33,0.12); }

/* Submit row */
.rx-form-submit { text-align: center; margin-top: 1.75rem; }
.rx-submit-btn { font-size: 1rem; padding: 0.85rem 2.5rem; }
.rx-form-note {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Success state */
.rx-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.rx-success-icon { font-size: 3rem; color: #22c55e; }
.rx-form-success h3 { color: #fff; margin: 0; }
.rx-form-success p { color: rgba(255,255,255,0.55); margin: 0; }

@media (max-width: 640px) {
  .rx-form-row { grid-template-columns: 1fr; }
  .rx-demo-form { padding: 1.75rem 1.25rem; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .rx-cap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .rx-product-inner { gap: 3rem; }
  .rx-video-row { gap: 2.5rem; }
  .rx-accel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rx-product-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .rx-reversed { direction: ltr; }
  .rx-product-visual { order: -1; }
  .rx-video-row { grid-template-columns: 1fr; gap: 2rem; }
  .rx-assess-grid-4 { grid-template-columns: 1fr 1fr; }
  .rx-faq-grid { grid-template-columns: 1fr; }
  .rx-sectors-row { grid-template-columns: 1fr; }
  .rx-cap-grid-3 { grid-template-columns: 1fr 1fr; }
  .rx-stats-banner { gap: 1.5rem; }
  .rx-stat-divider { display: none; }
  .rx-nav-pills { gap: 0.5rem; }
  .rx-pill { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .rx-hero h1 { font-size: 2.6rem; }
}
@media (max-width: 540px) {
  .rx-cap-grid { grid-template-columns: 1fr; }
  .rx-cap-grid-3 { grid-template-columns: 1fr; }
  .rx-accel-grid { grid-template-columns: 1fr; }
  .rx-assess-grid-4 { grid-template-columns: 1fr; }
  .rx-product-inner { gap: 2rem; }
  .rx-stat-big strong { font-size: 2rem; }
}
