/* ============================================================
   MedicoPlus 2026 — Premium Enterprise Healthcare SaaS Redesign
   clinicsoftware.ae | Clinic & Hospital Management Software UAE
   Version: 2026.05 | Do not edit minified build directly
   ============================================================ */

/* ─── 1. Design Tokens ──────────────────────────────────────── */
:root {
  /* Brand colours */
  --mx-navy:        #0C2340;
  --mx-navy-mid:    #10324F;
  --mx-navy-light:  #1A4870;
  --mx-emerald:     #00957A;
  --mx-emerald-dk:  #007863;
  --mx-emerald-lt:  #E6F5F1;
  --mx-teal:        #0EA5A0;
  --mx-amber:       #F59E0B;
  --mx-green:       #25D366;

  /* Surfaces */
  --mx-white:       #FFFFFF;
  --mx-surface:     #F7F9FC;
  --mx-surface-2:   #EEF2F8;

  /* Text */
  --mx-text-1:      #111827;
  --mx-text-2:      #4B5C6B;
  --mx-text-3:      #8A9BAC;

  /* Borders */
  --mx-border:      #E1E8EF;
  --mx-border-lt:   #F0F4F8;

  /* Shadows */
  --mx-shadow-xs: 0 1px 3px rgba(12,35,64,.06);
  --mx-shadow-sm: 0 2px 8px rgba(12,35,64,.08), 0 1px 3px rgba(12,35,64,.04);
  --mx-shadow-md: 0 6px 24px rgba(12,35,64,.10), 0 2px 8px rgba(12,35,64,.05);
  --mx-shadow-lg: 0 16px 48px rgba(12,35,64,.14), 0 4px 16px rgba(12,35,64,.06);

  /* Radii */
  --mx-r-sm:  6px;
  --mx-r:     10px;
  --mx-r-md:  14px;
  --mx-r-lg:  20px;
  --mx-r-xl:  28px;

  /* Motion */
  --mx-ease:  cubic-bezier(.4,0,.2,1);
  --mx-dur:   220ms;

  /* Typography */
  --mx-font: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ─── 2. Base Overrides ─────────────────────────────────────── */
body.mpx-2026 {
  font-family: var(--mx-font);
  color: var(--mx-text-1);
  background: var(--mx-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mpx-2026 *,
.mpx-2026 *::before,
.mpx-2026 *::after {
  box-sizing: border-box;
}

/* Section rhythm */
.mpx-section {
  padding: 80px 0;
}

/* Shared eyebrow label */
.mpx-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mx-emerald);
  margin-bottom: 12px;
}

/* Shared section header block */
.mpx-section-head {
  max-width: 660px;
  margin: 0 auto 56px;
}

.mpx-section-head h2 {
  font-family: var(--mx-font);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 700;
  color: var(--mx-navy);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
}

.mpx-section-head p {
  font-size: 1.0625rem;
  color: var(--mx-text-2);
  line-height: 1.72;
  margin: 0;
}

/* ─── 3. Buttons ────────────────────────────────────────────── */
.mpx-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--mx-emerald);
  color: var(--mx-white) !important;
  border: 2px solid var(--mx-emerald);
  border-radius: var(--mx-r);
  font-family: var(--mx-font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none !important;
  line-height: 1;
  cursor: pointer;
  transition: background var(--mx-dur) var(--mx-ease),
              border-color var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease);
}

.mpx-btn-primary:hover,
.mpx-btn-primary:focus {
  background: var(--mx-emerald-dk);
  border-color: var(--mx-emerald-dk);
  color: var(--mx-white) !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,149,122,.32);
  outline: none;
}

.mpx-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: rgba(255,255,255,.88) !important;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: var(--mx-r);
  font-family: var(--mx-font);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none !important;
  line-height: 1;
  transition: border-color var(--mx-dur) var(--mx-ease),
              background var(--mx-dur) var(--mx-ease);
}

.mpx-btn-ghost:hover {
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  color: var(--mx-white) !important;
  text-decoration: none !important;
}

.mpx-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: transparent;
  color: var(--mx-emerald) !important;
  border: 1.5px solid var(--mx-emerald);
  border-radius: var(--mx-r-sm);
  font-family: var(--mx-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background var(--mx-dur) var(--mx-ease),
              color var(--mx-dur) var(--mx-ease);
}

.mpx-btn-outline:hover {
  background: var(--mx-emerald);
  color: var(--mx-white) !important;
  text-decoration: none !important;
}

.mpx-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--mx-green);
  color: var(--mx-white) !important;
  border: 2px solid var(--mx-green);
  border-radius: var(--mx-r);
  font-family: var(--mx-font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease);
}

.mpx-btn-whatsapp:hover {
  background: #1daf55;
  border-color: #1daf55;
  color: var(--mx-white) !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

/* ─── 4. Hero ───────────────────────────────────────────────── */
.mpx-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--mx-navy);
}

.mpx-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.mpx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,35,64,.94) 0%,
    rgba(12,35,64,.80) 55%,
    rgba(14,165,160,.30) 100%
  );
}

.mpx-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 48px;
}

.mpx-hero-content {
  max-width: 740px;
  margin-bottom: 56px;
}

.mpx-hero .mpx-eyebrow {
  color: rgba(125,211,200,.9);
  letter-spacing: 0.14em;
}

.mpx-hero h1 {
  font-family: var(--mx-font);
  font-size: clamp(2.125rem, 5.5vw, 3.5rem);
  font-weight: 800;
  color: var(--mx-white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 14px 0 22px;
}

.mpx-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: rgba(255,255,255,.78);
  line-height: 1.68;
  max-width: 640px;
  margin-bottom: 36px;
}

.mpx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Hero trust proof strip */
.mpx-hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 32px;
  gap: 0;
}

.mpx-trust-item {
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mpx-trust-item:last-child {
  border-right: none;
}

.mpx-trust-item strong {
  font-family: var(--mx-font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--mx-white);
  display: block;
  line-height: 1.2;
}

.mpx-trust-item span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.6);
  line-height: 1.45;
}

/* ─── 5. Compliance / Authority Strip ──────────────────────── */
.mpx-compliance {
  background: var(--mx-white);
  border-bottom: 1px solid var(--mx-border);
  padding: 20px 0;
  box-shadow: var(--mx-shadow-xs);
}

.mpx-compliance-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mpx-compliance-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mx-text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.mpx-compliance-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.mpx-compliance-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mpx-compliance-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: .85;
  transition: opacity var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease);
}

.mpx-compliance-item img:hover {
  opacity: 1;
  transform: scale(1.04);
}

.mpx-compliance-item span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--mx-text-2);
  white-space: nowrap;
}

.mpx-compliance-sep {
  width: 1px;
  height: 28px;
  background: var(--mx-border);
  flex-shrink: 0;
}

.mpx-compliance-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mx-emerald);
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--mx-dur) var(--mx-ease);
}

.mpx-compliance-cta:hover {
  color: var(--mx-emerald-dk);
  text-decoration: none !important;
}

/* ─── 6. About / Why Choose Us ─────────────────────────────── */
#about-us.mpx-about-section {
  background: var(--mx-white);
  padding: 104px 0 !important;
}

/* Override old about styles */
#about-us .main,
#about-us .title,
#about-us .home-text {
  all: unset;
}

#about-us .home-cert-logos {
  display: none; /* replaced inline in new section */
}

.mpx-about-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 64px;
  align-items: center;
}

.mpx-about-visual {
  position: relative;
}

.mpx-about-visual img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  display: block;
}

.mpx-about-certs {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
  padding: 16px 20px;
  background: var(--mx-surface);
  border-radius: var(--mx-r);
  border: 1px solid var(--mx-border);
}

.mpx-about-certs img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: .85;
}

.mpx-about-copy h2 {
  font-family: var(--mx-font);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--mx-navy);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 10px 0 20px;
}

.mpx-about-copy > p {
  font-size: 1rem;
  color: var(--mx-text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}

.mpx-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mpx-about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--mx-text-1);
  line-height: 1.55;
}

.mpx-about-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--mx-emerald);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ─── 7. Platform Pillars ───────────────────────────────────── */
.mpx-platform {
  background: var(--mx-surface);
}

.mpx-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mpx-platform-copy h2 {
  font-family: var(--mx-font);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  color: var(--mx-navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 10px 0 20px;
}

.mpx-platform-copy > p {
  font-size: 1rem;
  color: var(--mx-text-2);
  line-height: 1.75;
  margin-bottom: 0;
}

.mpx-platform-copy .mpx-btn-primary {
  margin-top: 28px;
}

.mpx-answer-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mpx-answer-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 22px 24px;
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease);
}

.mpx-answer-card:hover {
  border-color: var(--mx-emerald);
  box-shadow: var(--mx-shadow-md);
  transform: translateY(-2px);
}

.mpx-answer-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--mx-emerald-lt);
  color: var(--mx-emerald);
  border-radius: var(--mx-r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.mpx-answer-card strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--mx-navy);
  margin-bottom: 5px;
  line-height: 1.3;
}

.mpx-answer-card p {
  font-size: 0.875rem;
  color: var(--mx-text-2);
  line-height: 1.65;
  margin: 0;
}

/* ─── 8. Services Grid ──────────────────────────────────────── */
.mpx-services {
  background: var(--mx-white);
}

.mpx-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mpx-service-card {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease);
}

.mpx-service-card:hover {
  border-color: var(--mx-emerald);
  box-shadow: var(--mx-shadow-md);
  transform: translateY(-3px);
}

.mpx-service-card:hover .mpx-svc-icon {
  background: var(--mx-emerald);
  color: var(--mx-white);
}

.mpx-svc-icon {
  width: 48px;
  height: 48px;
  background: var(--mx-emerald-lt);
  color: var(--mx-emerald);
  border-radius: var(--mx-r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background var(--mx-dur) var(--mx-ease),
              color var(--mx-dur) var(--mx-ease);
}

.mpx-service-card h3 {
  font-family: var(--mx-font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--mx-navy);
  margin: 0 0 8px;
  line-height: 1.35;
}

.mpx-service-card p {
  font-size: 0.8125rem;
  color: var(--mx-text-2);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.mpx-service-card.mpx-service-more {
  background: var(--mx-surface);
  justify-content: space-between;
}

/* ─── 9. Specialized / Solutions Pills ──────────────────────── */
.mpx-specialized {
  background: var(--mx-surface);
}

.mpx-spec-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.mpx-spec-group-title {
  font-family: var(--mx-font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mx-text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

.mpx-spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mpx-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: var(--mx-white);
  border: 1.5px solid var(--mx-border);
  border-radius: 100px;
  font-family: var(--mx-font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--mx-text-1) !important;
  text-decoration: none !important;
  transition: border-color var(--mx-dur) var(--mx-ease),
              color var(--mx-dur) var(--mx-ease),
              background var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease);
}

.mpx-pill:hover {
  border-color: var(--mx-emerald);
  color: var(--mx-emerald) !important;
  background: var(--mx-emerald-lt);
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* ─── 10. Workflow Steps ────────────────────────────────────── */
.mpx-workflows {
  background: var(--mx-navy);
}

.mpx-workflows .mpx-section-head h2 {
  color: var(--mx-white);
}

.mpx-workflows .mpx-section-head p {
  color: rgba(255,255,255,.68);
}

.mpx-workflows .mpx-eyebrow {
  color: rgba(125,211,200,.85);
}

.mpx-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mpx-workflow-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--mx-r-md);
  padding: 32px 28px;
  transition: background var(--mx-dur) var(--mx-ease),
              border-color var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease);
}

.mpx-workflow-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(125,211,200,.35);
  transform: translateY(-3px);
}

.mpx-workflow-num {
  font-family: var(--mx-font);
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(255,255,255,.1);
  line-height: 1;
  margin-bottom: 16px;
}

