/* Patches so the saved Seon snapshot works as a static page. */
html {
  scroll-behavior: auto;
  overflow-anchor: none;
}

body {
  overflow-x: hidden;
}

.pxl-loader,
.ct-demo-toolbar,
.ct-demo-toolbar.position-right {
  display: none !important;
}

.elementor-section-stretched,
.elementor-section-stretched.elementor-section {
  width: 100% !important;
  left: 0 !important;
  max-width: 100% !important;
}

/* The MDM shell owns the header and hero; the template originals are retired. */
#pxl-header-elementor,
#pxl-header-mobile,
.pxl-slide-custom {
  display: none !important;
}

.pxl-logo img {
  max-height: 64px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

/* Do not hide .wow in CSS — content must stay visible if JS is off. */
.wow.animated,
.elementor-widget-container .wow.animated {
  visibility: visible;
}

.animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

.skewIn {
  animation-name: pxlSkewIn;
}

.skewInRight {
  animation-name: pxlSkewInRight;
}

.slide-up-down {
  animation: pxl_float_two 1.2s ease infinite alternate;
}

.slide-left-to-right {
  animation: pxl_left_right 12s ease-out infinite;
}

.pxl-image-tilt {
  transition: transform 0.35s ease;
}

[data-animation="pxl-xspin"]:hover {
  animation: pxl_spin 0.8s linear;
}

@media (prefers-reduced-motion: reduce) {
  .wow,
  .animated,
  .slide-up-down,
  .slide-left-to-right,
  rs-layer,
  .rs-layer {
    animation: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.pxl-grid,
.pxl-grid-inner,
.pxl-grid-filter,
.pxl-grid-item,
.pxl-grid-filter .filter-item {
  overflow-anchor: none;
}

.pxl-grid-filter .filter-item {
  cursor: pointer;
}

.pxl-swiper-arrow,
.pxl-swiper-arrow-prev,
.pxl-swiper-arrow-next {
  cursor: pointer;
}

.pxl-accordion--title {
  cursor: pointer;
}

.pxl--item.active .pxl-accordion--content,
.pxl-accordion--content:not(.sf-hidden) {
  display: block;
}

.mdm-faq {
  max-width: 100%;
}

.mdm-faq .pxl--item {
  max-width: 100%;
}

.mdm-faq .pxl-accordion--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.mdm-faq .pxl-accordion--content {
  display: block !important;
  overflow: hidden;
  height: 0;
  max-height: none !important;
}

.mdm-faq .mdm-faq-clip {
  overflow: hidden;
}

.mdm-faq .mdm-faq-inner {
  padding: 12px 0 6px;
  color: #3a4663;
  line-height: 1.7;
}

.mdm-faq .pxl-icon--action {
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mdm-faq .pxl--item.active .pxl-icon--action {
  transform: rotate(45deg);
}

.mdm-faq .pxl-title--text,
.mdm-faq .mdm-faq-inner {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mdm-faq .pxl-title--text {
  flex: 1;
  min-width: 0;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  .mdm-faq .pxl-accordion--content,
  .mdm-faq .pxl-icon--action {
    transition: none;
  }

  .mdm-faq .pxl--item.active .pxl-accordion--content {
    height: auto;
  }
}

body.is-locked {
  overflow: hidden;
}

/* Stats panel — only this section uses the dark card treatment. */
.mdm-stats-host > .elementor-container {
  display: none !important;
}

.mdm-stats {
  --mdm-ink: #141416;
  --mdm-mute: #c4bdb0;
  --mdm-orange-1: #d9351f;
  --mdm-orange-3: #f58b4e;
  --mdm-orange-4: #fdc68a;
  padding: 56px 40px 48px;
  position: relative;
  z-index: 5;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
}

.mdm-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--mdm-ink);
  border-radius: 36px;
  padding: 80px 60px;
  color: #f4edde;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  box-shadow: 0 40px 80px -30px rgba(20, 8, 0, 0.45),
    0 16px 32px -12px rgba(20, 8, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -3px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.mdm-stats-inner::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 90, 43, 0.35), transparent 65%);
  top: -200px;
  right: -100px;
  filter: blur(40px);
  pointer-events: none;
}

.mdm-stats-inner::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 198, 138, 0.2), transparent 65%);
  bottom: -150px;
  left: 20%;
  filter: blur(30px);
  pointer-events: none;
}

