:root {
    --mpm-navy: #0b2b50;
    --mpm-navy-2: #123e70;
    --mpm-blue: #1e80c7;
    --mpm-sky: #dff3ff;
    --mpm-orange: #f47a2b;
    --mpm-yellow: #ffc847;
    --mpm-green: #74a83b;
    --mpm-cream: #fffaf1;
    --mpm-white: #ffffff;
    --mpm-ink: #17324d;
    --mpm-muted: #5e7083;
    --mpm-line: #dce6ef;
    --mpm-shadow-sm: 0 10px 30px rgba(12, 43, 80, 0.08);
    --mpm-shadow-lg: 0 24px 70px rgba(12, 43, 80, 0.16);
    --mpm-radius-sm: 16px;
    --mpm-radius: 26px;
    --mpm-radius-lg: 38px;
    --mpm-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body.mpm-site {
    margin: 0;
    color: var(--mpm-ink);
    background: var(--mpm-white);
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.mpm-site.menu-open {
    overflow: hidden;
}

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

.mpm-site img {
    display: block;
    max-width: 100%;
}

.mpm-site a {
    color: inherit;
    text-decoration: none;
}

.mpm-site a:focus-visible,
.mpm-site button:focus-visible {
    outline: 3px solid var(--mpm-yellow);
    outline-offset: 4px;
}

.mpm-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.mpm-skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--mpm-navy);
    color: #fff;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.mpm-skip-link:focus {
    transform: translateY(0);
}

.mpm-topbar {
    position: relative;
    z-index: 1010;
    color: rgba(255, 255, 255, 0.88);
    background: var(--mpm-navy);
    font-size: 13px;
    font-weight: 700;
}

.mpm-topbar-inner {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mpm-topbar-list,
.mpm-social-list,
.mpm-nav-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mpm-topbar-list {
    gap: 24px;
}

.mpm-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 180ms ease;
}

.mpm-topbar-link:hover {
    color: var(--mpm-yellow);
}

.mpm-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

.mpm-social-list {
    gap: 10px;
}

.mpm-social-link {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #fff;
    transition: transform 180ms ease, background 180ms ease;
}

.mpm-social-link:hover {
    color: var(--mpm-navy);
    background: var(--mpm-yellow);
    transform: translateY(-2px);
}

.mpm-social-link .mpm-icon {
    width: 15px;
    height: 15px;
}

.mpm-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: 84px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(11, 43, 80, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow 220ms ease, min-height 220ms ease;
}

.mpm-header.is-scrolled {
    min-height: 72px;
    box-shadow: 0 12px 30px rgba(11, 43, 80, 0.1);
}

.mpm-header-inner {
    min-height: inherit;
    display: flex;
    align-items: center;
    gap: 34px;
}

.mpm-logo {
    position: relative;
    z-index: 2;
    width: 170px;
    flex: 0 0 auto;
}

.mpm-logo img {
    width: 100%;
    max-height: 68px;
    object-fit: contain;
}

.mpm-nav {
    flex: 1 1 auto;
}

.mpm-nav-list {
    justify-content: flex-end;
    gap: 5px;
}

.mpm-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 13px;
    color: var(--mpm-ink);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: color 180ms ease, background 180ms ease;
}

.mpm-nav-link:hover,
.mpm-nav-link.is-active {
    color: var(--mpm-blue);
    background: var(--mpm-sky);
}

.mpm-nav-link.is-active::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 5px;
    left: 15px;
    height: 3px;
    border-radius: 99px;
    background: var(--mpm-orange);
}

.mpm-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mpm-login-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-radius: 13px;
    color: var(--mpm-navy);
    font-size: 14px;
    font-weight: 800;
    transition: background 180ms ease;
}

.mpm-login-link:hover {
    background: #eff4f8;
}

.mpm-menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    padding: 0;
    border: 0;
    border-radius: 14px;
    color: var(--mpm-navy);
    background: #edf4fa;
    cursor: pointer;
}

.mpm-menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    margin: 5px auto;
    border-radius: 99px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
}

.mpm-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mpm-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mpm-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mpm-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 200ms var(--mpm-ease), box-shadow 200ms ease, background 180ms ease, color 180ms ease;
}

.mpm-button:hover {
    transform: translateY(-3px);
}

.mpm-button-primary {
    color: #fff;
    background: var(--mpm-orange);
    box-shadow: 0 12px 24px rgba(244, 122, 43, 0.26);
}

.mpm-button-primary:hover {
    color: #fff;
    background: #dd641a;
    box-shadow: 0 16px 30px rgba(244, 122, 43, 0.34);
}

