@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Pretendard:wght@400;500;600;700;800&display=swap');

:root {
    --mh-navy: #071a38;
    --mh-navy-light: #0d2a54;
    --mh-blue: #2f74ff;
    --mh-blue-dark: #185ae4;
    --mh-purple: #6656f5;
    --mh-aqua: #55ddd3;
    --mh-green: #2bc596;
    --mh-orange: #ff9a52;
    --mh-red: #ff5c74;
    --mh-bg: #f4f7fb;
    --mh-bg-blue: #f3f7ff;
    --mh-text: #101a2f;
    --mh-sub: #6d7890;
    --mh-light: #96a1b5;
    --mh-line: #e3e9f2;
    --mh-white: #fff;
    --mh-shadow: 0 25px 65px rgba(24, 55, 100, 0.09);
}

.mh-main,
.mh-main * {
    box-sizing: border-box;
}

.mh-main {
    overflow: hidden;
    color: var(--mh-text);
    background: var(--mh-bg);
    font-family: 'Pretendard', 'Inter', sans-serif;
}

.mh-main a {
    text-decoration: none;
}

.mh-main svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mh-section {
    padding: 115px 0;
}

.mh-section-head {
    margin-bottom: 52px;
}

.mh-section-head--center {
    text-align: center;
}

.mh-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--mh-blue);
    font: 800 12px/1 'Inter', sans-serif;
    letter-spacing: .14em;
}

.mh-eyebrow--light {
    color: var(--mh-aqua);
}

.mh-section-head h2,
.mh-analytics__content h2,
.mh-replace__content h2 {
    margin: 0;
    color: var(--mh-text);
    font-size: clamp(34px, 4.2vw, 50px);
    line-height: 1.25;
    letter-spacing: -.045em;
}

.mh-section-head p {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--mh-sub);
    font-size: 16px;
    line-height: 1.75;
}


/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.mh-btn {
    min-height: 56px;
    padding: 0 25px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: .22s ease;
}

.mh-btn svg {
    width: 18px;
    height: 18px;
}

.mh-btn:hover {
    transform: translateY(-2px);
}

.mh-btn--primary {
    color: #fff;
    background: var(--mh-blue);
    box-shadow: 0 16px 34px rgba(47, 116, 255, .25);
}

.mh-btn--primary:hover {
    background: var(--mh-blue-dark);
}

.mh-btn--secondary {
    border: 1px solid rgba(255, 255, 255, .17);
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .06);
}

.mh-btn--secondary:hover {
    background: rgba(255, 255, 255, .1);
}

.mh-btn--aqua {
    color: #052c36;
    background: var(--mh-aqua);
    box-shadow: 0 16px 35px rgba(85, 221, 211, .2);
}


/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.mh-hero {
    position: relative;
    min-height: 900px;
    padding: 155px 0 45px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #06172f 0%,
            #092550 55%,
            #15366c 100%
        );
}

.mh-hero__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.mh-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.mh-hero__glow--1 {
    width: 780px;
    height: 780px;
    right: -260px;
    top: -330px;
    background: radial-gradient(circle, rgba(75, 99, 255, .38), transparent 67%);
}

.mh-hero__glow--2 {
    width: 600px;
    height: 600px;
    left: -280px;
    bottom: -330px;
    background: radial-gradient(circle, rgba(85, 221, 211, .13), transparent 69%);
}

.mh-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 68px;
    width: min(1180px, 100% - 48px);
    margin: 0px auto;
}

.mh-badge {
    width: fit-content;
    margin-bottom: 25px;
    padding: 9px 14px;
    border: 1px solid rgba(85, 221, 211, .22);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--mh-aqua);
    background: rgba(85, 221, 211, .07);
    font: 700 11px/1 'Inter', sans-serif;
    letter-spacing: .1em;
}

.mh-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mh-aqua);
    box-shadow: 0 0 13px var(--mh-aqua);
}

.mh-hero__content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(43px, 5vw, 66px);
    line-height: 1.15;
    letter-spacing: -.055em;
}

.mh-hero__content h1 em {
    display: inline-block;
    color: #74ddff;
    font-style: normal;
}

.mh-hero__description {
    max-width: 600px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: 17px;
    line-height: 1.8;
    word-break: keep-all;
}

.mh-hero__actions {
    margin-top: 35px;
    display: flex;
    gap: 11px;
}

.mh-hero__points {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
}

.mh-hero__points span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mh-hero__points i {
    color: var(--mh-aqua);
    font-style: normal;
}


/*
|--------------------------------------------------------------------------
| HERO CONSOLE
|--------------------------------------------------------------------------
*/

.mh-hero__visual {
    position: relative;
    min-width: 0;
    padding: 30px 0 45px;
}

.mh-console {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(10, 32, 69, .94);
    box-shadow: 0 38px 95px rgba(0, 0, 0, .37);
    backdrop-filter: blur(15px);
    transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}

.mh-console__top {
    height: 48px;
    padding: 0 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, .35);
    font: 600 9px/1 'Inter', sans-serif;
}

.mh-console__top > b {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--mh-aqua);
    background: rgba(85, 221, 211, .1);
    font-size: 7px;
}

.mh-console__dots {
    display: flex;
    gap: 5px;
}

.mh-console__dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.mh-console__body {
    padding: 23px;
}

