:root {
    --ms-black: #07090d;
    --ms-blue-deep: #061426;
    --ms-blue: #0b2f66;
    --ms-blue-soft: #123f84;
    --ms-blue-bright: #1479ff;
    --ms-orange: #ff7a00;
    --ms-orange-bright: #ff9d00;
    --ms-yellow: #ffc400;
    --ms-white: #ffffff;
    --ms-muted: #b8c7d9;
    --ms-light-bg: #f5f8ff;
    --ms-dark-text: #07101d;
    --ms-soft-text: #4f6075;
    --ms-container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--ms-blue-deep);
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--ms-blue-deep);
    color: var(--ms-white);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

input,
select,
textarea {
    width: 100%;
}

.ms-booting * {
    transition: none !important;
    animation-play-state: paused !important;
}

/* HEADER */

.ms-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 50;
    width: calc(100% - 40px);
    max-width: var(--ms-container);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    background: rgba(6, 20, 38, 0.92);
    padding: 12px 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
    transform: translateX(-50%);
}

.ms-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    text-decoration: none;
}

.ms-logo__mark {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 20px;
    background: #07101d;
    padding: 4px;
    box-shadow: 0 12px 28px rgba(20, 121, 255, 0.20);
}

.ms-logo__mark img {
    width: 100%;
    height: 100%;
    border-radius: 17px;
    object-fit: cover;
}

.ms-logo__text strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    line-height: 18px;
    text-transform: uppercase;
}

.ms-logo__text small {
    display: block;
    color: var(--ms-orange-bright);
    font-size: 11px;
    font-weight: 900;
    line-height: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.ms-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ms-nav a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 800;
    line-height: 18px;
    text-decoration: none;
    transition: color 220ms ease;
}

.ms-nav a:hover {
    color: var(--ms-orange-bright);
}

.ms-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ms-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ms-orange), var(--ms-yellow));
    color: #07101d;
    padding: 13px 18px;
    box-shadow: 0 14px 34px rgba(255, 122, 0, 0.24);
    font-size: 14px;
    font-weight: 900;
    line-height: 16px;
    text-decoration: none;
}

.ms-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
}

.ms-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #ffffff;
}

.ms-mobile-menu {
    position: fixed;
    top: 94px;
    left: 50%;
    z-index: 49;
    width: calc(100% - 40px);
    max-width: var(--ms-container);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: #061426;
    padding: 10px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    transform: translateX(-50%);
}

.ms-mobile-menu[hidden] {
    display: none;
}

.ms-mobile-menu a {
    display: block;
    border-radius: 16px;
    color: #ffffff;
    padding: 13px 14px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.ms-mobile-menu a:last-child {
    background: linear-gradient(135deg, var(--ms-orange), var(--ms-yellow));
    color: #07101d;
}

/* SHARED */

.ms-eyebrow {
    display: inline-flex;
    width: fit-content;
    border: 1px solid rgba(255, 122, 0, 0.34);
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.14);
    color: var(--ms-orange-bright);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 900;
    line-height: 12px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.ms-eyebrow--dark {
    border-color: rgba(20, 121, 255, 0.24);
    background: rgba(20, 121, 255, 0.10);
    color: var(--ms-blue-bright);
}

.ms-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    border-radius: 999px;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 900;
    line-height: 18px;
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.ms-button:hover {
    transform: translateY(-3px);
}

.ms-button--primary {
    background: linear-gradient(135deg, var(--ms-orange), var(--ms-yellow));
    color: #07101d;
    box-shadow: 0 20px 48px rgba(255, 122, 0, 0.24);
}

.ms-button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* HERO */

.ms-hero {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 14%, rgba(20, 121, 255, 0.34), transparent 360px),
        radial-gradient(circle at 88% 20%, rgba(255, 122, 0, 0.30), transparent 360px),
        linear-gradient(135deg, #03070d 0%, #061426 48%, #0b2f66 100%);
    padding: 154px 0 58px;
}

.ms-hero__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.10;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
    background-size: 54px 54px;
}