.mpm-button-light {
    color: var(--mpm-navy);
    background: #fff;
    box-shadow: var(--mpm-shadow-sm);
}

.mpm-button-light:hover {
    color: var(--mpm-navy);
    background: var(--mpm-sky);
}

.mpm-button-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.mpm-button-outline:hover {
    color: var(--mpm-navy);
    border-color: #fff;
    background: #fff;
}

.mpm-button-small {
    min-height: 44px;
    padding: 0 17px;
}

.mpm-main {
    overflow: hidden;
}

.mpm-hero {
    position: relative;
    min-height: clamp(620px, 75vh, 790px);
    display: flex;
    align-items: center;
    isolation: isolate;
    color: #fff;
    background-color: var(--mpm-navy);
    background-position: center;
    background-size: cover;
}

.mpm-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 25, 51, 0.86) 0%, rgba(7, 36, 70, 0.72) 38%, rgba(7, 36, 70, 0.12) 72%, transparent 100%);
}

.mpm-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -80px;
    bottom: -120px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.04), 0 0 0 72px rgba(255, 255, 255, 0.025);
}

.mpm-hero-inner {
    width: 100%;
    padding: 96px 0 122px;
}

.mpm-hero-copy {
    width: min(670px, 60%);
}

.mpm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--mpm-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.mpm-eyebrow::before {
    content: "";
    width: 34px;
    height: 4px;
    border-radius: 99px;
    background: currentColor;
}

.mpm-hero .mpm-eyebrow {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.mpm-hero .mpm-eyebrow::before {
    width: 8px;
    height: 8px;
    background: var(--mpm-yellow);
}

.mpm-hero-title,
.mpm-section-title,
.mpm-cta-title {
    margin: 0;
    color: var(--mpm-navy);
    font-family: "Fredoka", "Trebuchet MS", sans-serif;
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.mpm-hero-title {
    max-width: 760px;
    color: #fff;
    font-size: clamp(48px, 6.2vw, 82px);
    text-wrap: balance;
}

.mpm-hero-description {
    max-width: 620px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.65;
}

.mpm-hero-actions,
.mpm-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.mpm-hero-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 17px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
}

.mpm-hero-note span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mpm-hero-note .mpm-icon {
    color: var(--mpm-yellow);
}

.mpm-hero-wave {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 82px;
    color: #fff;
}

.mpm-section {
    position: relative;
    padding: 110px 0;
}

.mpm-section-soft {
    background: #f5f9fc;
}

.mpm-section-warm {
    background: var(--mpm-cream);
}

.mpm-section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.mpm-section-title {
    font-size: clamp(36px, 4.6vw, 56px);
    text-wrap: balance;
}

.mpm-section-description {
    max-width: 690px;
    margin: 20px auto 0;
    color: var(--mpm-muted);
    font-size: 18px;
    line-height: 1.75;
}

.mpm-program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mpm-program-card {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(11, 43, 80, 0.08);
    border-radius: var(--mpm-radius);
    background: #fff;
    box-shadow: var(--mpm-shadow-sm);
    transition: transform 320ms var(--mpm-ease), box-shadow 320ms ease;
}

.mpm-program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--mpm-shadow-lg);
}

.mpm-program-media {
    position: relative;
    height: 248px;
    overflow: hidden;
    background: var(--mpm-sky);
}

.mpm-program-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(11, 43, 80, 0.28));
}

.mpm-program-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--mpm-ease);
}

.mpm-program-card:hover .mpm-program-media img {
    transform: scale(1.06);
}

.mpm-program-number {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 16px;
    min-width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 3px solid rgba(255, 255, 255, 0.52);
    border-radius: 50%;
    color: #fff;
    background: var(--mpm-orange);
    font-family: "Fredoka", sans-serif;
    font-size: 18px;
    font-weight: 650;
}

.mpm-program-content {
    flex: 1;
    padding: 30px 28px 32px;
}

.mpm-program-content h3 {
    margin: 0 0 14px;
    color: var(--mpm-navy);
    font-family: "Fredoka", sans-serif;
    font-size: 25px;
    font-weight: 650;
    line-height: 1.2;
}

.mpm-program-content p {
    margin: 0;
    color: var(--mpm-muted);
}

.mpm-trust {
    color: #fff;
    background: var(--mpm-navy);
}

.mpm-trust::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image: radial-gradient(circle at 15% 25%, var(--mpm-blue) 0, transparent 32%), radial-gradient(circle at 85% 70%, var(--mpm-orange) 0, transparent 27%);
}