.mh-console__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mh-console__heading small,
.mh-console__analytics-head small {
    display: block;
    margin-bottom: 5px;
    color: #74ddff;
    font: 700 7px/1 'Inter', sans-serif;
    letter-spacing: .12em;
}

.mh-console__heading strong,
.mh-console__analytics-head strong {
    color: #fff;
    font-size: 17px;
}

.mh-console__heading button {
    height: 30px;
    padding: 0 12px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--mh-blue);
    font-size: 8px;
    font-weight: 700;

    display: flex;
    justify-content: center;
    align-items: center;
}

.mh-console__stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mh-console__stats article {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
}

.mh-console__stats span {
    display: block;
    color: rgba(255, 255, 255, .33);
    font-size: 7px;
}

.mh-console__stats strong {
    display: block;
    margin-top: 7px;
    color: #fff;
    font: 700 17px/1 'Inter', sans-serif;
}

.mh-console__stats strong small {
    margin-left: 3px;
    color: rgba(255, 255, 255, .35);
    font-size: 7px;
    font-weight: 500;
}

.mh-console__file {
    margin-top: 11px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 11px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, .035);
}

.mh-console__thumb {
    width: 46px;
    height: 46px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #73ddff;
    background: linear-gradient(135deg, rgba(47, 116, 255, .2), rgba(85, 221, 211, .12));
}

.mh-console__thumb svg {
    width: 20px;
}

.mh-console__file-info {
    min-width: 0;
}

.mh-console__file-info > strong {
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, .8);
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mh-console__file-info > span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .3);
    font-size: 6px;
}

.mh-console__file-meta {
    margin-top: 6px;
    display: flex;
    gap: 6px;
}

.mh-console__file-meta i {
    padding: 4px 6px;
    border-radius: 999px;
    color: var(--mh-aqua);
    background: rgba(85, 221, 211, .08);
    font-size: 5px;
    font-style: normal;
}

.mh-console__file-meta b {
    color: rgba(255, 255, 255, .3);
    font-size: 6px;
    font-weight: 500;
}

.mh-console__replace {
    min-width: 76px;
    padding: 9px;
    border: 1px solid rgba(85, 221, 211, .14);
    border-radius: 8px;
    color: var(--mh-aqua);
    background: rgba(85, 221, 211, .055);
}

.mh-console__replace span,
.mh-console__replace strong {
    display: block;
}

.mh-console__replace span {
    color: rgba(255, 255, 255, .32);
    font-size: 5px;
}

.mh-console__replace strong {
    margin-top: 3px;
    font-size: 7px;
}

.mh-console__replace svg {
    width: 12px;
    margin-top: 6px;
}

.mh-console__analytics {
    margin-top: 11px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 11px;
    background: rgba(255, 255, 255, .025);
}

.mh-console__analytics-head {
    display: flex;
    justify-content: space-between;
}

.mh-console__analytics-head > span {
    padding: 5px 7px;
    border-radius: 6px;
    color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .045);
    font-size: 6px;
}

.mh-console__metrics {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.mh-console__metrics article {
    padding: 8px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .035);
}

.mh-console__metrics span {
    display: block;
    color: rgba(255, 255, 255, .3);
    font-size: 5px;
}

.mh-console__metrics strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font: 700 11px/1 'Inter', sans-serif;
}

.mh-console__chart {
    position: relative;
    height: 80px;
    margin-top: 9px;
    overflow: hidden;
}

.mh-console__chart > i {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, .045);
}

.mh-console__chart > i:nth-child(1) {
    top: 15%;
}

.mh-console__chart > i:nth-child(2) {
    top: 40%;
}

.mh-console__chart > i:nth-child(3) {
    top: 65%;
}

.mh-console__chart > i:nth-child(4) {
    top: 90%;
}

.mh-console__chart svg {
    position: absolute;
    inset: 5px 0;
    width: 100%;
    height: calc(100% - 10px);
}

.mh-console__chart polyline {
    fill: none;
    stroke: #5bdde5;
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.mh-floating {
    position: absolute;
    z-index: 3;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(8, 27, 59, .96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
    backdrop-filter: blur(13px);
}

.mh-floating > i {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--mh-aqua);
    background: rgba(85, 221, 211, .09);
    font-size: 11px;
    font-style: normal;
}

.mh-floating > i svg {
    width: 14px;
}

.mh-floating strong,
.mh-floating span {
    display: block;
}

.mh-floating strong {
    font-size: 8px;
}

.mh-floating span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .34);
    font-size: 6px;
}

.mh-floating--replace {
    left: -35px;
    bottom: 0;
}

.mh-floating--status {
    right: -22px;
    top: 3px;
}

.mh-hero__bottom {
    position: relative;
    z-index: 2;
    margin-top: 62px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    color: rgba(255, 255, 255, .32);
    font-size: 11px;
}

.mh-hero__bottom i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}


/*
|--------------------------------------------------------------------------
| OVERVIEW
|--------------------------------------------------------------------------
*/

.mh-overview {
    background: var(--mh-bg);
}

.mh-overview__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mh-overview-card {
    min-height: 355px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--mh-line);
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(32, 61, 105, .055);
}

.mh-overview-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mh-overview-card__top > span {
    color: #a0a9b8;
    font: 700 10px/1 'Inter', sans-serif;
    letter-spacing: .12em;
}
.archive-container {
    width: min(1180px, 100% - 48px);
    margin: 0px auto;
    margin-top: 16px;
}
.mh-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.mh-icon svg {
    width: 21px;
}