.ms-hero__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.10;
    background-image:
        radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
        radial-gradient(circle at 80px 80px, rgba(255, 122, 0, 0.10) 1px, transparent 1px);
    background-size: 42px 42px;
}

.ms-hero__line {
    position: absolute;
    height: 120px;
    border-radius: 999px;
    pointer-events: none;
    background: rgba(255, 122, 0, 0.55);
    transform: rotate(-8deg);
}

.ms-hero__line--one {
    left: -100px;
    top: 330px;
    width: 560px;
    opacity: 0.16;
}

.ms-hero__line--two {
    right: -120px;
    bottom: 190px;
    width: 620px;
    opacity: 0.13;
}

.ms-hero__orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.ms-hero__orb--blue {
    right: -190px;
    top: 220px;
    width: 470px;
    height: 470px;
    background: rgba(20, 121, 255, 0.16);
}

.ms-hero__orb--orange {
    left: -190px;
    bottom: 130px;
    width: 440px;
    height: 440px;
    background: rgba(255, 122, 0, 0.16);
}

.ms-hero__container {
    position: relative;
    z-index: 5;
    width: calc(100% - 40px);
    max-width: var(--ms-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: center;
    gap: 52px;
}

.ms-hero__content h1 {
    max-width: 780px;
    margin: 24px 0 0;
    color: #ffffff;
    font-family: "Anton", sans-serif;
    font-size: 88px;
    font-weight: 400;
    line-height: 88px;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.ms-hero__content h1::after {
    content: "";
    display: block;
    width: 230px;
    height: 9px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ms-orange), var(--ms-yellow), transparent);
}

.ms-hero__content p {
    max-width: 660px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    font-weight: 600;
    line-height: 33px;
}

.ms-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ms-hero__trust {
    display: grid;
    max-width: 660px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 36px;
}

.ms-hero__trust article {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.075);
    padding: 17px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.ms-hero__trust i {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ms-orange), var(--ms-yellow));
    color: #07101d;
    font-size: 20px;
}

.ms-hero__trust strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 18px;
}

.ms-hero__trust span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 700;
    line-height: 17px;
}

/* HERO VISUAL */

.ms-hero__visual {
    position: relative;
}

.ms-hero__image-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 46px;
    background: rgba(255, 255, 255, 0.10);
    padding: 10px;
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.ms-hero__image-card > img {
    width: 100%;
    height: 620px;
    border-radius: 36px;
    object-fit: cover;
    object-position: center;
    background: #061426;
}

.ms-hero__image-overlay {
    position: absolute;
    inset: 10px;
    border-radius: 36px;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent 44%, rgba(0, 0, 0, 0.78)),
        radial-gradient(circle at 72% 18%, rgba(255, 122, 0, 0.20), transparent 270px);
}

.ms-hero__logo-card {
    position: absolute;
    left: 22px;
    top: 22px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 999px;
    background: rgba(6, 20, 38, 0.88);
    padding: 9px 14px 9px 9px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.ms-hero__logo-card img {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
}

.ms-hero__logo-card span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 14px;
    text-transform: uppercase;
}

.ms-hero__glass {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 7;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    background: rgba(6, 20, 38, 0.88);
    padding: 18px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.ms-hero__glass span {
    display: block;
    color: var(--ms-orange-bright);
    font-size: 11px;
    font-weight: 900;
    line-height: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.ms-hero__glass strong {
    display: block;
    margin-top: 7px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    line-height: 27px;
}

.ms-hero__floating {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: rgba(6, 20, 38, 0.92);
    color: #ffffff;
    padding: 12px 15px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    font-size: 13px;
    font-weight: 900;
    line-height: 15px;
}

.ms-hero__floating i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ms-orange), var(--ms-yellow));
    color: #07101d;
}

.ms-hero__floating--one {
    left: -26px;
    top: 120px;
}

.ms-hero__floating--two {
    right: -24px;
    bottom: 140px;
}

.ms-hero__services {
    position: relative;
    z-index: 6;
    width: calc(100% - 40px);
    max-width: var(--ms-container);
    margin: 44px auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.ms-hero__services span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.075);
    color: #ffffff;
    padding: 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    font-size: 13px;
    font-weight: 900;
    line-height: 15px;
    text-align: center;
}

