:root {
  --mv-font-sans: "Figtree", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --mv-font-display: "Sora", "Figtree", ui-sans-serif, system-ui, sans-serif;
  --mv-bg: #f4f1ea;
  --mv-fg: #141b2d;
  --mv-paper: #f4f1ea;
  --mv-cream: #ebe6dc;
  --mv-ink: #141b2d;
  --mv-navy: #0a1220;
  --mv-navy-fg: #f4f1ea;
  --mv-navy-muted: #8b93a7;
  --mv-surface: #fffcf7;
  --mv-muted: #5a6478;
  --mv-primary: #3d6bff;
  --mv-primary-fg: #f7f5f0;
  --mv-primary-deep: #2a4fd4;
  --mv-border: #d9d3c7;
  --mv-whatsapp: #1f8a4c;
  --mv-whatsapp-fg: #f7f5f0;
  --mv-radius-sm: 8px;
  --mv-radius-md: 12px;
  --mv-radius-lg: 18px;
  --mv-radius-xl: 28px;
  --mv-radius-2xl: 36px;
  --mv-shadow:
    0 0 0 1px rgb(20 27 45 / 0.06),
    0 1px 2px -1px rgb(20 27 45 / 0.06),
    0 2px 8px 0 rgb(20 27 45 / 0.04);
  --mv-shadow-hover:
    0 0 0 1px rgb(20 27 45 / 0.1),
    0 8px 24px -8px rgb(20 27 45 / 0.14);
  --mv-text-xs: 0.75rem;
  --mv-text-sm: 0.875rem;
  --mv-text-base: 1.0625rem;
  --mv-text-lg: 1.1875rem;
  --mv-text-xl: 1.375rem;
  --mv-text-2xl: clamp(1.5rem, 1.2rem + 1vw, 1.875rem);
  --mv-text-3xl: clamp(1.875rem, 1.3rem + 1.8vw, 2.5rem);
  --mv-text-4xl: clamp(2.25rem, 1.4rem + 2.8vw, 3.25rem);
  --mv-text-5xl: clamp(2.6rem, 1.4rem + 4.2vw, 4.35rem);
  --mv-text-display: clamp(2.7rem, 1.5rem + 4.8vw, 4.75rem);
  --mv-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mv-wrap: 72rem;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: var(--mv-bg);
  color: var(--mv-fg);
  width: 100%;
}

body.mv-body,
.mv-body {
  margin: 0;
  width: 100%;
  font-family: var(--mv-font-sans);
  font-size: var(--mv-text-base);
  line-height: 1.6;
  background: var(--mv-bg);
  color: var(--mv-fg);
  min-height: 100dvh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  outline: 1px solid rgb(20 27 45 / 0.08);
  outline-offset: -1px;
}

h1, h2, h3, h4 {
  font-family: var(--mv-font-display);
  text-wrap: balance;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--mv-ink);
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

button, input, textarea {
  font: inherit;
}

button:not(:disabled),
[role="button"]:not(:disabled) {
  cursor: pointer;
}

::selection {
  background: color-mix(in srgb, var(--mv-primary) 28%, transparent);
}

section[id] { scroll-margin-top: 5.5rem; }

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

.mv-skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--mv-navy);
  color: var(--mv-navy-fg);
  padding: 0.6rem 1rem;
  border-radius: var(--mv-radius-md);
}
.mv-skip:focus { top: 1rem; }