.mh-overview-card--blue .mh-icon {
    color: var(--mh-blue);
    background: #edf3ff;
}

.mh-overview-card--purple .mh-icon {
    color: var(--mh-purple);
    background: #f0edff;
}

.mh-overview-card--mint .mh-icon {
    color: #19ae87;
    background: #eaf9f5;
}

.mh-overview-card--orange .mh-icon {
    color: #e88236;
    background: #fff3e9;
}

.mh-overview-card h3 {
    margin: 25px 0 9px;
    font-size: 23px;
    letter-spacing: -.03em;
}

.mh-overview-card > p {
    max-width: 480px;
    margin: 0;
    color: var(--mh-sub);
    font-size: 14px;
    line-height: 1.7;
}

.mh-mini-files,
.mh-domain-preview {
    margin-top: 24px;
    border: 1px solid #edf1f6;
    border-radius: 12px;
    overflow: hidden;
}

.mh-mini-files > div,
.mh-domain-preview > div {
    padding: 11px 13px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 9px;
}

.mh-mini-files > div + div,
.mh-domain-preview > div + div {
    border-top: 1px solid #edf1f6;
}

.mh-mini-files > div > i {
    width: 31px;
    height: 31px;
    border-radius: 7px;
    background: linear-gradient(135deg, #eaf1fd, #f8fafc);
}

.mh-mini-files span strong,
.mh-mini-files span small,
.mh-domain-preview span strong,
.mh-domain-preview span small {
    display: block;
}

.mh-mini-files span strong,
.mh-domain-preview span strong {
    color: #364158;
    font-size: 9px;
}

.mh-mini-files span small,
.mh-domain-preview span small {
    margin-top: 3px;
    color: #a0a9b8;
    font-size: 7px;
}

.mh-mini-files b,
.mh-domain-preview b {
    padding: 5px 7px;
    border-radius: 999px;
    color: #1ba27f;
    background: #eaf9f4;
    font-size: 6px;
}

.mh-mini-metrics {
    margin-top: 27px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mh-mini-metrics div {
    padding: 16px;
    border-radius: 11px;
    background: #f8f9fd;
}

.mh-mini-metrics span,
.mh-mini-metrics strong {
    display: block;
}

.mh-mini-metrics span {
    color: #8a94a7;
    font-size: 8px;
}

.mh-mini-metrics strong {
    margin-top: 8px;
    color: #222c42;
    font: 700 19px/1 'Inter', sans-serif;
}

.mh-usage-preview {
    margin-top: 26px;
}

.mh-usage-preview div {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    color: #6d7890;
    font-size: 9px;
}

.mh-usage-preview div:first-child {
    margin-top: 0;
}

.mh-usage-preview div b {
    color: #253047;
}

.mh-usage-preview > i {
    height: 6px;
    margin-top: 7px;
    border-radius: 99px;
    display: block;
    overflow: hidden;
    background: #edf1f6;
}

.mh-usage-preview > i em {
    height: 100%;
    border-radius: inherit;
    display: block;
    background: linear-gradient(90deg, var(--mh-blue), #54cedf);
}

.mh-domain-preview > div > i {
    width: 29px;
    height: 29px;
    border-radius: 8px;
    background: #f1f4f8;
}


/*
|--------------------------------------------------------------------------
| REPLACE FEATURE
|--------------------------------------------------------------------------
*/

.mh-replace {
    padding-top: 25px;
    background: var(--mh-bg);
}

.mh-replace__panel {
    position: relative;
    min-height: 610px;
    padding: 68px;
    overflow: hidden;
    border-radius: 28px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 70px;
    color: #fff;
    background: linear-gradient(135deg, #071a38, #0d2c5c 65%, #174473);
    box-shadow: 0 30px 85px rgba(16, 44, 86, .16);
}

.mh-replace__glow {
    position: absolute;
    right: -250px;
    top: -350px;
    width: 750px;
    height: 750px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(70, 100, 255, .35), transparent 68%);
}

.mh-replace__content,
.mh-replace__demo {
    position: relative;
    z-index: 2;
}

.mh-replace__content h2 {
    color: #fff;
    font-size: clamp(36px, 4vw, 51px);
}

.mh-replace__content h2 em {
    color: var(--mh-aqua);
    font-style: normal;
}

.mh-replace__content > p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .59);
    font-size: 15px;
    line-height: 1.85;
}

.mh-replace__benefits {
    margin: 27px 0 31px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mh-replace__benefits span {
    color: rgba(255, 255, 255, .73);
    font-size: 12px;
}

.mh-replace__benefits i {
    margin-right: 5px;
    color: var(--mh-aqua);
    font-style: normal;
}

.mh-replace-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 19px;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
    backdrop-filter: blur(14px);
}

.mh-replace-window__top {
    height: 45px;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    gap: 5px;
}

.mh-replace-window__top span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.mh-replace-window__top b {
    margin-left: 8px;
    color: rgba(255, 255, 255, .32);
    font: 600 8px/1 'Inter', sans-serif;
}

.mh-replace-window__content {
    padding: 21px;
}

.mh-replace-file {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 11px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .055);
}

.mh-replace-file__media {
    width: 46px;
    height: 46px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #79dfff;
    background: rgba(47, 116, 255, .13);
}

.mh-replace-file__media svg {
    width: 20px;
}