.mpx-workflow-card h3 {
  font-family: var(--mx-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--mx-white);
  margin: 0 0 10px;
  line-height: 1.35;
}

.mpx-workflow-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0;
}

/* ─── 11. Testimonials ──────────────────────────────────────── */
.mpx-testimonials {
  background: var(--mx-surface);
}

.mpx-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mpx-testi-card {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--mx-dur) var(--mx-ease),
              border-color var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease);
}

.mpx-testi-card:hover {
  box-shadow: var(--mx-shadow-md);
  border-color: var(--mx-emerald);
  transform: translateY(-2px);
}

.mpx-testi-stars .fa-star {
  color: var(--mx-amber);
  font-size: 0.8125rem;
}

.mpx-testi-card blockquote {
  font-size: 0.9375rem;
  color: var(--mx-text-1);
  line-height: 1.72;
  margin: 0;
  padding: 0;
  border: none;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: 20px;
}

.mpx-testi-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  color: var(--mx-emerald);
  line-height: 1;
  font-style: normal;
}

.mpx-testi-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--mx-border-lt);
  padding-top: 14px;
  margin-top: auto;
}

.mpx-testi-card cite strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mx-navy);
}

.mpx-testi-card cite span {
  font-size: 0.75rem;
  color: var(--mx-text-3);
}

/* ─── 12. Stats ─────────────────────────────────────────────── */
.mpx-stats {
  background: var(--mx-emerald);
  padding: 56px 0;
}

.mpx-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mpx-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.2);
  text-align: center;
}

.mpx-stat-item:last-child {
  border-right: none;
}

.mpx-stat-num {
  font-family: var(--mx-font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--mx-white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
  letter-spacing: -0.03em;
}

.mpx-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
  text-align: center;
  max-width: 120px;
}

/* ─── 13. Enterprise CTA ────────────────────────────────────── */
.mpx-cta-section {
  background: var(--mx-white);
}

.mpx-cta-box {
  background: linear-gradient(135deg, var(--mx-navy) 0%, var(--mx-navy-mid) 55%, #1A4870 100%);
  border-radius: var(--mx-r-xl);
  padding: 64px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.mpx-cta-copy .mpx-eyebrow {
  color: rgba(125,211,200,.85);
}

.mpx-cta-copy h2 {
  font-family: var(--mx-font);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  color: var(--mx-white);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
}

.mpx-cta-copy p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.72;
  max-width: 580px;
  margin: 0;
}

.mpx-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 184px;
}

/* ─── 14. ID-Level Legacy Overrides ────────────────────────── */
/* These use high-specificity selectors to win over old style.css rules */

/* Suppress old hero/carousel */
.home-hero-wrap {
  display: none !important;
}

/* Suppress old domain checker */
#domain-checker {
  display: none !important;
}

/* ── About section ── */
#about-us.mpx-about-section {
  background: var(--mx-white) !important;
  padding: 104px 0 !important;
  position: relative !important;
}

#about-us.mpx-about-section::after {
  display: none !important;
}

/* Hide old about-section inner elements that are replaced */
#about-us.mpx-about-section .spacerr,
#about-us.mpx-about-section > .container > .title,
#about-us.mpx-about-section .main {
  display: none !important;
}

/* ── Testimonials section ── */
#testimonial.mpx-testimonials {
  background: var(--mx-surface) !important;
  padding: 104px 0 !important;
  position: relative !important;
}

#testimonial.mpx-testimonials::after {
  display: none !important;
}

/* ── Counter / Stats section ── */
#counter.mpx-stats {
  background: var(--mx-emerald) !important;
  padding: 56px 0 !important;
  position: relative !important;
}

#counter.mpx-stats::after {
  display: none !important;
}

/* ── Specialized modules section ── */
#specialized-modules.mpx-specialized {
  padding: 104px 0 !important;
}

/* ── Services section ── */
#our-service.mpx-services {
  background: var(--mx-white) !important;
  padding: 104px 0 !important;
}

/* ─── 15. Responsive ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .mpx-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mpx-workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .mpx-section {
    padding: 64px 0;
  }
  .mpx-hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }
  .mpx-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mpx-about-visual {
    max-width: 520px;
    margin: 0 auto;
  }
  .mpx-platform-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mpx-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mpx-spec-categories {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .mpx-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 40px;
    gap: 32px;
  }
  .mpx-cta-copy p {
    margin: 0 auto;
  }
  .mpx-cta-actions {
    flex-direction: row;
    justify-content: center;
    min-width: unset;
  }
  .mpx-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mpx-stat-item:nth-child(2),
  .mpx-stat-item:nth-child(4) {
    border-right: none;
  }
  .mpx-stat-item:nth-child(1),
  .mpx-stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
}

@media (max-width: 768px) {
  .mpx-section {
    padding: 52px 0;
  }
  .mpx-hero {
    min-height: 100svh;
    align-items: flex-start;
  }
  .mpx-hero-inner {
    padding-top: 90px;
    padding-bottom: 36px;
  }
  .mpx-hero h1 {
    font-size: clamp(1.875rem, 7vw, 2.375rem);
  }
  .mpx-hero-content {
    margin-bottom: 40px;
  }
  .mpx-hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }
  .mpx-trust-item {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .mpx-trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .mpx-trust-item:last-child,
  .mpx-trust-item:nth-last-child(2) {
    border-bottom: none;
  }
  .mpx-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .mpx-workflow-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mpx-testi-grid {
    grid-template-columns: 1fr;
  }
  .mpx-spec-categories {
    grid-template-columns: 1fr;
  }
  .mpx-compliance-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .mpx-compliance-logos {
    justify-content: flex-start;
  }
  .mpx-cta-box {
    padding: 36px 24px;
    border-radius: var(--mx-r-lg);
  }
  .mpx-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .mpx-cta-actions a {
    width: 100%;
    justify-content: center;
  }
  .mpx-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .mpx-hero h1 {
    font-size: 1.875rem;
  }
  .mpx-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .mpx-hero-actions a {
    width: 100%;
    justify-content: center;
  }
  .mpx-services-grid {
    grid-template-columns: 1fr;
  }
  .mpx-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mpx-stat-num {
    font-size: 2.25rem;
  }
  .mpx-about-certs img {
    height: 22px;
  }
  .mpx-cta-box {
    padding: 28px 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   16. AEO / PRE-FOOTER CONTEXT SECTION
   ═══════════════════════════════════════════════════════════════ */
.mpx-aeo {
  background: var(--mx-surface);
  border-top: 1px solid var(--mx-border);
  padding: 56px 0 40px;
}

.mpx-aeo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.mpx-aeo-card {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 24px 26px;
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease);
}

.mpx-aeo-card:hover {
  border-color: var(--mx-emerald);
  box-shadow: var(--mx-shadow-sm);
}

.mpx-aeo-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mx-emerald);
  margin-bottom: 10px;
}

.mpx-aeo-card h2 {
  font-family: var(--mx-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0 0 10px;
  line-height: 1.3;
}

.mpx-aeo-card p {
  font-size: 0.875rem;
  color: var(--mx-text-2);
  line-height: 1.7;
  margin: 0;
}

.mpx-aeo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--mx-border);
}

.mpx-aeo-links a {
  display: inline-flex;
  padding: 5px 12px;
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mx-text-2) !important;
  text-decoration: none !important;
  transition: border-color var(--mx-dur) var(--mx-ease),
              color var(--mx-dur) var(--mx-ease),
              background var(--mx-dur) var(--mx-ease);
  white-space: nowrap;
}

.mpx-aeo-links a:hover {
  border-color: var(--mx-emerald);
  color: var(--mx-emerald) !important;
  background: var(--mx-emerald-lt);
  text-decoration: none !important;
}

/* Suppress old AEO styles */
.cs-aeo-context {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════════════════════════════ */

/* Suppress old footer styles */
#footer .footer-inner,
#footer .footer-top,
#footer .contact-top,
#footer .footer-top-main,
#footer .social-icons,
#footer .footer-bottom,
#footer .footer-b-inner,
#footer .links,
#footer .copyrights-row {
  all: unset;
  display: block;
}

#footer {
  background: var(--mx-navy) !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

/* New footer shell */
.mpx-footer {
  background: var(--mx-navy);
  color: rgba(255,255,255,.72);
  font-family: var(--mx-font);
}

/* ── Contact Bar ── */
.mpx-footer-contact-bar {
  background: var(--mx-navy-mid);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0;
}

.mpx-footer-contact-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mpx-fcontact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-decoration: none !important;
  transition: background var(--mx-dur) var(--mx-ease);
}

.mpx-fcontact-item:last-child {
  border-right: none;
}

.mpx-fcontact-item:hover {
  background: rgba(255,255,255,.05);
}

.mpx-fcontact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(0,149,122,.2);
  color: var(--mx-emerald);
  border-radius: var(--mx-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.mpx-fcontact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mpx-fcontact-text small {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.45);
}

.mpx-fcontact-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mx-white);
  line-height: 1.3;
}

/* ── Footer Main Grid ── */
.mpx-footer-main {
  padding: 60px 0 48px;
}

.mpx-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Brand column */
.mpx-footer-brand .mpx-footer-logo {
  margin-bottom: 20px;
  display: block;
}

.mpx-footer-brand .mpx-footer-logo img {
  height: 44px;
  width: auto;
  background: rgba(255,255,255,.12);
  padding: 8px 12px;
  border-radius: var(--mx-r-sm);
}

.mpx-footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.72;
  margin-bottom: 20px;
}

.mpx-footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.mpx-footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  text-decoration: none !important;
  transition: color var(--mx-dur) var(--mx-ease);
}

.mpx-footer-address-item:hover {
  color: rgba(255,255,255,.9) !important;
  text-decoration: none !important;
}

.mpx-footer-address-item .fa {
  color: var(--mx-emerald);
  margin-top: 2px;
  min-width: 14px;
  font-size: 0.875rem;
}

.mpx-footer-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--mx-emerald);
  color: var(--mx-white) !important;
  border: 2px solid var(--mx-emerald);
  border-radius: var(--mx-r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  transition: background var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease);
}

.mpx-footer-demo-btn:hover {
  background: var(--mx-emerald-dk);
  border-color: var(--mx-emerald-dk);
  color: var(--mx-white) !important;
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,149,122,.35);
}

/* Link columns */
.mpx-footer-col-title {
  font-family: var(--mx-font);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mpx-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mpx-footer-links li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.62) !important;
  text-decoration: none !important;
  line-height: 1.45;
  transition: color var(--mx-dur) var(--mx-ease),
              padding-left var(--mx-dur) var(--mx-ease);
  display: block;
}

.mpx-footer-links li a:hover {
  color: var(--mx-white) !important;
  text-decoration: none !important;
  padding-left: 4px;
}

/* ── Footer Bottom Bar ── */
.mpx-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}

.mpx-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.mpx-footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
}

.mpx-footer-copy a {
  color: rgba(255,255,255,.6) !important;
  text-decoration: none !important;
  transition: color var(--mx-dur) var(--mx-ease);
}

.mpx-footer-copy a:hover {
  color: var(--mx-white) !important;
}

.mpx-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mpx-footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--mx-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6) !important;
  font-size: 0.875rem;
  text-decoration: none !important;
  transition: background var(--mx-dur) var(--mx-ease),
              color var(--mx-dur) var(--mx-ease),
              border-color var(--mx-dur) var(--mx-ease);
}

.mpx-footer-social a:hover {
  background: var(--mx-emerald);
  border-color: var(--mx-emerald);
  color: var(--mx-white) !important;
}

.mpx-back-to-top {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--mx-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6) !important;
  font-size: 0.8125rem;
  text-decoration: none !important;
  transition: background var(--mx-dur) var(--mx-ease),
              color var(--mx-dur) var(--mx-ease);
}