.mv-page {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.mv-main { flex: 1; width: 100%; }

.mv-wrap,
.mv-header__inner,
.mv-hero__grid,
.mv-proof__grid,
.mv-proof__photos,
.mv-impact__grid,
.mv-closing,
.mv-footer__grid,
.mv-footer__legal > * {
  width: min(100% - 2rem, var(--mv-wrap));
  max-width: var(--mv-wrap);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .mv-wrap,
  .mv-header__inner,
  .mv-hero__grid,
  .mv-proof__grid,
  .mv-proof__photos,
  .mv-impact__grid,
  .mv-closing,
  .mv-footer__grid,
  .mv-footer__legal > * {
    width: min(100% - 3rem, var(--mv-wrap));
  }
}

.mv-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.mv-icon--sm { width: 0.95rem; height: 0.95rem; }

.mv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-sm);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  border: 0;
  background: transparent;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--mv-radius-md);
  transition: background-color 150ms var(--mv-ease), color 150ms var(--mv-ease), transform 150ms var(--mv-ease), opacity 150ms var(--mv-ease);
}
.mv-btn:active:not(:disabled) { transform: scale(0.96); }
.mv-btn:focus-visible {
  outline: 2px solid var(--mv-primary);
  outline-offset: 2px;
}
.mv-btn--navy {
  background: var(--mv-navy);
  color: var(--mv-navy-fg);
  box-shadow: var(--mv-shadow);
}
.mv-btn--navy:hover { background: var(--mv-ink); }
.mv-btn--outline {
  color: var(--mv-fg);
  box-shadow: var(--mv-shadow);
  background: transparent;
}
.mv-btn--outline:hover { background: var(--mv-cream); }
.mv-btn--inverse {
  background: var(--mv-surface);
  color: var(--mv-ink);
}
.mv-btn--inverse:hover { background: var(--mv-cream); }
.mv-btn--ghost {
  color: var(--mv-navy-fg);
  background: transparent;
}
.mv-btn--ghost:hover { background: rgb(244 241 234 / 0.1); }
.mv-btn--wa {
  background: var(--mv-whatsapp);
  color: var(--mv-whatsapp-fg);
}
.mv-btn--wa:hover { opacity: 0.92; }
.mv-btn--xl {
  min-height: 3.5rem;
  padding: 0 1.75rem;
  font-size: 1rem;
  border-radius: var(--mv-radius-lg);
}
.mv-btn--lg {
  min-height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  border-radius: var(--mv-radius-lg);
}
.mv-btn--block { width: 100%; }
.mv-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.mv-icon-btn {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--mv-ink);
  border-radius: var(--mv-radius-md);
  box-shadow: var(--mv-shadow);
}
.mv-icon-btn svg { width: 1.25rem; height: 1.25rem; }

.mv-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid color-mix(in srgb, var(--mv-border) 70%, transparent);
  background: color-mix(in srgb, var(--mv-paper) 90%, transparent);
  backdrop-filter: blur(12px);
}
.mv-header__inner {
  width: min(100% - 2rem, var(--mv-wrap));
  margin-inline: auto;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) {
  .mv-header__inner {
    width: min(100% - 3rem, var(--mv-wrap));
    min-height: 4.25rem;
  }
}

.mv-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--mv-ink);
}
.mv-brand__mark {
  height: 2.25rem;
  width: auto;
  outline: none;
}
@media (min-width: 640px) {
  .mv-brand__mark { height: 2.5rem; }
}
.mv-brand__name {
  font-family: var(--mv-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.mv-brand--invert { color: var(--mv-navy-fg); }
.mv-brand--invert .mv-brand__mark {
  filter: brightness(0) invert(1);
}

.mv-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.mv-nav a {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--mv-muted);
  transition: color 150ms var(--mv-ease);
}
.mv-nav a:hover { color: var(--mv-ink); }
@media (min-width: 1024px) {
  .mv-nav { display: flex; }
  .mv-header__menu { display: none; }
}

.mv-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mv-header__cta { display: none !important; }
@media (min-width: 640px) {
  .mv-header__cta { display: inline-flex !important; }
}

.mv-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgb(10 18 32 / 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--mv-ease);
}
.mv-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mv-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(100%, 22rem);
  background: var(--mv-paper);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--mv-shadow-hover);
  transform: translateX(1rem);
  transition: transform 220ms var(--mv-ease);
}
.mv-drawer.is-open .mv-drawer__panel { transform: none; }
.mv-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.25rem;
}
.mv-drawer__title {
  font-family: var(--mv-font-display);
  font-size: 1.125rem;
  font-weight: 600;
}
.mv-drawer__nav {
  margin: 2rem 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mv-drawer__nav a {
  padding: 0.75rem 0.75rem;
  border-radius: var(--mv-radius-md);
  text-decoration: none;
  font-family: var(--mv-font-display);
  font-weight: 500;
}
.mv-drawer__nav a:hover { background: var(--mv-cream); }

.mv-eyebrow {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mv-primary);
  margin: 0;
}
.mv-eyebrow--navy { color: var(--mv-navy-muted); }