.mh-replace-file > div:nth-child(2) span,
.mh-replace-file > div:nth-child(2) strong,
.mh-replace-file > div:nth-child(2) small {
    display: block;
}

.mh-replace-file > div:nth-child(2) span {
    color: rgba(255, 255, 255, .3);
    font-size: 7px;
}

.mh-replace-file > div:nth-child(2) strong {
    margin-top: 4px;
    font-size: 9px;
}

.mh-replace-file > div:nth-child(2) small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .32);
    font-size: 6px;
}

.mh-replace-file > b {
    padding: 6px 8px;
    border-radius: 999px;
    color: #77deff;
    background: rgba(116, 216, 255, .09);
    font-size: 6px;
}

.mh-replace-file--new {
    border-color: rgba(85, 221, 211, .22);
    background: rgba(85, 221, 211, .07);
}

.mh-replace-file--new > b {
    color: var(--mh-aqua);
    background: rgba(85, 221, 211, .11);
}

.mh-replace-arrow {
    padding: 14px 0;
    display: grid;
    place-items: center;
    text-align: center;
}

.mh-replace-arrow > span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--mh-aqua);
    background: rgba(85, 221, 211, .1);
}

.mh-replace-arrow svg {
    width: 15px;
}

.mh-replace-arrow strong {
    margin-top: 6px;
    font-size: 7px;
}

.mh-replace-arrow small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .3);
    font-size: 6px;
}

.mh-code-fixed {
    margin-top: 15px;
    padding: 13px;
    border-radius: 9px;
    background: rgba(4, 17, 38, .58);
}

.mh-code-fixed > div {
    display: flex;
    justify-content: space-between;
}

.mh-code-fixed span {
    color: rgba(255, 255, 255, .32);
    font-size: 6px;
}

.mh-code-fixed b {
    color: var(--mh-aqua);
    font-size: 6px;
}

.mh-code-fixed code {
    display: block;
    margin-top: 9px;
    overflow: hidden;
    color: #7adcf8;
    font: 500 6px/1.5 monospace;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mh-replace__message {
    position: absolute;
    right: -25px;
    bottom: -35px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 11px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #091e40;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
}

.mh-replace__message > i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--mh-aqua);
    background: rgba(85, 221, 211, .1);
    font-size: 9px;
    font-style: normal;
}

.mh-replace__message strong,
.mh-replace__message span {
    display: block;
}

.mh-replace__message strong {
    font-size: 8px;
}

.mh-replace__message span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .32);
    font-size: 6px;
}


/*
|--------------------------------------------------------------------------
| FLOW
|--------------------------------------------------------------------------
*/

.mh-flow {
    background: #fff;
}

.mh-flow__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.mh-flow__grid article {
    position: relative;
    min-height: 285px;
    padding: 28px;
    border: 1px solid var(--mh-line);
    border-radius: 18px;
    background: #fff;
}

.mh-flow__grid article.is-highlight {
    border-color: rgba(47, 116, 255, .25);
    background: linear-gradient(145deg, #f8fbff, #f1f6ff);
    box-shadow: 0 18px 45px rgba(47, 116, 255, .08);
}

.mh-flow__number {
    color: #b8c1cf;
    font: 700 10px/1 'Inter', sans-serif;
}

.mh-flow__icon {
    width: 47px;
    height: 47px;
    margin-top: 26px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: var(--mh-blue);
    background: #edf3ff;
}

.is-highlight .mh-flow__icon {
    color: #fff;
    background: var(--mh-blue);
}

.mh-flow__icon svg {
    width: 21px;
}

.mh-flow__grid h3 {
    margin: 21px 0 9px;
    font-size: 18px;
    letter-spacing: -.025em;
}

.mh-flow__grid p {
    margin: 0;
    color: var(--mh-sub);
    font-size: 13px;
    line-height: 1.7;
}


/*
|--------------------------------------------------------------------------
| ANALYTICS
|--------------------------------------------------------------------------
*/

.mh-analytics {
    background: var(--mh-bg-blue);
}

.mh-analytics__layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 70px;
}

.mh-analytics__content h2 {
    margin-top: 0;
}

.mh-analytics__content > p {
    margin: 21px 0 0;
    color: var(--mh-sub);
    font-size: 15px;
    line-height: 1.8;
}

.mh-analytics__features {
    margin-top: 30px;
    display: grid;
    gap: 11px;
}

.mh-analytics__features > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mh-analytics__features i {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--mh-blue);
    background: #e7efff;
    font-style: normal;
}

.mh-analytics__features svg {
    width: 18px;
}

.mh-analytics__features strong,
.mh-analytics__features small {
    display: block;
}

.mh-analytics__features strong {
    color: #253148;
    font-size: 12px;
}

.mh-analytics__features small {
    margin-top: 4px;
    color: #8b96aa;
    font-size: 10px;
}

.mh-text-link {
    margin-top: 28px;
    display: inline-flex;
    gap: 7px;
    color: var(--mh-blue);
    font-size: 13px;
    font-weight: 700;
}

.mh-analysis-card {
    padding: 24px;
    border: 1px solid #dee6f1;
    border-radius: 21px;
    background: #fff;
    box-shadow: var(--mh-shadow);
}

.mh-analysis-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mh-analysis-card__head small,
.mh-analysis-card__head strong {
    display: block;
}

.mh-analysis-card__head small {
    margin-bottom: 6px;
    color: var(--mh-blue);
    font: 700 8px/1 'Inter', sans-serif;
    letter-spacing: .11em;
}