.mpx-back-to-top:hover {
  background: var(--mx-emerald);
  border-color: var(--mx-emerald);
  color: var(--mx-white) !important;
}

/* ── Footer Responsive ── */
@media (max-width: 1024px) {
  .mpx-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .mpx-footer-contact-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .mpx-fcontact-item:nth-child(2) {
    border-right: none;
  }
  .mpx-fcontact-item:nth-child(1),
  .mpx-fcontact-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .mpx-aeo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .mpx-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .mpx-footer-main {
    padding: 48px 0 36px;
  }
  .mpx-footer-contact-inner {
    grid-template-columns: 1fr 1fr;
  }
  .mpx-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  .mpx-footer-grid {
    grid-template-columns: 1fr;
  }
  .mpx-footer-contact-inner {
    grid-template-columns: 1fr;
  }
  .mpx-fcontact-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .mpx-fcontact-item:last-child {
    border-bottom: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   18. GLOBAL TYPOGRAPHY IMPROVEMENTS
   Applies to all pages carrying body.mpx-2026
   ═══════════════════════════════════════════════════════════════ */

body.mpx-2026 {
  font-size: 17px;
  line-height: 1.74;
}

body.mpx-2026 p {
  font-size: 1rem;        /* 17px */
  line-height: 1.76;
  color: var(--mx-text-2);
  margin-bottom: 1.1em;
}

body.mpx-2026 h1 {
  font-family: var(--mx-font);
  letter-spacing: -0.025em;
  font-weight: 800;
  line-height: 1.1;
}

body.mpx-2026 h2 {
  font-family: var(--mx-font);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.22;
}

body.mpx-2026 h3 {
  font-family: var(--mx-font);
  letter-spacing: -0.01em;
  font-weight: 600;
  line-height: 1.3;
}

/* ── Sub-page page-header banner ── */
.mpx-2026 .page-header,
.mpx-page-header {
  background: linear-gradient(135deg, var(--mx-navy) 0%, var(--mx-navy-mid) 70%, #1A4870 100%);
  padding: 64px 0 48px;
  margin-top: 0;
  border: none;
  position: relative;
}

.mpx-2026 .page-header h1,
.mpx-page-header h1 {
  font-family: var(--mx-font);
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 800;
  color: var(--mx-white);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.mpx-2026 .page-header .breadcrumb,
.mpx-page-header .breadcrumb {
  background: transparent;
  justify-content: center;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 6px;
  flex-wrap: wrap;
}

.mpx-2026 .page-header .breadcrumb li,
.mpx-2026 .page-header .breadcrumb li a,
.mpx-2026 .page-header .breadcrumb li span,
.mpx-page-header .breadcrumb li,
.mpx-page-header .breadcrumb li a,
.mpx-page-header .breadcrumb li span {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
}

.mpx-2026 .page-header .breadcrumb li a:hover {
  color: rgba(255,255,255,.9);
}

/* ── Sub-page hero override ── */
.mpx-2026 header.sub-page {
  background: none;
}

/* Remove the old blue template banner visually while keeping its H1/breadcrumb markup crawlable. */
body.mpx-2026 #header.sub-page .page-header,
body.mpx-2026 .mpx-page-header {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

/* ═══════════════════════════════════════════════════════════════
   19. COMPLIANCE SHOWCASE SECTION
   Large NABIDH / Riayati / Malaffi trust section on homepage
   ═══════════════════════════════════════════════════════════════ */

.mpx-compliance-showcase {
  background: var(--mx-surface);
}

.mpx-compliance-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mpx-ccomp-card {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease);
  position: relative;
  overflow: hidden;
}

.mpx-ccomp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mx-emerald), var(--mx-teal));
  opacity: 0;
  transition: opacity var(--mx-dur) var(--mx-ease);
}

.mpx-ccomp-card:hover {
  border-color: var(--mx-emerald);
  box-shadow: var(--mx-shadow-lg);
  transform: translateY(-4px);
}

.mpx-ccomp-card:hover::before {
  opacity: 1;
}

.mpx-ccomp-logo {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
  padding: 12px 14px;
  border: 1px solid var(--mx-border);
  border-radius: 14px;
  background: #fff;
}

.mpx-ccomp-logo img {
  display: block;
  max-height: 64px;
  max-width: min(100%, 230px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.mpx-ccomp-logo-text {
  font-family: var(--mx-font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--mx-navy);
  letter-spacing: -0.03em;
}

.mpx-ccomp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--mx-emerald-lt);
  color: var(--mx-emerald);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}

.mpx-ccomp-badge .fa {
  font-size: 0.75rem;
}

.mpx-ccomp-card h3 {
  font-family: var(--mx-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0;
  line-height: 1.25;
}

.mpx-ccomp-authority {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mx-emerald);
  margin: 0;
  line-height: 1.3;
}

.mpx-ccomp-card p {
  font-size: 0.9375rem;
  color: var(--mx-text-2);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.mpx-ccomp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mx-emerald) !important;
  text-decoration: none !important;
  transition: gap var(--mx-dur) var(--mx-ease),
              color var(--mx-dur) var(--mx-ease);
  margin-top: 4px;
}

.mpx-ccomp-link:hover {
  gap: 10px;
  color: var(--mx-emerald-dk) !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .mpx-compliance-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mpx-ccomp-logo {
    height: 82px;
  }
  .mpx-ccomp-logo img {
    max-height: 56px;
    max-width: min(100%, 210px);
  }
}

/* Enterprise footer contrast guard.
   This stylesheet loads after clinicsoftware-qa.css and resets #footer, so keep the redesigned footer dark and readable here. */
#footer.cs-enterprise-footer {
  background: #071827 !important;
  color: #d7e5ec !important;
}

#footer.cs-enterprise-footer:before {
  background:
    radial-gradient(circle at 78% 0%, rgba(20, 177, 187, .18), transparent 32%),
    linear-gradient(180deg, rgba(12, 52, 76, .72), rgba(7, 24, 39, 0)) !important;
}

#footer.cs-enterprise-footer .cs-footer-trust {
  background: transparent !important;
}

#footer.cs-enterprise-footer .cs-footer-trust-copy h2,
#footer.cs-enterprise-footer .cs-footer-group h2,
#footer.cs-enterprise-footer .cs-footer-contact strong {
  color: #ffffff !important;
}

#footer.cs-enterprise-footer .cs-footer-trust-copy p,
#footer.cs-enterprise-footer .cs-footer-brand p,
#footer.cs-enterprise-footer .cs-footer-contact span {
  color: #c1d3dd !important;
}

#footer.cs-enterprise-footer .cs-footer-group a,
#footer.cs-enterprise-footer .cs-footer-legal,
#footer.cs-enterprise-footer .cs-footer-legal span,
#footer.cs-enterprise-footer .cs-footer-legal a {
  color: #c8dbe4 !important;
}

#footer.cs-enterprise-footer .cs-footer-contact {
  background: rgba(255, 255, 255, .045) !important;
  border-color: rgba(189, 218, 229, .14) !important;
}

#footer.cs-enterprise-footer .cs-footer-contact a {
  color: #effafe !important;
}

#footer.cs-enterprise-footer .cs-footer-brand-row,
#footer.cs-enterprise-footer .cs-footer-nav,
#footer.cs-enterprise-footer .cs-footer-trust {
  border-color: rgba(189, 218, 229, .14) !important;
}

/* ═══════════════════════════════════════════════════════════════
   20. ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */

body.mpx-about-page {
  font-size: 17px;
  line-height: 1.74;
  font-family: var(--mx-font);
}

/* ── About overview two-col ── */
.mpx-about-overview {
  background: var(--mx-white);
}

.mpx-about-overview-grid {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 72px;
  align-items: center;
}

.mpx-about-overview-img {
  border-radius: var(--mx-r-lg);
  overflow: hidden;
  box-shadow: var(--mx-shadow-lg);
}

.mpx-about-overview-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.mpx-about-overview-copy h2 {
  font-family: var(--mx-font);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--mx-navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 10px 0 20px;
}

.mpx-about-overview-copy p {
  font-size: 1.0625rem;
  color: var(--mx-text-2);
  line-height: 1.78;
  margin-bottom: 18px;
}

/* ── Mission / Vision ── */
.mpx-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mpx-mission-card {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 32px;
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease);
}

.mpx-mission-card:hover {
  border-color: var(--mx-emerald);
  box-shadow: var(--mx-shadow-md);
}

.mpx-mission-icon {
  width: 48px;
  height: 48px;
  background: var(--mx-emerald-lt);
  color: var(--mx-emerald);
  border-radius: var(--mx-r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.mpx-mission-card h3 {
  font-family: var(--mx-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0 0 12px;
  line-height: 1.3;
}

.mpx-mission-card p {
  font-size: 1rem;
  color: var(--mx-text-2);
  line-height: 1.75;
  margin: 0;
}

/* ── Expertise / Strengths ── */
.mpx-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mpx-expertise-card {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 28px 26px;
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease);
}

.mpx-expertise-card:hover {
  border-color: var(--mx-emerald);
  box-shadow: var(--mx-shadow-md);
  transform: translateY(-2px);
}

.mpx-expertise-card h3 {
  font-family: var(--mx-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mpx-expertise-card h3 .fa {
  color: var(--mx-emerald);
  font-size: 1.125rem;
}

.mpx-expertise-card p {
  font-size: 0.9375rem;
  color: var(--mx-text-2);
  line-height: 1.68;
  margin: 0;
}

/* ── Timeline ── */
.mpx-timeline {
  position: relative;
  padding-left: 40px;
}

.mpx-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--mx-border);
}

.mpx-timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.mpx-timeline-item:last-child {
  margin-bottom: 0;
}

.mpx-timeline-dot {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--mx-white);
  border: 2px solid var(--mx-emerald);
  border-radius: 50%;
}

.mpx-timeline-item.mpx-active .mpx-timeline-dot {
  background: var(--mx-emerald);
}

.mpx-timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mx-emerald);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mpx-timeline-item h3 {
  font-family: var(--mx-font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0 0 6px;
}

.mpx-timeline-item p {
  font-size: 0.9375rem;
  color: var(--mx-text-2);
  line-height: 1.68;
  margin: 0;
}

/* ── About page responsive ── */
@media (max-width: 1024px) {
  .mpx-about-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mpx-about-overview-img img {
    height: 360px;
  }
  .mpx-expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mpx-mission-grid {
    grid-template-columns: 1fr;
  }
  .mpx-expertise-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   21. CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */

body.mpx-contact-page {
  font-size: 17px;
  line-height: 1.74;
  font-family: var(--mx-font);
}

.mpx-contact-section {
  background: var(--mx-surface);
}

.mpx-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Contact Form Panel ── */
.mpx-contact-form-panel {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-lg);
  padding: 40px;
}

.mpx-contact-form-panel h2 {
  font-family: var(--mx-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0 0 6px;
  line-height: 1.28;
}

.mpx-contact-form-panel > p {
  font-size: 1rem;
  color: var(--mx-text-2);
  margin-bottom: 28px;
  line-height: 1.68;
}

.mpx-form-group {
  margin-bottom: 18px;
  position: relative;
}

.mpx-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mx-text-1);
  margin-bottom: 7px;
}

.mpx-form-control {
  display: block;
  width: 100%;
  padding: 13px 16px;
  font-family: var(--mx-font);
  font-size: 0.9375rem;
  color: var(--mx-text-1);
  background: var(--mx-surface);
  border: 1.5px solid var(--mx-border);
  border-radius: var(--mx-r);
  outline: none;
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease);
  -webkit-appearance: none;
}

.mpx-form-control:focus {
  border-color: var(--mx-emerald);
  box-shadow: 0 0 0 3px rgba(0,149,122,.12);
  background: var(--mx-white);
}