.mv-hero__grid {
  width: min(100% - 2rem, var(--mv-wrap));
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0 1.5rem;
  align-items: end;
}
@media (min-width: 640px) {
  .mv-hero__grid { width: min(100% - 3rem, var(--mv-wrap)); }
}
@media (min-width: 1024px) {
  .mv-hero__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    padding: 5rem 0 2.5rem;
  }
  .mv-hero__copy { grid-column: span 7; }
  .mv-hero__media { grid-column: span 5; }
}

.mv-hero__title {
  margin-top: 1rem;
  font-size: var(--mv-text-5xl);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
@media (min-width: 640px) {
  .mv-hero__title { font-size: var(--mv-text-display); }
}
.mv-hero__title span { display: block; }
.mv-hero__title .is-muted { color: var(--mv-muted); }
.mv-hero__text {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: var(--mv-text-lg);
  color: var(--mv-muted);
}
.mv-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .mv-hero__actions { flex-direction: row; }
}

.mv-hero__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--mv-radius-2xl);
  background: var(--mv-cream);
  box-shadow: var(--mv-shadow);
}
.mv-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@media (min-width: 640px) {
  .mv-hero__media img { aspect-ratio: 5 / 6; }
}
@media (min-width: 1024px) {
  .mv-hero__media img { aspect-ratio: 4 / 5; }
}

.mv-trust {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  font-size: var(--mv-text-sm);
  color: var(--mv-muted);
}
@media (min-width: 640px) {
  .mv-trust { grid-template-columns: repeat(3, 1fr); }
}
.mv-trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.mv-trust li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--mv-primary);
  flex-shrink: 0;
}

.mv-clients {
  background: var(--mv-navy);
  color: var(--mv-navy-fg);
  padding: 2.5rem 0;
}
@media (min-width: 640px) {
  .mv-clients { padding: 3rem 0; }
}
.mv-clients__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}
@media (min-width: 640px) {
  .mv-clients__grid { grid-template-columns: repeat(4, 1fr); }
}
.mv-clients__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}
.mv-clients__item img {
  max-height: 3rem;
  max-width: 10rem;
  object-fit: contain;
  outline: none;
  opacity: 0.95;
}
.mv-clients__item span {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mv-navy-muted);
}
.mv-clients__wordmark {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-lg);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--mv-navy-fg);
  min-height: 3rem;
  display: flex;
  align-items: center;
}

.mv-section { padding: 5rem 0; }
@media (min-width: 1024px) {
  .mv-section { padding: 7rem 0; }
}
.mv-section__intro { max-width: 40rem; }
.mv-section__intro h2,
.mv-proof h2,
.mv-closing h2,
.mv-prose h1 {
  margin-top: 0.75rem;
  font-size: var(--mv-text-4xl);
  font-weight: 600;
}
.mv-lede {
  margin-top: 1rem;
  color: var(--mv-muted);
  max-width: 28rem;
}

.mv-cards {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .mv-cards { grid-template-columns: repeat(3, 1fr); }
}
.mv-card {
  display: flex;
  flex-direction: column;
  background: var(--mv-surface);
  border-radius: var(--mv-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--mv-shadow);
}
@media (min-width: 640px) {
  .mv-card { padding: 1.75rem; }
}
.mv-card--lg { padding: 1.75rem; }
@media (min-width: 640px) {
  .mv-card--lg { padding: 2rem; }
}
.mv-card h3 {
  margin-top: 1.5rem;
  font-size: var(--mv-text-xl);
  font-weight: 600;
}
.mv-card--lg h3 {
  font-size: var(--mv-text-2xl);
}
.mv-card p {
  margin-top: 0.75rem;
  font-size: var(--mv-text-sm);
  line-height: 1.65;
  color: var(--mv-muted);
}
.mv-card--lg p {
  font-size: 1rem;
}
.mv-step {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-sm);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--mv-primary);
}
.mv-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--mv-radius-md);
  background: var(--mv-cream);
  color: var(--mv-primary);
}
.mv-card__icon svg { width: 1.25rem; height: 1.25rem; }