.mpm-trust-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 72px;
}

.mpm-trust-copy .mpm-eyebrow {
    color: var(--mpm-yellow);
}

.mpm-trust-copy .mpm-section-title {
    color: #fff;
}

.mpm-trust-copy .mpm-section-description {
    margin-right: 0;
    margin-left: 0;
    color: rgba(255, 255, 255, 0.72);
}

.mpm-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mpm-stat {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: transform 220ms var(--mpm-ease), background 220ms ease;
}

.mpm-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.13);
}

.mpm-stat-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: var(--mpm-yellow);
    font-family: "Fredoka", sans-serif;
    font-size: 54px;
    font-weight: 650;
    line-height: 1;
}

.mpm-stat-value small {
    font-size: 25px;
}

.mpm-stat-label {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 800;
}

.mpm-identity-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: 72px;
}

.mpm-identity-media {
    position: relative;
    min-height: 610px;
}

.mpm-identity-image {
    width: calc(100% - 48px);
    height: 570px;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--mpm-shadow-lg);
}

.mpm-identity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mpm-identity-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 170px;
    display: grid;
    place-items: center;
    padding: 20px;
    border: 9px solid var(--mpm-cream);
    border-radius: 50%;
    color: var(--mpm-navy);
    background: var(--mpm-yellow);
    box-shadow: var(--mpm-shadow-sm);
    text-align: center;
    font-family: "Fredoka", sans-serif;
    font-size: 21px;
    font-weight: 650;
    line-height: 1.1;
}

.mpm-principle-list {
    display: grid;
    gap: 15px;
    margin-top: 32px;
}

.mpm-principle {
    position: relative;
    padding: 23px 24px 23px 76px;
    border: 1px solid rgba(11, 43, 80, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--mpm-shadow-sm);
    transition: transform 220ms var(--mpm-ease), border-color 220ms ease;
}

.mpm-principle:hover {
    border-color: rgba(30, 128, 199, 0.28);
    transform: translateX(7px);
}

.mpm-principle-icon {
    position: absolute;
    top: 23px;
    left: 22px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--mpm-blue);
    background: var(--mpm-sky);
}

.mpm-principle:nth-child(2) .mpm-principle-icon {
    color: #b44b10;
    background: #fff0e5;
}

.mpm-principle:nth-child(3) .mpm-principle-icon {
    color: #517c24;
    background: #edf7e2;
}

.mpm-principle h3 {
    margin: 0 0 7px;
    color: var(--mpm-navy);
    font-family: "Fredoka", sans-serif;
    font-size: 21px;
    font-weight: 650;
}

.mpm-principle p {
    margin: 0;
    color: var(--mpm-muted);
    line-height: 1.65;
}

.mpm-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mpm-feature {
    position: relative;
    min-height: 275px;
    overflow: hidden;
    padding: 30px 25px;
    border: 1px solid rgba(11, 43, 80, 0.08);
    border-radius: 23px;
    background: #fff;
    box-shadow: var(--mpm-shadow-sm);
    transition: transform 260ms var(--mpm-ease), box-shadow 260ms ease;
}

.mpm-feature::after {
    content: "";
    position: absolute;
    right: -25px;
    bottom: -25px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--feature-soft, var(--mpm-sky));
    transition: transform 350ms var(--mpm-ease);
}

.mpm-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--mpm-shadow-lg);
}

.mpm-feature:hover::after {
    transform: scale(1.25);
}

.mpm-feature:nth-child(2) {
    --feature-soft: #fff0e4;
}

.mpm-feature:nth-child(3) {
    --feature-soft: #eef7e5;
}

.mpm-feature:nth-child(4) {
    --feature-soft: #fff6d8;
}

.mpm-feature-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 18px;
    color: #fff;
    background: var(--mpm-blue);
    box-shadow: 0 12px 22px rgba(30, 128, 199, 0.2);
}

.mpm-feature:nth-child(2) .mpm-feature-icon {
    background: var(--mpm-orange);
}

.mpm-feature:nth-child(3) .mpm-feature-icon {
    background: var(--mpm-green);
}

.mpm-feature:nth-child(4) .mpm-feature-icon {
    color: var(--mpm-navy);
    background: var(--mpm-yellow);
}

.mpm-feature h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--mpm-navy);
    font-family: "Fredoka", sans-serif;
    font-size: 22px;
    font-weight: 650;
    line-height: 1.2;
}

.mpm-feature p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--mpm-muted);
    line-height: 1.65;
}