.mpx-form-control::placeholder {
  color: var(--mx-text-3);
}

textarea.mpx-form-control {
  resize: vertical;
  min-height: 130px;
}

.mpx-form-select {
  display: block;
  width: 100%;
  padding: 13px 16px;
  font-family: var(--mx-font);
  font-size: 0.9375rem;
  color: var(--mx-text-1);
  background: var(--mx-surface);
  border: 1.5px solid var(--mx-border);
  border-radius: var(--mx-r);
  outline: none;
  transition: border-color var(--mx-dur) var(--mx-ease);
  cursor: pointer;
}

.mpx-form-select:focus {
  border-color: var(--mx-emerald);
  box-shadow: 0 0 0 3px rgba(0,149,122,.12);
}

.mpx-form-submit {
  width: 100%;
  padding: 15px;
  background: var(--mx-emerald);
  color: var(--mx-white);
  border: none;
  border-radius: var(--mx-r);
  font-family: var(--mx-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease);
}

.mpx-form-submit:hover {
  background: var(--mx-emerald-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,149,122,.3);
}

/* ── Contact Right Column ── */
.mpx-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mpx-office-card {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 28px;
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease);
}

.mpx-office-card:hover {
  border-color: var(--mx-emerald);
  box-shadow: var(--mx-shadow-sm);
}

.mpx-office-card h3 {
  font-family: var(--mx-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mx-border-lt);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mpx-office-card h3 .fa {
  color: var(--mx-emerald);
  font-size: 1rem;
}

.mpx-office-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mpx-office-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--mx-text-2);
  line-height: 1.55;
  text-decoration: none !important;
  transition: color var(--mx-dur) var(--mx-ease);
}

a.mpx-office-row:hover {
  color: var(--mx-emerald) !important;
}

.mpx-office-row .fa {
  color: var(--mx-emerald);
  margin-top: 3px;
  min-width: 16px;
  font-size: 0.9375rem;
}

/* ── Trust signals bar in contact ── */
.mpx-contact-trust {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mpx-contact-trust-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mx-text-3);
  margin-bottom: 4px;
}

.mpx-contact-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--mx-text-2);
  line-height: 1.45;
}

.mpx-contact-trust-item .fa {
  color: var(--mx-emerald);
  font-size: 1rem;
  min-width: 18px;
}

/* ── Map ── */
.mpx-map-section {
  background: var(--mx-white);
  padding: 0;
}

.mpx-map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* ── Contact page responsive ── */
@media (max-width: 1024px) {
  .mpx-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .mpx-contact-form-panel {
    padding: 28px 22px;
  }
}

/* ── Suppress old contact styles ── */
#contact.cs-contact-modern .contact-inner {
  all: unset;
  display: block;
}

#contact.cs-contact-modern .cs-contact-heading,
#contact.cs-contact-modern .cs-contact-grid,
#contact.cs-contact-modern .cs-contact-panel,
#contact.cs-contact-modern .cs-office-stack {
  all: unset;
  display: block;
}

#contact.cs-contact-modern .row,
#contact.cs-contact-modern [class*="col-"] {
  all: unset;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   22. LOGO SIZE — standardised across all pages
   Overrides clinicsoftware-qa.css (.cs-brand img: 220px/66px)
   ═══════════════════════════════════════════════════════════════ */

.cs-nav-inner {
  min-height: 112px;
}

@media (min-width: 1200px) {
  .cs-nav-inner.container {
    width: calc(100% - 64px) !important;
    max-width: 1360px !important;
  }
}

@media (max-width: 1199px) {
  .cs-nav-inner.container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 18px;
    padding-right: 18px;
  }

  .cs-menu-toggle {
    display: inline-flex !important;
  }

  .cs-nav-panel {
    position: fixed !important;
    inset: 86px 0 0 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100vh - 86px) !important;
    height: calc(100dvh - 86px) !important;
    display: none !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .cs-nav-panel.on,
  .cs-nav-panel.is-open,
  .cs-nav-panel.active {
    display: flex !important;
  }
}

.cs-brand {
  min-width: 270px;
  align-self: stretch;
  align-items: center;
  justify-content: flex-start;
}

.cs-brand img,
.cs-navbar .cs-brand img,
nav .cs-brand img {
  width: 300px !important;
  max-width: 300px !important;
  height: auto !important;
  max-height: 100px !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 !important;
}

@media (max-width: 1199px) {
  .cs-brand {
    min-width: 280px;
  }

  .cs-brand img,
  .cs-navbar .cs-brand img,
  nav .cs-brand img {
    max-width: 280px !important;
    max-height: 92px !important;
  }
}

@media (max-width: 768px) {
  .cs-nav-inner {
    min-height: 86px;
  }

  .cs-brand {
    min-width: 0;
  }

  .cs-brand img,
  .cs-navbar .cs-brand img,
  nav .cs-brand img {
    max-width: 240px !important;
    max-height: 78px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   23. ENTERPRISE READABILITY + TRUST PASS
   Preserves content while increasing scanability and authority.
   ═══════════════════════════════════════════════════════════════ */

body.mpx-2026 {
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: var(--mx-text-1);
  text-rendering: optimizeLegibility;
}

.mpx-2026 p,
.mpx-2026 li {
  font-size: 1.02rem !important;
  line-height: 1.78 !important;
  letter-spacing: 0 !important;
}

.mpx-section {
  padding-top: clamp(76px, 7vw, 122px);
  padding-bottom: clamp(76px, 7vw, 122px);
}

.mpx-section-header,
.mpx-section-head {
  margin-bottom: clamp(38px, 4vw, 64px);
}

.mpx-section-header h2,
.mpx-section-head h2,
.mpx-platform-copy h2,
.mpx-about-overview-copy h2,
.mpx-contact-form-panel h3 {
  letter-spacing: 0;
}

.mpx-section-header h2,
.mpx-section-head h2 {
  font-size: clamp(2.3rem, 4vw, 3.55rem);
  line-height: 1.08;
}

.mpx-section-sub,
.mpx-section-head p,
.mpx-about-overview-copy p,
.mpx-platform-copy p {
  font-size: 1.08rem !important;
  line-height: 1.82 !important;
}

.mpx-section-sub,
.mpx-section-head p {
  max-width: 980px;
}

.mpx-service-card,
.mpx-answer-card,
.mpx-mission-card,
.mpx-office-card,
.mpx-contact-form-panel,
.mpx-contact-trust {
  border-radius: 18px;
  border-color: rgba(163, 187, 201, .45);
  box-shadow: 0 18px 55px rgba(8, 32, 51, .045);
}

.mpx-service-card h3,
.mpx-answer-card strong,
.mpx-process-card h3,
.mpx-contact-intent h3,
.mpx-office-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}

.mpx-about-list {
  gap: 12px;
}

.mpx-about-list li {
  padding-left: 30px;
}

.mpx-compliance-showcase {
  background:
    radial-gradient(circle at 12% 8%, rgba(20,177,187,.12), transparent 34%),
    linear-gradient(180deg, #f5f9fc 0%, #eef5f8 100%);
}

.mpx-compliance-cards {
  gap: clamp(24px, 2.2vw, 34px);
}

.mpx-ccomp-card {
  padding: clamp(34px, 3vw, 48px);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(8, 32, 51, .06);
}

.mpx-ccomp-logo {
  height: 136px;
  justify-content: center;
  margin-bottom: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fafdff 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}

.mpx-ccomp-logo img {
  max-height: 94px;
  max-width: min(100%, 320px);
  object-position: center;
}

.mpx-ccomp-badge {
  padding: 7px 16px;
  font-size: .82rem;
}

.mpx-ccomp-authority {
  font-size: .92rem;
}

.mpx-ccomp-card h3 {
  font-size: 1.38rem;
}

.mpx-ccomp-card p {
  font-size: 1.03rem !important;
  line-height: 1.78 !important;
}

.mpx-ccomp-link {
  font-size: .98rem;
}

.mpx-about-overview-grid {
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.mpx-about-overview-img {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(8, 32, 51, .12);
}

.mpx-stats {
  padding: clamp(38px, 5vw, 70px) 0;
  background: #082033;
}

.mpx-stat-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(189,218,229,.16);
  border-radius: 18px;
  padding: 28px 24px;
}

.mpx-about-process {
  background: #fff;
}

.mpx-process-grid,
.mpx-contact-intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mpx-process-card,
.mpx-contact-intent {
  background: #fff;
  border: 1px solid rgba(163, 187, 201, .5);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 18px 55px rgba(8, 32, 51, .045);
}

.mpx-process-card span {
  display: block;
  color: rgba(0,149,122,.22);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 26px;
}

.mpx-process-card h3,
.mpx-contact-intent h3 {
  color: var(--mx-navy);
  font-weight: 800;
  margin: 0 0 12px;
}

.mpx-contact-intent h3::before,
.mpx-contact-intent h3::after {
  content: none !important;
  display: none !important;
}

.mpx-process-card p,
.mpx-contact-intent p {
  color: var(--mx-text-2);
  margin: 0;
}

body.mpx-2026 .mpx-section p,
body.mpx-2026 .mpx-section li,
body.mpx-2026 .mpx-service-card p,
body.mpx-2026 .mpx-answer-card p,
body.mpx-2026 .mpx-ccomp-card p,
body.mpx-2026 .mpx-contact-intent p,
body.mpx-2026 .mpx-office-card,
body.mpx-2026 .mpx-form-control,
body.mpx-2026 .mpx-form-select {
  font-size: 16.5px !important;
  line-height: 1.78 !important;
}

body.mpx-2026 .mpx-section-sub,
body.mpx-2026 .mpx-section-head > p,
body.mpx-2026 .mpx-about-overview-copy > p,
body.mpx-2026 .mpx-platform-copy > p {
  font-size: 17.5px !important;
  line-height: 1.82 !important;
}

body.mpx-2026 .mpx-section-header h2,
body.mpx-2026 .mpx-section-head h2,
body.mpx-2026 .mpx-platform-copy h2,
body.mpx-2026 .mpx-about-overview-copy h2 {
  font-size: clamp(34px, 3.4vw, 54px) !important;
  line-height: 1.12 !important;
}

body.mpx-2026 .mpx-service-card h3,
body.mpx-2026 .mpx-answer-card strong,
body.mpx-2026 .mpx-ccomp-card h3,
body.mpx-2026 .mpx-process-card h3,
body.mpx-2026 .mpx-contact-intent h3 {
  font-size: 18px !important;
  line-height: 1.35 !important;
}

body.mpx-2026 .mpx-hero-sub,
body.mpx-2026 .mpx-hero-content p {
  max-width: 760px;
  color: rgba(236, 247, 250, .9) !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
  letter-spacing: 0 !important;
  margin-top: 22px !important;
  margin-bottom: 28px !important;
}

body.mpx-2026 .mpx-hero-kicker,
body.mpx-2026 .mpx-eyebrow {
  font-size: 12px !important;
  line-height: 1.45 !important;
  letter-spacing: .09em !important;
}

body.mpx-2026 .mpx-hero-stat strong,
body.mpx-2026 .mpx-hero-stat span,
body.mpx-2026 .mpx-compliance-item,
body.mpx-2026 .mpx-compliance-item span {
  font-size: 15.5px !important;
  line-height: 1.45 !important;
}

/* Dark-section readability fixes: keep operational copy bright enough to read. */
body.mpx-2026 .mpx-workflow-content p,
body.mpx-2026 .mpx-workflow-card p,
body.mpx-2026 .mpx-dark p,
body.mpx-2026 .mpx-cta-copy p,
body.mpx-2026 .cs-pre-footer-copy p {
  color: rgba(232, 244, 249, .9) !important;
  font-size: 18px !important;
  line-height: 1.76 !important;
  letter-spacing: 0 !important;
}

body.mpx-2026 .mpx-workflow-content h3,
body.mpx-2026 .mpx-workflow-card h3,
body.mpx-2026 .mpx-cta-copy h2,
body.mpx-2026 .cs-pre-footer-copy h2 {
  color: #fff !important;
}

body.mpx-2026 .mpx-cta-copy h2,
body.mpx-2026 .cs-pre-footer-copy h2 {
  font-size: clamp(34px, 3.2vw, 48px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body.mpx-2026 .mpx-workflow-number,
body.mpx-2026 .mpx-workflow-card > span {
  color: rgba(143, 233, 231, .42) !important;
}

body.mpx-2026 .mpx-trust-item span,
body.mpx-2026 .mpx-hero-stat span {
  color: rgba(236, 247, 250, .9) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

body.mpx-2026 .mpx-trust-item strong,
body.mpx-2026 .mpx-hero-stat strong {
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
}

body.mpx-2026 .mpx-specialized .mpx-section-head p {
  color: #32485b !important;
  font-size: 20px !important;
  line-height: 1.7 !important;
  max-width: 860px !important;
}

body.mpx-2026 .mpx-spec-group-title {
  color: #60778b !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

body.mpx-2026 .mpx-btn-primary,
body.mpx-2026 .mpx-btn-ghost,
body.mpx-2026 .mpx-btn-outline,
body.mpx-2026 .mpx-form-submit,
body.mpx-2026 .cs-primary-cta,
body.mpx-2026 .cs-secondary-cta {
  font-size: 15px !important;
  line-height: 1.35 !important;
  min-height: 46px;
}

body.mpx-2026 .mpx-form-group label,
body.mpx-2026 .mpx-stat-label,
body.mpx-2026 .mpx-compliance-label {
  font-size: 14px !important;
  line-height: 1.45 !important;
  letter-spacing: .02em !important;
}

/* Homepage team section */
.mpx-team-section {
  background:
    linear-gradient(180deg, #f6fafc 0%, #eef6f8 100%);
}

#our-team.mpx-team-section::before,
#our-team.mpx-team-section::after {
  content: none !important;
  display: none !important;
}

.mpx-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.mpx-team-card {
  background: #fff;
  border: 1px solid rgba(163, 187, 201, .5);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 65px rgba(8, 32, 51, .07);
  transition: transform var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease),
              border-color var(--mx-dur) var(--mx-ease);
}

.mpx-team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,149,122,.42);
  box-shadow: 0 26px 70px rgba(8, 32, 51, .09);
}

.mpx-team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  background: #eaf3f7;
}

.mpx-team-info {
  padding: 28px 28px 30px;
}

.mpx-team-info h3 {
  margin: 0 0 8px;
  color: var(--mx-navy);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
}

.mpx-team-info p {
  margin: 0 0 14px;
  color: var(--mx-emerald);
  font-size: 17px !important;
  font-weight: 800;
  line-height: 1.4 !important;
}

.mpx-team-info span {
  display: block;
  color: #354c5f;
  font-size: 16.5px;
  line-height: 1.72;
}

@media (max-width: 1199px) {
  .mpx-team-grid {
    max-width: 960px;
  }
}

@media (max-width: 991px) {
  .mpx-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mpx-team-grid {
    grid-template-columns: 1fr;
  }
}

.mpx-about-page .mpx-btn-ghost {
  color: var(--mx-navy) !important;
  border-color: rgba(11, 47, 74, .22) !important;
  background: rgba(255,255,255,.72);
}

.mpx-about-page .mpx-btn-ghost:hover,
.mpx-about-page .mpx-btn-ghost:focus {
  color: var(--mx-emerald) !important;
  border-color: rgba(0,149,122,.42) !important;
  background: #fff;
}

.mpx-contact-page .mpx-section-header {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.mpx-contact-intent-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(34px, 4vw, 58px);
}

.mpx-contact-intent .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--mx-emerald-lt);
  color: var(--mx-emerald);
  font-size: 22px;
}