.ms-hero__services i {
    color: var(--ms-orange-bright);
}

/* SECTIONS */

.ms-section {
    position: relative;
    overflow: hidden;
    background: var(--ms-light-bg);
    color: var(--ms-dark-text);
}

.ms-section__container {
    width: calc(100% - 40px);
    max-width: var(--ms-container);
    margin: 0 auto;
    padding: 92px 0;
}

.ms-section__heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.ms-section__heading h2,
.ms-proof__content h2,
.ms-contact__content h2 {
    margin: 20px 0 0;
    font-family: "Anton", sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 64px;
    text-transform: uppercase;
}

.ms-section__heading p,
.ms-proof__content p,
.ms-contact__content p {
    margin: 18px 0 0;
    color: var(--ms-soft-text);
    font-size: 17px;
    font-weight: 600;
    line-height: 30px;
}

/* SERVICES */

.ms-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ms-service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 16, 29, 0.10);
    border-radius: 30px;
    background: #ffffff;
    padding: 26px;
    box-shadow: 0 18px 44px rgba(6, 20, 38, 0.09);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.ms-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(6, 20, 38, 0.13);
}

.ms-service-card span {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--ms-blue), var(--ms-blue-bright));
    color: #ffffff;
}

.ms-service-card span i {
    font-size: 25px;
}

.ms-service-card h3 {
    margin: 22px 0 0;
    color: #07101d;
    font-size: 24px;
    font-weight: 900;
    line-height: 28px;
}

.ms-service-card p {
    margin: 10px 0 0;
    color: #4f6075;
    font-size: 15px;
    font-weight: 600;
    line-height: 25px;
}

.ms-service-card--accent {
    background: linear-gradient(135deg, var(--ms-blue-deep), var(--ms-blue));
}

.ms-service-card--accent h3 {
    color: #ffffff;
}

.ms-service-card--accent p {
    color: rgba(255, 255, 255, 0.72);
}

.ms-service-card--accent span {
    background: linear-gradient(135deg, var(--ms-orange), var(--ms-yellow));
    color: #07101d;
}

/* PROOF */

.ms-proof {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #03070d, #061426, #0b2f66);
    color: #ffffff;
}

.ms-proof__container {
    width: calc(100% - 40px);
    max-width: var(--ms-container);
    margin: 0 auto;
    padding: 96px 0;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 42px;
}

.ms-proof__content p {
    color: rgba(255, 255, 255, 0.76);
}

.ms-proof__list {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.ms-proof__list p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    padding: 13px 15px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.ms-proof__list i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ms-orange), var(--ms-yellow));
    color: #07101d;
}

.ms-proof__card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.09);
    padding: 34px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.ms-proof__card > i {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--ms-orange), var(--ms-yellow));
    color: #07101d;
    font-size: 34px;
}

.ms-proof__card h3 {
    margin: 24px 0 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    line-height: 35px;
}

.ms-proof__card p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
}

.ms-proof__card .ms-button {
    width: 100%;
    margin-top: 24px;
}

/* PROCESS */

.ms-process {
    background: var(--ms-light-bg);
}

.ms-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ms-process__grid article {
    border-radius: 30px;
    background: #ffffff;
    padding: 28px;
    box-shadow: 0 18px 44px rgba(6, 20, 38, 0.09);
}

.ms-process__grid span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--ms-blue), var(--ms-blue-bright));
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.ms-process__grid h3 {
    margin: 22px 0 0;
    color: #07101d;
    font-size: 24px;
    font-weight: 900;
    line-height: 28px;
}

.ms-process__grid p {
    margin: 10px 0 0;
    color: #4f6075;
    font-size: 15px;
    font-weight: 600;
    line-height: 25px;
}

/* CONTACT */

.ms-contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #061426, #0b2f66);
    color: #ffffff;
}