.mpm-cta-wrap {
    padding: 0 0 110px;
    background: var(--mpm-cream);
}

.mpm-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 45px;
    padding: 60px 64px;
    border-radius: var(--mpm-radius-lg);
    color: #fff;
    background: linear-gradient(130deg, var(--mpm-navy), var(--mpm-navy-2));
    box-shadow: var(--mpm-shadow-lg);
}

.mpm-cta::before,
.mpm-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.mpm-cta::before {
    top: -110px;
    right: 17%;
    width: 260px;
    height: 260px;
    background: rgba(244, 122, 43, 0.22);
}

.mpm-cta::after {
    right: -80px;
    bottom: -120px;
    width: 290px;
    height: 290px;
    border: 38px solid rgba(255, 200, 71, 0.12);
}

.mpm-cta-copy,
.mpm-cta-actions {
    position: relative;
    z-index: 1;
}

.mpm-cta-title {
    max-width: 760px;
    color: #fff;
    font-size: clamp(35px, 4vw, 50px);
}

.mpm-cta-copy p {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
}

.mpm-cta-actions {
    min-width: 235px;
    flex-direction: column;
    margin-top: 0;
}

.mpm-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #071f39;
}

.mpm-footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.75fr;
    gap: 70px;
    padding: 76px 0 58px;
}

.mpm-footer-logo {
    width: 184px;
    margin-bottom: 22px;
    padding: 12px 16px;
    border-radius: 17px;
    background: #fff;
}

.mpm-footer-logo img {
    width: 100%;
}

.mpm-footer-intro {
    max-width: 410px;
    margin: 0;
    line-height: 1.7;
}

.mpm-footer-title {
    margin: 4px 0 22px;
    color: #fff;
    font-family: "Fredoka", sans-serif;
    font-size: 20px;
    font-weight: 650;
}

.mpm-footer-list {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mpm-footer-list li,
.mpm-footer-list a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mpm-footer-list a:hover {
    color: var(--mpm-yellow);
}

.mpm-footer-list .mpm-icon {
    margin-top: 3px;
    color: var(--mpm-orange);
}

.mpm-footer-nav a {
    display: inline-flex;
    transition: color 180ms ease, transform 180ms ease;
}

.mpm-footer-nav a:hover {
    transform: translateX(4px);
}

.mpm-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mpm-footer-bottom-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 13px;
}

.mpm-footer-bottom p {
    margin: 0;
}

.mpm-footer-socials {
    display: flex;
    gap: 10px;
}

.mpm-whatsapp {
    position: fixed;
    z-index: 950;
    right: 24px;
    bottom: 24px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 19px;
    border: 4px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: #22a95a;
    box-shadow: 0 13px 35px rgba(11, 43, 80, 0.26);
    font-size: 14px;
    font-weight: 900;
    transition: transform 220ms var(--mpm-ease), background 180ms ease;
}

.mpm-whatsapp:hover {
    color: #fff;
    background: #168b48;
    transform: translateY(-5px) scale(1.02);
}

.mpm-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms var(--mpm-ease);
}

.mpm-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mpm-delay-1 {
    transition-delay: 80ms;
}

.mpm-delay-2 {
    transition-delay: 160ms;
}

.mpm-delay-3 {
    transition-delay: 240ms;
}

@media (max-width: 1080px) {
    .mpm-header-actions .mpm-login-link {
        display: none;
    }

    .mpm-nav-link {
        padding: 0 10px;
    }

    .mpm-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mpm-footer-main {
        gap: 40px;
    }
}