.mpx-contact-grid {
  gap: clamp(32px, 5vw, 72px);
}

.mpx-form-control,
.mpx-form-select {
  min-height: 54px;
  font-size: 1rem;
}

.mpx-form-submit {
  min-height: 56px;
}

@media (max-width: 1199px) {
  .mpx-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mpx-compliance-cards,
  .mpx-contact-intent-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.mpx-2026 {
    font-size: 16px !important;
  }

  .mpx-2026 p,
  .mpx-2026 li {
    font-size: 1rem !important;
    line-height: 1.72 !important;
  }

  .mpx-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .mpx-section-header h2,
  .mpx-section-head h2 {
    font-size: 2rem;
  }

  .mpx-ccomp-card {
    padding: 28px 22px;
  }

  .mpx-ccomp-logo {
    height: 112px;
    margin-bottom: 16px;
  }

  .mpx-ccomp-logo img {
    max-height: 78px;
    max-width: min(100%, 260px);
  }

  .mpx-process-grid {
    grid-template-columns: 1fr;
  }

  .mpx-process-card,
  .mpx-contact-intent {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   21. QA PASS — VISUAL, CONTRAST & LAYOUT FIXES (2026-05-13)
   ═══════════════════════════════════════════════════════════════ */

/* ── 21.1 Team section: neutralise old #our-team background image + overlay ──
   style.css uses ID selector (#our-team) which beats our class selector.
   Defeating it requires #our-team.mpx-team-section specificity. */
#our-team.mpx-team-section {
  background: linear-gradient(175deg, #f4f9fb 0%, #eaf3f6 100%) !important;
  background-image: none !important;
  position: relative !important;
}
#our-team.mpx-team-section::before,
#our-team.mpx-team-section::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-color: transparent !important;
}

/* ── 21.2 Platform section: remove floating-card aesthetic ──
   White cards on var(--mx-surface) = visible "box inside box" effect.
   Replace with a transparent connected list using dividers only. */
.mpx-answer-stack {
  gap: 0;
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  overflow: hidden;
  background: var(--mx-white);
}
.mpx-answer-card {
  background: var(--mx-white);
  border: none;
  border-bottom: 1px solid var(--mx-border);
  border-radius: 0;
  padding: 22px 24px;
  box-shadow: none;
  transition: background var(--mx-dur) var(--mx-ease);
}
.mpx-answer-card:last-child {
  border-bottom: none;
}
.mpx-answer-card:hover {
  background: var(--mx-emerald-lt);
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
.mpx-answer-card:hover .mpx-answer-icon {
  background: var(--mx-emerald);
  color: var(--mx-white);
}

/* ── 21.3 Hero: improve text readability ── */
.mpx-hero-sub {
  color: rgba(255,255,255,.92);
}
.mpx-trust-item span {
  color: rgba(255,255,255,.78);
}
/* Lighten overlay so background image contributes to atmosphere */
.mpx-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(12,35,64,.88) 0%,
    rgba(12,35,64,.70) 52%,
    rgba(14,165,160,.20) 100%
  );
}

/* ── 21.4 Compliance strip: improve label legibility ── */
.mpx-compliance-label {
  color: var(--mx-text-2);
  font-size: 0.8125rem;
}
.mpx-compliance-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mx-text-1);
}

/* ── 21.5 About section cert box: cleaner, less boxy ── */
.mpx-about-certs {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  padding: 14px 20px;
  gap: 24px;
  border-radius: var(--mx-r);
}
.mpx-about-certs img {
  height: 34px;
  opacity: 1;
}

/* ── 21.6 Body text contrast: lift muted paragraphs above AA threshold ── */
body.mpx-2026 p,
.mpx-about-copy > p,
.mpx-platform-copy > p,
.mpx-section-head p,
.mpx-section-header p {
  color: #374151;
}

/* ── 21.7 Answer card typography ── */
.mpx-answer-card strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mx-navy);
}
.mpx-answer-card p {
  font-size: 0.9rem;
  color: #4B5C6B;
  line-height: 1.62;
}

/* ── 21.8 Service cards: tighter, more scannable ── */
.mpx-service-card h3 {
  font-size: 1rem;
  color: var(--mx-navy);
}
.mpx-service-card p {
  font-size: 0.875rem;
  color: #4B5C6B;
  line-height: 1.65;
}

/* ── 21.9 Workflow dark section: sharper contrast ── */
.mpx-workflow-card h3 {
  font-size: 1.0625rem;
  color: #ffffff;
  font-weight: 700;
}
.mpx-workflow-card p {
  color: rgba(255,255,255,.76);
  font-size: 0.9rem;
}
.mpx-workflow-num {
  color: rgba(255,255,255,.13);
}

/* ── 21.10 Team cards: ensure info text is always readable ── */
.mpx-team-info h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--mx-navy);
}
.mpx-team-info p {
  font-size: 1rem !important;
}
.mpx-team-info span {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

/* ── 21.11 CTA box: hero-like white text must stay readable ── */
.mpx-cta-copy p {
  color: rgba(255,255,255,.82);
}

/* ── 21.12 Testimonial text contrast ── */
.mpx-testi-card blockquote {
  color: #1F2937;
}
.mpx-testi-card cite strong {
  color: var(--mx-navy);
}

/* ── 21.13 Section rhythm: slight padding adjustment for visual breathing ── */
.mpx-section {
  padding: 88px 0;
}
@media (max-width: 1024px) {
  .mpx-section { padding: 68px 0; }
}
@media (max-width: 768px) {
  .mpx-section { padding: 56px 0; }
  /* Stack platform grid cleanly on tablet */
  .mpx-platform-grid {
    gap: 36px;
  }
  /* Ensure answer stack fills well on mobile */
  .mpx-answer-stack {
    border-radius: var(--mx-r);
  }
}

/* ── 21.14 Compliance cards responsive: fix 3-col to stack earlier ── */
@media (max-width: 1100px) {
  .mpx-compliance-cards {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }
}

/* ── 21.15 Eyebrow on white backgrounds: ensure sufficient contrast ── */
.mpx-eyebrow {
  color: var(--mx-emerald-dk);
}

/* ═══════════════════════════════════════════════════════════════
   22. FAQ SECTION
   GEO/AEO optimised accordion with FAQPage schema support.
   ═══════════════════════════════════════════════════════════════ */

.mpx-faq-section {
  background: var(--mx-white);
}

.mpx-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  max-width: 1120px;
  margin: 0 auto 48px;
}

.mpx-faq-col {
  display: flex;
  flex-direction: column;
}

.mpx-faq-item {
  border-bottom: 1px solid var(--mx-border);
}

.mpx-faq-item:first-child {
  border-top: 1px solid var(--mx-border);
}

.mpx-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mx-font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--mx-navy);
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
  transition: color var(--mx-dur) var(--mx-ease);
}

.mpx-faq-q:hover,
.mpx-faq-q[aria-expanded="true"] {
  color: var(--mx-emerald-dk);
}

/* Plus/minus icon */
.mpx-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--mx-border);
  border-radius: 50%;
  position: relative;
  transition: border-color var(--mx-dur) var(--mx-ease),
              background var(--mx-dur) var(--mx-ease);
}

.mpx-faq-icon::before,
.mpx-faq-icon::after {
  content: '';
  position: absolute;
  background: var(--mx-navy);
  border-radius: 2px;
  transition: transform var(--mx-dur) var(--mx-ease),
              background var(--mx-dur) var(--mx-ease),
              opacity var(--mx-dur) var(--mx-ease);
}