.ms-contact__container {
    width: calc(100% - 40px);
    max-width: var(--ms-container);
    margin: 0 auto;
    padding: 96px 0;
    display: grid;
    grid-template-columns: 1fr 460px;
    align-items: start;
    gap: 44px;
}

.ms-contact__content p {
    color: rgba(255, 255, 255, 0.74);
}

.ms-contact__buttons {
    display: grid;
    max-width: 440px;
    gap: 12px;
    margin-top: 30px;
}

.ms-form {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.09);
    padding: 30px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.ms-form h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    line-height: 30px;
}

.ms-form label {
    display: block;
    margin-bottom: 14px;
}

.ms-form label span {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 15px;
}

.ms-form input,
.ms-form select,
.ms-form textarea {
    border: 0;
    outline: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 0 15px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    font-size: 15px;
    font-weight: 600;
}

.ms-form input::placeholder,
.ms-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.ms-form input,
.ms-form select {
    height: 52px;
}

.ms-form textarea {
    min-height: 124px;
    padding-top: 14px;
    resize: none;
}

.ms-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, #ff9d00 50%),
        linear-gradient(135deg, #ff9d00 50%, transparent 50%),
        rgba(255, 255, 255, 0.12);
    background-position:
        calc(100% - 22px) 22px,
        calc(100% - 15px) 22px,
        0 0;
    background-size:
        7px 7px,
        7px 7px,
        100% 100%;
    background-repeat: no-repeat;
    padding-right: 46px;
}

.ms-form select option {
    background: #061426;
    color: #ffffff;
    font-weight: 700;
}

.ms-form select:focus,
.ms-form input:focus,
.ms-form textarea:focus {
    box-shadow:
        inset 0 0 0 1px rgba(255, 157, 0, 0.55),
        0 0 0 4px rgba(255, 122, 0, 0.14);
}

.ms-form button {
    width: 100%;
    margin-top: 6px;
}

/* FOOTER */

.ms-footer {
    background: #03070d;
    color: #ffffff;
}

.ms-footer__container {
    width: calc(100% - 40px);
    max-width: var(--ms-container);
    margin: 0 auto;
    padding: 34px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ms-footer strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
}

.ms-footer p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 600;
}

