:root {
  --mpp-ink: #262262;
  --mpp-ink-soft: #50536d;
  --mpp-teal: #00aeef;
  --mpp-teal-dark: #262262;
  --mpp-teal-light: #dff5fc;
  --mpp-mint: #effaff;
  --mpp-cream: #ffffff;
  --mpp-sand: #dceff8;
  --mpp-gold: #ed1c24;
  --mpp-white: #ffffff;
  --mpp-border: #d8e6ec;
  --mpp-shell: 1180px;
  --mpp-radius-lg: 28px;
  --mpp-radius-md: 18px;
  --mpp-shadow: 0 24px 70px rgba(38, 34, 98, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.morins-platform-pilot {
  margin: 0;
  color: var(--mpp-ink);
  background: var(--mpp-cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.mpp-page { overflow: hidden; }
.mpp-page h1,
.mpp-page h2,
.mpp-page h3,
.mpp-page p { margin-top: 0; }
.mpp-page a { text-underline-offset: 3px; }
.mpp-page img { max-width: 100%; }
.mpp-shell { width: min(var(--mpp-shell), calc(100% - 48px)); margin: 0 auto; }
.mpp-section { padding: 112px 0; }

.mpp-header { background: var(--mpp-ink); }
.mpp-header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 28px;
}
.mpp-brand,
.mpp-footer-brand { display: inline-flex; align-items: center; }
.mpp-logo {
  width: 172px;
  height: auto;
  border-radius: 0 !important;
  object-fit: contain;
}
.mpp-header-cta {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 8px;
  background: #ed1c24;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background .2s ease;
}
.mpp-header-cta:hover { background: #c9121a; color: #fff; }

.mpp-hero {
  position: relative;
  padding: 84px 0 96px;
  background: linear-gradient(135deg, #eefaff 0%, #e5f5fc 55%, #eef3fb 100%);
}
.mpp-hero-glow {
  position: absolute;
  border-radius: 0;
  transform: rotate(45deg);
  pointer-events: none;
  filter: blur(2px);
}
.mpp-hero-glow-one { width: 430px; height: 430px; top: -300px; right: 12%; background: rgba(237, 28, 36, .055); }
.mpp-hero-glow-two { width: 360px; height: 360px; bottom: -255px; left: -130px; background: rgba(0, 174, 239, .1); }
.mpp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .86fr);
  gap: 76px;
  align-items: center;
}
.mpp-hero-copy { padding: 10px 0; }
.mpp-eyebrow {
  margin-bottom: 20px !important;
  color: var(--mpp-teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mpp-eyebrow span { margin-right: 6px; }
.mpp-hero-copy h1 {
  max-width: 660px;
  margin-bottom: 24px;
  color: var(--mpp-ink);
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1.01;
}
.mpp-hero-copy h1 span { color: #ed1c24; }
.mpp-hero-lede {
  max-width: 625px;
  margin-bottom: 31px !important;
  color: var(--mpp-ink-soft);
  font-size: 20px;
  line-height: 1.58;
}
.mpp-confidence-list {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
.mpp-confidence-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  color: #393b63;
  font-size: 15px;
  line-height: 1.5;
}
.mpp-confidence-list .mpp-check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--mpp-teal-light);
  color: var(--mpp-teal-dark);
  font-size: 12px;
  font-weight: 900;
}
.mpp-confidence-copy { color: #393b63 !important; }
.mpp-confidence-list strong { color: var(--mpp-ink); }
.mpp-hero-actions { display: flex; align-items: center; gap: 18px; }
.mpp-hero-note {
  max-width: 650px;
  margin: 15px 0 0 !important;
  color: #62647d;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}
.mpp-hero-warning {
  max-width: 650px;
  margin: 18px 0 0 !important;
  padding: 12px 15px;
  border-left: 3px solid var(--mpp-gold);
  border-radius: 0 9px 9px 0;
  background: rgba(255, 255, 255, .65);
  color: #55576f;
  font-size: 12px;
  line-height: 1.55;
}

.mpp-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 11px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.mpp-button:hover { transform: translateY(-1px); }
.mpp-button:disabled { opacity: .55; cursor: wait; transform: none; }
.mpp-page .mpp-button-primary { border: 0; background: var(--mpp-teal); color: var(--mpp-white); box-shadow: 0 12px 26px rgba(0, 174, 239, .2); }
.mpp-page .mpp-button-primary:hover { background: #0098d4; color: var(--mpp-white); }
.mpp-page .mpp-button-secondary { border: 1px solid var(--mpp-border); background: var(--mpp-white); color: var(--mpp-teal-dark); }
.mpp-page .mpp-button-light { background: var(--mpp-white); color: var(--mpp-teal-dark); box-shadow: 0 12px 28px rgba(0, 0, 0, .13); }
.mpp-button-wide { width: 100%; }

.mpp-form-card {
  padding: 35px;
  border: 1px solid rgba(38, 34, 98, .12);
  border-top: 6px solid var(--mpp-teal-dark);
  border-radius: var(--mpp-radius-lg);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--mpp-shadow);
  scroll-margin-top: 24px;
}
.mpp-form-heading { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.mpp-form-kicker { margin-bottom: 8px !important; color: var(--mpp-teal); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.mpp-form-heading h2 { margin-bottom: 0; color: var(--mpp-ink); font-size: 27px; letter-spacing: -.025em; line-height: 1.18; }
.mpp-form-description { max-width: 390px; margin: 10px 0 0 !important; color: var(--mpp-ink-soft); font-size: 12px; line-height: 1.5; }
.mpp-step-label { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: var(--mpp-mint); color: var(--mpp-teal-dark); font-size: 11px; font-weight: 800; }
.mpp-progress { height: 5px; margin: 22px 0 27px; overflow: hidden; border-radius: 999px; background: #e8eeec; }
.mpp-progress span { width: 50%; height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--mpp-teal-dark), var(--mpp-teal)); transition: width .25s ease; }
.mpp-form-card label,
.mpp-form-card legend { display: block; margin: 0 0 8px; color: var(--mpp-ink); font-size: 14px; font-weight: 750; line-height: 1.4; }
.mpp-form-card label > span,
.mpp-form-card legend > span { color: var(--mpp-gold); }
.mpp-form-card fieldset { min-width: 0; margin: 0 0 21px; padding: 0; border: 0; }
.mpp-form-card input[type="text"],
.mpp-form-card input[type="email"],
.mpp-form-card input[type="tel"],
.mpp-form-card input[type="number"],
.mpp-form-card select {
  width: 100%;
  min-height: 52px;
  margin: 7px 0 18px;
  padding: 12px 14px;
  border: 1px solid #cfdde5;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--mpp-ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.mpp-form-card input:focus,
.mpp-form-card select:focus { border-color: var(--mpp-teal); box-shadow: 0 0 0 4px rgba(0, 174, 239, .13); }
.mpp-form-card input::placeholder { color: #9799aa; }
.mpp-radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 9px; }
.mpp-radio-cards label { position: relative; margin: 0; }
.mpp-radio-cards input { position: absolute; opacity: 0; pointer-events: none; }
.mpp-radio-cards label > span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid #cfdde5;
  border-radius: 10px;
  background: #fff;
  color: #3d3f67;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.mpp-radio-cards input:checked + span { border-color: var(--mpp-teal); background: var(--mpp-mint); color: var(--mpp-teal-dark); box-shadow: inset 0 0 0 1px var(--mpp-teal); }
.mpp-radio-cards input:focus-visible + span { outline: 3px solid rgba(12, 86, 85, .18); outline-offset: 2px; }
.mpp-input-prefix { position: relative; display: block; color: var(--mpp-ink) !important; }
.mpp-input-prefix > span { position: absolute; z-index: 1; top: 23px; left: 15px; color: #6b6d85 !important; font-size: 14px; font-weight: 750; }
.mpp-input-prefix input { padding-left: 42px !important; }
.mpp-conditional-field { animation: mpp-field-in .22s ease; }
@keyframes mpp-field-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.mpp-step-intro { margin-bottom: 19px; padding: 16px 18px; border-radius: 12px; background: var(--mpp-mint); }
.mpp-step-intro h3 { margin-bottom: 5px; font-size: 17px; }
.mpp-step-intro p { margin-bottom: 0; color: var(--mpp-ink-soft); font-size: 13px; line-height: 1.5; }
.mpp-button-row { display: grid; grid-template-columns: 112px 1fr; gap: 10px; }
.mpp-consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 4px 0 19px !important; color: var(--mpp-ink-soft) !important; font-size: 12px !important; font-weight: 500 !important; }
.mpp-consent input { width: 17px; height: 17px; margin-top: 1px; accent-color: var(--mpp-teal); }
.mpp-consent span { color: inherit !important; }
.mpp-honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.mpp-status { min-height: 22px; margin: 14px 0 2px !important; color: #a33a2f; font-size: 13px; line-height: 1.45; }
.mpp-recaptcha-note { margin: 9px 0 0 !important; color: #718482; font-size: 10px; line-height: 1.45; }
.mpp-recaptcha-note a { color: var(--mpp-teal); }
.mpp-form-warning { margin: 14px 0 0 !important; padding: 11px 13px; border-radius: 9px; background: #fff4f1; color: #74463f; font-size: 11px; line-height: 1.5; }
.mpp-success { min-height: 490px; display: grid; align-content: center; justify-items: center; padding: 30px; text-align: center; }
.mpp-success-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 50%; background: var(--mpp-mint); color: var(--mpp-teal); font-size: 28px; font-weight: 900; }
.mpp-success h2 { margin-bottom: 10px; font-size: 36px; }
.mpp-success p { max-width: 360px; color: var(--mpp-ink-soft); line-height: 1.6; }

.mpp-thank-you-page {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 76px 0 96px;
  background: linear-gradient(135deg, #eefaff 0%, #e5f5fc 55%, #eef3fb 100%);
}
.mpp-thank-you-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px;
  border: 1px solid var(--mpp-border);
  border-radius: var(--mpp-radius-lg);
  background: var(--mpp-white);
  text-align: center;
  box-shadow: var(--mpp-shadow);
}
.mpp-thank-you-card .mpp-success-icon { margin-right: auto; margin-left: auto; }
.mpp-thank-you-card h1 {
  margin: 0 0 18px;
  color: var(--mpp-ink);
  font-size: clamp(40px, 5vw, 58px);
  letter-spacing: -.045em;
  line-height: 1.05;
}
.mpp-thank-you-card p {
  max-width: 540px;
  margin: 0 auto 28px;
  color: var(--mpp-ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.mpp-proof { position: relative; z-index: 2; padding: 0 0 10px; background: var(--mpp-white); }
.mpp-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateY(-35px);
  overflow: hidden;
  border: 1px solid var(--mpp-border);
  border-radius: var(--mpp-radius-md);
  background: var(--mpp-white);
  box-shadow: 0 14px 40px rgba(38, 34, 98, .08);
}
.mpp-proof-grid > div { min-height: 120px; display: flex; flex-direction: column; justify-content: center; padding: 24px 34px; border-right: 1px solid var(--mpp-border); }
.mpp-proof-grid > div:last-child { border-right: 0; }
.mpp-proof-grid strong { color: var(--mpp-teal); font-size: 31px; letter-spacing: -.04em; }
.mpp-proof-grid span { margin-top: 5px; color: var(--mpp-ink-soft); font-size: 13px; font-weight: 650; }

.mpp-advice { background: var(--mpp-white); }
.mpp-advice-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 80px; align-items: center; }
.mpp-photo-card { position: relative; }
.mpp-photo-card::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border-radius: var(--mpp-radius-lg); background: var(--mpp-teal-light); }
.mpp-photo-card img { position: relative; z-index: 1; width: 100%; min-height: 500px; display: block; border-radius: var(--mpp-radius-lg); object-fit: cover; box-shadow: 0 20px 55px rgba(38, 34, 98, .14); }
.mpp-photo-note { position: absolute; z-index: 2; right: -18px; bottom: 28px; display: flex; align-items: center; gap: 10px; padding: 16px 19px; border: 1px solid rgba(38, 34, 98, .11); border-radius: 14px; background: rgba(255, 255, 255, .96); color: var(--mpp-ink); font-size: 13px; font-weight: 750; box-shadow: 0 16px 38px rgba(38, 34, 98, .14); }
.mpp-photo-note span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--mpp-mint); color: var(--mpp-teal); }
.mpp-advice-copy h2,
.mpp-section-heading h2,
.mpp-faq-intro h2,
.mpp-final-card h2 { color: var(--mpp-ink); font-size: clamp(38px, 4vw, 54px); letter-spacing: -.045em; line-height: 1.08; }
.mpp-advice-copy > p:not(.mpp-eyebrow) { margin-bottom: 31px; color: var(--mpp-ink-soft); font-size: 18px; line-height: 1.7; }
.mpp-advice-points { display: grid; gap: 20px; }
.mpp-advice-points article { display: grid; grid-template-columns: 42px 1fr; gap: 16px; }
.mpp-advice-points article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--mpp-mint); color: var(--mpp-teal); font-size: 11px; font-weight: 850; }
.mpp-advice-points h3 { margin-bottom: 5px; font-size: 17px; }
.mpp-advice-points p { margin-bottom: 0; color: var(--mpp-ink-soft); font-size: 14px; line-height: 1.55; }

.mpp-partners { border-top: 1px solid #edf0ed; border-bottom: 1px solid #edf0ed; background: var(--mpp-cream); }
.mpp-section-heading { max-width: 760px; margin-bottom: 52px; }
.mpp-section-heading-center { margin-right: auto; margin-left: auto; text-align: center; }
.mpp-section-heading h2 { margin-bottom: 18px; }
.mpp-section-heading > p:not(.mpp-eyebrow) { margin-bottom: 0; color: var(--mpp-ink-soft); font-size: 17px; line-height: 1.65; }
.mpp-bank-panel { max-width: 680px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin: 0 auto; padding: 36px 60px; border: 1px solid var(--mpp-border); border-radius: var(--mpp-radius-md); background: var(--mpp-white); }
.mpp-bank-panel img { width: 100%; height: 190px; object-fit: contain; }
.mpp-featured-row { max-width: 780px; display: grid; grid-template-columns: 145px 1fr; gap: 34px; align-items: center; margin: 48px auto 0; padding-top: 35px; border-top: 1px solid var(--mpp-border); }
.mpp-featured-row > span { color: var(--mpp-ink-soft); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mpp-featured-row img { width: 100%; height: 125px; object-fit: contain; object-position: left center; }

.mpp-process { background: var(--mpp-teal-dark); }
.mpp-process .mpp-eyebrow { color: #62d1f7; }
.mpp-process .mpp-section-heading h2 { color: var(--mpp-white); }
.mpp-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mpp-process-grid article { min-height: 280px; padding: 34px; border: 1px solid rgba(255, 255, 255, .13); border-radius: var(--mpp-radius-md); background: rgba(255, 255, 255, .055); }
.mpp-process-grid article > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 45px; border-radius: 50%; background: var(--mpp-teal); color: #fff; font-size: 14px; font-weight: 900; }
.mpp-process-grid h3 { margin-bottom: 12px; color: var(--mpp-white); font-size: 22px; }
.mpp-process-grid p { margin-bottom: 0; color: rgba(255, 255, 255, .72); font-size: 14px; line-height: 1.65; }

.mpp-faq { background: var(--mpp-white); }
.mpp-faq-grid { display: grid; grid-template-columns: .72fr 1fr; gap: 100px; align-items: start; }
.mpp-faq-intro { position: sticky; top: 32px; }
.mpp-faq-intro h2 { margin-bottom: 20px; }
.mpp-faq-intro > p:not(.mpp-eyebrow) { color: var(--mpp-ink-soft); font-size: 17px; line-height: 1.65; }
.mpp-faq-list { display: grid; gap: 12px; }
.mpp-faq-list details { overflow: hidden; border: 1px solid var(--mpp-border); border-radius: 14px; background: var(--mpp-white); }
.mpp-faq-list summary { position: relative; padding: 21px 54px 21px 22px; color: var(--mpp-ink); font-size: 16px; font-weight: 750; line-height: 1.45; cursor: pointer; list-style: none; }
.mpp-faq-list summary::-webkit-details-marker { display: none; }
.mpp-faq-list summary::after { content: "+"; position: absolute; top: 19px; right: 21px; color: var(--mpp-teal); font-size: 24px; font-weight: 400; line-height: 1; }
.mpp-faq-list details[open] summary::after { content: "−"; }
.mpp-faq-list details[open] { border-color: rgba(0, 174, 239, .48); background: var(--mpp-mint); }
.mpp-faq-list details p { margin: -4px 22px 0; padding: 0 0 22px; color: var(--mpp-ink-soft); font-size: 14px; line-height: 1.65; }

.mpp-final-cta { padding: 0 0 105px; background: var(--mpp-white); }
.mpp-final-card { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 58px 64px; border-radius: var(--mpp-radius-lg); background: linear-gradient(130deg, #262262, #343081); box-shadow: 0 24px 65px rgba(38, 34, 98, .2); }
.mpp-final-card .mpp-eyebrow { color: #62d1f7; }
.mpp-final-card h2 { margin-bottom: 12px; color: var(--mpp-white); }
.mpp-final-card p:last-child { max-width: 680px; margin-bottom: 0; color: rgba(255, 255, 255, .72); line-height: 1.6; }
.mpp-disclaimer { max-width: 780px; margin-top: 18px !important; color: rgba(255, 255, 255, .78) !important; font-size: 12px !important; line-height: 1.55 !important; }

.mpp-footer { padding: 42px 0 28px; background: #1c194f; color: rgba(255, 255, 255, .72); }
.mpp-footer-primary { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.mpp-footer-brand .mpp-logo { width: 158px; }
.mpp-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 26px; }
.mpp-footer-links a { color: #fff; font-size: 13px; font-weight: 650; text-decoration: none; }
.mpp-footer-links a:hover { color: #62d1f7; }
.mpp-footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
}

[hidden] { display: none !important; }

@media (max-width: 980px) {
  .mpp-hero-grid { grid-template-columns: 1fr 440px; gap: 42px; }
  .mpp-hero-copy h1 { font-size: 52px; }
  .mpp-advice-grid { gap: 50px; }
  .mpp-photo-card img { min-height: 430px; }
  .mpp-faq-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .mpp-shell { width: min(100% - 32px, var(--mpp-shell)); }
  .mpp-section { padding: 78px 0; }
  .mpp-header-inner { grid-template-columns: 170px 1fr; }
  .mpp-hero { padding: 76px 0 82px; }
  .mpp-hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .mpp-hero-copy { max-width: 680px; }
  .mpp-hero-copy h1 { font-size: clamp(44px, 9vw, 64px); }
  .mpp-hero-lede { font-size: 18px; }
  .mpp-form-card { max-width: 620px; width: 100%; margin: 0 auto; }
  .mpp-proof-grid { transform: translateY(-26px); }
  .mpp-proof-grid > div { min-height: 105px; padding: 20px; }
  .mpp-advice-grid { grid-template-columns: 1fr; gap: 64px; }
  .mpp-photo-card { max-width: 680px; }
  .mpp-photo-card img { min-height: 420px; }
  .mpp-photo-note { right: 18px; }
  .mpp-bank-panel { padding: 32px 40px; }
  .mpp-process-grid { grid-template-columns: 1fr; }
  .mpp-process-grid article { min-height: 0; }
  .mpp-process-grid article > span { margin-bottom: 26px; }
  .mpp-faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .mpp-faq-intro { position: static; }
  .mpp-final-card { grid-template-columns: 1fr; padding: 46px; }
  .mpp-final-card .mpp-button { justify-self: start; }
  .mpp-thank-you-page { padding: 58px 0 72px; }
  .mpp-thank-you-card { padding: 52px 42px; }
}

@media (max-width: 560px) {
  .mpp-shell { width: min(100% - 24px, var(--mpp-shell)); }
  .mpp-header-inner { min-height: 72px; grid-template-columns: 144px 1fr; gap: 12px; }
  .mpp-header-cta { justify-self: end; padding: 10px 12px; font-size: 12px; }
  .mpp-logo { width: 140px; }
  .mpp-hero { padding: 64px 0 66px; }
  .mpp-eyebrow { margin-bottom: 14px !important; font-size: 11px; }
  .mpp-hero-copy h1 { margin-bottom: 20px; font-size: 43px; line-height: 1.04; }
  .mpp-hero-lede { margin-bottom: 26px !important; font-size: 16px; line-height: 1.55; }
  .mpp-confidence-list { gap: 12px; }
  .mpp-confidence-list li { font-size: 14px; }
  .mpp-hero-actions { align-items: flex-start; flex-direction: column; }
  .morins-platform-pilot-compare .mpp-hero,
  .morins-platform-pilot-home_equity .mpp-hero { padding: 34px 0 44px; }
  .morins-platform-pilot-compare .mpp-hero-grid,
  .morins-platform-pilot-home_equity .mpp-hero-grid { gap: 28px; }
  .morins-platform-pilot-compare .mpp-hero-copy h1,
  .morins-platform-pilot-home_equity .mpp-hero-copy h1 {
    margin-bottom: 15px;
    font-size: clamp(35px, 10vw, 40px);
  }
  .morins-platform-pilot-compare .mpp-hero-lede,
  .morins-platform-pilot-home_equity .mpp-hero-lede {
    margin-bottom: 17px !important;
    font-size: 15px;
    line-height: 1.48;
  }
  .morins-platform-pilot-compare .mpp-confidence-list,
  .morins-platform-pilot-home_equity .mpp-confidence-list {
    gap: 8px;
    margin-bottom: 20px;
  }
  .morins-platform-pilot-compare .mpp-confidence-list li,
  .morins-platform-pilot-home_equity .mpp-confidence-list li { font-size: 13px; }
  .morins-platform-pilot-compare .mpp-hero-actions .mpp-button,
  .morins-platform-pilot-home_equity .mpp-hero-actions .mpp-button { width: 100%; }
  .morins-platform-pilot-compare .mpp-hero-note,
  .morins-platform-pilot-home_equity .mpp-hero-note { margin-top: 10px !important; }
  .morins-platform-pilot-home_equity .mpp-hero-warning { display: none; }
  .mpp-form-card { padding: 25px 20px; border-radius: 20px; }
  .mpp-form-heading { flex-direction: column-reverse; gap: 11px; }
  .mpp-form-heading h2 { font-size: 24px; }
  .mpp-radio-cards { grid-template-columns: 1fr; }
  .mpp-button-row { grid-template-columns: 92px 1fr; }
  .mpp-button { padding-right: 15px; padding-left: 15px; font-size: 13px; }
  .mpp-proof { padding-bottom: 0; }
  .mpp-proof-grid { grid-template-columns: 1fr; transform: translateY(-20px); }
  .mpp-proof-grid > div { min-height: 90px; border-right: 0; border-bottom: 1px solid var(--mpp-border); text-align: center; }
  .mpp-proof-grid > div:last-child { border-bottom: 0; }
  .mpp-section { padding: 66px 0; }
  .mpp-advice-grid { gap: 52px; }
  .mpp-photo-card::before { inset: -10px 10px 10px -10px; }
  .mpp-photo-card img { min-height: 340px; border-radius: 20px; }
  .mpp-photo-note { right: 10px; bottom: 15px; max-width: calc(100% - 20px); padding: 13px 14px; }
  .mpp-advice-copy h2,
  .mpp-section-heading h2,
  .mpp-faq-intro h2,
  .mpp-final-card h2 { font-size: 36px; }
  .mpp-advice-copy > p:not(.mpp-eyebrow) { font-size: 16px; }
  .mpp-bank-panel { grid-template-columns: 1fr 1fr; gap: 12px; padding: 22px 18px; }
  .mpp-bank-panel img { height: 130px; }
  .mpp-featured-row { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .mpp-featured-row img { height: 105px; object-position: center; }
  .mpp-process-grid article { padding: 28px; }
  .mpp-faq-list summary { padding: 18px 48px 18px 18px; font-size: 14px; }
  .mpp-faq-list details p { margin-right: 18px; margin-left: 18px; font-size: 13px; }
  .mpp-final-cta { padding-bottom: 65px; }
  .mpp-final-card { gap: 30px; padding: 34px 24px; border-radius: 20px; }
  .mpp-thank-you-page { min-height: calc(100vh - 72px); padding: 36px 0 52px; }
  .mpp-thank-you-card { padding: 42px 22px; border-radius: 20px; }
  .mpp-thank-you-card h1 { font-size: 38px; }
  .mpp-thank-you-card p { font-size: 16px; }
  .mpp-footer-primary,
  .mpp-footer-meta { align-items: flex-start; flex-direction: column; }
  .mpp-footer-links { justify-content: flex-start; }
  .mpp-footer-meta { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