.mv-split {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .mv-split { grid-template-columns: 1fr 1fr; }
}

.mv-proof { background: var(--mv-cream); padding-top: 5rem; }
@media (min-width: 1024px) {
  .mv-proof { padding-top: 6rem; }
}
.mv-proof__grid {
  width: min(100% - 2rem, var(--mv-wrap));
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-bottom: 0;
}
@media (min-width: 640px) {
  .mv-proof__grid { width: min(100% - 3rem, var(--mv-wrap)); }
}
@media (min-width: 1024px) {
  .mv-proof__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.mv-quote {
  margin: 2.5rem 0 0;
  padding: 0 0 0 1.25rem;
  border: 0;
  border-left: 2px solid var(--mv-primary);
}
.mv-quote p {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-2xl);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--mv-ink);
}
.mv-quote footer {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.15rem;
}
.mv-quote strong {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-sm);
  font-weight: 600;
  color: var(--mv-ink);
}
.mv-quote span {
  font-size: var(--mv-text-sm);
  color: var(--mv-muted);
}
.mv-chips {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mv-chips li {
  background: var(--mv-surface);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-xs);
  font-weight: 500;
  color: var(--mv-ink);
  box-shadow: var(--mv-shadow);
}
.mv-photo {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: var(--mv-radius-2xl);
  background: var(--mv-navy);
}
@media (min-width: 1024px) {
  .mv-photo { margin-top: 0; }
}
.mv-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.mv-proof__photos {
  width: min(100% - 2rem, var(--mv-wrap));
  margin: 1rem auto 0;
  display: grid;
  gap: 1rem;
  padding-bottom: 5rem;
}
@media (min-width: 640px) {
  .mv-proof__photos {
    width: min(100% - 3rem, var(--mv-wrap));
    grid-template-columns: 1fr 1fr;
  }
}
.mv-captioned {
  margin: 0;
  overflow: hidden;
  border-radius: var(--mv-radius-xl);
  background: var(--mv-navy);
}
.mv-captioned img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  outline: none;
}
.mv-captioned figcaption {
  padding: 1rem 1.25rem;
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-sm);
  color: var(--mv-navy-fg);
}

.mv-impact {
  background: var(--mv-navy);
  color: var(--mv-navy-fg);
}
.mv-impact__grid {
  width: min(100% - 2rem, var(--mv-wrap));
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .mv-impact__grid { width: min(100% - 3rem, var(--mv-wrap)); }
}
@media (min-width: 1024px) {
  .mv-impact__grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 5rem 0;
  }
}
.mv-impact__grid > div {
  border-top: 1px solid rgb(244 241 234 / 0.15);
  padding-top: 1.5rem;
}
.mv-impact__grid p {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-3xl);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.mv-impact__grid span {
  display: block;
  margin-top: 0.5rem;
  color: var(--mv-navy-muted);
}

.mv-process {
  background: var(--mv-cream);
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .mv-process { padding: 7rem 0; }
}
.mv-process__grid {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--mv-radius-xl);
  background: var(--mv-border);
  box-shadow: var(--mv-shadow);
}
@media (min-width: 640px) {
  .mv-process__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .mv-process__grid { grid-template-columns: repeat(4, 1fr); }
}
.mv-process__grid li {
  background: var(--mv-surface);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .mv-process__grid li { padding: 1.75rem; }
}
.mv-process__grid span {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-sm);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--mv-primary);
}
.mv-process__grid h3 {
  margin-top: 2rem;
  font-size: 1.125rem;
}
.mv-process__grid p {
  margin-top: 0.75rem;
  font-size: var(--mv-text-sm);
  line-height: 1.65;
  color: var(--mv-muted);
}