@media (max-width: 920px) {
    .mpm-topbar-list li:nth-child(3) {
        display: none;
    }

    .mpm-menu-toggle {
        display: block;
    }

    .mpm-header-inner {
        justify-content: space-between;
    }

    .mpm-nav {
        position: fixed;
        z-index: 1001;
        top: 123px;
        right: 18px;
        left: 18px;
        max-height: calc(100vh - 142px);
        overflow-y: auto;
        padding: 18px;
        border: 1px solid var(--mpm-line);
        border-radius: 22px;
        background: #fff;
        box-shadow: var(--mpm-shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px) scale(0.98);
        transform-origin: top;
        transition: opacity 200ms ease, transform 240ms var(--mpm-ease), visibility 200ms ease;
    }

    .mpm-header.is-scrolled .mpm-nav {
        top: 111px;
    }

    .mpm-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .mpm-nav-list {
        display: grid;
        gap: 6px;
    }

    .mpm-nav-link {
        width: 100%;
        min-height: 50px;
        padding: 0 16px;
    }

    .mpm-nav-link.is-active::after {
        top: 12px;
        right: auto;
        bottom: 12px;
        left: 4px;
        width: 4px;
        height: auto;
    }

    .mpm-hero-copy {
        width: min(660px, 80%);
    }

    .mpm-program-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }

    .mpm-program-card {
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
    }

    .mpm-program-media {
        height: 100%;
        min-height: 300px;
    }

    .mpm-trust-layout,
    .mpm-identity-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mpm-identity-media {
        max-width: 650px;
        min-height: 560px;
    }

    .mpm-identity-image {
        height: 520px;
    }

    .mpm-cta {
        grid-template-columns: 1fr;
        padding: 52px 44px;
    }

    .mpm-cta-actions {
        min-width: 0;
        flex-direction: row;
    }

    .mpm-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .mpm-footer-main > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .mpm-shell {
        width: min(100% - 28px, 1180px);
    }

    .mpm-topbar {
        display: none;
    }

    .mpm-header,
    .mpm-header.is-scrolled {
        min-height: 72px;
    }

    .mpm-logo {
        width: 145px;
    }

    .mpm-header-actions > .mpm-button {
        display: none;
    }

    .mpm-nav,
    .mpm-header.is-scrolled .mpm-nav {
        top: 84px;
        max-height: calc(100vh - 100px);
    }

    .mpm-nav::after {
        content: "Admisiones " attr(data-year);
        min-height: 48px;
        display: grid;
        place-items: center;
        margin-top: 10px;
        border-radius: 13px;
        color: #fff;
        background: var(--mpm-orange);
        font-size: 14px;
        font-weight: 900;
    }

    .mpm-hero {
        min-height: 680px;
        align-items: flex-end;
        background-position: 63% center;
    }

    .mpm-hero::before {
        background: linear-gradient(0deg, rgba(5, 25, 51, 0.96) 0%, rgba(5, 25, 51, 0.82) 58%, rgba(5, 25, 51, 0.34) 100%);
    }

    .mpm-hero-inner {
        padding: 130px 0 102px;
    }

    .mpm-hero-copy {
        width: 100%;
    }

    .mpm-hero-title {
        font-size: clamp(43px, 13vw, 58px);
    }

    .mpm-hero-description {
        font-size: 17px;
    }

    .mpm-hero-actions,
    .mpm-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mpm-hero-actions .mpm-button,
    .mpm-cta-actions .mpm-button {
        width: 100%;
    }

    .mpm-hero-note {
        display: grid;
        gap: 8px;
    }

    .mpm-section {
        padding: 82px 0;
    }

    .mpm-section-heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .mpm-section-heading .mpm-section-description {
        margin-left: 0;
    }

    .mpm-section-title {
        font-size: clamp(35px, 10vw, 45px);
    }

    .mpm-section-description {
        font-size: 16px;
    }

    .mpm-program-card {
        display: flex;
    }

    .mpm-program-media {
        height: 230px;
        min-height: 0;
    }

    .mpm-program-content {
        padding: 26px 23px 28px;
    }

    .mpm-trust-layout {
        gap: 38px;
    }

    .mpm-stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .mpm-stat {
        min-height: 145px;
        padding: 20px 17px;
    }

    .mpm-stat-value {
        font-size: 42px;
    }

    .mpm-identity-media {
        min-height: 430px;
    }

    .mpm-identity-image {
        width: calc(100% - 26px);
        height: 405px;
        border-radius: 26px;
    }

    .mpm-identity-badge {
        width: 122px;
        height: 122px;
        border-width: 6px;
        font-size: 16px;
    }

    .mpm-principle {
        padding: 22px 20px 22px 68px;
    }

    .mpm-principle-icon {
        left: 18px;
    }

    .mpm-feature-grid {
        grid-template-columns: 1fr;
    }

    .mpm-feature {
        min-height: 0;
    }

    .mpm-cta-wrap {
        padding-bottom: 80px;
    }

    .mpm-cta {
        gap: 30px;
        padding: 40px 24px;
        border-radius: 28px;
    }

    .mpm-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 42px;
    }

    .mpm-footer-main > :first-child {
        grid-column: auto;
    }

    .mpm-footer-bottom-inner {
        min-height: 100px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .mpm-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 58px;
        height: 58px;
        justify-content: center;
        padding: 0;
        border-width: 3px;
    }

    .mpm-whatsapp span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .mpm-site *,
    .mpm-site *::before,
    .mpm-site *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .mpm-reveal {
        opacity: 1;
        transform: none;
    }
}