/* horizontal bar */
.mpx-faq-icon::before {
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* vertical bar */
.mpx-faq-icon::after {
  width: 1.5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mpx-faq-q[aria-expanded="true"] .mpx-faq-icon {
  border-color: var(--mx-emerald);
  background: var(--mx-emerald-lt);
}

.mpx-faq-q[aria-expanded="true"] .mpx-faq-icon::before,
.mpx-faq-q[aria-expanded="true"] .mpx-faq-icon::after {
  background: var(--mx-emerald-dk);
}

.mpx-faq-q[aria-expanded="true"] .mpx-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Answer panel */
.mpx-faq-a {
  display: none;
  padding: 0 0 20px;
}

.mpx-faq-a.is-open {
  display: block;
}

.mpx-faq-a p {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.76;
  margin: 0;
}

/* Bottom CTA */
.mpx-faq-cta {
  text-align: center;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.mpx-faq-cta p {
  width: 100%;
  font-size: 1rem;
  color: var(--mx-text-2);
  margin: 0 0 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .mpx-faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mpx-faq-col:last-child .mpx-faq-item:first-child {
    border-top: none;
  }
}

/* FAQ accordion JS — no-JS fallback removed:
   html.no-js is never cleared on this site so the rule was forcing
   all answers open on every page load. JS is required site-wide. */

/* ═══════════════════════════════════════════════════════════════
   23. MAP SECTION (contact page)
   ═══════════════════════════════════════════════════════════════ */

.mpx-map-section {
  height: 400px;
  overflow: hidden;
  border-top: 1px solid var(--mx-border);
  border-bottom: 1px solid var(--mx-border);
}

.mpx-map-section .container-fluid {
  padding: 0;
  height: 100%;
}

.mpx-map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .mpx-map-section {
    height: 280px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   24. CONTACT PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

.mpx-contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

/* Form panel */
.mpx-contact-form-panel {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-lg);
  padding: 40px 44px;
}

.mpx-contact-form-panel h3 {
  font-family: var(--mx-font);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0 0 8px;
}

.mpx-contact-form-panel > p {
  font-size: 0.9375rem;
  color: var(--mx-text-2);
  line-height: 1.7;
  margin: 0 0 28px;
}

.mpx-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.mpx-form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mx-navy);
  line-height: 1.3;
}

.mpx-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mx-border);
  border-radius: var(--mx-r);
  font-family: var(--mx-font);
  font-size: 0.9375rem;
  color: var(--mx-text-1);
  background: var(--mx-white);
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease);
  outline: none;
}

.mpx-form-control:focus {
  border-color: var(--mx-emerald);
  box-shadow: 0 0 0 3px rgba(0,149,122,.12);
}

.mpx-form-control::placeholder {
  color: var(--mx-text-3);
}

.mpx-form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mx-border);
  border-radius: var(--mx-r);
  font-family: var(--mx-font);
  font-size: 0.9375rem;
  color: var(--mx-text-1);
  background: var(--mx-white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A9BAC' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  transition: border-color var(--mx-dur) var(--mx-ease);
  outline: none;
}

.mpx-form-select:focus {
  border-color: var(--mx-emerald);
  box-shadow: 0 0 0 3px rgba(0,149,122,.12);
}

textarea.mpx-form-control {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.mpx-form-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--mx-emerald);
  color: var(--mx-white);
  border: none;
  border-radius: var(--mx-r);
  font-family: var(--mx-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease);
}

.mpx-form-submit:hover {
  background: var(--mx-emerald-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,149,122,.3);
}

/* Office card sidebar */
.mpx-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mpx-office-card {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mpx-office-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mpx-office-flag {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.mpx-office-card-header h3 {
  font-family: var(--mx-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0 0 4px;
  line-height: 1.3;
}

.mpx-office-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mx-emerald);
  background: var(--mx-emerald-lt);
  padding: 3px 8px;
  border-radius: 100px;
  display: inline-block;
}

.mpx-office-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--mx-text-2);
  line-height: 1.55;
}

.mpx-office-detail .fa {
  color: var(--mx-emerald);
  margin-top: 2px;
  min-width: 14px;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.mpx-office-detail a {
  color: var(--mx-text-1) !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: color var(--mx-dur) var(--mx-ease);
}

.mpx-office-detail a:hover {
  color: var(--mx-emerald) !important;
}

/* Contact trust sidebar */
.mpx-contact-trust {
  background: var(--mx-surface);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 22px 24px;
}

.mpx-contact-trust h4 {
  font-family: var(--mx-font);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mpx-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mpx-trust-list li {
  font-size: 0.875rem;
  color: var(--mx-text-2);
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.4;
}

.mpx-trust-list .fa-check-circle {
  color: var(--mx-emerald);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Contact intent cards */
.mpx-contact-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.mpx-contact-intent {
  background: var(--mx-surface);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 28px;
  text-align: center;
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease);
}

.mpx-contact-intent:hover {
  border-color: var(--mx-emerald);
  box-shadow: var(--mx-shadow-md);
}

.mpx-contact-intent h3 {
  font-family: var(--mx-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 16px 0 8px;
}

.mpx-contact-intent p {
  font-size: 0.875rem;
  color: var(--mx-text-2);
  line-height: 1.65;
  margin: 0;
}

/* Responsive contact */
@media (max-width: 1024px) {
  .mpx-contact-grid {
    grid-template-columns: 1fr;
  }
  .mpx-contact-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .mpx-contact-trust {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .mpx-contact-form-panel {
    padding: 28px 22px;
  }
  .mpx-contact-sidebar {
    grid-template-columns: 1fr;
  }
  .mpx-contact-intent-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   25. ABOUT PAGE PROCESS CARDS
   ═══════════════════════════════════════════════════════════════ */

.mpx-about-process {
  background: var(--mx-surface);
}

.mpx-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mpx-process-card {
  background: var(--mx-white);
  border: 1px solid var(--mx-border);
  border-radius: var(--mx-r-md);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--mx-dur) var(--mx-ease),
              box-shadow var(--mx-dur) var(--mx-ease),
              transform var(--mx-dur) var(--mx-ease);
}

.mpx-process-card:hover {
  border-color: var(--mx-emerald);
  box-shadow: var(--mx-shadow-md);
  transform: translateY(-3px);
}

.mpx-process-card span {
  font-family: var(--mx-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--mx-emerald-lt);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}

.mpx-process-card h3 {
  font-family: var(--mx-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mx-navy);
  margin: 0;
  line-height: 1.3;
}

.mpx-process-card p {
  font-size: 0.875rem;
  color: var(--mx-text-2);
  line-height: 1.68;
  margin: 0;
  flex: 1;
}

@media (max-width: 1024px) {
  .mpx-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .mpx-process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   26. SECTION HEADER (used on sub-pages)
   Distinct from .mpx-section-head used on homepage
   ═══════════════════════════════════════════════════════════════ */

.mpx-section-header {
  max-width: 720px;
  margin: 0 auto 52px;
}

.mpx-section-header h2 {
  font-family: var(--mx-font);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 700;
  color: var(--mx-navy);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
}

.mpx-section-header .mpx-section-sub,
.mpx-section-header p {
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.72;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   27. AEO SECTION RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .mpx-aeo-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   28. ABOUT PAGE STAT NUMBER (different class from homepage)
   ═══════════════════════════════════════════════════════════════ */

.mpx-stat-number {
  font-family: var(--mx-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--mx-white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   29. MISSION CARDS (about page)
   ═══════════════════════════════════════════════════════════════ */

.mpx-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .mpx-mission-grid {
    grid-template-columns: 1fr;
  }
  .mpx-about-overview-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   30. FINAL GLOBAL POLISH
   ═══════════════════════════════════════════════════════════════ */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles for keyboard navigation */
.mpx-2026 a:focus-visible,
.mpx-2026 button:focus-visible {
  outline: 3px solid var(--mx-emerald);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Prevent orphan lines in section heads */
.mpx-section-head h2,
.mpx-section-header h2 {
  text-wrap: balance;
}

/* Inter font weight support — ensure 800 renders bold */
body.mpx-2026 h1,
body.mpx-2026 h2,
body.mpx-2026 .mpx-stat-num,
body.mpx-2026 .mpx-stat-number {
  font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Container max-width consistency */
.mpx-2026 .container {
  max-width: 1240px;
}

/* Reduce hero min-height on landscape mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .mpx-hero {
    min-height: 100svh;
  }
}

/* Improve hero image rendering on retina */
.mpx-hero-bg {
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 31 — Enterprise Redesign 2026-r20
   Typography · Compliance Authority · Visual System · Pages
   ══════════════════════════════════════════════════════════════ */

/* ── 31.1 Global Typography Scale ─────────────────────────── */

/* Base body text — readable on laptop/monitor/tablet */
body.mpx-2026,
body.mpx-2026 p,
body.mpx-2026 li {
  font-size: 1.0625rem;
  line-height: 1.82;
}

/* Section body paragraphs — improved paragraph width + spacing */
body.mpx-2026 .mpx-section p,
body.mpx-2026 .mpx-about-copy > p,
body.mpx-2026 .mpx-platform-copy > p,
body.mpx-2026 .mpx-section-sub,
body.mpx-2026 .mpx-section-head p {
  font-size: 1.0625rem !important;
  line-height: 1.82 !important;
  color: var(--mx-text-2);
  margin-bottom: 1.25em;
}

/* H1 — hero headline */
body.mpx-2026 h1,
body.mpx-2026 .mpx-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.625rem) !important;
  line-height: 1.09 !important;
  letter-spacing: -0.028em !important;
  font-weight: 800 !important;
}

/* H2 — section headlines: strong, readable, enterprise */
body.mpx-2026 h2,
body.mpx-2026 .mpx-section h2,
body.mpx-2026 .mpx-about-copy h2,
body.mpx-2026 .mpx-platform-copy h2,
body.mpx-2026 .mpx-section-head h2,
body.mpx-2026 .mpx-section-header h2,
body.mpx-2026 #about-heading,
body.mpx-2026 #compliance-title {
  font-size: clamp(1.875rem, 3.2vw, 2.625rem) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.022em !important;
  font-weight: 700 !important;
  color: var(--mx-navy) !important;
}

/* H3 — card and block headings */
body.mpx-2026 h3,
body.mpx-2026 .mpx-ccomp-card h3,
body.mpx-2026 .mpx-feature-card h3,
body.mpx-2026 .mpx-service-card h3 {
  font-size: clamp(1.1875rem, 1.8vw, 1.4375rem) !important;
  line-height: 1.28 !important;
  letter-spacing: -0.015em !important;
  font-weight: 700 !important;
  color: var(--mx-navy) !important;
}

/* ── Footer colour overrides: undo global navy/dark text in footer ── */
#footer h3,
#footer .mpx-footer-col-title {
  color: rgba(255,255,255,.78) !important;
  font-size: 0.75rem !important;
}
#footer p,
#footer .mpx-footer-copy,
#footer .mpx-footer-brand p {
  color: rgba(255,255,255,.55) !important;
  font-size: 0.875rem !important;
  line-height: 1.72 !important;
}
#footer .mpx-footer-copy {
  font-size: 0.8125rem !important;
}
#footer h2 {
  color: var(--mx-white) !important;
}

/* Section rhythm — more breathing room */
body.mpx-2026 .mpx-section {
  padding: 104px 0 !important;
}

/* Eyebrow labels — slightly larger */
body.mpx-2026 .mpx-eyebrow {
  font-size: 0.75rem !important;
  letter-spacing: 0.13em !important;
}

/* Section header spacing */
body.mpx-2026 .mpx-section-header {
  margin-bottom: 64px !important;
}
body.mpx-2026 .mpx-section-head {
  margin-bottom: 64px !important;
}

/* ── 31.2 Compliance Authority Strip (hero strip) ────────── */

/* Bigger strip + more weight */
body.mpx-2026 .mpx-compliance {
  padding: 28px 0 !important;
  border-bottom: 1px solid var(--mx-border);
  background: #fff;
}

body.mpx-2026 .mpx-compliance-item img {
  height: 52px !important;
  width: auto !important;
  max-width: 180px !important;
  opacity: 1 !important;
  filter: none !important;
}

body.mpx-2026 .mpx-compliance-item span {
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  color: var(--mx-navy) !important;
}

body.mpx-2026 .mpx-compliance-label {
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  color: var(--mx-text-2) !important;
}

body.mpx-2026 .mpx-compliance-sep {
  height: 40px !important;
}

/* ── 31.3 Compliance Showcase Cards (NABIDH/Riayati/Malaffi) */

body.mpx-2026 .mpx-compliance-showcase {
  padding: 112px 0 !important;
  background:
    radial-gradient(ellipse 60% 40% at 8% 15%, rgba(0,149,122,.07), transparent),
    radial-gradient(ellipse 50% 35% at 92% 85%, rgba(14,165,160,.06), transparent),
    linear-gradient(180deg, #f4f8fb 0%, #edf3f8 100%) !important;
}

body.mpx-2026 .mpx-compliance-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
}

body.mpx-2026 .mpx-ccomp-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  padding: 40px 36px !important;
  border-radius: 20px !important;
  background: #fff !important;
  border: 1px solid rgba(200,220,235,.6) !important;
  box-shadow: 0 8px 32px rgba(8,32,51,.07), 0 2px 8px rgba(8,32,51,.04) !important;
  transition: transform 220ms ease, box-shadow 220ms ease !important;
}

body.mpx-2026 .mpx-ccomp-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 56px rgba(8,32,51,.11), 0 4px 16px rgba(8,32,51,.06) !important;
}

/* Logo container — prominent, centred, generous */
body.mpx-2026 .mpx-ccomp-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 120px !important;
  padding: 20px 24px !important;
  margin-bottom: 8px !important;
  border-radius: 14px !important;
  background: linear-gradient(160deg, #f8fcff 0%, #edf5fa 100%) !important;
  border: 1px solid rgba(14,165,160,.14) !important;
  box-shadow: inset 0 1px 3px rgba(255,255,255,.9) !important;
}

/* Logo images — much larger, visible */
body.mpx-2026 .mpx-ccomp-logo img {
  display: block !important;
  height: auto !important;
  max-height: 80px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 1 !important;
}

/* Fallback text if image fails */
body.mpx-2026 .mpx-ccomp-logo span,
body.mpx-2026 .mpx-ccomp-logo-text {
  font-size: 2.25rem !important;
  font-weight: 900 !important;
  color: var(--mx-navy) !important;
  letter-spacing: -0.03em !important;
  font-family: var(--mx-font) !important;
}

/* Badge styling */
body.mpx-2026 .mpx-ccomp-badge {
  padding: 6px 14px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  background: var(--mx-emerald-lt) !important;
  color: var(--mx-emerald) !important;
  border-radius: 100px !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  width: fit-content !important;
}

/* Authority label */
body.mpx-2026 .mpx-ccomp-authority {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--mx-teal) !important;
  line-height: 1.3 !important;
}

/* Card h3 */
body.mpx-2026 .mpx-ccomp-card h3 {
  font-size: 1.375rem !important;
  font-weight: 700 !important;
  color: var(--mx-navy) !important;
  margin: 4px 0 0 !important;
}

/* Card description text */
body.mpx-2026 .mpx-ccomp-card p {
  font-size: 1rem !important;
  line-height: 1.78 !important;
  color: var(--mx-text-2) !important;
  flex: 1 !important;
  margin: 0 !important;
}

/* Card link */
body.mpx-2026 .mpx-ccomp-link {
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  color: var(--mx-emerald) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 8px !important;
  transition: gap 200ms ease, color 200ms ease !important;
}

body.mpx-2026 .mpx-ccomp-link:hover {
  gap: 10px !important;
  color: var(--mx-emerald-dk) !important;
}

/* ── 31.4 About Section Typography Fix ──────────────────── */

/* Fix the 20px h2 override on the about section */
body.mpx-2026 #about-us .mpx-about-copy h2,
body.mpx-2026 .mpx-about-copy h2 {
  font-size: clamp(1.875rem, 3.2vw, 2.625rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.022em !important;
  font-weight: 700 !important;
  color: var(--mx-navy) !important;
  margin-bottom: 20px !important;
}

body.mpx-2026 .mpx-about-copy > p {
  font-size: 1.0625rem !important;
  line-height: 1.82 !important;
  margin-bottom: 20px !important;
}

body.mpx-2026 .mpx-about-list li {
  font-size: 1rem !important;
  line-height: 1.68 !important;
  color: var(--mx-text-1) !important;
}

/* About page overview image */
body.mpx-2026 .mpx-about-overview-grid {
  gap: clamp(48px, 7vw, 96px) !important;
}

/* ── 31.5 Platform / Feature Cards ──────────────────────── */

body.mpx-2026 .mpx-answer-card {
  padding: 28px 28px !important;
  gap: 18px !important;
}

body.mpx-2026 .mpx-answer-card strong {
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  color: var(--mx-navy) !important;
}

body.mpx-2026 .mpx-answer-card p {
  font-size: 0.9375rem !important;
  line-height: 1.72 !important;
  color: var(--mx-text-2) !important;
  margin: 0 !important;
}

/* ── 31.6 Stats Strip ────────────────────────────────────── */

body.mpx-2026 .mpx-stat-number,
body.mpx-2026 .mpx-stat-num {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

body.mpx-2026 .mpx-stat-label {
  font-size: 0.9375rem !important;
  line-height: 1.5 !important;
}

/* ── 31.7 Trust Items (Hero strip) ──────────────────────── */

body.mpx-2026 .mpx-trust-item strong {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
}

body.mpx-2026 .mpx-trust-item span {
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
}

/* ── 31.8 Section Headers ────────────────────────────────── */

body.mpx-2026 .mpx-section-header h2,
body.mpx-2026 .mpx-section-head h2 {
  font-size: clamp(1.875rem, 3.2vw, 2.625rem) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.022em !important;
  font-weight: 700 !important;
  color: var(--mx-navy) !important;
}

body.mpx-2026 .mpx-section-sub {
  font-size: 1.0625rem !important;
  line-height: 1.78 !important;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── 31.9 Contact Page ───────────────────────────────────── */

/* Contact intent grid */
body.mpx-2026 .mpx-contact-intent-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin-bottom: 64px !important;
}

body.mpx-2026 .mpx-contact-intent {
  padding: 32px 28px !important;
  border-radius: 16px !important;
  background: #fff !important;
  border: 1px solid var(--mx-border) !important;
  box-shadow: var(--mx-shadow-sm) !important;
  transition: transform 200ms ease, box-shadow 200ms ease !important;
}

body.mpx-2026 .mpx-contact-intent:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--mx-shadow-md) !important;
}

body.mpx-2026 .mpx-contact-intent .fa {
  font-size: 1.625rem !important;
  color: var(--mx-emerald) !important;
  margin-bottom: 16px !important;
  display: block !important;
}

body.mpx-2026 .mpx-contact-intent h3 {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: var(--mx-navy) !important;
  margin: 0 0 10px !important;
}

body.mpx-2026 .mpx-contact-intent p {
  font-size: 0.9375rem !important;
  line-height: 1.7 !important;
  color: var(--mx-text-2) !important;
  margin: 0 !important;
}

/* Contact grid layout */
body.mpx-2026 .mpx-contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 420px !important;
  gap: 56px !important;
  align-items: start !important;
}