.mv-closing {
  width: min(100% - 2rem, var(--mv-wrap));
  margin-inline: auto;
  background: var(--mv-navy);
  color: var(--mv-navy-fg);
  border-radius: var(--mv-radius-2xl);
  padding: 3.5rem 1.5rem;
}
@media (min-width: 640px) {
  .mv-closing {
    width: min(100% - 3rem, var(--mv-wrap));
    padding: 5rem 3rem;
  }
}
.mv-closing h2 { color: var(--mv-navy-fg); max-width: 40rem; }
.mv-closing > p {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: var(--mv-navy-muted);
}

.mv-footer {
  background: var(--mv-navy);
  color: var(--mv-navy-fg);
}
.mv-footer__grid {
  width: min(100% - 2rem, var(--mv-wrap));
  margin-inline: auto;
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .mv-footer__grid { width: min(100% - 3rem, var(--mv-wrap)); }
}
@media (min-width: 1024px) {
  .mv-footer__grid {
    grid-template-columns: repeat(12, 1fr);
    padding: 5rem 0;
  }
  .mv-footer__brand { grid-column: span 5; }
  .mv-footer__cols { grid-column: span 7; }
}
.mv-footer__tagline {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: var(--mv-text-sm);
  line-height: 1.65;
  color: var(--mv-navy-muted);
}
.mv-footer__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 0;
  color: var(--mv-navy-fg);
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-sm);
  font-weight: 600;
  padding: 0;
}
.mv-footer__cta:hover { opacity: 0.8; }
.mv-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .mv-footer__cols { grid-template-columns: repeat(3, 1fr); }
}
.mv-footer__label {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mv-navy-muted);
}
.mv-footer ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  font-size: var(--mv-text-sm);
}
.mv-footer a,
.mv-footer button {
  color: inherit;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
}
.mv-footer a:hover,
.mv-footer button:hover { opacity: 0.8; }
.mv-footer__legal {
  border-top: 1px solid rgb(244 241 234 / 0.1);
}
.mv-footer__legal > * {
  width: min(100% - 2rem, var(--mv-wrap));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 0;
  font-size: var(--mv-text-xs);
  color: var(--mv-navy-muted);
}
@media (min-width: 640px) {
  .mv-footer__legal > * {
    width: min(100% - 3rem, var(--mv-wrap));
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.mv-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--mv-whatsapp);
  color: var(--mv-whatsapp-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--mv-shadow-hover);
  transition: transform 150ms var(--mv-ease);
}
.mv-wa:hover { transform: scale(1.04); }
.mv-wa:active { transform: scale(0.96); }
.mv-wa svg { width: 1.75rem; height: 1.75rem; }
@media (min-width: 640px) {
  .mv-wa { right: 1.5rem; bottom: 1.5rem; }
}

.mv-modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: calc(100vw - 2rem);
  width: 32rem;
}
.mv-modal::backdrop {
  background: rgb(10 18 32 / 0.55);
}
.mv-modal__card {
  position: relative;
  background: var(--mv-paper);
  border-radius: var(--mv-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--mv-shadow-hover);
}
.mv-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--mv-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--mv-radius-sm);
}
.mv-modal__close:hover { color: var(--mv-ink); }
.mv-modal__title {
  font-size: var(--mv-text-xl);
  font-weight: 600;
}
.mv-modal__lead {
  margin-top: 0.4rem;
  font-size: var(--mv-text-sm);
  color: var(--mv-muted);
}
.mv-modal__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--mv-radius-lg);
  background: var(--mv-cream);
  color: var(--mv-primary);
  margin-bottom: 1rem;
}
.mv-modal__actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .mv-modal__actions { flex-direction: row; }
  .mv-modal__actions .mv-btn { flex: 1; }
}