.ms-footer a {
    display: inline-flex;
    margin-left: 10px;
    color: var(--ms-orange-bright);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

/* ANIMATIONS DESKTOP */

[data-ms-reveal] {
    opacity: 0;
    will-change: opacity, transform;
}

@keyframes msFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 26px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes msFadeDown {
    from {
        opacity: 0;
        transform: translate3d(0, -22px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes msFadeRight {
    from {
        opacity: 0;
        transform: translate3d(-28px, 8px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes msFadeLeft {
    from {
        opacity: 0;
        transform: translate3d(28px, 8px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ms-reveal-visible[data-ms-reveal="up"] {
    animation: msFadeUp 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.ms-reveal-visible[data-ms-reveal="down"] {
    animation: msFadeDown 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.ms-reveal-visible[data-ms-reveal="right"] {
    animation: msFadeRight 820ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.ms-reveal-visible[data-ms-reveal="left"] {
    animation: msFadeLeft 820ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

/* RESPONSIVE TABLET */

@media (max-width: 1080px) {
    .ms-nav {
        display: none;
    }

    .ms-menu-button {
        display: block;
    }

    .ms-hero__container,
    .ms-proof__container,
    .ms-contact__container {
        grid-template-columns: 1fr;
    }

    .ms-hero__visual {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }

    .ms-hero__services {
        grid-template-columns: repeat(3, 1fr);
    }

    .ms-services__grid,
    .ms-process__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* MOBILE */

@media (max-width: 760px) {
    html,
    body {
        overflow-x: hidden;
        background: #061426;
    }

    .ms-header,
    .ms-mobile-menu,
    .ms-hero__container,
    .ms-hero__services,
    .ms-section__container,
    .ms-proof__container,
    .ms-contact__container,
    .ms-footer__container {
        width: calc(100% - 32px);
    }

    .ms-header {
        top: 12px;
        border-radius: 24px;
        background: #061426;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
    }

    .ms-mobile-menu {
        top: 88px;
    }

    .ms-header__button {
        display: none;
    }

    .ms-logo__mark {
        width: 50px;
        height: 50px;
        border-radius: 17px;
    }

    .ms-logo__text strong {
        font-size: 14px;
        line-height: 16px;
    }

    .ms-logo__text small {
        font-size: 9px;
        line-height: 11px;
        letter-spacing: 1.1px;
    }

    .ms-hero {
        min-height: auto;
        padding: 128px 0 52px;
        background: linear-gradient(135deg, #03070d 0%, #061426 54%, #0b2f66 100%);
    }

    .ms-hero__grid,
    .ms-hero__noise,
    .ms-hero__line,
    .ms-hero__orb {
        display: none;
    }

    .ms-hero__container {
        gap: 34px;
    }

    .ms-hero__content h1 {
        font-size: 48px;
        line-height: 51px;
        text-shadow: none;
    }

    .ms-hero__content h1::after {
        width: 170px;
        height: 7px;
        margin-top: 15px;
    }

    .ms-hero__content p {
        font-size: 16px;
        line-height: 28px;
    }

    .ms-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ms-button {
        width: 100%;
    }

    .ms-button:hover,
    .ms-service-card:hover {
        transform: none;
    }

    .ms-hero__trust {
        grid-template-columns: 1fr;
    }

    .ms-hero__trust article,
    .ms-hero__services span,
    .ms-proof__list p,
    .ms-proof__card,
    .ms-form {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);
    }

    .ms-hero__image-card {
        border-radius: 30px;
        padding: 6px;
        background: #061426;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
    }

    .ms-hero__image-card > img {
        height: 380px;
        border-radius: 24px;
    }

    .ms-hero__image-overlay {
        inset: 6px;
        border-radius: 24px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent 50%, rgba(0, 0, 0, 0.72));
    }

    .ms-hero__logo-card {
        left: 16px;
        top: 16px;
        background: #061426;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    }

    .ms-hero__glass {
        left: 16px;
        right: 16px;
        bottom: 16px;
        border-radius: 22px;
        background: #061426;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    }

    .ms-hero__glass strong {
        font-size: 18px;
        line-height: 23px;
    }

    .ms-hero__floating {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        background: #061426;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    .ms-hero__services {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .ms-services__grid,
    .ms-process__grid {
        grid-template-columns: 1fr;
    }

    .ms-section__container,
    .ms-proof__container,
    .ms-contact__container {
        padding: 74px 0;
    }

    .ms-section__heading h2,
    .ms-proof__content h2,
    .ms-contact__content h2 {
        font-size: 42px;
        line-height: 46px;
    }

    .ms-proof {
        background: linear-gradient(135deg, #03070d, #061426, #0b2f66);
    }

    .ms-contact {
        background: linear-gradient(135deg, #061426, #0b2f66);
    }

    .ms-proof__card,
    .ms-form {
        padding: 26px;
    }

    .ms-footer__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .ms-footer a {
        margin-left: 0;
        margin-right: 10px;
    }

    
}

/* =========================================================
   MOBILE LIGHT ENTRANCE ANIMATION
   Animación ligera sin IntersectionObserver en móvil
   ========================================================= */

@media (max-width: 760px) {
    [data-ms-reveal] {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        will-change: opacity, transform;
    }

    .ms-mobile-enter {
        animation: msMobileEnter 620ms cubic-bezier(0.19, 1, 0.22, 1) both;
    }

    @keyframes msMobileEnter {
        from {
            opacity: 0;
            transform: translate3d(0, 18px, 0);
        }

        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }
}

@media (max-width: 430px) {
    .ms-header,
    .ms-mobile-menu,
    .ms-hero__container,
    .ms-hero__services,
    .ms-section__container,
    .ms-proof__container,
    .ms-contact__container,
    .ms-footer__container {
        width: calc(100% - 28px);
    }

    .ms-hero__content h1 {
        font-size: 43px;
        line-height: 46px;
    }

    .ms-hero__image-card > img {
        height: 340px;
    }
}