.mh-analysis-card__head strong {
    font-size: 18px;
}

.mh-analysis-card__head > span {
    padding: 7px 10px;
    border-radius: 7px;
    color: #738097;
    background: #f4f6fa;
    font-size: 8px;
}

.mh-analysis-card__metrics {
    margin-top: 19px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mh-analysis-card__metrics article {
    padding: 13px;
    border: 1px solid #edf1f6;
    border-radius: 10px;
}

.mh-analysis-card__metrics span,
.mh-analysis-card__metrics strong,
.mh-analysis-card__metrics small {
    display: block;
}

.mh-analysis-card__metrics span {
    color: #8c97a9;
    font-size: 7px;
}

.mh-analysis-card__metrics strong {
    margin-top: 7px;
    font: 700 17px/1 'Inter', sans-serif;
}

.mh-analysis-card__metrics small {
    margin-top: 6px;
    color: #24ad84;
    font-size: 6px;
}

.mh-analysis-chart {
    margin-top: 10px;
    padding: 15px;
    border: 1px solid #edf1f6;
    border-radius: 11px;
}

.mh-analysis-chart__title {
    display: flex;
    justify-content: space-between;
}

.mh-analysis-chart__title strong,
.mh-analysis-chart__title span {
    display: block;
}

.mh-analysis-chart__title strong {
    font-size: 10px;
}

.mh-analysis-chart__title span {
    margin-top: 4px;
    color: #a0a9b8;
    font-size: 7px;
}

.mh-analysis-chart__title i {
    color: var(--mh-blue);
    font-size: 7px;
    font-style: normal;
}

.mh-analysis-chart__graph {
    position: relative;
    height: 180px;
    margin-top: 12px;
    overflow: hidden;
}

.mh-analysis-chart__graph > span {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #f0f3f7;
}

.mh-analysis-chart__graph > span:nth-child(1) {
    top: 10%;
}

.mh-analysis-chart__graph > span:nth-child(2) {
    top: 35%;
}

.mh-analysis-chart__graph > span:nth-child(3) {
    top: 60%;
}

.mh-analysis-chart__graph > span:nth-child(4) {
    top: 85%;
}

.mh-analysis-chart__graph svg {
    position: absolute;
    inset: 4px 0;
    width: 100%;
    height: calc(100% - 8px);
}

.mh-analysis-chart__graph polyline {
    fill: none;
    stroke: var(--mh-blue);
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.mh-analysis-chart__graph polyline.secondary {
    stroke: #75d5e4;
    opacity: .7;
}

.mh-analysis-products {
    margin-top: 10px;
    border: 1px solid #edf1f6;
    border-radius: 11px;
    overflow: hidden;
}

.mh-analysis-products > div {
    padding: 11px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mh-analysis-products > div + div {
    border-top: 1px solid #edf1f6;
}

.mh-analysis-products span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mh-analysis-products i {
    width: 21px;
    height: 21px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: var(--mh-blue);
    background: #edf3ff;
    font-size: 7px;
    font-style: normal;
}

.mh-analysis-products strong,
.mh-analysis-products b {
    font-size: 8px;
}

.mh-analysis-products b {
    color: #8490a4;
    font-weight: 500;
}


/*
|--------------------------------------------------------------------------
| MANAGEMENT
|--------------------------------------------------------------------------
*/

.mh-management {
    background: #fff;
}

.mh-management__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mh-management__grid > article {
    min-height: 365px;
    padding: 31px;
    border: 1px solid var(--mh-line);
    border-radius: 19px;
    background: #fff;
}

.mh-management__icon {
    width: 43px;
    height: 43px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--mh-blue);
    background: #edf3ff;
}

.mh-management__icon svg {
    width: 20px;
}

.mh-management__grid > article > span {
    margin-top: 24px;
    display: block;
    color: #a1aabc;
    font: 700 9px/1 'Inter', sans-serif;
    letter-spacing: .1em;
}

.mh-management__grid h3 {
    margin: 9px 0 10px;
    font-size: 20px;
}

.mh-management__grid > article > p {
    margin: 0;
    color: var(--mh-sub);
    font-size: 13px;
    line-height: 1.7;
}

.mh-management__usage {
    margin-top: 27px;
}

.mh-management__usage div {
    margin-top: 13px;
    display: flex;
    justify-content: space-between;
    color: #7d889b;
    font-size: 8px;
}

.mh-management__usage div:first-child {
    margin-top: 0;
}

.mh-management__usage strong {
    color: #2d374b;
}

.mh-management__usage > i {
    height: 5px;
    margin-top: 7px;
    border-radius: 999px;
    display: block;
    overflow: hidden;
    background: #edf1f6;
}

.mh-management__usage em {
    height: 100%;
    border-radius: inherit;
    display: block;
    background: linear-gradient(90deg, var(--mh-blue), #62d5e2);
}

.mh-management__domain {
    margin-top: 27px;
    padding: 12px;
    border: 1px solid #edf1f6;
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 9px;
}

.mh-management__domain > i {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    background: #edf3ff;
}

.mh-management__domain span strong,
.mh-management__domain span small {
    display: block;
}

.mh-management__domain span strong {
    font-size: 8px;
}

.mh-management__domain span small {
    margin-top: 3px;
    color: #a0a9b8;
    font-size: 6px;
}

.mh-management__domain > b {
    padding: 5px 7px;
    border-radius: 999px;
    color: #24a984;
    background: #eaf9f5;
    font-size: 6px;
}

.mh-management__support {
    margin-top: 25px;
    border: 1px solid #edf1f6;
    border-radius: 10px;
    overflow: hidden;
}

.mh-management__support > div {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.mh-management__support > div + div {
    border-top: 1px solid #edf1f6;
}

.mh-management__support i {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #f2f5f9;
}

.mh-management__support strong,
.mh-management__support small {
    display: block;
}

.mh-management__support strong {
    font-size: 8px;
}

.mh-management__support small {
    margin-top: 3px;
    color: #a1aabc;
    font-size: 6px;
}


/*
|--------------------------------------------------------------------------
| PRICING
|--------------------------------------------------------------------------
*/

.mh-pricing {
    background:
        linear-gradient(
            180deg,
            #f4f7fb,
            #eef4fb
        );
}

.mh-pricing__trust {
    margin: -20px 0 40px;
    display: flex;
    justify-content: center;
    gap: 22px;
    color: #6e7990;
    font-size: 11px;
}

.mh-pricing__trust i {
    margin-right: 4px;
    color: var(--mh-blue);
    font-style: normal;
}

.mh-pricing .archive-price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mh-pricing .archive-price-card {
    position: relative;
    min-width: 0;
    min-height: 530px;
    padding: 29px 25px 25px;
    border: 1px solid #dfe6f0;
    border-radius: 19px;
    display: flex;
    flex-direction: column;
    color: var(--mh-text);
    background: #fff;
    box-shadow: 0 15px 42px rgba(31, 59, 101, .055);
    transform: none;
}

.mh-pricing .archive-price-card.is-recommended {
    border: 2px solid var(--mh-blue);
    box-shadow: 0 22px 55px rgba(47, 116, 255, .13);
    transform: translateY(-9px);
}

.mh-pricing .archive-price-card__popular-label {
    position: absolute;
    left: 50%;
    top: -14px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #fff;
    background: var(--mh-blue);
    box-shadow: 0 8px 20px rgba(47, 116, 255, .23);
    font-size: 9px;
    font-weight: 700;
    transform: translateX(-50%);
    white-space: nowrap;
}

.mh-pricing .archive-price-card__head > span {
    color: var(--mh-blue);
    font: 800 9px/1 'Inter', sans-serif;
    letter-spacing: .1em;
}

.mh-pricing .archive-price-card__head h3 {
    margin: 12px 0 8px;
    color: var(--mh-text);
    font-size: 23px;
    letter-spacing: -.035em;
}

.mh-pricing .archive-price-card__head p {
    min-height: 42px;
    margin: 0;
    color: var(--mh-sub);
    font-size: 11px;
    line-height: 1.65;
}

.mh-pricing .archive-price {
    margin-top: 23px;
    padding-bottom: 21px;
    border-bottom: 1px solid #edf1f6;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.mh-pricing .archive-price strong {
    color: var(--mh-text);
    font: 800 31px/1 'Inter', sans-serif;
    letter-spacing: -.04em;
}

.mh-pricing .archive-price span {
    padding-bottom: 3px;
    color: #8b96a8;
    font-size: 10px;
}

.mh-pricing .archive-price-card__limits {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mh-pricing .archive-price-card__limit {
    padding: 10px;
    border-radius: 9px;
    background: #f7f9fc;
}

.mh-pricing .archive-price-card__limit span,
.mh-pricing .archive-price-card__limit strong {
    display: block;
}

.mh-pricing .archive-price-card__limit span {
    color: #929caf;
    font-size: 7px;
}

.mh-pricing .archive-price-card__limit strong {
    margin-top: 5px;
    color: #303b50;
    font-size: 9px;
}

.mh-pricing .archive-price-card__features,
.mh-pricing .archive-price-card__benefits {
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}
.mh-pricing .archive-price-card__features {
    margin-bottom: 10px;
}

.mh-pricing .archive-price-card__benefits {
    margin-top: 8px;
    margin-bottom: 10px;


    display: none;
}

.mh-pricing .archive-price-card__features li,
.mh-pricing .archive-price-card__benefits li {
    position: relative;
    margin-top: 9px;
    padding-left: 17px;
    color: #5f6a7e;
    font-size: 10px;
    line-height: 1.45;
}

.mh-pricing .archive-price-card__features li:first-child,
.mh-pricing .archive-price-card__benefits li:first-child {
    margin-top: 0;
}

.mh-pricing .archive-price-card__features li::before,
.mh-pricing .archive-price-card__benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--mh-blue);
    font-size: 9px;
    font-weight: 800;
}

.mh-pricing .archive-price-card__button {
    min-height: 46px;
    margin-top: auto;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b2b45;
    background: #eef3fa;
    font-size: 11px;
    font-weight: 700;
    transition: .2s;
}

.mh-pricing .archive-price-card__button:hover {
    color: #fff;
    background: var(--mh-blue);
}

.mh-pricing .archive-price-card.is-recommended .archive-price-card__button {
    color: #fff;
    background: var(--mh-blue);
}

.mh-pricing .archive-price-card.is-recommended .archive-price-card__button:hover {
    background: var(--mh-blue-dark);
}

.mh-pricing .archive-price-card--loading {
    min-height: 500px;
}

.mh-pricing .archive-plan-skeleton {
    height: 13px;
    margin-top: 18px;
    border-radius: 5px;
    background:
        linear-gradient(
            90deg,
            #eef2f7 25%,
            #f8fafd 50%,
            #eef2f7 75%
        );
    background-size: 200% 100%;
    animation: mhSkeleton 1.4s infinite;
}

.mh-pricing .archive-plan-skeleton.is-small {
    width: 35%;
    margin-top: 0;
}

.mh-pricing .archive-plan-skeleton.is-title {
    width: 58%;
    height: 26px;
}

.mh-pricing .archive-plan-skeleton.is-price {
    width: 72%;
    height: 38px;
    margin-top: 35px;
}

@keyframes mhSkeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.mh-pricing .archive-pricing__error {
    margin-top: 30px;
    padding: 28px;
    border: 1px solid #e0e6ef;
    border-radius: 15px;
    text-align: center;
    background: #fff;
}

.mh-pricing .archive-pricing__error strong {
    font-size: 14px;
}

.mh-pricing .archive-pricing__error p {
    margin: 7px 0 15px;
    color: var(--mh-sub);
    font-size: 11px;
}

.mh-pricing .archive-pricing__error button {
    height: 38px;
    padding: 0 17px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--mh-blue);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
}

.mh-pricing .archive-pricing__notice {
    margin: 28px 0 0;
    color: #8b96a8;
    font-size: 10px;
    text-align: center;
}


/*
|--------------------------------------------------------------------------
| FAQ
|--------------------------------------------------------------------------
*/

.mh-faq {
    background: #fff;
}

.mh-faq__layout {
    display: grid;
    grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
    gap: 85px;
}

.mh-faq__heading h2 {
    margin: 0;
    font-size: clamp(32px, 3.5vw, 45px);
    line-height: 1.28;
    letter-spacing: -.04em;
}

.mh-faq__heading p {
    margin: 18px 0 0;
    color: var(--mh-sub);
    font-size: 14px;
    line-height: 1.7;
}

.mh-faq__heading > a {
    margin-top: 25px;
    display: inline-flex;
    gap: 7px;
    color: var(--mh-blue);
    font-size: 12px;
    font-weight: 700;
}

.mh-faq__list {
    border-top: 1px solid var(--mh-line);
}

.mh-faq__list details {
    border-bottom: 1px solid var(--mh-line);
}

.mh-faq__list summary {
    min-height: 78px;
    padding: 0 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #263148;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    list-style: none;
}

.mh-faq__list summary::-webkit-details-marker {
    display: none;
}

.mh-faq__list summary > span {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mh-faq__list summary > span::before,
.mh-faq__list summary > span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 1px;
    background: #8c97a9;
    transform: translate(-50%, -50%);
}

.mh-faq__list summary > span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s;
}

.mh-faq__list details[open] summary > span::after {
    transform: translate(-50%, -50%);
}

.mh-faq__list details p {
    margin: -7px 0 0;
    padding: 0 42px 26px 3px;
    color: var(--mh-sub);
    font-size: 12px;
    line-height: 1.8;
}


/*
|--------------------------------------------------------------------------
| FINAL CTA
|--------------------------------------------------------------------------
*/

.mh-final {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    color: #fff;
    background: var(--mh-navy);
}

.mh-final__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(90deg, transparent, #000, transparent);
}

.mh-final__glow {
    position: absolute;
    right: -180px;
    top: -320px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 99, 255, .4), transparent 69%);
}