.mv-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}
.mv-form__row {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .mv-form__row { grid-template-columns: 1fr 1fr; }
}
.mv-form label {
  display: grid;
  gap: 0.4rem;
}
.mv-form label span {
  font-size: var(--mv-text-sm);
  font-weight: 500;
}
.mv-form input,
.mv-form textarea {
  width: 100%;
  border: 0;
  background: var(--mv-surface);
  color: var(--mv-fg);
  border-radius: var(--mv-radius-md);
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  box-shadow: var(--mv-shadow);
}
.mv-form textarea { min-height: 7rem; resize: vertical; }
.mv-form input:focus-visible,
.mv-form textarea:focus-visible {
  outline: 2px solid var(--mv-primary);
  outline-offset: 1px;
}
.mv-form input::placeholder,
.mv-form textarea::placeholder { color: var(--mv-muted); }
.mv-form__hint {
  font-size: var(--mv-text-xs);
  color: var(--mv-muted);
}
.mv-form__error {
  margin: 0;
  font-size: var(--mv-text-sm);
  color: #9f1239;
}
.mv-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.mv-prose { max-width: 42rem; }
.mv-entry { margin-bottom: 2.5rem; }
.mv-entry__title { font-size: var(--mv-text-4xl); }
.mv-entry__title a { text-decoration: none; }
.mv-entry__body {
  margin-top: 1rem;
  color: var(--mv-muted);
}
.mv-entry__body p { margin: 0.8rem 0; }

.mv-rise {
  animation: mv-rise 500ms var(--mv-ease) both;
}
.mv-rise--1 { animation-delay: 60ms; }
.mv-rise--2 { animation-delay: 140ms; }
.mv-rise--3 { animation-delay: 220ms; }
.mv-rise--4 { animation-delay: 300ms; }

@keyframes mv-rise {
  from { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}

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

/* Gutenberg page content — native blocks */
.mv-page-content {
  width: 100%;
}
.mv-page-content > .alignfull,
.mv-page-content > .wp-block-group.alignfull {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}
.mv-brand .custom-logo {
  height: 2.5rem;
  width: auto;
  outline: none;
}

.mv-page-content .wp-block-heading,
.mv-page-content .wp-block-image,
.mv-page-content .wp-block-list,
.mv-page-content .wp-block-quote,
.mv-page-content .wp-block-buttons,
.mv-page-content .wp-block-button,
.editor-styles-wrapper .wp-block-image,
.editor-styles-wrapper .wp-block-list,
.editor-styles-wrapper .wp-block-quote,
.editor-styles-wrapper .wp-block-buttons {
  margin-block: 0;
}

.mv-page-content .mv-wrap,
.mv-page-content .mv-hero__grid,
.mv-page-content .mv-proof__grid,
.mv-page-content .mv-proof__photos,
.mv-page-content .mv-impact__grid,
.mv-page-content .mv-closing,
.mv-page-content .mv-clients .mv-wrap,
.mv-hero > .wp-block-columns,
.mv-clients .wp-block-columns,
.mv-section .wp-block-columns,
.mv-proof > .wp-block-columns,
.mv-impact > .wp-block-columns,
.mv-process .wp-block-columns,
.editor-styles-wrapper .mv-wrap,
.editor-styles-wrapper .mv-hero__grid,
.editor-styles-wrapper .mv-proof__grid,
.editor-styles-wrapper .mv-proof__photos,
.editor-styles-wrapper .mv-impact__grid,
.editor-styles-wrapper .mv-closing {
  width: min(100% - 2rem, var(--mv-wrap)) !important;
  max-width: var(--mv-wrap) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.wp-block-group.mv-hero__grid {
  display: grid;
}
.wp-block-group.mv-clients__grid {
  display: grid;
}
.wp-block-group.mv-cards,
.wp-block-group.mv-split,
.wp-block-group.mv-proof__grid,
.wp-block-group.mv-proof__photos,
.wp-block-group.mv-impact__grid,
.wp-block-group.mv-process__grid {
  display: grid;
}

.mv-clients__item p {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mv-navy-muted);
  margin: 0;
}
.mv-clients__item .mv-clients__wordmark {
  color: var(--mv-navy-fg);
  font-size: var(--mv-text-lg);
  font-weight: 600;
  letter-spacing: 0.2em;
}

.mv-card .mv-step { margin: 0; }
.mv-card h3 { margin-top: 1.5rem; }
.mv-card p { margin-top: 0.75rem; }

.mv-card--nr17::before,
.mv-card--nr1::before {
  content: "";
  width: 2.75rem;
  height: 2.75rem;
  display: block;
  border-radius: var(--mv-radius-md);
  background-color: var(--mv-cream);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
}
.mv-card--nr17::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d6bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 12h-4l-3 7-6-14-3 7H2'/></svg>");
}
.mv-card--nr1::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d6bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 13c0 5-3.5 7.5-8 9-4.5-1.5-8-4-8-9V6l8-3 8 3Z'/><path d='m9 12 2 2 4-4'/></svg>");
}
.mv-card--nr17 h3,
.mv-card--nr1 h3 {
  margin-top: 1.5rem;
}