.mdm-stats-copy {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
}

.mdm-stats h2 {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: #f4edde;
}

.mdm-stats-lede {
  margin: 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.55;
  color: #d9d0c4;
}

.mdm-stat {
  position: relative;
  z-index: 1;
}

.mdm-stat .num {
  font-weight: 700;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.mdm-stat .num small {
  font-size: 0.42em;
  color: var(--mdm-mute);
  font-weight: 500;
}

.mdm-stat .lbl {
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--mdm-mute);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .mdm-stats-inner {
    grid-template-columns: 1fr 1fr;
    padding: 50px 30px;
  }

  .mdm-stats-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 750px) {
  .mdm-stats {
    padding: 20px 20px 60px;
  }

  .mdm-stats-inner {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px;
    gap: 24px;
    border-radius: 24px;
  }
}

.mdm-pricing-scope {
  overflow: visible !important;
}

/* Team band — heading, then the group photo full width, then the four claims.
   The three inner columns share one nowrap flex row, so wrapping is opened up
   before the widths can take effect. */
.mdm-band .elementor-inner-section > .elementor-container {
  flex-wrap: wrap;
}

.mdm-band-photo-col {
  order: 2;
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 46px;
}

.mdm-band-item-col {
  order: 3;
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 50% !important;
}

/* Half a 1200px row is far wider than these claims need. */
.mdm-band-item-col .pxl-service-custom {
  max-width: 480px;
}

/* Authored glyphs replace the template's baked-in icon PNGs so all four claims
   share one stroke weight. */
.mdm-claim-icon.pxl-item--imgprimary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background: linear-gradient(140deg, #3b82f6 0%, #2563eb 52%, #6d5ce7 100%);
  box-shadow: 0 12px 22px -14px rgba(37, 99, 235, 0.75);
  color: #fff;
}

.mdm-claim-icon.pxl-item--imgprimary svg {
  width: 24px;
  height: 24px;
  display: block;
}

.mdm-band-item-col .pxl-item-title a {
  cursor: default;
}

.mdm-band-photo-col .pxl-item--image,
.mdm-band-photo-col .elementor-widget-container {
  text-align: center;
}

img.mdm-band-photo {
  display: block;
  width: 100%;
  max-width: 1080px;
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  /* The template blob is a mask on the widget, not part of the asset. */
  mask: none !important;
  -webkit-mask-image: none !important;
  clip-path: none !important;
  box-shadow: 0 34px 64px -34px rgba(15, 33, 74, 0.5);
}

@media (max-width: 767px) {
  .mdm-band-item-col {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .mdm-band-photo-col {
    margin-bottom: 32px;
  }

  img.mdm-band-photo {
    border-radius: 16px;
  }
}

.mdm-seo-band form {
  pointer-events: none;
  user-select: none;
}

.mdm-team-host > .elementor-container {
  display: none !important;
}

.mdm-team-host {
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  background: #f4f7fc !important;
}

.mdm-team {
  --ink: #12213f;
  --ink-soft: #4d5a73;
  --blue: #2563eb;
  padding: 56px 24px 64px;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(80% 60% at 12% 0%, #e8f0ff 0%, transparent 55%),
    #f4f7fc;
  position: relative;
  z-index: 5;
}

.mdm-team *,
.mdm-team *::before,
.mdm-team *::after {
  box-sizing: border-box;
}

.mdm-team-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.mdm-who {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  padding: 28px 22px 30px;
  border-radius: 28px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 55%),
    #fff;
  box-shadow: 0 28px 60px -36px rgba(15, 33, 74, 0.45);
  overflow: hidden;
}

.mdm-who-copy {
  max-width: 34em;
}

.mdm-who-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.mdm-who-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--ink);
}