/* Form panel */
body.mpx-2026 .mpx-contact-form-panel {
  background: #fff !important;
  border: 1px solid var(--mx-border) !important;
  border-radius: 20px !important;
  padding: 48px 44px !important;
  box-shadow: var(--mx-shadow-sm) !important;
}

body.mpx-2026 .mpx-contact-form-panel h3 {
  font-size: 1.625rem !important;
  font-weight: 700 !important;
  color: var(--mx-navy) !important;
  margin: 0 0 10px !important;
}

body.mpx-2026 .mpx-contact-form-panel > p {
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: var(--mx-text-2) !important;
  margin-bottom: 32px !important;
}

/* Form controls */
body.mpx-2026 .mpx-form-group {
  margin-bottom: 20px !important;
}

body.mpx-2026 .mpx-form-group label {
  display: block !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--mx-navy) !important;
  margin-bottom: 7px !important;
  letter-spacing: 0.01em !important;
}

body.mpx-2026 .mpx-form-control,
body.mpx-2026 .mpx-form-select {
  width: 100% !important;
  padding: 13px 16px !important;
  border: 1.5px solid var(--mx-border) !important;
  border-radius: var(--mx-r) !important;
  font-family: var(--mx-font) !important;
  font-size: 1rem !important;
  color: var(--mx-text-1) !important;
  background: #fff !important;
  transition: border-color 180ms ease, box-shadow 180ms ease !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

body.mpx-2026 .mpx-form-control:focus,
body.mpx-2026 .mpx-form-select:focus {
  border-color: var(--mx-emerald) !important;
  box-shadow: 0 0 0 3px rgba(0,149,122,.12) !important;
}

body.mpx-2026 .mpx-form-control[name="message"] {
  min-height: 130px !important;
  resize: vertical !important;
}

body.mpx-2026 .mpx-form-submit {
  width: 100% !important;
  padding: 16px 24px !important;
  background: var(--mx-emerald) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--mx-r) !important;
  font-family: var(--mx-font) !important;
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease !important;
  margin-top: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

body.mpx-2026 .mpx-form-submit:hover {
  background: var(--mx-emerald-dk) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,149,122,.3) !important;
}

/* Office cards */
body.mpx-2026 .mpx-office-card {
  padding: 28px 28px !important;
  border-radius: 16px !important;
  background: #fff !important;
  border: 1px solid var(--mx-border) !important;
  box-shadow: var(--mx-shadow-sm) !important;
  margin-bottom: 20px !important;
}

body.mpx-2026 .mpx-office-card-header {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--mx-border) !important;
}

body.mpx-2026 .mpx-office-card-header h3 {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: var(--mx-navy) !important;
  margin: 0 0 4px !important;
}

body.mpx-2026 .mpx-office-flag {
  font-size: 2rem !important;
  line-height: 1 !important;
}

body.mpx-2026 .mpx-office-badge {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: var(--mx-emerald) !important;
  letter-spacing: 0.05em !important;
}

body.mpx-2026 .mpx-office-detail {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
  font-size: 0.9375rem !important;
  color: var(--mx-text-2) !important;
  line-height: 1.65 !important;
}

body.mpx-2026 .mpx-office-detail .fa {
  color: var(--mx-emerald) !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
  font-size: 1rem !important;
}

body.mpx-2026 .mpx-office-detail a {
  color: var(--mx-navy) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

body.mpx-2026 .mpx-office-detail a:hover {
  color: var(--mx-emerald) !important;
}

/* Trust list */
body.mpx-2026 .mpx-contact-trust {
  background: linear-gradient(160deg, var(--mx-navy) 0%, var(--mx-navy-mid) 100%) !important;
  border-radius: 16px !important;
  padding: 28px 28px !important;
  margin-top: 20px !important;
}

body.mpx-2026 .mpx-contact-trust h4 {
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 18px !important;
}

body.mpx-2026 .mpx-trust-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

body.mpx-2026 .mpx-trust-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 0.9375rem !important;
  color: rgba(255,255,255,.88) !important;
  line-height: 1.55 !important;
}

body.mpx-2026 .mpx-trust-list .fa-check-circle {
  color: var(--mx-emerald) !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
  font-size: 1rem !important;
}

/* ── 31.10 About Page Specific ───────────────────────────── */

body.mpx-2026 .mpx-about-page .mpx-stats {
  padding: 72px 0 !important;
}

body.mpx-2026 .mpx-mission-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 36px !important;
}