.wp-block-quote.mv-quote {
  box-shadow: none;
  padding: 0 0 0 1.25rem;
  border: 0;
  border-left: 2px solid var(--mv-primary);
}
.wp-block-quote.mv-quote::before {
  content: none;
}
.wp-block-quote.mv-quote p {
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-2xl);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--mv-ink);
}
.wp-block-quote.mv-quote cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-sm);
  font-weight: 600;
  color: var(--mv-ink);
  line-height: 1.45;
}

.mv-chips.wp-block-list,
ul.mv-chips {
  list-style: none;
}
.mv-trust.wp-block-list {
  list-style: none;
}

.mv-photo.wp-block-image,
.wp-block-image.mv-photo {
  overflow: hidden;
  border-radius: var(--mv-radius-2xl);
  background: var(--mv-navy);
}
.mv-hero__media.wp-block-image {
  overflow: hidden;
  border-radius: var(--mv-radius-2xl);
  background: var(--mv-cream);
  box-shadow: var(--mv-shadow);
  margin: 0;
}
.mv-captioned.wp-block-image {
  overflow: hidden;
  border-radius: var(--mv-radius-xl);
  background: var(--mv-navy);
}

.mv-impact__grid > .wp-block-group {
  border-top: 1px solid rgb(244 241 234 / 0.15);
  padding-top: 1.5rem;
}
.mv-impact__grid h3 {
  margin: 0;
  font-size: var(--mv-text-3xl);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--mv-navy-fg);
}
.mv-impact__grid p {
  display: block;
  margin-top: 0.5rem;
  color: var(--mv-navy-muted);
  font-size: inherit;
  font-weight: 400;
}

.mv-process__grid > .wp-block-group {
  background: var(--mv-surface);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .mv-process__grid > .wp-block-group { padding: 1.75rem; }
}
.mv-process__grid .mv-step {
  margin: 0;
}
.mv-process__grid h3 {
  margin-top: 2rem;
  font-size: 1.125rem;
}
.mv-process__grid p {
  margin-top: 0.75rem;
  font-size: var(--mv-text-sm);
  line-height: 1.65;
  color: var(--mv-muted);
}

.wp-block-buttons.mv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.wp-block-button {
  margin: 0;
}
.wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--mv-font-display);
  font-size: var(--mv-text-sm);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none !important;
  border: 0 !important;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--mv-radius-md);
  box-shadow: none;
  line-height: 1.2;
}
.wp-block-button.mv-btn--xl .wp-block-button__link {
  min-height: 3.5rem;
  padding: 0 1.75rem;
  font-size: 1rem;
  border-radius: var(--mv-radius-lg);
}
.wp-block-button.mv-btn--navy .wp-block-button__link {
  background: var(--mv-navy) !important;
  color: var(--mv-navy-fg) !important;
}
.wp-block-button.mv-btn--outline .wp-block-button__link {
  background: transparent !important;
  color: var(--mv-fg) !important;
  box-shadow: var(--mv-shadow);
}
.wp-block-button.mv-btn--inverse .wp-block-button__link {
  background: var(--mv-surface) !important;
  color: var(--mv-ink) !important;
}
.wp-block-button.mv-btn--ghost .wp-block-button__link {
  background: transparent !important;
  color: var(--mv-navy-fg) !important;
}

.mv-closing h2 {
  color: var(--mv-navy-fg);
  max-width: 40rem;
}
.mv-closing > p,
.mv-closing .wp-block-heading + p {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: var(--mv-navy-muted);
}