.mdm-who-copy h2 span {
  color: var(--blue);
}

.mdm-who-copy > p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.mdm-who-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mdm-who-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 33, 63, 0.1);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px -20px rgba(15, 33, 74, 0.45);
  transition:
    border-color 0.25s ease,
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mdm-who-chip:hover,
.mdm-who-chip:focus-visible {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 18px 32px -22px rgba(37, 99, 235, 0.55);
}

.mdm-who-chip-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eaf2ff;
  color: var(--blue);
  flex: 0 0 auto;
}

.mdm-who-chip-ico svg {
  width: 18px;
  height: 18px;
}

.mdm-who-visual {
  position: relative;
  min-width: 0;
}

.mdm-who-frame {
  --color1: #00e7ff;
  --color2: #2563eb;
  position: relative;
  isolation: isolate;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), transparent 40%),
    radial-gradient(circle at 18% 22%, rgba(37, 99, 235, 0.18) 0 1.5px, transparent 2px),
    radial-gradient(circle at 72% 38%, rgba(37, 99, 235, 0.14) 0 1.5px, transparent 2px),
    radial-gradient(circle at 40% 78%, rgba(37, 99, 235, 0.12) 0 1.5px, transparent 2px),
    #eef3fb;
  box-shadow: 0 24px 48px -28px rgba(15, 33, 74, 0.55);
  transform-style: preserve-3d;
}

.mdm-who-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}

.mdm-who-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px -14px rgba(37, 99, 235, 0.8);
}

.mdm-who-cards {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  perspective: 900px;
}