body.mpx-2026 .mpx-mission-card {
  padding: 44px 40px !important;
  border-radius: 20px !important;
  background: linear-gradient(160deg, #f7fbff 0%, #eef4fa 100%) !important;
  border: 1px solid rgba(200,220,235,.7) !important;
  box-shadow: 0 4px 24px rgba(8,32,51,.05) !important;
}

body.mpx-2026 .mpx-process-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

body.mpx-2026 .mpx-process-card {
  padding: 36px 28px !important;
  border-radius: 18px !important;
  background: #fff !important;
  border: 1px solid var(--mx-border) !important;
  box-shadow: var(--mx-shadow-sm) !important;
  transition: transform 220ms ease, box-shadow 220ms ease !important;
}

body.mpx-2026 .mpx-process-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--mx-shadow-md) !important;
}

body.mpx-2026 .mpx-process-card > span {
  display: block !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: var(--mx-emerald) !important;
  opacity: 0.25 !important;
  line-height: 1 !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.04em !important;
  font-family: var(--mx-font) !important;
}

body.mpx-2026 .mpx-process-card h3 {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: var(--mx-navy) !important;
  margin: 0 0 12px !important;
}

body.mpx-2026 .mpx-process-card p {
  font-size: 0.9375rem !important;
  line-height: 1.72 !important;
  color: var(--mx-text-2) !important;
  margin: 0 !important;
}

/* ── 31.11 Compliance Card Images — force-reload helper ──── */

/* Ensure images in ccomp-logo always show even if naturalSize is 0 */
body.mpx-2026 .mpx-ccomp-logo img[src] {
  min-height: 40px !important;
  min-width: 80px !important;
}

/* ── 31.12 Responsive — Tablet & Mobile ─────────────────── */

@media (max-width: 1100px) {
  body.mpx-2026 .mpx-compliance-cards {
    grid-template-columns: 1fr !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    gap: 20px !important;
  }

  body.mpx-2026 .mpx-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  body.mpx-2026 .mpx-contact-intent-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body.mpx-2026 .mpx-process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.mpx-2026 .mpx-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 768px) {
  body.mpx-2026 .mpx-section {
    padding: 72px 0 !important;
  }

  body.mpx-2026 h2,
  body.mpx-2026 .mpx-about-copy h2,
  body.mpx-2026 #about-heading {
    font-size: 1.75rem !important;
  }

  body.mpx-2026 .mpx-contact-form-panel {
    padding: 32px 24px !important;
  }

  body.mpx-2026 .mpx-compliance-item img {
    height: 40px !important;
  }

  body.mpx-2026 .mpx-ccomp-logo {
    height: 100px !important;
  }

  body.mpx-2026 .mpx-ccomp-logo img {
    max-height: 64px !important;
  }

  body.mpx-2026 .mpx-process-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── 31.13 Map section ───────────────────────────────────── */

body.mpx-2026 .mpx-map-section iframe {
  height: 420px !important;
  width: 100% !important;
  border: 0 !important;
  display: block !important;
}

/* ── 31.14 Footer brand description ─────────────────────── */

body.mpx-2026 .mpx-footer-brand p {
  font-size: 0.9375rem !important;
  line-height: 1.78 !important;
  color: rgba(255,255,255,.7) !important;
}

/* ── 31.15 CTA sections ──────────────────────────────────── */

body.mpx-2026 .mpx-cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
}

body.mpx-2026 .mpx-cta-section p {
  font-size: 1.0625rem !important;
  line-height: 1.78 !important;
}

/* ── 31.16 Service + Specialty Cards ────────────────────── */

body.mpx-2026 .mpx-service-card,
body.mpx-2026 .mpx-feature-card {
  padding: 32px 28px !important;
  border-radius: 18px !important;
  transition: transform 220ms ease, box-shadow 220ms ease !important;
}

body.mpx-2026 .mpx-service-card:hover,
body.mpx-2026 .mpx-feature-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--mx-shadow-md) !important;
}

body.mpx-2026 .mpx-service-card p,
body.mpx-2026 .mpx-feature-card p {
  font-size: 0.9375rem !important;
  line-height: 1.72 !important;
}

/* ── End Section 31 ─────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════
   SECTION 32 — READABILITY & CONTRAST CORRECTION PASS
   Root font-size is 10px so rem-based values render ~37% smaller
   than intended. This section uses px values for predictability.
   ═══════════════════════════════════════════════════════════════ */

/* ── 32.1 Dark-section contrast fixes ───────────────────────── */

/* Workflow section: navy bg — make all text white */
body.mpx-2026 .mpx-workflows .mpx-section-head h2,
body.mpx-2026 .mpx-workflows .mpx-section-header h2,
body.mpx-2026 .mpx-workflows h2 {
  color: #fff !important;
}
body.mpx-2026 .mpx-workflows .mpx-section-head p,
body.mpx-2026 .mpx-workflows .mpx-section-header p,
body.mpx-2026 .mpx-workflows .mpx-eyebrow {
  color: rgba(212, 236, 244, 0.88) !important;
}
body.mpx-2026 .mpx-workflows .mpx-workflow-num {
  color: var(--mx-emerald) !important;
}
body.mpx-2026 .mpx-workflows .mpx-workflow-card h3 {
  color: #fff !important;
  font-size: 17px !important;
}
body.mpx-2026 .mpx-workflows .mpx-workflow-card p {
  color: rgba(212, 236, 244, 0.82) !important;
  font-size: 15px !important;
}

/* CTA box: navy gradient bg — make heading and eyebrow white */
body.mpx-2026 .mpx-cta-box h2,
body.mpx-2026 .mpx-cta-copy h2,
body.mpx-2026 .cs-pre-footer-copy h2 {
  color: #fff !important;
  font-size: clamp(28px, 3.2vw, 44px) !important;
}
body.mpx-2026 .mpx-cta-box .mpx-eyebrow,
body.mpx-2026 .mpx-cta-copy .mpx-eyebrow {
  color: rgba(125, 211, 200, 0.9) !important;
}
body.mpx-2026 .mpx-cta-box p,
body.mpx-2026 .mpx-cta-copy p {
  color: rgba(220, 240, 248, 0.88) !important;
  font-size: 18px !important;
}

/* ── 32.2 Card text sizing (px to bypass 10px root) ─────────── */

/* Service cards */
body.mpx-2026 .mpx-service-card h3 {
  font-size: 17px !important;
  line-height: 1.32 !important;
}
body.mpx-2026 .mpx-service-card p,
body.mpx-2026 .mpx-feature-card p {
  font-size: 15px !important;
  line-height: 1.70 !important;
}

/* Specialized modules cards */
body.mpx-2026 #specialized-modules .mpx-answer-card h3,
body.mpx-2026 #specialized-modules h3 {
  font-size: 15px !important;
  line-height: 1.32 !important;
  color: var(--mx-navy) !important;
}

/* Section body paragraphs — px override for 10px root env */
body.mpx-2026 .mpx-section p,
body.mpx-2026 .mpx-section li {
  font-size: 17px !important;
  line-height: 1.80 !important;
}

/* Section header sub-text */
body.mpx-2026 .mpx-section-sub,
body.mpx-2026 .mpx-section-head > p,
body.mpx-2026 .mpx-section-header > p {
  font-size: 18px !important;
  line-height: 1.78 !important;
}

/* ── 32.3 FAQ sizing ─────────────────────────────────────────── */
body.mpx-2026 .mpx-faq-q {
  font-size: 17px !important;
  line-height: 1.48 !important;
}
body.mpx-2026 .mpx-faq-a,
body.mpx-2026 .mpx-faq-a p {
  font-size: 16px !important;
  line-height: 1.76 !important;
}

/* ── 32.4 Team cards — center all text ──────────────────────── */
.mpx-team-card .mpx-team-info,
.mpx-team-info h3,
.mpx-team-info p,
.mpx-team-info span {
  text-align: center !important;
}
.mpx-team-info {
  display: flex;
  flex-direction: column;
  align-items: center !important;
}

/* ── 32.5 About overview section paragraph ───────────────────── */
body.mpx-2026 .mpx-about-overview-copy p,
body.mpx-2026 .mpx-about-copy p {
  font-size: 17px !important;
  line-height: 1.80 !important;
}

/* ── 32.6 Hero CTA buttons — slightly larger, more prominent ── */
body.mpx-2026 .mpx-btn-primary,
body.mpx-2026 .mpx-btn-ghost,
body.mpx-2026 .mpx-btn-secondary {
  font-size: 16px !important;
  padding: 14px 28px !important;
  min-height: 52px !important;
}

/* ── 32.7 Nav link sizing ────────────────────────────────────── */
body.mpx-2026 .cs-nav-link > a {
  font-size: 15px !important;
}

/* ── 32.8 Responsive adjustments ───────────────────────────── */
@media (max-width: 768px) {
  body.mpx-2026 .mpx-section p,
  body.mpx-2026 .mpx-section li {
    font-size: 16px !important;
  }
  body.mpx-2026 .mpx-service-card h3 { font-size: 16px !important; }
  body.mpx-2026 .mpx-service-card p  { font-size: 14px !important; }
  body.mpx-2026 .mpx-faq-q           { font-size: 16px !important; }
}

/* ── End Section 32 ─────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════
   SECTION 33 — FOOTER & TEAM CARD FONT-SIZE FIXES
   Root font-size is 10px so rem values render ~37% smaller than
   intended. All sizes here use px for predictability.
   ═══════════════════════════════════════════════════════════════ */

/* ── 33.1 Footer contact bar ─────────────────────────────────── */
#footer .mpx-fcontact-text small,
#footer .mpx-fcontact-text > small {
  font-size: 12px !important;
}
#footer .mpx-fcontact-text strong {
  font-size: 15px !important;
}

/* ── 33.2 Footer brand column ────────────────────────────────── */
#footer .mpx-footer-brand p,
#footer .mpx-footer-brand [itemprop="description"] {
  font-size: 15px !important;
  line-height: 1.72 !important;
}

/* ── 33.3 Footer address lines ───────────────────────────────── */
#footer .mpx-footer-address-item,
#footer .mpx-footer-address-item span,
#footer .mpx-footer-address-item a {
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* ── 33.4 Footer column headings ─────────────────────────────── */
#footer .mpx-footer-col-title {
  font-size: 14px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* ── 33.5 Footer nav links ───────────────────────────────────── */
#footer .mpx-footer-links a,
#footer .mpx-footer-links li {
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* ── 33.6 Footer bottom bar ──────────────────────────────────── */
#footer .mpx-footer-copy,
#footer .mpx-footer-copy a,
#footer .mpx-footer-bottom p {
  font-size: 13px !important;
}

/* ── 33.7 Footer demo button ─────────────────────────────────── */
#footer .mpx-footer-demo-btn {
  font-size: 15px !important;
}

/* ── 33.8 Team card text sizing ──────────────────────────────── */
body.mpx-2026 .mpx-team-info h3,
.mpx-team-card .mpx-team-info h3 {
  font-size: 20px !important;
  line-height: 1.30 !important;
  color: var(--mx-navy) !important;
}
body.mpx-2026 .mpx-team-info span,
.mpx-team-card .mpx-team-info span {
  font-size: 14px !important;
  line-height: 1.55 !important;
}
body.mpx-2026 .mpx-team-info p,
.mpx-team-card .mpx-team-info p {
  font-size: 15px !important;
  line-height: 1.70 !important;
}

/* ── 33.9 AEO cards (before footer) ─────────────────────────── */
.mpx-aeo-label {
  font-size: 11px !important;
}
.mpx-aeo-card h2 {
  font-size: 22px !important;
  line-height: 1.28 !important;
}
.mpx-aeo-card p {
  font-size: 16px !important;
  line-height: 1.72 !important;
}

/* ── End Section 33 ─────────────────────────────────────── */