.mh-final__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.mh-final__inner > div:first-child > span {
    color: var(--mh-aqua);
    font: 800 10px/1 'Inter', sans-serif;
    letter-spacing: .14em;
}

.mh-final h2 {
    margin: 15px 0 14px;
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.22;
    letter-spacing: -.045em;
}

.mh-final p {
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: 14px;
    line-height: 1.7;
}

.mh-final__actions {
    flex-shrink: 0;
    text-align: center;
}

.mh-final__actions > a:last-child {
    margin-top: 14px;
    display: block;
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
}


/*
|--------------------------------------------------------------------------
| RESPONSIVE 1100
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {
    .mh-hero__inner {
        gap: 35px;
    }

    .mh-floating--replace {
        left: -5px;
    }

    .mh-floating--status {
        right: 0;
    }

    .mh-replace__panel {
        padding: 55px 45px;
        gap: 45px;
    }

    .mh-pricing .archive-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .mh-pricing .archive-price-card.is-recommended {
        transform: none;
    }
}


/*
|--------------------------------------------------------------------------
| RESPONSIVE 900 - TABLET
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {
    .mh-section {
        padding: 90px 0;
    }

    .mh-hero {
        min-height: auto;
        padding: 125px 0 45px;
    }

    .mh-hero__inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .mh-hero__content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .mh-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .mh-hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .mh-hero__actions,
    .mh-hero__points {
        justify-content: center;
    }

    .mh-hero__visual {
        width: min(680px, 100%);
        margin: 0 auto;
    }

    .mh-console {
        transform: none;
    }

    .mh-hero__bottom {
        flex-wrap: wrap;
    }

    .mh-overview__grid {
        grid-template-columns: 1fr;
    }

    .mh-overview-card {
        min-height: auto;
    }

    .mh-replace__panel {
        padding: 55px 40px;
        grid-template-columns: 1fr;
    }

    .mh-replace__content {
        max-width: 680px;
    }

    .mh-replace__demo {
        width: min(650px, 100%);
        margin: 0 auto;
    }

    .mh-flow__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mh-analytics__layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mh-analytics__content {
        max-width: 680px;
    }

    .mh-management__grid {
        grid-template-columns: 1fr;
    }

    .mh-management__grid > article {
        min-height: auto;
    }

    .mh-faq__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mh-final__inner {
        flex-direction: column;
        text-align: center;
    }
}


/*
|--------------------------------------------------------------------------
| RESPONSIVE 640 - MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 640px) {
    .archive-container {
        width: calc(100% - 32px);
    }

    .mh-section {
        padding: 72px 0;
    }

    .mh-section-head {
        margin-bottom: 36px;
    }

    .mh-section-head h2,
    .mh-analytics__content h2,
    .mh-replace__content h2 {
        font-size: 31px;
    }

    .mh-section-head p {
        font-size: 14px;
        line-height: 1.7;
    }

    .mh-hero {
        padding: 110px 0 36px;
    }

    .mh-hero__content h1 {
        font-size: 38px;
        line-height: 1.18;
    }

    .mh-hero__description {
        font-size: 14px;
        line-height: 1.72;
    }

    .mh-hero__actions {
        flex-direction: column;
    }

    .mh-hero__actions .mh-btn {
        width: 100%;
    }

    .mh-hero__points {
        display: grid;
        gap: 8px;
    }

    .mh-hero__visual {
        padding-bottom: 65px;
    }

    .mh-console__body {
        padding: 15px;
    }

    .mh-console__stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .mh-console__stats article {
        padding: 9px;
    }

    .mh-console__file {
        grid-template-columns: auto 1fr;
    }

    .mh-console__replace {
        grid-column: 1 / -1;
    }

    .mh-console__metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .mh-floating {
        padding: 10px;
    }

    .mh-floating--replace {
        left: 5px;
        bottom: 0;
    }

    .mh-floating--status {
        right: 4px;
        top: 10px;
    }

    .mh-floating--status span,
    .mh-floating--replace span {
        display: none;
    }

    .mh-hero__bottom {
        margin-top: 35px;
        gap: 10px;
        font-size: 9px;
    }

    .mh-hero__bottom i {
        display: none;
    }

    .mh-overview-card {
        padding: 25px;
        border-radius: 17px;
    }

    .mh-overview-card h3 {
        margin-top: 20px;
        font-size: 20px;
    }

    .mh-mini-metrics {
        grid-template-columns: 1fr;
    }

    .mh-replace {
        padding-top: 0;
    }

    .mh-replace .archive-container {
        width: 100%;
    }

    .mh-replace__panel {
        min-height: auto;
        padding: 55px 20px 65px;
        border-radius: 0;
    }

    .mh-replace__content > p {
        font-size: 14px;
    }

    .mh-replace__benefits {
        grid-template-columns: 1fr;
    }

    .mh-replace__content .mh-btn {
        width: 100%;
    }

    .mh-replace-window__content {
        padding: 14px;
    }

    .mh-replace-file {
        grid-template-columns: auto 1fr;
    }

    .mh-replace-file > b {
        grid-column: 1 / -1;
        width: fit-content;
    }

    .mh-replace__message {
        right: 0;
        bottom: -37px;
    }

    .mh-flow__grid {
        grid-template-columns: 1fr;
    }

    .mh-flow__grid article {
        min-height: auto;
        padding: 25px;
    }

    .mh-analytics__features strong {
        font-size: 11px;
    }

    .mh-analysis-card {
        padding: 15px;
    }

    .mh-analysis-card__metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .mh-analysis-chart__graph {
        height: 145px;
    }

    .mh-pricing__trust {
        margin-top: -10px;
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }

    .mh-pricing .archive-price-grid {
        grid-template-columns: 1fr;
    }

    .mh-pricing .archive-price-card {
        min-height: auto;
        padding: 27px 22px 22px;
    }

    .mh-pricing .archive-price-card__button {
        margin-top: 25px;
    }

    .mh-faq__heading h2 {
        font-size: 31px;
    }

    .mh-faq__list summary {
        min-height: 72px;
        font-size: 13px;
    }

    .mh-final {
        padding: 70px 0;
    }

    .mh-final h2 {
        font-size: 32px;
    }

    .mh-final p br {
        display: none;
    }

    .mh-final__actions {
        width: 100%;
    }

    .mh-final__actions .mh-btn {
        width: 100%;
    }
}


/*
|--------------------------------------------------------------------------
| RESPONSIVE 420
|--------------------------------------------------------------------------
*/

@media (max-width: 420px) {
    .archive-container {
        width: calc(100% - 24px);
    }

    .mh-hero__content h1 {
        font-size: 34px;
    }

    .mh-console__top > span {
        display: none;
    }

    .mh-console__heading strong {
        font-size: 15px;
    }

    .mh-console__stats strong {
        font-size: 14px;
    }

    .mh-console__analytics {
        padding: 10px;
    }

    .mh-hero__bottom {
        justify-content: flex-start;
    }

    .mh-replace__panel {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mh-code-fixed code {
        font-size: 5px;
    }

    .mh-analysis-card__head > span {
        display: none;
    }

    .mh-analysis-products strong {
        max-width: 120px;
        overflow: hidden;
        display: block;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}


@media (prefers-reduced-motion: reduce) {
    .mh-main *,
    .mh-pricing .archive-plan-skeleton {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}