.mdm-who-mv {
  --color1: #00e7ff;
  --color2: #2563eb;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 118px;
  padding: 16px 14px 16px;
  border-radius: 18px;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.mdm-who-mv.is-mission {
  background: linear-gradient(160deg, #152447 0%, #0f1a33 100%);
  color: #fff;
  box-shadow: 0 18px 36px -22px rgba(8, 16, 36, 0.75);
}

.mdm-who-mv.is-vision {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(18, 33, 63, 0.08);
  box-shadow: 0 18px 36px -24px rgba(15, 33, 74, 0.45);
}

.mdm-who-mv p {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mdm-who-mv.is-mission p {
  color: #93b4ff;
}

.mdm-who-mv.is-vision p {
  color: var(--blue);
}

.mdm-who-mv strong {
  display: block;
  max-width: 15em;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.mdm-who-mv-ico {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
}

.mdm-who-mv.is-mission .mdm-who-mv-ico {
  background: var(--blue);
  color: #fff;
}

.mdm-who-mv.is-vision .mdm-who-mv-ico {
  background: #eaf2ff;
  color: var(--blue);
}

.mdm-who-mv-ico svg {
  width: 15px;
  height: 15px;
}

.mdm-who-mv::before,
.mdm-who-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mdm-who-mv::before {
  background: linear-gradient(
    115deg,
    transparent 0%,
    var(--color1) 25%,
    transparent 47%,
    transparent 53%,
    var(--color2) 75%,
    transparent 100%
  );
  background-size: 250% 250%;
  background-position: var(--mx, 50%) var(--my, 50%);
  mix-blend-mode: color-dodge;
  filter: brightness(0.7) contrast(1.2);
  z-index: 1;
}

.mdm-who-mv::after {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.4) 0 1px, transparent 2px),
    linear-gradient(
      125deg,
      #ff008450 15%,
      #fca40040 30%,
      #ffff0030 40%,
      #00ff8a20 60%,
      #00cfff40 70%,
      #cc4cfa50 85%
    );
  background-size: 180% 180%;
  background-position: var(--sx, 50%) var(--sy, 50%);
  mix-blend-mode: color-dodge;
  z-index: 2;
}

.mdm-who-mv.is-active::before,
.mdm-who-mv:hover::before {
  opacity: 0.75;
}

.mdm-who-mv.is-active::after,
.mdm-who-mv:hover::after {
  opacity: 0.85;
}

.mdm-who-mv > * {
  position: relative;
  z-index: 3;
}

.mdm-team :focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

@media (min-width: 900px) {
  .mdm-team {
    padding: 64px 40px 72px;
  }

  .mdm-who {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    padding: 36px 36px 36px 40px;
  }

  .mdm-who-photo {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .mdm-team {
    padding: 44px 16px 52px;
  }

  .mdm-who {
    padding: 20px 16px 18px;
    border-radius: 22px;
    gap: 24px;
  }

  .mdm-who-chips {
    gap: 10px;
  }

  .mdm-who-chip {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .mdm-who-cards {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .mdm-who-mv {
    min-height: 108px;
    padding: 12px 10px 12px;
  }

  .mdm-who-mv strong {
    font-size: 12.5px;
  }

  .mdm-who-photo {
    aspect-ratio: 1 / 1.05;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mdm-who-chip,
  .mdm-who-mv,
  .mdm-who-badge {
    transition: none !important;
    transform: none !important;
  }
}

.mdm-how > .elementor-container {
  display: none !important;
}

.mdm-how {
  --ink: #12213f;
  --ink-soft: #4d5a73;
  --blue: #2563eb;
  overflow: visible !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  background: #f7f9fc !important;
}

.mdm-method {
  padding: 48px 20px 40px;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  color: var(--ink);
  position: relative;
  z-index: 4;
  background: #f7f9fc;
}

.mdm-method *,
.mdm-method *::before,
.mdm-method *::after {
  box-sizing: border-box;
}

.mdm-method-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.mdm-method-head {
  max-width: 36em;
  margin: 0 auto 28px;
  text-align: center;
}

.mdm-method-head h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.mdm-method-head h2 span {
  color: var(--blue);
}

.mdm-method-head p {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.mdm-method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.mdm-gap {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: #12213f;
  color: #f4edde;
  overflow: hidden;
  box-shadow: 0 28px 56px -30px rgba(15, 33, 74, 0.55);
}

.mdm-gap-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mdm-gap h3 {
  position: relative;
  margin: 0 0 22px;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff;
}

.mdm-gap-list {
  position: relative;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mdm-gap-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.mdm-step-ico,
.mdm-gap-ico {
  box-sizing: border-box;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto;
  padding: 0 !important;
  margin: 0;
  line-height: 0 !important;
  font-size: 0 !important;
  font-style: normal;
  overflow: visible;
}

.mdm-gap-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.mdm-step-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eaf2ff;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.mdm-step.is-on .mdm-step-ico {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.12);
}

.mdm-step-ico img,
.mdm-gap-ico img {
  display: block !important;
  position: static !important;
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  margin: 0 !important;
  border: 0;
  flex: 0 0 auto;
}

.mdm-gap-ico img {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

.mdm-method .mdm-step-ico svg,
.mdm-method .mdm-gap-ico svg {
  display: none;
}

.mdm-gap-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: #fff;
}

.mdm-gap-list li div span {
  display: block;
  font-size: 13.5px;
  line-height: 1.45;
  color: #c5cde0;
}

.mdm-gap-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
}

.mdm-gap-cta svg,
.mdm-gap-cta img {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mdm-gap-cta:hover,
.mdm-gap-cta:focus-visible {
  background: #1d4ed8;
  color: #fff;
}

.mdm-gap-cta:hover svg,
.mdm-gap-cta:hover img {
  transform: translateX(4px);
}

.mdm-method :focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.mdm-steps {
  position: relative;
  padding: 4px 0 4px 40px;
}

.mdm-steps-rail {
  position: absolute;
  left: 13px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: rgba(37, 99, 235, 0.18);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}

.mdm-steps-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: top center;
  transform: scaleY(0);
  will-change: transform;
}

.mdm-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mdm-step {
  position: relative;
  width: 100%;
}

.mdm-step-num {
  position: absolute;
  left: -40px;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.18);
}

.mdm-step.is-on .mdm-step-num {
  background: #12213f;
  color: #fff;
  box-shadow: none;
}

.mdm-step article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  margin-left: 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 36px -22px rgba(15, 33, 74, 0.4);
  transition: background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mdm-step.is-on article {
  background: #dbeafe;
  box-shadow: 0 16px 36px -20px rgba(37, 99, 235, 0.32);
}

.mdm-step strong {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
}

.mdm-step article div span {
  display: block;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-soft);
}

@media (min-width: 980px) {
  .mdm-method {
    padding: 56px 40px 48px;
  }

  .mdm-method-grid {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.15fr);
    gap: 36px;
    align-items: stretch;
  }

  .mdm-gap {
    min-height: 100%;
  }
}

@media (max-width: 720px) {
  .mdm-method {
    padding: 40px 16px 40px;
  }

  .mdm-step article {
    width: 100%;
    margin-left: 0;
  }
}

.mdm-reviews-host > .elementor-container {
  display: none !important;
}

.mdm-reviews-host {
  overflow: visible !important;
  padding: 0 !important;
  margin: 24px 0 0 !important;
  min-height: 0 !important;
}

.mdm-reviews {
  --ink: #12213f;
  --ink-soft: #4d5a73;
  --blue: #2563eb;
  --gold: #fbbc04;
  padding: 48px 24px 56px;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(90% 70% at 82% 0%, #e4eeff 0%, transparent 58%),
    radial-gradient(70% 50% at 8% 100%, #eef3fb 0%, transparent 50%),
    #f4f7fc;
  position: relative;
  z-index: 5;
}

.mdm-reviews *,
.mdm-reviews *::before,
.mdm-reviews *::after {
  box-sizing: border-box;
}

.mdm-reviews-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.mdm-reviews h2 {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
}

.mdm-reviews h2 span.mdm-rev-hi {
  color: #2563eb;
}

.mdm-reviews-lede {
  margin: 0 auto 32px;
  max-width: 42ch;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.mdm-reviews-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.mdm-reviews-sum {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.mdm-reviews img.mdm-reviews-thumb {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.mdm-reviews-biz {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mdm-reviews-sum .mdm-stars {
  margin-top: 2px;
}

.mdm-reviews-count {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.mdm-reviews-write {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.mdm-reviews-write:hover,
.mdm-reviews-write:focus-visible {
  background: var(--ink);
  color: #fff;
}

.mdm-reviews :focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.mdm-reviews-stage {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 8px;
  align-items: center;
}

.mdm-reviews-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(18, 33, 63, 0.16);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.mdm-reviews-nav:hover {
  border-color: var(--ink);
}

.mdm-reviews-nav svg {
  width: 16px;
  height: 16px;
}

.mdm-reviews-viewport {
  overflow: hidden;
}

.mdm-reviews-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.mdm-g-card {
  position: relative;
  flex: 0 0 auto;
  min-height: 248px;
  padding: 20px 20px 22px;
  border-radius: 16px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(232, 240, 255, 0.38) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 22px 44px -28px rgba(15, 33, 74, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(1.45);
  -webkit-backdrop-filter: blur(18px) saturate(1.45);
  overflow: hidden;
}

.mdm-g-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 44%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent);
  pointer-events: none;
}

.mdm-g-card::after {
  content: "";
  position: absolute;
  right: -28%;
  bottom: -62%;
  width: 220px;
  height: 220px;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    transparent 0 11px,
    rgba(18, 33, 63, 0.04) 11px 12px
  );
  pointer-events: none;
}

.mdm-g-card > * {
  position: relative;
  z-index: 1;
}

.mdm-g-head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 22px;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.mdm-g-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.mdm-g-who {
  min-width: 0;
}

.mdm-g-who strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.mdm-g-who time {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
}

.mdm-reviews img.mdm-g-logo {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  display: block;
}

.mdm-g-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.mdm-stars {
  display: inline-flex;
  gap: 2px;
}

.mdm-star {
  width: 14px;
  height: 14px;
  display: block;
}

.mdm-verified {
  width: 15px;
  height: 15px;
  display: block;
}

.mdm-g-body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.45;
  color: #2a354c;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mdm-g-card.is-open .mdm-g-body {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.mdm-g-more {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink-soft);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.mdm-g-more:hover {
  color: var(--ink);
}

.mdm-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 980px) {
  .mdm-reviews {
    padding: 40px 40px 56px;
  }

  .mdm-reviews-row {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .mdm-reviews {
    padding: 36px 16px 56px;
  }

  .mdm-reviews-lede {
    margin-bottom: 32px;
  }
}

/* Lean page hosts (no Elementor shell) */
.mdm-page {
  margin: 0;
  background: #fff;
  color: #12213f;
  font-family: Inter, "Inter Tight", system-ui, sans-serif;
}

#mdm-main {
  display: block;
}

.mdm-svc-host,
.mdm-how-host,
.mdm-stats-host,
.mdm-team-host,
.mdm-choose-host,
.mdm-reviews-host {
  display: block;
  width: 100%;
}

.mdm-choose-host {
  background:
    radial-gradient(120% 80% at 0% 50%, #eaf2ff 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 48%, #fff 100%);
}

.mdm-choose {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 24px 96px;
}

.mdm-choose-stage {
  display: grid;
  gap: 40px;
  align-items: center;
}

.mdm-choose-photo {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #dbe7f8;
  box-shadow: 0 24px 48px rgba(18, 33, 63, 0.12);
}

.mdm-choose-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(18, 33, 63, 0.28));
  pointer-events: none;
}

.mdm-choose-photo img {
  display: block;
  width: 100%;
  height: min(72vh, 640px);
  object-fit: cover;
  object-position: center 28%;
}

.mdm-choose-copy h2 {
  margin: 0 0 14px;
  max-width: 14ch;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #12213f;
}

.mdm-choose-copy h2 span {
  color: #2563eb;
}

.mdm-choose-copy > p {
  margin: 0 0 28px;
  max-width: 36rem;
  color: #3d4d6f;
  font-size: 1.05rem;
  line-height: 1.65;
}

.mdm-choose-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d9e3f2;
}

.mdm-choose-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #d9e3f2;
}

.mdm-choose-ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eaf2ff;
  color: #1d4ed8;
}

.mdm-choose-ico svg {
  width: 22px;
  height: 22px;
}

.mdm-choose-row strong {
  display: block;
  margin: 2px 0 6px;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #12213f;
  letter-spacing: -0.02em;
}

.mdm-choose-row p {
  margin: 0;
  color: #3d4d6f;
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (min-width: 960px) {
  .mdm-choose-stage {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
  }

  .mdm-choose-photo img {
    height: min(78vh, 700px);
  }
}

@media (max-width: 720px) {
  .mdm-choose {
    padding: 64px 18px 72px;
  }

  .mdm-choose-photo img {
    height: 420px;
  }

  .mdm-choose-copy h2 {
    max-width: none;
  }
}

.mdm-contact {
  padding: 72px 24px 88px;
  background: linear-gradient(180deg, #eaf2ff 0%, #f7f9fc 40%, #fff 100%);
}

.mdm-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mdm-contact-kicker {
  margin: 0 0 8px;
  color: #2563eb;
  font-weight: 600;
}

.mdm-contact-head h2 {
  margin: 0 0 28px;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.mdm-contact-grid {
  display: grid;
  gap: 28px;
}

.mdm-contact-form {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5ebf5;
}

.mdm-field {
  display: block;
}

.mdm-field.is-full {
  grid-column: 1 / -1;
}

.mdm-contact-form input,
.mdm-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d7deea;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.mdm-contact-form button {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: #12213f;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.mdm-footer {
  background: #0b1630;
  color: #c9d3e6;
  padding: 56px 24px 28px;
}

.mdm-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.mdm-footer a {
  color: inherit;
  text-decoration: none;
}

.mdm-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.mdm-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mdm-footer li + li {
  margin-top: 8px;
}

.mdm-footer-brand img {
  display: block;
  max-height: 56px;
  width: auto;
  margin-bottom: 12px;
}

.mdm-footer-copy {
  max-width: 1100px;
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .mdm-contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 800px) {
  .mdm-footer-inner,
  .mdm-contact-form {
    grid-template-columns: 1fr;
  }
}
