/* =========================================================
   MENULOAD HEADER
========================================================= */

:root {
    --ml-primary: #6c3df4;
    --ml-primary-dark: #5424df;
    --ml-primary-light: #8c68ff;
    --ml-dark: #101828;
    --ml-text: #344054;
    --ml-muted: #667085;
    --ml-border: rgba(16, 24, 40, 0.1);
    --ml-white: #ffffff;
    --ml-header-height: 84px;
    --ml-container: 1240px;
    --ml-shadow: 0 20px 50px rgba(16, 24, 40, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--ml-header-height) + 20px);
}

body {
    margin: 0;
}

body.ml-menu-open {
    overflow: hidden;
}

/* Header */

.ml-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--ml-header-height);
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0);
    transition:
        height 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}

.ml-header.is-scrolled {
    height: 72px;
    border-color: rgba(16, 24, 40, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.ml-header__container {
    width: min(calc(100% - 40px), var(--ml-container));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.ml-header__logo {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ml-dark);
    text-decoration: none;
    flex-shrink: 0;
}

.ml-header__logo-mark {
    display: flex;
    width: 39px;
    height: 39px;
    color: var(--ml-primary);
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.ml-header__logo:hover .ml-header__logo-mark {
    color: var(--ml-primary-dark);
    transform: rotate(-5deg) scale(1.05);
}

.ml-header__logo-mark svg {
    width: 100%;
    height: 100%;
}

.ml-header__logo-image {
    display: block;
    width: auto;
    height: 40px;
}

.ml-header__logo-text {
    font-family: Inter, Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.1px;
}

.ml-header__logo-text span {
    color: var(--ml-primary);
}

/* Desktop Navigation */

.ml-header__nav {
    position: absolute;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: translateX(-50%);
}

.ml-header__nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 13px;
    color: var(--ml-text);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 12px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.ml-header__nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 20px;
    background: var(--ml-primary);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.ml-header__nav-link:hover {
    color: var(--ml-primary);
    background: rgba(108, 61, 244, 0.06);
    transform: translateY(-1px);
}

.ml-header__nav-link:hover::after,
.ml-header__nav-link.is-active::after {
    width: 18px;
}

.ml-header__nav-link.is-active {
    color: var(--ml-primary);
}

/* Header Actions */

.ml-header__actions {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: auto;
}

.ml-header__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.ml-header__login:hover {
    color: var(--ml-primary);
    background: rgba(108, 61, 244, 0.07);
}

.ml-header__cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    color: var(--ml-white);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary) 0%,
            var(--ml-primary-dark) 100%
        );
    box-shadow:
        0 10px 25px rgba(108, 61, 244, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ml-header__cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -50%;
    left: -80%;
    width: 55%;
    height: 200%;
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(25deg);
    transition: left 0.55s ease;
}

.ml-header__cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 32px rgba(108, 61, 244, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ml-header__cta:hover::before {
    left: 130%;
}

.ml-header__cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.ml-header__cta:hover svg {
    transform: translateX(3px);
}

/* Language Selector */

.ml-language {
    position: relative;
}

.ml-language__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 10px;
    color: var(--ml-text);
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.ml-language__button:hover,
.ml-language.is-open .ml-language__button {
    color: var(--ml-primary);
    border-color: rgba(108, 61, 244, 0.12);
    background: rgba(108, 61, 244, 0.06);
}

.ml-language__globe,
.ml-language__chevron {
    display: flex;
}

.ml-language__globe svg {
    width: 18px;
    height: 18px;
}

.ml-language__chevron svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.ml-language.is-open .ml-language__chevron svg {
    transform: rotate(180deg);
}

.ml-language__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 180px;
    padding: 7px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--ml-shadow);
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.ml-language.is-open .ml-language__menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ml-language__option {
    width: 100%;
    min-height: 45px;
    padding: 0 11px;
    display: grid;
    grid-template-columns: 26px 1fr 18px;
    align-items: center;
    gap: 7px;
    color: var(--ml-text);
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
    border: 0;
    border-radius: 11px;
    background: transparent;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.ml-language__option:hover {
    color: var(--ml-primary);
    background: rgba(108, 61, 244, 0.07);
}

.ml-language__option.is-selected {
    color: var(--ml-primary);
    background: rgba(108, 61, 244, 0.09);
}

.ml-language__flag {
    font-size: 18px;
}

.ml-language__check {
    visibility: hidden;
    opacity: 0;
    font-weight: 800;
}

.ml-language__option.is-selected .ml-language__check {
    visibility: visible;
    opacity: 1;
}

/* Mobile Toggle */

.ml-mobile-toggle {
    position: relative;
    z-index: 1002;
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    cursor: pointer;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
}

.ml-mobile-toggle span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: var(--ml-dark);
    transform: translateX(-50%);
    transition:
        top 0.3s ease,
        transform 0.3s ease,
        opacity 0.2s ease;
}

.ml-mobile-toggle span:nth-child(1) {
    top: 15px;
}

.ml-mobile-toggle span:nth-child(2) {
    top: 21px;
}

.ml-mobile-toggle span:nth-child(3) {
    top: 27px;
}

.ml-mobile-toggle.is-active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.ml-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.ml-mobile-toggle.is-active span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Mobile Menu */

.ml-mobile-menu {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    visibility: hidden;
    overflow-y: auto;
    opacity: 0;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(108, 61, 244, 0.13),
            transparent 35%
        ),
        rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-15px);
    transition:
        visibility 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.ml-mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.ml-mobile-menu__inner {
    width: min(calc(100% - 36px), 600px);
    min-height: 100%;
    margin: 0 auto;
    padding: calc(var(--ml-header-height) + 38px) 0 35px;
    display: flex;
    flex-direction: column;
}

.ml-mobile-menu__nav {
    display: flex;
    flex-direction: column;
}

.ml-mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: 22px;
    font-weight: 750;
    letter-spacing: -0.6px;
    text-decoration: none;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.ml-mobile-menu__link:hover,
.ml-mobile-menu__link.is-active {
    color: var(--ml-primary);
    padding-left: 6px;
}

.ml-mobile-menu__arrow {
    font-size: 18px;
    opacity: 0.45;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.ml-mobile-menu__link:hover .ml-mobile-menu__arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.ml-mobile-menu__language {
    margin-top: 30px;
}

.ml-mobile-menu__label {
    display: block;
    margin-bottom: 12px;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ml-mobile-menu__language-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ml-mobile-menu__language-button {
    min-height: 48px;
    color: var(--ml-text);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--ml-border);
    border-radius: 13px;
    background: var(--ml-white);
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.ml-mobile-menu__language-button.is-selected {
    color: var(--ml-primary);
    border-color: rgba(108, 61, 244, 0.25);
    background: rgba(108, 61, 244, 0.08);
}

.ml-mobile-menu__actions {
    margin-top: auto;
    padding-top: 35px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 10px;
}

.ml-mobile-menu__login,
.ml-mobile-menu__cta {
    min-height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    border-radius: 15px;
}

.ml-mobile-menu__login {
    color: var(--ml-dark);
    border: 1px solid var(--ml-border);
    background: var(--ml-white);
}

.ml-mobile-menu__cta {
    color: var(--ml-white);
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 12px 25px rgba(108, 61, 244, 0.25);
}

.ml-mobile-menu__note {
    margin: 17px 0 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

/* Focus Accessibility */

.ml-header a:focus-visible,
.ml-header button:focus-visible {
    outline: 3px solid rgba(108, 61, 244, 0.28);
    outline-offset: 3px;
}

/* Responsive */

@media (max-width: 1180px) {
    .ml-header__nav {
        gap: 1px;
    }

    .ml-header__nav-link {
        padding: 0 9px;
        font-size: 13px;
    }

    .ml-header__cta {
        padding: 0 14px;
    }

    .ml-language__button {
        padding: 0 7px;
    }
}

@media (max-width: 1024px) {
    :root {
        --ml-header-height: 76px;
    }

    .ml-header__container {
        width: min(calc(100% - 30px), var(--ml-container));
    }

    .ml-header__nav,
    .ml-header__actions {
        display: none;
    }

    .ml-mobile-toggle {
        display: block;
    }

    .ml-header.is-scrolled {
        height: 68px;
    }
}

@media (max-width: 480px) {
    .ml-header__container {
        width: calc(100% - 24px);
    }

    .ml-header__logo-mark {
        width: 36px;
        height: 36px;
    }

    .ml-header__logo-text {
        font-size: 22px;
    }

    .ml-mobile-menu__inner {
        width: calc(100% - 28px);
    }

    .ml-mobile-menu__link {
        min-height: 58px;
        font-size: 20px;
    }

    .ml-mobile-menu__actions {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion */

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

    .ml-header *,
    .ml-header *::before,
    .ml-header *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   MENULOAD HERO SECTION
========================================================= */

.ml-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    padding-top: var(--ml-header-height);
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfaff 62%,
            #ffffff 100%
        );
}

.ml-hero__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
}

.ml-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.ml-hero__glow--one {
    top: 90px;
    right: -180px;
    width: 680px;
    height: 680px;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.15) 0%,
            rgba(108, 61, 244, 0.06) 42%,
            transparent 72%
        );
}

.ml-hero__glow--two {
    top: 280px;
    left: -260px;
    width: 560px;
    height: 560px;
    background:
        radial-gradient(
            circle,
            rgba(72, 188, 255, 0.11) 0%,
            transparent 70%
        );
}

.ml-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(
            rgba(108, 61, 244, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(108, 61, 244, 0.035) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 20%,
            black 65%,
            transparent 100%
        );
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 20%,
            black 65%,
            transparent 100%
        );
}

.ml-hero__container {
    width: min(calc(100% - 40px), var(--ml-container));
    min-height: 760px;
    margin: 0 auto;
    padding: 90px 0 100px;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(580px, 1.18fr);
    align-items: center;
    gap: 68px;
}

/* Hero content */

.ml-hero__content {
    position: relative;
    z-index: 5;
    max-width: 580px;
    animation: mlHeroContent 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ml-hero__badge {
    width: fit-content;
    min-height: 38px;
    padding: 0 13px 0 9px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ml-primary-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.01em;
    border: 1px solid rgba(108, 61, 244, 0.13);
    border-radius: 999px;
    background: rgba(108, 61, 244, 0.07);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 8px 25px rgba(108, 61, 244, 0.06);
}

.ml-hero__badge-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 50%;
    background: rgba(108, 61, 244, 0.11);
}

.ml-hero__badge-icon svg {
    width: 14px;
    height: 14px;
}

.ml-hero__badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #34c759;
    box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.13);
}

.ml-hero__title {
    max-width: 650px;
    margin: 27px 0 22px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(54px, 5vw, 78px);
    font-weight: 820;
    line-height: 0.99;
    letter-spacing: -4.6px;
}

.ml-hero__title span {
    position: relative;
    display: inline-block;
    color: transparent;
    background:
        linear-gradient(
            120deg,
            var(--ml-primary) 0%,
            #8b5cf6 48%,
            #4f46e5 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.ml-hero__title span::after {
    content: "";
    position: absolute;
    left: 2%;
    bottom: -6px;
    width: 96%;
    height: 9px;
    opacity: 0.7;
    border-radius: 50%;
    background:
        url("data:image/svg+xml,%3Csvg width='300' height='10' viewBox='0 0 300 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7C70 1 225 1 297 6' stroke='%236c3df4' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
        center / 100% 100% no-repeat;
}

.ml-hero__description {
    max-width: 540px;
    margin: 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 450;
    line-height: 1.75;
    letter-spacing: -0.18px;
}

.ml-hero__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.ml-hero__primary-button,
.ml-hero__secondary-button {
    min-height: 56px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    border-radius: 16px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.ml-hero__primary-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary) 0%,
            var(--ml-primary-dark) 100%
        );
    box-shadow:
        0 15px 35px rgba(108, 61, 244, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ml-hero__primary-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -80%;
    left: -70%;
    width: 42%;
    height: 260%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(25deg);
    transition: left 0.65s ease;
}

.ml-hero__primary-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 45px rgba(108, 61, 244, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ml-hero__primary-button:hover::before {
    left: 135%;
}

.ml-hero__primary-button svg {
    width: 19px;
    height: 19px;
    transition: transform 0.25s ease;
}

.ml-hero__primary-button:hover svg {
    transform: translateX(4px);
}

.ml-hero__secondary-button {
    color: var(--ml-dark);
    border: 1px solid rgba(16, 24, 40, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ml-hero__secondary-button:hover {
    border-color: rgba(108, 61, 244, 0.23);
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.09);
}

.ml-hero__play {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 50%;
    background: rgba(108, 61, 244, 0.09);
}

.ml-hero__play svg {
    width: 15px;
    height: 15px;
}

.ml-hero__trust {
    margin-top: 27px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px 20px;
}

.ml-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.ml-hero__check {
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e9b52;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.11);
}

.ml-hero__check svg {
    width: 13px;
    height: 13px;
}

/* Hero visual */

.ml-hero__visual {
    position: relative;
    z-index: 4;
    min-width: 0;
    perspective: 1400px;
    animation: mlHeroVisual 1s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ml-dashboard {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 540px;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 25px;
    background: #ffffff;
    box-shadow:
        0 45px 90px rgba(43, 31, 97, 0.16),
        0 15px 40px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: rotateY(-3deg) rotateX(1deg);
    transform-origin: center;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.ml-hero__visual:hover .ml-dashboard {
    transform: rotateY(0) rotateX(0) translateY(-5px);
    box-shadow:
        0 55px 110px rgba(43, 31, 97, 0.2),
        0 18px 45px rgba(16, 24, 40, 0.09);
}

.ml-dashboard__topbar {
    height: 59px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f5;
    background: rgba(255, 255, 255, 0.97);
}

.ml-dashboard__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.ml-dashboard__brand-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 11px;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 6px 13px rgba(108, 61, 244, 0.22);
}

.ml-dashboard__topbar-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ml-dashboard__topbar-actions button {
    position: relative;
    width: 31px;
    height: 31px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    border: 1px solid #eaecf0;
    border-radius: 9px;
    background: #ffffff;
}

.ml-dashboard__topbar-actions button svg {
    width: 17px;
    height: 17px;
}

.ml-dashboard__topbar-actions button span {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 5px;
    height: 5px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: #f04438;
}

.ml-dashboard__profile {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5940b8;
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    border-radius: 10px;
    background: #ede9fe;
}

.ml-dashboard__body {
    min-height: 480px;
    display: grid;
    grid-template-columns: 122px 1fr;
}

.ml-dashboard__sidebar {
    padding: 17px 9px;
    border-right: 1px solid #edf0f5;
    background: #fbfcfe;
}

.ml-dashboard__menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ml-dashboard__menu-item {
    position: relative;
    min-height: 35px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 650;
    border-radius: 9px;
}

.ml-dashboard__menu-item.is-active {
    color: var(--ml-primary);
    background: rgba(108, 61, 244, 0.09);
}

.ml-dashboard__menu-icon {
    width: 16px;
    height: 16px;
    display: flex;
}

.ml-dashboard__menu-icon svg {
    width: 100%;
    height: 100%;
}

.ml-dashboard__count {
    min-width: 16px;
    height: 16px;
    margin-left: auto;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 7px;
    border-radius: 999px;
    background: var(--ml-primary);
}

.ml-dashboard__content {
    min-width: 0;
    padding: 20px;
    background: #f8f9fc;
}

.ml-dashboard__welcome {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ml-dashboard__small-title {
    display: block;
    margin-bottom: 5px;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.ml-dashboard__welcome h3 {
    margin: 0;
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 780;
    letter-spacing: -0.4px;
}

.ml-dashboard__welcome p {
    margin: 4px 0 0;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
}

.ml-dashboard__welcome button {
    min-height: 31px;
    padding: 0 12px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 750;
    border: 0;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 7px 15px rgba(108, 61, 244, 0.2);
}

.ml-dashboard__stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ml-dashboard__stat {
    min-width: 0;
    padding: 13px;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(16, 24, 40, 0.025);
}

.ml-dashboard__stat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 650;
}

.ml-dashboard__stat-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    border-radius: 7px;
    background: rgba(108, 61, 244, 0.08);
}

.ml-dashboard__stat-icon svg {
    width: 13px;
    height: 13px;
}

.ml-dashboard__stat strong {
    display: block;
    margin-top: 8px;
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.ml-dashboard__growth {
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
}

.ml-dashboard__growth span {
    color: #039855;
    font-weight: 750;
}

.ml-dashboard__growth small {
    color: #98a2b3;
    font-size: inherit;
}

.ml-dashboard__bottom {
    margin-top: 11px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 10px;
}

.ml-dashboard__chart-card,
.ml-dashboard__orders-card {
    min-width: 0;
    padding: 13px;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #ffffff;
}

.ml-dashboard__card-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ml-dashboard__card-title > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ml-dashboard__card-title strong {
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 750;
}

.ml-dashboard__card-title span {
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
}

.ml-dashboard__card-title button {
    padding: 4px 7px;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
    border: 1px solid #eaecf0;
    border-radius: 6px;
    background: #ffffff;
}

.ml-dashboard__chart {
    position: relative;
    height: 160px;
    margin-top: 8px;
    overflow: hidden;
}

.ml-dashboard__chart-lines {
    position: absolute;
    inset: 5px 0 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ml-dashboard__chart-lines span {
    width: 100%;
    border-top: 1px dashed #edf0f5;
}

.ml-dashboard__chart svg {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 125px;
    overflow: visible;
}

.ml-dashboard__chart-days {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 5px;
}

.ml-dashboard__live {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #039855 !important;
    font-weight: 750;
}

.ml-dashboard__live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.12);
    animation: mlLivePulse 1.8s infinite;
}

.ml-dashboard__orders {
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ml-dashboard__order {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f0f1f4;
    border-radius: 9px;
    background: #fcfcfd;
}

.ml-dashboard__order-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-dashboard__order-info span {
    color: #344054;
    font-size: 7px;
    font-weight: 750;
}

.ml-dashboard__order-info small {
    color: #98a2b3;
    font-size: 5px;
}

.ml-dashboard__status {
    padding: 4px 6px;
    font-family: Inter, Arial, sans-serif;
    font-size: 5px;
    font-weight: 750;
    border-radius: 999px;
}

.ml-dashboard__status.is-new {
    color: #175cd3;
    background: #eff8ff;
}

.ml-dashboard__status.is-preparing {
    color: #b54708;
    background: #fffaeb;
}

.ml-dashboard__status.is-ready {
    color: #027a48;
    background: #ecfdf3;
}

/* Floating cards */

.ml-floating-card {
    position: absolute;
    z-index: 8;
    min-width: 205px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 18px 45px rgba(16, 24, 40, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ml-floating-card--order {
    top: 40px;
    right: -48px;
    animation:
        mlFloatingCardIn 0.7s 0.8s both,
        mlFloat 5s 1.5s ease-in-out infinite;
}

.ml-floating-card--revenue {
    bottom: 38px;
    left: -52px;
    animation:
        mlFloatingCardIn 0.7s 1s both,
        mlFloatReverse 5.5s 1.7s ease-in-out infinite;
}

.ml-floating-card__icon {
    flex-shrink: 0;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    border-radius: 11px;
    background: rgba(108, 61, 244, 0.1);
}

.ml-floating-card__icon svg {
    width: 20px;
    height: 20px;
}

.ml-floating-card__content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-floating-card__content small {
    color: #98a2b3;
    font-size: 8px;
    font-weight: 600;
}

.ml-floating-card__content strong {
    color: #1d2939;
    font-size: 11px;
    font-weight: 780;
}

.ml-floating-card__pulse {
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: #f04438;
    box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.12);
    animation: mlLivePulse 1.7s infinite;
}

.ml-floating-card__growth {
    margin-left: auto;
    padding: 4px 6px;
    color: #039855;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border-radius: 999px;
    background: #ecfdf3;
}

/* Bottom benefits */

.ml-hero__bottom {
    border-top: 1px solid rgba(16, 24, 40, 0.07);
    border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ml-hero__bottom-inner {
    width: min(calc(100% - 40px), var(--ml-container));
    min-height: 142px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 40px;
}

.ml-hero__bottom-inner > p {
    margin: 0;
    color: #344054;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 730;
    line-height: 1.5;
}

.ml-hero__benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ml-hero__benefit {
    min-height: 65px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-left: 1px solid rgba(16, 24, 40, 0.07);
}

.ml-hero__benefit-icon {
    flex-shrink: 0;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 850;
    border-radius: 12px;
    background: rgba(108, 61, 244, 0.08);
}

.ml-hero__benefit-icon svg {
    width: 21px;
    height: 21px;
}

.ml-hero__benefit > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-hero__benefit strong {
    color: #344054;
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.ml-hero__benefit small {
    color: #98a2b3;
    font-size: 8px;
    white-space: nowrap;
}

/* Hero animations */

@keyframes mlHeroContent {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mlHeroVisual {
    from {
        opacity: 0;
        transform: translateX(45px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes mlFloatingCardIn {
    from {
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px) scale(0.93);
    }

    to {
        visibility: visible;
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mlFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes mlFloatReverse {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }
}

@keyframes mlLivePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

/* Hero responsive */

@media (max-width: 1200px) {
    .ml-hero__container {
        grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
        gap: 38px;
    }

    .ml-hero__title {
        font-size: 60px;
    }

    .ml-floating-card--order {
        right: -15px;
    }

    .ml-floating-card--revenue {
        left: -20px;
    }
}

@media (max-width: 1024px) {
    .ml-hero__container {
        min-height: auto;
        padding: 80px 0 100px;
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .ml-hero__content {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
    }

    .ml-hero__badge {
        margin: 0 auto;
    }

    .ml-hero__title {
        max-width: 740px;
        font-size: clamp(54px, 8vw, 76px);
    }

    .ml-hero__description {
        max-width: 650px;
        margin-right: auto;
        margin-left: auto;
    }

    .ml-hero__actions,
    .ml-hero__trust {
        justify-content: center;
    }

    .ml-hero__visual {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .ml-dashboard {
        transform: none;
    }

    .ml-hero__visual:hover .ml-dashboard {
        transform: translateY(-4px);
    }

    .ml-hero__bottom-inner {
        padding: 30px 0;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ml-hero__bottom-inner > p {
        text-align: center;
    }

    .ml-hero__benefit:first-child {
        border-left: 0;
    }
}

@media (max-width: 760px) {
    .ml-hero__container {
        width: min(calc(100% - 28px), var(--ml-container));
        padding: 62px 0 85px;
    }

    .ml-hero__title {
        margin-top: 23px;
        font-size: clamp(44px, 13vw, 62px);
        letter-spacing: -3px;
    }

    .ml-hero__description {
        font-size: 16px;
        line-height: 1.7;
    }

    .ml-hero__actions {
        width: min(100%, 420px);
        margin-right: auto;
        margin-left: auto;
        flex-direction: column;
    }

    .ml-hero__primary-button,
    .ml-hero__secondary-button {
        width: 100%;
    }

    .ml-dashboard {
        min-height: auto;
        border-radius: 19px;
    }

    .ml-dashboard__body {
        grid-template-columns: 1fr;
    }

    .ml-dashboard__sidebar {
        display: none;
    }

    .ml-dashboard__content {
        padding: 14px;
    }

    .ml-dashboard__welcome button {
        display: none;
    }

    .ml-dashboard__stats {
        grid-template-columns: repeat(3, minmax(100px, 1fr));
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ml-dashboard__stats::-webkit-scrollbar {
        display: none;
    }

    .ml-dashboard__bottom {
        grid-template-columns: 1fr;
    }

    .ml-dashboard__orders-card {
        display: none;
    }

    .ml-dashboard__chart-card {
        min-height: 215px;
    }

    .ml-floating-card {
        min-width: 170px;
        padding: 9px;
    }

    .ml-floating-card--order {
        top: -28px;
        right: 5px;
    }

    .ml-floating-card--revenue {
        bottom: -30px;
        left: 4px;
    }

    .ml-floating-card__icon {
        width: 32px;
        height: 32px;
    }

    .ml-hero__bottom-inner {
        width: min(calc(100% - 28px), var(--ml-container));
    }

    .ml-hero__benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .ml-hero__benefit {
        padding: 14px;
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-hero__benefit:nth-child(odd) {
        border-left: 0;
    }

    .ml-hero__benefit:nth-child(n + 3) {
        border-bottom: 0;
    }
}

@media (max-width: 480px) {
    .ml-hero__container {
        padding-top: 48px;
    }

    .ml-hero__badge {
        font-size: 10px;
    }

    .ml-hero__title {
        font-size: 45px;
        letter-spacing: -2.8px;
    }

    .ml-hero__trust {
        align-items: flex-start;
        flex-direction: column;
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
    }

    .ml-dashboard__topbar {
        height: 52px;
    }

    .ml-dashboard__welcome h3 {
        font-size: 14px;
    }

    .ml-dashboard__stat {
        min-width: 105px;
        padding: 10px;
    }

    .ml-dashboard__stat strong {
        font-size: 15px;
    }

    .ml-floating-card--order {
        right: -6px;
    }

    .ml-floating-card--revenue {
        left: -5px;
    }

    .ml-hero__benefits {
        grid-template-columns: 1fr;
    }

    .ml-hero__benefit {
        border-left: 0;
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-hero__benefit:nth-child(n + 3) {
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-hero__benefit:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-hero *,
    .ml-hero *::before,
    .ml-hero *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   MENULOAD HERO SECTION
========================================================= */

.ml-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    padding-top: var(--ml-header-height);
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfaff 62%,
            #ffffff 100%
        );
}

.ml-hero__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
}

.ml-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.ml-hero__glow--one {
    top: 90px;
    right: -180px;
    width: 680px;
    height: 680px;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.15) 0%,
            rgba(108, 61, 244, 0.06) 42%,
            transparent 72%
        );
}

.ml-hero__glow--two {
    top: 280px;
    left: -260px;
    width: 560px;
    height: 560px;
    background:
        radial-gradient(
            circle,
            rgba(72, 188, 255, 0.11) 0%,
            transparent 70%
        );
}

.ml-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(
            rgba(108, 61, 244, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(108, 61, 244, 0.035) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 20%,
            black 65%,
            transparent 100%
        );
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 20%,
            black 65%,
            transparent 100%
        );
}

.ml-hero__container {
    width: min(calc(100% - 40px), var(--ml-container));
    min-height: 760px;
    margin: 0 auto;
    padding: 90px 0 100px;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(580px, 1.18fr);
    align-items: center;
    gap: 68px;
}

/* Hero content */

.ml-hero__content {
    position: relative;
    z-index: 5;
    max-width: 580px;
    animation: mlHeroContent 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ml-hero__badge {
    width: fit-content;
    min-height: 38px;
    padding: 0 13px 0 9px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ml-primary-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.01em;
    border: 1px solid rgba(108, 61, 244, 0.13);
    border-radius: 999px;
    background: rgba(108, 61, 244, 0.07);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 8px 25px rgba(108, 61, 244, 0.06);
}

.ml-hero__badge-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 50%;
    background: rgba(108, 61, 244, 0.11);
}

.ml-hero__badge-icon svg {
    width: 14px;
    height: 14px;
}

.ml-hero__badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #34c759;
    box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.13);
}

.ml-hero__title {
    max-width: 650px;
    margin: 27px 0 22px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(54px, 5vw, 78px);
    font-weight: 820;
    line-height: 0.99;
    letter-spacing: -4.6px;
}

.ml-hero__title span {
    position: relative;
    display: inline-block;
    color: transparent;
    background:
        linear-gradient(
            120deg,
            var(--ml-primary) 0%,
            #8b5cf6 48%,
            #4f46e5 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.ml-hero__title span::after {
    content: "";
    position: absolute;
    left: 2%;
    bottom: -6px;
    width: 96%;
    height: 9px;
    opacity: 0.7;
    border-radius: 50%;
    background:
        url("data:image/svg+xml,%3Csvg width='300' height='10' viewBox='0 0 300 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7C70 1 225 1 297 6' stroke='%236c3df4' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
        center / 100% 100% no-repeat;
}

.ml-hero__description {
    max-width: 540px;
    margin: 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 450;
    line-height: 1.75;
    letter-spacing: -0.18px;
}

.ml-hero__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.ml-hero__primary-button,
.ml-hero__secondary-button {
    min-height: 56px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    border-radius: 16px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.ml-hero__primary-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary) 0%,
            var(--ml-primary-dark) 100%
        );
    box-shadow:
        0 15px 35px rgba(108, 61, 244, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ml-hero__primary-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -80%;
    left: -70%;
    width: 42%;
    height: 260%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(25deg);
    transition: left 0.65s ease;
}

.ml-hero__primary-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 45px rgba(108, 61, 244, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ml-hero__primary-button:hover::before {
    left: 135%;
}

.ml-hero__primary-button svg {
    width: 19px;
    height: 19px;
    transition: transform 0.25s ease;
}

.ml-hero__primary-button:hover svg {
    transform: translateX(4px);
}

.ml-hero__secondary-button {
    color: var(--ml-dark);
    border: 1px solid rgba(16, 24, 40, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ml-hero__secondary-button:hover {
    border-color: rgba(108, 61, 244, 0.23);
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.09);
}

.ml-hero__play {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 50%;
    background: rgba(108, 61, 244, 0.09);
}

.ml-hero__play svg {
    width: 15px;
    height: 15px;
}

.ml-hero__trust {
    margin-top: 27px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px 20px;
}

.ml-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.ml-hero__check {
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e9b52;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.11);
}

.ml-hero__check svg {
    width: 13px;
    height: 13px;
}

/* Hero visual */

.ml-hero__visual {
    position: relative;
    z-index: 4;
    min-width: 0;
    perspective: 1400px;
    animation: mlHeroVisual 1s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ml-dashboard {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 540px;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 25px;
    background: #ffffff;
    box-shadow:
        0 45px 90px rgba(43, 31, 97, 0.16),
        0 15px 40px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: rotateY(-3deg) rotateX(1deg);
    transform-origin: center;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.ml-hero__visual:hover .ml-dashboard {
    transform: rotateY(0) rotateX(0) translateY(-5px);
    box-shadow:
        0 55px 110px rgba(43, 31, 97, 0.2),
        0 18px 45px rgba(16, 24, 40, 0.09);
}

.ml-dashboard__topbar {
    height: 59px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f5;
    background: rgba(255, 255, 255, 0.97);
}

.ml-dashboard__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.ml-dashboard__brand-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 11px;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 6px 13px rgba(108, 61, 244, 0.22);
}

.ml-dashboard__topbar-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ml-dashboard__topbar-actions button {
    position: relative;
    width: 31px;
    height: 31px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    border: 1px solid #eaecf0;
    border-radius: 9px;
    background: #ffffff;
}

.ml-dashboard__topbar-actions button svg {
    width: 17px;
    height: 17px;
}

.ml-dashboard__topbar-actions button span {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 5px;
    height: 5px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: #f04438;
}

.ml-dashboard__profile {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5940b8;
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    border-radius: 10px;
    background: #ede9fe;
}

.ml-dashboard__body {
    min-height: 480px;
    display: grid;
    grid-template-columns: 122px 1fr;
}

.ml-dashboard__sidebar {
    padding: 17px 9px;
    border-right: 1px solid #edf0f5;
    background: #fbfcfe;
}

.ml-dashboard__menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ml-dashboard__menu-item {
    position: relative;
    min-height: 35px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 650;
    border-radius: 9px;
}

.ml-dashboard__menu-item.is-active {
    color: var(--ml-primary);
    background: rgba(108, 61, 244, 0.09);
}

.ml-dashboard__menu-icon {
    width: 16px;
    height: 16px;
    display: flex;
}

.ml-dashboard__menu-icon svg {
    width: 100%;
    height: 100%;
}

.ml-dashboard__count {
    min-width: 16px;
    height: 16px;
    margin-left: auto;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 7px;
    border-radius: 999px;
    background: var(--ml-primary);
}

.ml-dashboard__content {
    min-width: 0;
    padding: 20px;
    background: #f8f9fc;
}

.ml-dashboard__welcome {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ml-dashboard__small-title {
    display: block;
    margin-bottom: 5px;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.ml-dashboard__welcome h3 {
    margin: 0;
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 780;
    letter-spacing: -0.4px;
}

.ml-dashboard__welcome p {
    margin: 4px 0 0;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
}

.ml-dashboard__welcome button {
    min-height: 31px;
    padding: 0 12px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 750;
    border: 0;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 7px 15px rgba(108, 61, 244, 0.2);
}

.ml-dashboard__stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ml-dashboard__stat {
    min-width: 0;
    padding: 13px;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(16, 24, 40, 0.025);
}

.ml-dashboard__stat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 650;
}

.ml-dashboard__stat-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    border-radius: 7px;
    background: rgba(108, 61, 244, 0.08);
}

.ml-dashboard__stat-icon svg {
    width: 13px;
    height: 13px;
}

.ml-dashboard__stat strong {
    display: block;
    margin-top: 8px;
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.ml-dashboard__growth {
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
}

.ml-dashboard__growth span {
    color: #039855;
    font-weight: 750;
}

.ml-dashboard__growth small {
    color: #98a2b3;
    font-size: inherit;
}

.ml-dashboard__bottom {
    margin-top: 11px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 10px;
}

.ml-dashboard__chart-card,
.ml-dashboard__orders-card {
    min-width: 0;
    padding: 13px;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #ffffff;
}

.ml-dashboard__card-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ml-dashboard__card-title > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ml-dashboard__card-title strong {
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 750;
}

.ml-dashboard__card-title span {
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
}

.ml-dashboard__card-title button {
    padding: 4px 7px;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
    border: 1px solid #eaecf0;
    border-radius: 6px;
    background: #ffffff;
}

.ml-dashboard__chart {
    position: relative;
    height: 160px;
    margin-top: 8px;
    overflow: hidden;
}

.ml-dashboard__chart-lines {
    position: absolute;
    inset: 5px 0 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ml-dashboard__chart-lines span {
    width: 100%;
    border-top: 1px dashed #edf0f5;
}

.ml-dashboard__chart svg {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 125px;
    overflow: visible;
}

.ml-dashboard__chart-days {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 5px;
}

.ml-dashboard__live {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #039855 !important;
    font-weight: 750;
}

.ml-dashboard__live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.12);
    animation: mlLivePulse 1.8s infinite;
}

.ml-dashboard__orders {
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ml-dashboard__order {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f0f1f4;
    border-radius: 9px;
    background: #fcfcfd;
}

.ml-dashboard__order-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-dashboard__order-info span {
    color: #344054;
    font-size: 7px;
    font-weight: 750;
}

.ml-dashboard__order-info small {
    color: #98a2b3;
    font-size: 5px;
}

.ml-dashboard__status {
    padding: 4px 6px;
    font-family: Inter, Arial, sans-serif;
    font-size: 5px;
    font-weight: 750;
    border-radius: 999px;
}

.ml-dashboard__status.is-new {
    color: #175cd3;
    background: #eff8ff;
}

.ml-dashboard__status.is-preparing {
    color: #b54708;
    background: #fffaeb;
}

.ml-dashboard__status.is-ready {
    color: #027a48;
    background: #ecfdf3;
}

/* Floating cards */

.ml-floating-card {
    position: absolute;
    z-index: 8;
    min-width: 205px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 18px 45px rgba(16, 24, 40, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ml-floating-card--order {
    top: 40px;
    right: -48px;
    animation:
        mlFloatingCardIn 0.7s 0.8s both,
        mlFloat 5s 1.5s ease-in-out infinite;
}

.ml-floating-card--revenue {
    bottom: 38px;
    left: -52px;
    animation:
        mlFloatingCardIn 0.7s 1s both,
        mlFloatReverse 5.5s 1.7s ease-in-out infinite;
}

.ml-floating-card__icon {
    flex-shrink: 0;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    border-radius: 11px;
    background: rgba(108, 61, 244, 0.1);
}

.ml-floating-card__icon svg {
    width: 20px;
    height: 20px;
}

.ml-floating-card__content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-floating-card__content small {
    color: #98a2b3;
    font-size: 8px;
    font-weight: 600;
}

.ml-floating-card__content strong {
    color: #1d2939;
    font-size: 11px;
    font-weight: 780;
}

.ml-floating-card__pulse {
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: #f04438;
    box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.12);
    animation: mlLivePulse 1.7s infinite;
}

.ml-floating-card__growth {
    margin-left: auto;
    padding: 4px 6px;
    color: #039855;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border-radius: 999px;
    background: #ecfdf3;
}

/* Bottom benefits */

.ml-hero__bottom {
    border-top: 1px solid rgba(16, 24, 40, 0.07);
    border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ml-hero__bottom-inner {
    width: min(calc(100% - 40px), var(--ml-container));
    min-height: 142px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 40px;
}

.ml-hero__bottom-inner > p {
    margin: 0;
    color: #344054;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 730;
    line-height: 1.5;
}

.ml-hero__benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ml-hero__benefit {
    min-height: 65px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-left: 1px solid rgba(16, 24, 40, 0.07);
}

.ml-hero__benefit-icon {
    flex-shrink: 0;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 850;
    border-radius: 12px;
    background: rgba(108, 61, 244, 0.08);
}

.ml-hero__benefit-icon svg {
    width: 21px;
    height: 21px;
}

.ml-hero__benefit > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-hero__benefit strong {
    color: #344054;
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.ml-hero__benefit small {
    color: #98a2b3;
    font-size: 8px;
    white-space: nowrap;
}

/* Hero animations */

@keyframes mlHeroContent {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mlHeroVisual {
    from {
        opacity: 0;
        transform: translateX(45px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes mlFloatingCardIn {
    from {
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px) scale(0.93);
    }

    to {
        visibility: visible;
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mlFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes mlFloatReverse {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }
}

@keyframes mlLivePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

/* Hero responsive */

@media (max-width: 1200px) {
    .ml-hero__container {
        grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
        gap: 38px;
    }

    .ml-hero__title {
        font-size: 60px;
    }

    .ml-floating-card--order {
        right: -15px;
    }

    .ml-floating-card--revenue {
        left: -20px;
    }
}

@media (max-width: 1024px) {
    .ml-hero__container {
        min-height: auto;
        padding: 80px 0 100px;
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .ml-hero__content {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
    }

    .ml-hero__badge {
        margin: 0 auto;
    }

    .ml-hero__title {
        max-width: 740px;
        font-size: clamp(54px, 8vw, 76px);
    }

    .ml-hero__description {
        max-width: 650px;
        margin-right: auto;
        margin-left: auto;
    }

    .ml-hero__actions,
    .ml-hero__trust {
        justify-content: center;
    }

    .ml-hero__visual {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .ml-dashboard {
        transform: none;
    }

    .ml-hero__visual:hover .ml-dashboard {
        transform: translateY(-4px);
    }

    .ml-hero__bottom-inner {
        padding: 30px 0;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ml-hero__bottom-inner > p {
        text-align: center;
    }

    .ml-hero__benefit:first-child {
        border-left: 0;
    }
}

@media (max-width: 760px) {
    .ml-hero__container {
        width: min(calc(100% - 28px), var(--ml-container));
        padding: 62px 0 85px;
    }

    .ml-hero__title {
        margin-top: 23px;
        font-size: clamp(44px, 13vw, 62px);
        letter-spacing: -3px;
    }

    .ml-hero__description {
        font-size: 16px;
        line-height: 1.7;
    }

    .ml-hero__actions {
        width: min(100%, 420px);
        margin-right: auto;
        margin-left: auto;
        flex-direction: column;
    }

    .ml-hero__primary-button,
    .ml-hero__secondary-button {
        width: 100%;
    }

    .ml-dashboard {
        min-height: auto;
        border-radius: 19px;
    }

    .ml-dashboard__body {
        grid-template-columns: 1fr;
    }

    .ml-dashboard__sidebar {
        display: none;
    }

    .ml-dashboard__content {
        padding: 14px;
    }

    .ml-dashboard__welcome button {
        display: none;
    }

    .ml-dashboard__stats {
        grid-template-columns: repeat(3, minmax(100px, 1fr));
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ml-dashboard__stats::-webkit-scrollbar {
        display: none;
    }

    .ml-dashboard__bottom {
        grid-template-columns: 1fr;
    }

    .ml-dashboard__orders-card {
        display: none;
    }

    .ml-dashboard__chart-card {
        min-height: 215px;
    }

    .ml-floating-card {
        min-width: 170px;
        padding: 9px;
    }

    .ml-floating-card--order {
        top: -28px;
        right: 5px;
    }

    .ml-floating-card--revenue {
        bottom: -30px;
        left: 4px;
    }

    .ml-floating-card__icon {
        width: 32px;
        height: 32px;
    }

    .ml-hero__bottom-inner {
        width: min(calc(100% - 28px), var(--ml-container));
    }

    .ml-hero__benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .ml-hero__benefit {
        padding: 14px;
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-hero__benefit:nth-child(odd) {
        border-left: 0;
    }

    .ml-hero__benefit:nth-child(n + 3) {
        border-bottom: 0;
    }
}

@media (max-width: 480px) {
    .ml-hero__container {
        padding-top: 48px;
    }

    .ml-hero__badge {
        font-size: 10px;
    }

    .ml-hero__title {
        font-size: 45px;
        letter-spacing: -2.8px;
    }

    .ml-hero__trust {
        align-items: flex-start;
        flex-direction: column;
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
    }

    .ml-dashboard__topbar {
        height: 52px;
    }

    .ml-dashboard__welcome h3 {
        font-size: 14px;
    }

    .ml-dashboard__stat {
        min-width: 105px;
        padding: 10px;
    }

    .ml-dashboard__stat strong {
        font-size: 15px;
    }

    .ml-floating-card--order {
        right: -6px;
    }

    .ml-floating-card--revenue {
        left: -5px;
    }

    .ml-hero__benefits {
        grid-template-columns: 1fr;
    }

    .ml-hero__benefit {
        border-left: 0;
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-hero__benefit:nth-child(n + 3) {
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-hero__benefit:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-hero *,
    .ml-hero *::before,
    .ml-hero *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}





/* =========================================================
   MENULOAD HERO SECTION
========================================================= */

.ml-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    padding-top: var(--ml-header-height);
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfaff 62%,
            #ffffff 100%
        );
}

.ml-hero__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
}

.ml-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.ml-hero__glow--one {
    top: 90px;
    right: -180px;
    width: 680px;
    height: 680px;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.15) 0%,
            rgba(108, 61, 244, 0.06) 42%,
            transparent 72%
        );
}

.ml-hero__glow--two {
    top: 280px;
    left: -260px;
    width: 560px;
    height: 560px;
    background:
        radial-gradient(
            circle,
            rgba(72, 188, 255, 0.11) 0%,
            transparent 70%
        );
}

.ml-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(
            rgba(108, 61, 244, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(108, 61, 244, 0.035) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 20%,
            black 65%,
            transparent 100%
        );
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 20%,
            black 65%,
            transparent 100%
        );
}

.ml-hero__container {
    width: min(calc(100% - 40px), var(--ml-container));
    min-height: 760px;
    margin: 0 auto;
    padding: 90px 0 100px;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(580px, 1.18fr);
    align-items: center;
    gap: 68px;
}

/* Hero content */

.ml-hero__content {
    position: relative;
    z-index: 5;
    max-width: 580px;
    animation: mlHeroContent 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ml-hero__badge {
    width: fit-content;
    min-height: 38px;
    padding: 0 13px 0 9px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ml-primary-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.01em;
    border: 1px solid rgba(108, 61, 244, 0.13);
    border-radius: 999px;
    background: rgba(108, 61, 244, 0.07);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 8px 25px rgba(108, 61, 244, 0.06);
}

.ml-hero__badge-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 50%;
    background: rgba(108, 61, 244, 0.11);
}

.ml-hero__badge-icon svg {
    width: 14px;
    height: 14px;
}

.ml-hero__badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #34c759;
    box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.13);
}

.ml-hero__title {
    max-width: 650px;
    margin: 27px 0 22px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(54px, 5vw, 78px);
    font-weight: 820;
    line-height: 0.99;
    letter-spacing: -4.6px;
}

.ml-hero__title span {
    position: relative;
    display: inline-block;
    color: transparent;
    background:
        linear-gradient(
            120deg,
            var(--ml-primary) 0%,
            #8b5cf6 48%,
            #4f46e5 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.ml-hero__title span::after {
    content: "";
    position: absolute;
    left: 2%;
    bottom: -6px;
    width: 96%;
    height: 9px;
    opacity: 0.7;
    border-radius: 50%;
    background:
        url("data:image/svg+xml,%3Csvg width='300' height='10' viewBox='0 0 300 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7C70 1 225 1 297 6' stroke='%236c3df4' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
        center / 100% 100% no-repeat;
}

.ml-hero__description {
    max-width: 540px;
    margin: 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 450;
    line-height: 1.75;
    letter-spacing: -0.18px;
}

.ml-hero__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.ml-hero__primary-button,
.ml-hero__secondary-button {
    min-height: 56px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    border-radius: 16px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.ml-hero__primary-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary) 0%,
            var(--ml-primary-dark) 100%
        );
    box-shadow:
        0 15px 35px rgba(108, 61, 244, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ml-hero__primary-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -80%;
    left: -70%;
    width: 42%;
    height: 260%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(25deg);
    transition: left 0.65s ease;
}

.ml-hero__primary-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 45px rgba(108, 61, 244, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ml-hero__primary-button:hover::before {
    left: 135%;
}

.ml-hero__primary-button svg {
    width: 19px;
    height: 19px;
    transition: transform 0.25s ease;
}

.ml-hero__primary-button:hover svg {
    transform: translateX(4px);
}

.ml-hero__secondary-button {
    color: var(--ml-dark);
    border: 1px solid rgba(16, 24, 40, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ml-hero__secondary-button:hover {
    border-color: rgba(108, 61, 244, 0.23);
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.09);
}

.ml-hero__play {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 50%;
    background: rgba(108, 61, 244, 0.09);
}

.ml-hero__play svg {
    width: 15px;
    height: 15px;
}

.ml-hero__trust {
    margin-top: 27px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px 20px;
}

.ml-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.ml-hero__check {
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e9b52;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.11);
}

.ml-hero__check svg {
    width: 13px;
    height: 13px;
}

/* Hero visual */

.ml-hero__visual {
    position: relative;
    z-index: 4;
    min-width: 0;
    perspective: 1400px;
    animation: mlHeroVisual 1s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ml-dashboard {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 540px;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 25px;
    background: #ffffff;
    box-shadow:
        0 45px 90px rgba(43, 31, 97, 0.16),
        0 15px 40px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: rotateY(-3deg) rotateX(1deg);
    transform-origin: center;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.ml-hero__visual:hover .ml-dashboard {
    transform: rotateY(0) rotateX(0) translateY(-5px);
    box-shadow:
        0 55px 110px rgba(43, 31, 97, 0.2),
        0 18px 45px rgba(16, 24, 40, 0.09);
}

.ml-dashboard__topbar {
    height: 59px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f5;
    background: rgba(255, 255, 255, 0.97);
}

.ml-dashboard__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.ml-dashboard__brand-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 11px;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 6px 13px rgba(108, 61, 244, 0.22);
}

.ml-dashboard__topbar-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ml-dashboard__topbar-actions button {
    position: relative;
    width: 31px;
    height: 31px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    border: 1px solid #eaecf0;
    border-radius: 9px;
    background: #ffffff;
}

.ml-dashboard__topbar-actions button svg {
    width: 17px;
    height: 17px;
}

.ml-dashboard__topbar-actions button span {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 5px;
    height: 5px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: #f04438;
}

.ml-dashboard__profile {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5940b8;
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    border-radius: 10px;
    background: #ede9fe;
}

.ml-dashboard__body {
    min-height: 480px;
    display: grid;
    grid-template-columns: 122px 1fr;
}

.ml-dashboard__sidebar {
    padding: 17px 9px;
    border-right: 1px solid #edf0f5;
    background: #fbfcfe;
}

.ml-dashboard__menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ml-dashboard__menu-item {
    position: relative;
    min-height: 35px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 650;
    border-radius: 9px;
}

.ml-dashboard__menu-item.is-active {
    color: var(--ml-primary);
    background: rgba(108, 61, 244, 0.09);
}

.ml-dashboard__menu-icon {
    width: 16px;
    height: 16px;
    display: flex;
}

.ml-dashboard__menu-icon svg {
    width: 100%;
    height: 100%;
}

.ml-dashboard__count {
    min-width: 16px;
    height: 16px;
    margin-left: auto;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 7px;
    border-radius: 999px;
    background: var(--ml-primary);
}

.ml-dashboard__content {
    min-width: 0;
    padding: 20px;
    background: #f8f9fc;
}

.ml-dashboard__welcome {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ml-dashboard__small-title {
    display: block;
    margin-bottom: 5px;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.ml-dashboard__welcome h3 {
    margin: 0;
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 780;
    letter-spacing: -0.4px;
}

.ml-dashboard__welcome p {
    margin: 4px 0 0;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
}

.ml-dashboard__welcome button {
    min-height: 31px;
    padding: 0 12px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 750;
    border: 0;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 7px 15px rgba(108, 61, 244, 0.2);
}

.ml-dashboard__stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ml-dashboard__stat {
    min-width: 0;
    padding: 13px;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(16, 24, 40, 0.025);
}

.ml-dashboard__stat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 650;
}

.ml-dashboard__stat-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    border-radius: 7px;
    background: rgba(108, 61, 244, 0.08);
}

.ml-dashboard__stat-icon svg {
    width: 13px;
    height: 13px;
}

.ml-dashboard__stat strong {
    display: block;
    margin-top: 8px;
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.ml-dashboard__growth {
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
}

.ml-dashboard__growth span {
    color: #039855;
    font-weight: 750;
}

.ml-dashboard__growth small {
    color: #98a2b3;
    font-size: inherit;
}

.ml-dashboard__bottom {
    margin-top: 11px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 10px;
}

.ml-dashboard__chart-card,
.ml-dashboard__orders-card {
    min-width: 0;
    padding: 13px;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #ffffff;
}

.ml-dashboard__card-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ml-dashboard__card-title > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ml-dashboard__card-title strong {
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 750;
}

.ml-dashboard__card-title span {
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
}

.ml-dashboard__card-title button {
    padding: 4px 7px;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
    border: 1px solid #eaecf0;
    border-radius: 6px;
    background: #ffffff;
}

.ml-dashboard__chart {
    position: relative;
    height: 160px;
    margin-top: 8px;
    overflow: hidden;
}

.ml-dashboard__chart-lines {
    position: absolute;
    inset: 5px 0 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ml-dashboard__chart-lines span {
    width: 100%;
    border-top: 1px dashed #edf0f5;
}

.ml-dashboard__chart svg {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 125px;
    overflow: visible;
}

.ml-dashboard__chart-days {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 5px;
}

.ml-dashboard__live {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #039855 !important;
    font-weight: 750;
}

.ml-dashboard__live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.12);
    animation: mlLivePulse 1.8s infinite;
}

.ml-dashboard__orders {
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ml-dashboard__order {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f0f1f4;
    border-radius: 9px;
    background: #fcfcfd;
}

.ml-dashboard__order-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-dashboard__order-info span {
    color: #344054;
    font-size: 7px;
    font-weight: 750;
}

.ml-dashboard__order-info small {
    color: #98a2b3;
    font-size: 5px;
}

.ml-dashboard__status {
    padding: 4px 6px;
    font-family: Inter, Arial, sans-serif;
    font-size: 5px;
    font-weight: 750;
    border-radius: 999px;
}

.ml-dashboard__status.is-new {
    color: #175cd3;
    background: #eff8ff;
}

.ml-dashboard__status.is-preparing {
    color: #b54708;
    background: #fffaeb;
}

.ml-dashboard__status.is-ready {
    color: #027a48;
    background: #ecfdf3;
}

/* Floating cards */

.ml-floating-card {
    position: absolute;
    z-index: 8;
    min-width: 205px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 18px 45px rgba(16, 24, 40, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ml-floating-card--order {
    top: 40px;
    right: -48px;
    animation:
        mlFloatingCardIn 0.7s 0.8s both,
        mlFloat 5s 1.5s ease-in-out infinite;
}

.ml-floating-card--revenue {
    bottom: 38px;
    left: -52px;
    animation:
        mlFloatingCardIn 0.7s 1s both,
        mlFloatReverse 5.5s 1.7s ease-in-out infinite;
}

.ml-floating-card__icon {
    flex-shrink: 0;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    border-radius: 11px;
    background: rgba(108, 61, 244, 0.1);
}

.ml-floating-card__icon svg {
    width: 20px;
    height: 20px;
}

.ml-floating-card__content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-floating-card__content small {
    color: #98a2b3;
    font-size: 8px;
    font-weight: 600;
}

.ml-floating-card__content strong {
    color: #1d2939;
    font-size: 11px;
    font-weight: 780;
}

.ml-floating-card__pulse {
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: #f04438;
    box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.12);
    animation: mlLivePulse 1.7s infinite;
}

.ml-floating-card__growth {
    margin-left: auto;
    padding: 4px 6px;
    color: #039855;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border-radius: 999px;
    background: #ecfdf3;
}

/* Bottom benefits */

.ml-hero__bottom {
    border-top: 1px solid rgba(16, 24, 40, 0.07);
    border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ml-hero__bottom-inner {
    width: min(calc(100% - 40px), var(--ml-container));
    min-height: 142px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 40px;
}

.ml-hero__bottom-inner > p {
    margin: 0;
    color: #344054;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 730;
    line-height: 1.5;
}

.ml-hero__benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ml-hero__benefit {
    min-height: 65px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-left: 1px solid rgba(16, 24, 40, 0.07);
}

.ml-hero__benefit-icon {
    flex-shrink: 0;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 850;
    border-radius: 12px;
    background: rgba(108, 61, 244, 0.08);
}

.ml-hero__benefit-icon svg {
    width: 21px;
    height: 21px;
}

.ml-hero__benefit > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-hero__benefit strong {
    color: #344054;
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.ml-hero__benefit small {
    color: #98a2b3;
    font-size: 8px;
    white-space: nowrap;
}

/* Hero animations */

@keyframes mlHeroContent {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mlHeroVisual {
    from {
        opacity: 0;
        transform: translateX(45px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes mlFloatingCardIn {
    from {
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px) scale(0.93);
    }

    to {
        visibility: visible;
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mlFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes mlFloatReverse {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }
}

@keyframes mlLivePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

/* Hero responsive */

@media (max-width: 1200px) {
    .ml-hero__container {
        grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
        gap: 38px;
    }

    .ml-hero__title {
        font-size: 60px;
    }

    .ml-floating-card--order {
        right: -15px;
    }

    .ml-floating-card--revenue {
        left: -20px;
    }
}

@media (max-width: 1024px) {
    .ml-hero__container {
        min-height: auto;
        padding: 80px 0 100px;
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .ml-hero__content {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
    }

    .ml-hero__badge {
        margin: 0 auto;
    }

    .ml-hero__title {
        max-width: 740px;
        font-size: clamp(54px, 8vw, 76px);
    }

    .ml-hero__description {
        max-width: 650px;
        margin-right: auto;
        margin-left: auto;
    }

    .ml-hero__actions,
    .ml-hero__trust {
        justify-content: center;
    }

    .ml-hero__visual {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .ml-dashboard {
        transform: none;
    }

    .ml-hero__visual:hover .ml-dashboard {
        transform: translateY(-4px);
    }

    .ml-hero__bottom-inner {
        padding: 30px 0;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ml-hero__bottom-inner > p {
        text-align: center;
    }

    .ml-hero__benefit:first-child {
        border-left: 0;
    }
}

@media (max-width: 760px) {
    .ml-hero__container {
        width: min(calc(100% - 28px), var(--ml-container));
        padding: 62px 0 85px;
    }

    .ml-hero__title {
        margin-top: 23px;
        font-size: clamp(44px, 13vw, 62px);
        letter-spacing: -3px;
    }

    .ml-hero__description {
        font-size: 16px;
        line-height: 1.7;
    }

    .ml-hero__actions {
        width: min(100%, 420px);
        margin-right: auto;
        margin-left: auto;
        flex-direction: column;
    }

    .ml-hero__primary-button,
    .ml-hero__secondary-button {
        width: 100%;
    }

    .ml-dashboard {
        min-height: auto;
        border-radius: 19px;
    }

    .ml-dashboard__body {
        grid-template-columns: 1fr;
    }

    .ml-dashboard__sidebar {
        display: none;
    }

    .ml-dashboard__content {
        padding: 14px;
    }

    .ml-dashboard__welcome button {
        display: none;
    }

    .ml-dashboard__stats {
        grid-template-columns: repeat(3, minmax(100px, 1fr));
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ml-dashboard__stats::-webkit-scrollbar {
        display: none;
    }

    .ml-dashboard__bottom {
        grid-template-columns: 1fr;
    }

    .ml-dashboard__orders-card {
        display: none;
    }

    .ml-dashboard__chart-card {
        min-height: 215px;
    }

    .ml-floating-card {
        min-width: 170px;
        padding: 9px;
    }

    .ml-floating-card--order {
        top: -28px;
        right: 5px;
    }

    .ml-floating-card--revenue {
        bottom: -30px;
        left: 4px;
    }

    .ml-floating-card__icon {
        width: 32px;
        height: 32px;
    }

    .ml-hero__bottom-inner {
        width: min(calc(100% - 28px), var(--ml-container));
    }

    .ml-hero__benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .ml-hero__benefit {
        padding: 14px;
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-hero__benefit:nth-child(odd) {
        border-left: 0;
    }

    .ml-hero__benefit:nth-child(n + 3) {
        border-bottom: 0;
    }
}

@media (max-width: 480px) {
    .ml-hero__container {
        padding-top: 48px;
    }

    .ml-hero__badge {
        font-size: 10px;
    }

    .ml-hero__title {
        font-size: 45px;
        letter-spacing: -2.8px;
    }

    .ml-hero__trust {
        align-items: flex-start;
        flex-direction: column;
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
    }

    .ml-dashboard__topbar {
        height: 52px;
    }

    .ml-dashboard__welcome h3 {
        font-size: 14px;
    }

    .ml-dashboard__stat {
        min-width: 105px;
        padding: 10px;
    }

    .ml-dashboard__stat strong {
        font-size: 15px;
    }

    .ml-floating-card--order {
        right: -6px;
    }

    .ml-floating-card--revenue {
        left: -5px;
    }

    .ml-hero__benefits {
        grid-template-columns: 1fr;
    }

    .ml-hero__benefit {
        border-left: 0;
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-hero__benefit:nth-child(n + 3) {
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-hero__benefit:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-hero *,
    .ml-hero *::before,
    .ml-hero *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}










/* =========================================================
   HOW IT WORKS SECTION
========================================================= */

.ml-process {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 130px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafaff 48%,
            #ffffff 100%
        );
}

.ml-process__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
}

.ml-process__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
}

.ml-process__glow--left {
    top: 420px;
    left: -350px;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.09),
            transparent 70%
        );
}

.ml-process__glow--right {
    right: -320px;
    bottom: 330px;
    width: 650px;
    height: 650px;
    background:
        radial-gradient(
            circle,
            rgba(47, 172, 255, 0.08),
            transparent 70%
        );
}

.ml-process__container {
    width: min(calc(100% - 40px), var(--ml-container));
    margin: 0 auto;
}

/* Section header */

.ml-process__header {
    max-width: 780px;
    margin: 0 auto 90px;
    text-align: center;
}

.ml-section-badge {
    width: fit-content;
    min-height: 38px;
    margin: 0 auto;
    padding: 0 13px 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ml-primary-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 750;
    border: 1px solid rgba(108, 61, 244, 0.13);
    border-radius: 999px;
    background: rgba(108, 61, 244, 0.07);
}

.ml-section-badge__icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 50%;
    background: rgba(108, 61, 244, 0.1);
}

.ml-section-badge__icon svg {
    width: 14px;
    height: 14px;
}

.ml-process__title {
    margin: 23px 0 20px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 820;
    line-height: 1.06;
    letter-spacing: -3.2px;
}

.ml-process__title span {
    color: transparent;
    background:
        linear-gradient(
            120deg,
            var(--ml-primary),
            #8157ef,
            #4f46e5
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.ml-process__description {
    max-width: 690px;
    margin: 0 auto;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
}

/* Steps line */

.ml-process__steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 110px;
}

.ml-process__line {
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 50%;
    z-index: 0;
    width: 2px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(108, 61, 244, 0.1);
    transform: translateX(-50%);
}

.ml-process__line-progress {
    display: block;
    width: 100%;
    height: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            180deg,
            var(--ml-primary),
            #8b5cf6,
            #4f46e5
        );
    box-shadow: 0 0 16px rgba(108, 61, 244, 0.45);
    transition: height 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ml-process__steps.is-visible .ml-process__line-progress {
    height: 100%;
}

/* Process card */

.ml-process-card {
    position: relative;
    z-index: 1;
}

.ml-process-card__number {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 62px;
    height: 62px;
    padding: 5px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 12px 35px rgba(108, 61, 244, 0.15),
        0 0 0 1px rgba(108, 61, 244, 0.1);
    transform: translate(-50%, -50%);
}

.ml-process-card__number span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
}

.ml-process-card__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 115px;
}

.ml-process-card__text {
    max-width: 480px;
}

.ml-process-card--reverse .ml-process-card__text {
    justify-self: end;
}

.ml-process-card__eyebrow {
    display: block;
    margin-bottom: 15px;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ml-process-card__text h3 {
    margin: 0;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(31px, 3.3vw, 45px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -2px;
}

.ml-process-card__text > p {
    margin: 20px 0 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.ml-process-card__list {
    margin: 25px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
    list-style: none;
}

.ml-process-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #344054;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 650;
}

.ml-process-card__list li > span {
    flex-shrink: 0;
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #159455;
    border-radius: 50%;
    background: rgba(18, 183, 106, 0.1);
}

.ml-process-card__list svg {
    width: 14px;
    height: 14px;
}

/* Visual wrapper */

.ml-process-card__visual {
    position: relative;
    min-width: 0;
}

/* Step 1 setup window */

.ml-setup-window {
    overflow: hidden;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 23px;
    background: #ffffff;
    box-shadow:
        0 35px 80px rgba(33, 24, 77, 0.13),
        0 12px 30px rgba(16, 24, 40, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ml-setup-window:hover {
    transform: translateY(-7px);
    box-shadow:
        0 45px 95px rgba(33, 24, 77, 0.17),
        0 15px 35px rgba(16, 24, 40, 0.08);
}

.ml-setup-window__top {
    min-height: 55px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid #edf0f5;
}

.ml-setup-window__dots {
    display: flex;
    gap: 5px;
}

.ml-setup-window__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d0d5dd;
}

.ml-setup-window__dots span:nth-child(1) {
    background: #ff7066;
}

.ml-setup-window__dots span:nth-child(2) {
    background: #ffbd4a;
}

.ml-setup-window__dots span:nth-child(3) {
    background: #35c759;
}

.ml-setup-window__title {
    color: #344054;
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 750;
}

.ml-setup-window__status {
    justify-self: end;
    padding: 5px 8px;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 750;
    border-radius: 999px;
    background: rgba(108, 61, 244, 0.08);
}

.ml-setup-window__body {
    padding: 21px;
}

.ml-setup-window__progress {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #f2f4f7;
}

.ml-setup-window__progress span {
    display: block;
    width: 38%;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            var(--ml-primary),
            #8b5cf6
        );
}

.ml-setup-profile {
    margin-top: 21px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px dashed rgba(108, 61, 244, 0.24);
    border-radius: 14px;
    background: rgba(108, 61, 244, 0.03);
}

.ml-setup-profile__logo {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
}

.ml-setup-profile__logo button {
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 20px;
    height: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #ede9fe;
}

.ml-setup-profile__logo button svg {
    width: 11px;
    height: 11px;
}

.ml-setup-profile__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-setup-profile__info span {
    color: #344054;
    font-size: 10px;
    font-weight: 750;
}

.ml-setup-profile__info small {
    color: #98a2b3;
    font-size: 7px;
}

.ml-setup-form {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ml-setup-form__row {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 10px;
}

.ml-setup-form__group {
    min-width: 0;
}

.ml-setup-form__group label {
    display: block;
    margin-bottom: 6px;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 650;
}

.ml-setup-form__input {
    min-height: 35px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    border: 1px solid #e4e7ec;
    border-radius: 9px;
    background: #ffffff;
}

.ml-setup-form__input.is-filled {
    color: #344054;
    font-weight: 650;
    border-color: rgba(108, 61, 244, 0.27);
    box-shadow: 0 0 0 3px rgba(108, 61, 244, 0.05);
}

.ml-setup-form__input.is-select {
    justify-content: space-between;
    color: #344054;
}

.ml-setup-window__footer {
    margin-top: 18px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #edf0f5;
}

.ml-setup-window__footer > span {
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
}

.ml-setup-window__footer button {
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 750;
    border: 0;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
}

/* Step 2 menu builder */

.ml-menu-builder {
    overflow: hidden;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 23px;
    background: #ffffff;
    box-shadow:
        0 35px 80px rgba(33, 24, 77, 0.13),
        0 12px 30px rgba(16, 24, 40, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ml-menu-builder:hover {
    transform: translateY(-7px);
    box-shadow:
        0 45px 95px rgba(33, 24, 77, 0.17),
        0 15px 35px rgba(16, 24, 40, 0.08);
}

.ml-menu-builder__top {
    min-height: 69px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f5;
}

.ml-menu-builder__top > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-menu-builder__eyebrow {
    color: #98a2b3;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ml-menu-builder__top strong {
    color: #344054;
    font-size: 12px;
    font-weight: 780;
}

.ml-menu-builder__top button {
    min-height: 32px;
    padding: 0 11px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 750;
    border: 0;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
}

.ml-menu-builder__body {
    min-height: 330px;
    display: grid;
    grid-template-columns: 145px 1fr;
}

.ml-menu-builder__sidebar {
    padding: 13px 9px;
    border-right: 1px solid #edf0f5;
    background: #fbfcfe;
}

.ml-menu-builder__category {
    min-height: 48px;
    padding: 7px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
}

.ml-menu-builder__category.is-active {
    background: rgba(108, 61, 244, 0.08);
}

.ml-menu-builder__category > span {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 8px;
    background: #ffffff;
}

.ml-menu-builder__category > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-menu-builder__category strong {
    color: #344054;
    font-size: 7px;
    font-weight: 750;
}

.ml-menu-builder__category small {
    color: #98a2b3;
    font-size: 5px;
}

.ml-menu-builder__add-category {
    width: 100%;
    min-height: 35px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 750;
    border: 1px dashed rgba(108, 61, 244, 0.25);
    border-radius: 9px;
    background: transparent;
}

.ml-menu-builder__products {
    padding: 13px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    background: #f9fafb;
}

.ml-menu-builder__product {
    min-height: 79px;
    padding: 10px;
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.025);
}

.ml-menu-builder__product-image {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 10px;
    background:
        linear-gradient(
            135deg,
            #fff4e8,
            #ffe9d0
        );
}

.ml-menu-builder__product-info {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-family: Inter, Arial, sans-serif;
}

.ml-menu-builder__product-info > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ml-menu-builder__product-info strong {
    color: #344054;
    font-size: 8px;
    font-weight: 750;
}

.ml-menu-builder__product-info small {
    overflow: hidden;
    color: #98a2b3;
    font-size: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-menu-builder__product-info > span {
    flex-shrink: 0;
    color: var(--ml-primary);
    font-size: 8px;
    font-weight: 800;
}

.ml-menu-builder__product-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ml-menu-builder__product-actions > span {
    position: relative;
    width: 21px;
    height: 12px;
    border-radius: 999px;
    background: #d0d5dd;
}

.ml-menu-builder__product-actions > span::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.ml-menu-builder__product-actions > span.is-active {
    background: var(--ml-primary);
}

.ml-menu-builder__product-actions > span.is-active::after {
    left: 11px;
}

.ml-menu-builder__product-actions button {
    padding: 0;
    color: #98a2b3;
    font-size: 9px;
    border: 0;
    background: transparent;
}

/* Step 3 order success */

.ml-order-success {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml-order-success__phone {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 245px;
    min-height: 470px;
    padding: 9px;
    border: 7px solid #18181b;
    border-radius: 35px;
    background: #ffffff;
    box-shadow:
        0 40px 80px rgba(16, 24, 40, 0.18),
        0 12px 30px rgba(16, 24, 40, 0.09);
    transition: transform 0.35s ease;
}

.ml-order-success__phone:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.ml-order-success__phone::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    z-index: 4;
    width: 72px;
    height: 19px;
    border-radius: 999px;
    background: #18181b;
    transform: translateX(-50%);
}

.ml-order-success__phone-top {
    height: 27px;
    padding: 3px 7px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #344054;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 750;
}

.ml-order-success__phone-top > div {
    display: flex;
    gap: 3px;
}

.ml-order-success__phone-top > div span {
    width: 7px;
    height: 5px;
    border-radius: 2px;
    background: #344054;
}

.ml-order-success__restaurant {
    min-height: 51px;
    padding: 0 8px;
    display: grid;
    grid-template-columns: 20px 1fr 20px;
    align-items: center;
    border-bottom: 1px solid #edf0f5;
}

.ml-order-success__back,
.ml-order-success__menu {
    color: #667085;
    font-size: 14px;
}

.ml-order-success__menu {
    font-size: 9px;
}

.ml-order-success__restaurant > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
    font-family: Inter, Arial, sans-serif;
}

.ml-order-success__restaurant strong {
    color: #344054;
    font-size: 8px;
    font-weight: 750;
}

.ml-order-success__restaurant small {
    color: #98a2b3;
    font-size: 5px;
}

.ml-order-success__content {
    padding: 32px 13px 18px;
    text-align: center;
}

.ml-order-success__check {
    width: 58px;
    height: 58px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            #12b76a,
            #039855
        );
    box-shadow:
        0 12px 25px rgba(18, 183, 106, 0.23),
        0 0 0 9px rgba(18, 183, 106, 0.07);
}

.ml-order-success__check svg {
    width: 29px;
    height: 29px;
}

.ml-order-success__content h4 {
    margin: 19px 0 7px;
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.ml-order-success__content > p {
    margin: 0 auto;
    max-width: 160px;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    line-height: 1.6;
}

.ml-order-success__number {
    margin-top: 23px;
    padding: 13px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(108, 61, 244, 0.11);
    border-radius: 12px;
    background: rgba(108, 61, 244, 0.05);
    font-family: Inter, Arial, sans-serif;
}

.ml-order-success__number span {
    color: #98a2b3;
    font-size: 5px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ml-order-success__number strong {
    color: var(--ml-primary);
    font-size: 15px;
    font-weight: 850;
}

.ml-order-success__status {
    position: relative;
    margin-top: 27px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ml-order-success__status::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 16%;
    left: 16%;
    height: 2px;
    background: #eaecf0;
}

.ml-order-success__status > div {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 7px;
}

.ml-order-success__status > div span {
    width: 11px;
    height: 11px;
    border: 2px solid #d0d5dd;
    border-radius: 50%;
    background: #ffffff;
}

.ml-order-success__status > div small {
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 5px;
}

.ml-order-success__status > div.is-complete span {
    border-color: #12b76a;
    background: #12b76a;
}

.ml-order-success__status > div.is-active span {
    border-color: var(--ml-primary);
    box-shadow: 0 0 0 4px rgba(108, 61, 244, 0.1);
}

.ml-order-success__status > div.is-active small {
    color: var(--ml-primary);
    font-weight: 750;
}

.ml-order-success__notification {
    position: absolute;
    top: 95px;
    right: -10px;
    z-index: 5;
    min-width: 210px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.14);
    backdrop-filter: blur(14px);
    animation: mlOrderNotification 5s ease-in-out infinite;
}

.ml-order-success__notification-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 10px;
    background: rgba(108, 61, 244, 0.09);
}

.ml-order-success__notification-icon svg {
    width: 19px;
    height: 19px;
}

.ml-order-success__notification > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-order-success__notification small {
    color: #98a2b3;
    font-size: 7px;
}

.ml-order-success__notification strong {
    color: #344054;
    font-size: 9px;
    font-weight: 780;
}

.ml-order-success__notification-dot {
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: #f04438;
    box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.11);
}

/* Floating mini cards */

.ml-process-float {
    position: absolute;
    z-index: 6;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 17px 40px rgba(16, 24, 40, 0.12);
    backdrop-filter: blur(12px);
}

.ml-process-float--profile {
    right: -18px;
    bottom: 32px;
}

.ml-process-float--menu {
    bottom: -25px;
    left: 30px;
}

.ml-process-float--live {
    right: -10px;
    bottom: 60px;
}

.ml-process-float__icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 10px;
    background: rgba(108, 61, 244, 0.09);
}

.ml-process-float__icon svg {
    width: 18px;
    height: 18px;
}

.ml-process-float > span:not(.ml-process-float__icon):not(.ml-process-float__live-dot) {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-process-float small {
    color: #98a2b3;
    font-size: 7px;
}

.ml-process-float strong {
    color: #344054;
    font-size: 9px;
    font-weight: 780;
}

.ml-process-float__live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 5px rgba(18, 183, 106, 0.11);
    animation: mlProcessPulse 1.7s ease-in-out infinite;
}

/* Footer CTA */

.ml-process__footer {
    margin-top: 120px;
    padding: 24px 27px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 17px;
    border: 1px solid rgba(108, 61, 244, 0.13);
    border-radius: 23px;
    background:
        linear-gradient(
            135deg,
            rgba(108, 61, 244, 0.07),
            rgba(79, 70, 229, 0.035)
        );
    box-shadow:
        0 20px 50px rgba(108, 61, 244, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ml-process__footer-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 9px 24px rgba(108, 61, 244, 0.12);
}

.ml-process__footer-icon svg {
    width: 24px;
    height: 24px;
}

.ml-process__footer-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: Inter, Arial, sans-serif;
}

.ml-process__footer-content strong {
    color: #344054;
    font-size: 15px;
    font-weight: 780;
}

.ml-process__footer-content span {
    color: #667085;
    font-size: 12px;
}

.ml-process__footer > a {
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 12px 28px rgba(108, 61, 244, 0.23);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ml-process__footer > a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(108, 61, 244, 0.3);
}

.ml-process__footer > a svg {
    width: 17px;
    height: 17px;
}

/* Reveal animation */

.ml-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes mlOrderNotification {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes mlProcessPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* Responsive */

@media (max-width: 1100px) {
    .ml-process-card__content {
        gap: 90px;
    }

    .ml-process-card__number {
        width: 56px;
        height: 56px;
    }

    .ml-process-float--profile,
    .ml-process-float--live {
        right: 0;
    }
}

@media (max-width: 900px) {
    .ml-process {
        padding: 100px 0;
    }

    .ml-process__header {
        margin-bottom: 70px;
    }

    .ml-process__steps {
        gap: 90px;
    }

    .ml-process__line {
        top: 0;
        bottom: 0;
        left: 26px;
    }

    .ml-process-card {
        padding-left: 75px;
    }

    .ml-process-card__number {
        top: 0;
        left: 26px;
        width: 52px;
        height: 52px;
        transform: translate(-50%, 0);
    }

    .ml-process-card__content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .ml-process-card--reverse .ml-process-card__visual {
        order: 2;
    }

    .ml-process-card--reverse .ml-process-card__text {
        order: 1;
        justify-self: start;
    }

    .ml-process-card__text {
        max-width: 650px;
    }

    .ml-process-card__visual {
        width: min(100%, 620px);
    }

    .ml-process__footer {
        margin-top: 90px;
    }
}

@media (max-width: 680px) {
    .ml-process__container {
        width: min(calc(100% - 28px), var(--ml-container));
    }

    .ml-process__title {
        font-size: 39px;
        letter-spacing: -2.2px;
    }

    .ml-process__description {
        font-size: 15px;
    }

    .ml-process-card {
        padding-left: 56px;
    }

    .ml-process__line {
        left: 20px;
    }

    .ml-process-card__number {
        left: 20px;
        width: 40px;
        height: 40px;
        padding: 4px;
    }

    .ml-process-card__number span {
        font-size: 10px;
    }

    .ml-process-card__text h3 {
        font-size: 31px;
        letter-spacing: -1.5px;
    }

    .ml-process-card__text > p {
        font-size: 14px;
    }

    .ml-process-card__list li {
        font-size: 13px;
    }

    .ml-setup-form__row {
        grid-template-columns: 1fr;
    }

    .ml-menu-builder__body {
        grid-template-columns: 1fr;
    }

    .ml-menu-builder__sidebar {
        display: none;
    }

    .ml-process-float {
        display: none;
    }

    .ml-order-success__notification {
        right: 0;
        min-width: 180px;
    }

    .ml-process__footer {
        padding: 22px;
        grid-template-columns: auto 1fr;
    }

    .ml-process__footer > a {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 440px) {
    .ml-process {
        padding: 85px 0;
    }

    .ml-process-card {
        padding-left: 43px;
    }

    .ml-process__line {
        left: 15px;
    }

    .ml-process-card__number {
        left: 15px;
        width: 34px;
        height: 34px;
    }

    .ml-process-card__number span {
        font-size: 8px;
    }

    .ml-process-card__text h3 {
        font-size: 27px;
    }

    .ml-setup-window__body {
        padding: 14px;
    }

    .ml-menu-builder__product {
        grid-template-columns: 44px 1fr;
    }

    .ml-menu-builder__product-image {
        width: 44px;
        height: 44px;
    }

    .ml-menu-builder__product-actions {
        display: none;
    }

    .ml-order-success__notification {
        top: 85px;
        right: -8px;
        min-width: 165px;
        padding: 9px;
    }

    .ml-process__footer-icon {
        width: 42px;
        height: 42px;
    }

    .ml-process__footer-content strong {
        font-size: 13px;
    }

    .ml-process__footer-content span {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-reveal {
        opacity: 1;
        transform: none;
    }

    .ml-process__line-progress {
        height: 100%;
    }
}









/* =========================================================
   FEATURES SECTION — PART 1
   Section, header, bento grid and shared card styles
========================================================= */

.ml-features {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 135px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf9ff 48%,
            #ffffff 100%
        );
}

/* Background decoration */

.ml-features__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ml-features__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.9;
}

.ml-features__glow--one {
    top: 180px;
    right: -360px;
    width: 760px;
    height: 760px;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.12) 0%,
            rgba(108, 61, 244, 0.04) 43%,
            transparent 72%
        );
}

.ml-features__glow--two {
    bottom: 210px;
    left: -340px;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(
            circle,
            rgba(56, 189, 248, 0.09) 0%,
            rgba(56, 189, 248, 0.025) 46%,
            transparent 72%
        );
}

.ml-features__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    background-image:
        linear-gradient(
            rgba(108, 61, 244, 0.032) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(108, 61, 244, 0.032) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 14%,
            #000 82%,
            transparent 100%
        );
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 14%,
            #000 82%,
            transparent 100%
        );
}

/* Main container */

.ml-features__container {
    position: relative;
    width: min(calc(100% - 40px), var(--ml-container));
    margin: 0 auto;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.ml-features__header {
    max-width: 810px;
    margin: 0 auto 76px;
    text-align: center;
}

.ml-features__title {
    margin: 23px 0 20px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(43px, 5vw, 64px);
    font-weight: 820;
    line-height: 1.05;
    letter-spacing: -3.5px;
}

.ml-features__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(
            120deg,
            var(--ml-primary) 0%,
            #8057ef 48%,
            #4f46e5 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.ml-features__description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    font-weight: 450;
    line-height: 1.75;
    letter-spacing: -0.15px;
}

/* =========================================================
   BENTO GRID
========================================================= */

.ml-features__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 22px;
}

/*
|--------------------------------------------------------------------------
| Desktop card dimensions
|--------------------------------------------------------------------------
*/

.ml-feature-card--menu {
    grid-column: span 7;
    min-height: 650px;
}

.ml-feature-card--orders {
    grid-column: span 5;
    min-height: 650px;
}

.ml-feature-card--kitchen {
    grid-column: span 8;
    min-height: 560px;
}

.ml-feature-card--staff {
    grid-column: span 4;
    min-height: 560px;
}

.ml-feature-card--payments {
    grid-column: span 5;
    min-height: 520px;
}

.ml-feature-card--analytics {
    grid-column: span 7;
    min-height: 520px;
}

/* =========================================================
   SHARED FEATURE CARD
========================================================= */

.ml-feature-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 34px;
    border: 1px solid rgba(16, 24, 40, 0.085);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(252, 251, 255, 0.95)
        );
    box-shadow:
        0 24px 70px rgba(28, 20, 73, 0.08),
        0 7px 22px rgba(16, 24, 40, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.42s ease,
        box-shadow 0.42s ease;
}

.ml-feature-card::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: -220px;
    right: -220px;
    width: 440px;
    height: 440px;
    opacity: 0;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.15),
            rgba(108, 61, 244, 0.045) 45%,
            transparent 72%
        );
    transform: scale(0.82);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.ml-feature-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.4),
            transparent 38%,
            rgba(108, 61, 244, 0.025)
        );
    transition: opacity 0.4s ease;
}

.ml-feature-card:hover {
    border-color: rgba(108, 61, 244, 0.16);
    box-shadow:
        0 38px 90px rgba(35, 24, 89, 0.13),
        0 12px 32px rgba(16, 24, 40, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: translateY(-8px);
}

.ml-feature-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.ml-feature-card:hover::after {
    opacity: 1;
}

/* Optional inner top highlight */

.ml-feature-card > * {
    position: relative;
    z-index: 2;
}

/* =========================================================
   FEATURE CARD CONTENT
========================================================= */

.ml-feature-card__content {
    position: relative;
    z-index: 4;
    max-width: 560px;
}

.ml-feature-card__icon {
    position: relative;
    overflow: hidden;
    width: 48px;
    height: 48px;
    margin-bottom: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border: 1px solid rgba(108, 61, 244, 0.11);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(108, 61, 244, 0.12),
            rgba(108, 61, 244, 0.055)
        );
    box-shadow:
        0 10px 25px rgba(108, 61, 244, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.35s ease;
}

.ml-feature-card:hover .ml-feature-card__icon {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow:
        0 14px 30px rgba(108, 61, 244, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) rotate(-3deg);
}

.ml-feature-card__icon svg {
    width: 24px;
    height: 24px;
}

.ml-feature-card__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.ml-feature-card h3 {
    margin: 0;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(27px, 2.6vw, 38px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.65px;
}

.ml-feature-card__content > p {
    max-width: 520px;
    margin: 16px 0 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 450;
    line-height: 1.72;
    letter-spacing: -0.06px;
}

/* Shared feature list */

.ml-feature-card__list {
    margin: 23px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
}

.ml-feature-card__list li {
    min-height: 34px;
    padding: 0 11px 0 7px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #475467;
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 650;
    border: 1px solid rgba(16, 24, 40, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 5px 14px rgba(16, 24, 40, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.ml-feature-card__list li > span {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #039855;
    font-size: 10px;
    font-weight: 900;
    border-radius: 50%;
    background: rgba(18, 183, 106, 0.1);
}

/* =========================================================
   INDIVIDUAL CARD BACKGROUND ACCENTS
========================================================= */

.ml-feature-card--menu {
    background:
        radial-gradient(
            circle at 88% 72%,
            rgba(108, 61, 244, 0.075),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(250, 248, 255, 0.96)
        );
}

.ml-feature-card--orders {
    background:
        radial-gradient(
            circle at 80% 76%,
            rgba(59, 130, 246, 0.07),
            transparent 39%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(248, 251, 255, 0.96)
        );
}

.ml-feature-card--kitchen {
    background:
        radial-gradient(
            circle at 78% 80%,
            rgba(245, 158, 11, 0.07),
            transparent 43%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(255, 252, 247, 0.97)
        );
}

.ml-feature-card--staff {
    background:
        radial-gradient(
            circle at 80% 82%,
            rgba(139, 92, 246, 0.075),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(251, 249, 255, 0.97)
        );
}

.ml-feature-card--payments {
    background:
        radial-gradient(
            circle at 85% 78%,
            rgba(16, 185, 129, 0.065),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(248, 253, 251, 0.97)
        );
}

.ml-feature-card--analytics {
    background:
        radial-gradient(
            circle at 82% 80%,
            rgba(108, 61, 244, 0.08),
            transparent 43%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(250, 249, 255, 0.97)
        );
}

/* =========================================================
   BASIC CARD LAYOUT POSITIONING
========================================================= */

/* Digital menu */

.ml-feature-card--menu {
    justify-content: space-between;
}

.ml-feature-card--menu .ml-feature-card__content {
    max-width: 445px;
}

/* Online orders */

.ml-feature-card--orders {
    justify-content: space-between;
}

.ml-feature-card--orders .ml-feature-card__content {
    max-width: 430px;
}

/* Kitchen */

.ml-feature-card--kitchen {
    justify-content: space-between;
}

.ml-feature-card--kitchen .ml-feature-card__content {
    max-width: 520px;
}

/* Staff */

.ml-feature-card--staff {
    justify-content: space-between;
}

.ml-feature-card--staff .ml-feature-card__content {
    max-width: 410px;
}

/* Payments */

.ml-feature-card--payments {
    justify-content: space-between;
}

.ml-feature-card--payments .ml-feature-card__content {
    max-width: 430px;
}

/* Analytics */

.ml-feature-card--analytics {
    justify-content: space-between;
}

.ml-feature-card--analytics .ml-feature-card__content {
    max-width: 520px;
}

/* =========================================================
   GENERIC BUTTON RESET INSIDE FEATURE PREVIEWS
========================================================= */

.ml-features button {
    font: inherit;
}

.ml-feature-card button {
    cursor: default;
}

/* Prevent demo buttons from behaving like real forms */

.ml-feature-card button:focus {
    outline: none;
}

.ml-feature-card button:focus-visible {
    outline: 3px solid rgba(108, 61, 244, 0.22);
    outline-offset: 2px;
}

/* =========================================================
   SHARED MICRO ANIMATIONS
========================================================= */

.ml-feature-card__content {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ml-feature-card:hover .ml-feature-card__content {
    transform: translateY(-2px);
}

/* Shine passing over card */

.ml-feature-card .ml-feature-card__icon::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -90%;
    width: 45%;
    height: 230%;
    opacity: 0;
    background: rgba(255, 255, 255, 0.24);
    transform: rotate(28deg);
}

.ml-feature-card:hover .ml-feature-card__icon::after {
    opacity: 1;
    animation: mlFeatureIconShine 0.8s ease forwards;
}

@keyframes mlFeatureIconShine {
    from {
        left: -90%;
    }

    to {
        left: 150%;
    }
}

/* =========================================================
   PART 1 RESPONSIVE FOUNDATION
========================================================= */

@media (max-width: 1180px) {
    .ml-features__grid {
        gap: 18px;
    }

    .ml-feature-card {
        padding: 29px;
        border-radius: 25px;
    }

    .ml-feature-card--menu {
        grid-column: span 7;
    }

    .ml-feature-card--orders {
        grid-column: span 5;
    }

    .ml-feature-card--kitchen {
        grid-column: span 7;
    }

    .ml-feature-card--staff {
        grid-column: span 5;
    }

    .ml-feature-card--payments {
        grid-column: span 5;
    }

    .ml-feature-card--analytics {
        grid-column: span 7;
    }
}

@media (max-width: 980px) {
    .ml-features {
        padding: 110px 0;
    }

    .ml-features__header {
        margin-bottom: 62px;
    }

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

    .ml-feature-card--menu,
    .ml-feature-card--orders,
    .ml-feature-card--kitchen,
    .ml-feature-card--staff,
    .ml-feature-card--payments,
    .ml-feature-card--analytics {
        grid-column: span 1;
    }

    .ml-feature-card--menu,
    .ml-feature-card--orders {
        min-height: 620px;
    }

    .ml-feature-card--kitchen,
    .ml-feature-card--staff {
        min-height: 550px;
    }

    .ml-feature-card--payments,
    .ml-feature-card--analytics {
        min-height: 510px;
    }
}

@media (max-width: 720px) {
    .ml-features {
        padding: 90px 0;
    }

    .ml-features__container {
        width: min(calc(100% - 28px), var(--ml-container));
    }

    .ml-features__header {
        margin-bottom: 48px;
    }

    .ml-features__title {
        font-size: 40px;
        letter-spacing: -2.35px;
    }

    .ml-features__description {
        font-size: 15px;
        line-height: 1.7;
    }

    .ml-features__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ml-feature-card {
        min-height: auto;
        padding: 25px;
        border-radius: 22px;
    }

    .ml-feature-card--menu,
    .ml-feature-card--orders,
    .ml-feature-card--kitchen,
    .ml-feature-card--staff,
    .ml-feature-card--payments,
    .ml-feature-card--analytics {
        grid-column: 1;
        min-height: 540px;
    }

    .ml-feature-card h3 {
        font-size: 30px;
        letter-spacing: -1.45px;
    }

    .ml-feature-card__content > p {
        font-size: 13px;
    }

    .ml-feature-card__icon {
        width: 45px;
        height: 45px;
        margin-bottom: 18px;
    }

    .ml-feature-card__icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .ml-features {
        padding: 78px 0;
    }

    .ml-features__title {
        font-size: 35px;
        letter-spacing: -2px;
    }

    .ml-feature-card {
        padding: 21px;
        border-radius: 20px;
    }

    .ml-feature-card--menu,
    .ml-feature-card--orders,
    .ml-feature-card--kitchen,
    .ml-feature-card--staff,
    .ml-feature-card--payments,
    .ml-feature-card--analytics {
        min-height: 500px;
    }

    .ml-feature-card h3 {
        font-size: 27px;
    }

    .ml-feature-card__list {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .ml-feature-card,
    .ml-feature-card::before,
    .ml-feature-card::after,
    .ml-feature-card__content,
    .ml-feature-card__icon {
        transition: none !important;
    }

    .ml-feature-card:hover {
        transform: none;
    }

    .ml-feature-card:hover .ml-feature-card__content,
    .ml-feature-card:hover .ml-feature-card__icon {
        transform: none;
    }

    .ml-feature-card:hover .ml-feature-card__icon::after {
        animation: none;
    }
}








/* =========================================================
   FEATURES SECTION — PART 2
   Digital menu, QR preview and online orders
========================================================= */

/* =========================================================
   DIGITAL MENU PREVIEW
========================================================= */

.ml-feature-menu-preview {
    position: relative;
    min-height: 350px;
    margin-top: 26px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ml-feature-phone {
    position: relative;
    z-index: 3;
    overflow: hidden;
    width: 235px;
    min-height: 430px;
    padding: 8px;
    border: 7px solid #18181b;
    border-radius: 34px;
    background: #ffffff;
    box-shadow:
        0 36px 70px rgba(16, 24, 40, 0.2),
        0 12px 28px rgba(16, 24, 40, 0.1);
    transform: rotate(-2deg);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease;
}

.ml-feature-card--menu:hover .ml-feature-phone {
    transform: rotate(0deg) translateY(-7px);
    box-shadow:
        0 46px 90px rgba(16, 24, 40, 0.24),
        0 16px 35px rgba(16, 24, 40, 0.12);
}

.ml-feature-phone::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    z-index: 7;
    width: 72px;
    height: 19px;
    border-radius: 999px;
    background: #18181b;
    transform: translateX(-50%);
}

.ml-feature-phone__top {
    position: relative;
    z-index: 6;
    height: 27px;
    padding: 3px 7px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #344054;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 750;
}

.ml-feature-phone__top > div {
    display: flex;
    align-items: center;
    gap: 3px;
}

.ml-feature-phone__top i {
    display: block;
    width: 7px;
    height: 5px;
    border-radius: 2px;
    background: #344054;
}

.ml-feature-phone__hero {
    position: relative;
    overflow: hidden;
    min-height: 96px;
    border-radius: 16px 16px 10px 10px;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 255, 0.28),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #7c3aed,
            #4f46e5 55%,
            #312e81
        );
}

.ml-feature-phone__hero::after {
    content: "";
    position: absolute;
    top: -25px;
    right: -20px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.ml-feature-phone__hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        );
    background-size: 18px 18px;
}

.ml-feature-phone__restaurant {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 11px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.ml-feature-phone__restaurant-logo {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 850;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.ml-feature-phone__restaurant > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-phone__restaurant strong {
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
}

.ml-feature-phone__restaurant span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 6px;
}

.ml-feature-phone__categories {
    margin-top: 9px;
    padding: 0 3px 7px;
    display: flex;
    gap: 6px;
    overflow-x: hidden;
    border-bottom: 1px solid #f0f1f4;
}

.ml-feature-phone__categories span {
    flex-shrink: 0;
    padding: 6px 8px;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
    font-weight: 700;
    border-radius: 999px;
    background: #f7f8fa;
}

.ml-feature-phone__categories span.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 6px 12px rgba(108, 61, 244, 0.2);
}

.ml-feature-phone__products {
    padding: 9px 2px 62px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ml-feature-phone__product {
    min-height: 76px;
    padding: 8px;
    display: grid;
    grid-template-columns: 52px 1fr 24px;
    align-items: center;
    gap: 8px;
    border: 1px solid #edf0f4;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.025);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-feature-card--menu:hover .ml-feature-phone__product:nth-child(1) {
    transform: translateX(3px);
}

.ml-feature-card--menu:hover .ml-feature-phone__product:nth-child(2) {
    transform: translateX(-3px);
}

.ml-feature-phone__product-image {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 10px;
    background:
        linear-gradient(
            135deg,
            #fff4e8,
            #ffe7cc
        );
}

.ml-feature-phone__product:nth-child(2)
.ml-feature-phone__product-image {
    background:
        linear-gradient(
            135deg,
            #fff1ee,
            #ffe2db
        );
}

.ml-feature-phone__product-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-phone__product-info strong {
    overflow: hidden;
    color: #344054;
    font-size: 7px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-feature-phone__product-info small {
    overflow: hidden;
    margin-top: 4px;
    color: #98a2b3;
    font-size: 5px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-feature-phone__product-info span {
    margin-top: 6px;
    color: var(--ml-primary);
    font-size: 7px;
    font-weight: 850;
}

.ml-feature-phone__product > button {
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    border: 0;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 7px 14px rgba(108, 61, 244, 0.2);
}

.ml-feature-phone__cart {
    position: absolute;
    right: 9px;
    bottom: 9px;
    left: 9px;
    z-index: 6;
    min-height: 50px;
    padding: 8px 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(108, 61, 244, 0.12);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 14px 30px rgba(16, 24, 40, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

.ml-feature-phone__cart > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-phone__cart span {
    color: #98a2b3;
    font-size: 5px;
}

.ml-feature-phone__cart strong {
    color: #344054;
    font-size: 9px;
    font-weight: 850;
}

.ml-feature-phone__cart button {
    min-height: 30px;
    padding: 0 10px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border: 0;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
}

/* =========================================================
   QR CARD
========================================================= */

.ml-feature-qr-card {
    position: absolute;
    right: 5px;
    bottom: 44px;
    z-index: 6;
    width: 180px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 18px 45px rgba(16, 24, 40, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    animation: mlFeatureQrFloat 5.5s ease-in-out infinite;
}

.ml-feature-qr-card__code {
    flex-shrink: 0;
    width: 43px;
    height: 43px;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border: 1px solid rgba(16, 24, 40, 0.1);
    border-radius: 8px;
    background: #ffffff;
}

.ml-feature-qr-card__code span {
    border-radius: 1px;
    background: #1d2939;
}

.ml-feature-qr-card__code span:nth-child(2),
.ml-feature-qr-card__code span:nth-child(4),
.ml-feature-qr-card__code span:nth-child(6),
.ml-feature-qr-card__code span:nth-child(8) {
    background: transparent;
}

.ml-feature-qr-card > div:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-qr-card small {
    color: #98a2b3;
    font-size: 7px;
}

.ml-feature-qr-card strong {
    color: #344054;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

/* =========================================================
   ONLINE ORDERS PREVIEW
========================================================= */

.ml-feature-orders {
    margin-top: 28px;
    padding: 16px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 20px 45px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
}

.ml-feature-orders__header {
    padding-bottom: 13px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f4;
}

.ml-feature-orders__header > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-orders__header strong {
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.ml-feature-orders__header span {
    color: #98a2b3;
    font-size: 7px;
}

.ml-feature-orders__live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #039855 !important;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px !important;
    font-weight: 800;
}

.ml-feature-orders__live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.11);
    animation: mlFeatureLivePulse 1.8s ease-in-out infinite;
}

.ml-feature-orders__list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ml-feature-order {
    min-height: 69px;
    padding: 10px 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #edf0f4;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 5px 14px rgba(16, 24, 40, 0.025);
    transition:
        transform 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}

.ml-feature-card--orders:hover
.ml-feature-order:nth-child(1) {
    transform: translateX(5px);
}

.ml-feature-card--orders:hover
.ml-feature-order:nth-child(2) {
    transform: translateX(-4px);
}

.ml-feature-card--orders:hover
.ml-feature-order:nth-child(3) {
    transform: translateX(3px);
}

.ml-feature-order__main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.ml-feature-order__icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.ml-feature-order__icon svg {
    width: 18px;
    height: 18px;
}

.ml-feature-order.is-new .ml-feature-order__icon {
    color: #175cd3;
    background: #eff8ff;
}

.ml-feature-order.is-preparing .ml-feature-order__icon {
    color: #b54708;
    background: #fffaeb;
}

.ml-feature-order.is-ready .ml-feature-order__icon {
    color: #027a48;
    background: #ecfdf3;
}

.ml-feature-order__main > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-order__main strong {
    color: #344054;
    font-size: 9px;
    font-weight: 800;
}

.ml-feature-order__main small {
    color: #98a2b3;
    font-size: 6px;
    white-space: nowrap;
}

.ml-feature-order__status {
    flex-shrink: 0;
    padding: 5px 8px;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
    font-weight: 800;
    border-radius: 999px;
}

.ml-feature-order.is-new .ml-feature-order__status {
    color: #175cd3;
    background: #eff8ff;
}

.ml-feature-order.is-preparing .ml-feature-order__status {
    color: #b54708;
    background: #fffaeb;
}

.ml-feature-order.is-ready .ml-feature-order__status {
    color: #027a48;
    background: #ecfdf3;
}

/* Add subtle left status border */

.ml-feature-order.is-new {
    border-left: 3px solid #2e90fa;
}

.ml-feature-order.is-preparing {
    border-left: 3px solid #f79009;
}

.ml-feature-order.is-ready {
    border-left: 3px solid #12b76a;
}

/* =========================================================
   PART 2 ANIMATIONS
========================================================= */

@keyframes mlFeatureQrFloat {
    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(-9px) rotate(-1deg);
    }
}

@keyframes mlFeatureLivePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

/* =========================================================
   PART 2 RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .ml-feature-phone {
        width: 220px;
        min-height: 410px;
    }

    .ml-feature-qr-card {
        right: 0;
        width: 165px;
    }
}

@media (max-width: 980px) {
    .ml-feature-menu-preview {
        min-height: 330px;
    }

    .ml-feature-phone {
        width: 210px;
        min-height: 400px;
    }

    .ml-feature-qr-card {
        bottom: 35px;
        width: 155px;
        padding: 10px;
    }

    .ml-feature-qr-card__code {
        width: 38px;
        height: 38px;
    }

    .ml-feature-orders {
        margin-top: 24px;
    }
}

@media (max-width: 720px) {
    .ml-feature-menu-preview {
        min-height: 385px;
        margin-top: 30px;
    }

    .ml-feature-phone {
        width: 220px;
        min-height: 415px;
    }

    .ml-feature-qr-card {
        right: 5%;
        bottom: 35px;
    }

    .ml-feature-orders {
        margin-top: 30px;
        padding: 13px;
    }

    .ml-feature-order {
        min-height: 64px;
        padding: 9px;
    }
}

@media (max-width: 480px) {
    .ml-feature-menu-preview {
        min-height: 365px;
    }

    .ml-feature-phone {
        width: 205px;
        min-height: 395px;
        border-width: 6px;
        border-radius: 30px;
    }

    .ml-feature-phone__product {
        grid-template-columns: 45px 1fr 22px;
    }

    .ml-feature-phone__product-image {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .ml-feature-qr-card {
        right: -8px;
        bottom: 32px;
        width: 142px;
        padding: 9px;
    }

    .ml-feature-qr-card__code {
        width: 34px;
        height: 34px;
    }

    .ml-feature-qr-card strong {
        font-size: 8px;
    }

    .ml-feature-orders {
        padding: 11px;
    }

    .ml-feature-order__icon {
        width: 31px;
        height: 31px;
    }

    .ml-feature-order__main small {
        max-width: 110px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-feature-phone,
    .ml-feature-phone__product,
    .ml-feature-order {
        transition: none !important;
    }

    .ml-feature-qr-card,
    .ml-feature-orders__live i {
        animation: none !important;
    }

    .ml-feature-card--menu:hover .ml-feature-phone,
    .ml-feature-card--menu:hover .ml-feature-phone__product,
    .ml-feature-card--orders:hover .ml-feature-order {
        transform: none;
    }
}




/* =========================================================
   FEATURES SECTION — PART 3
   Kitchen Display System and Staff Management
========================================================= */

/* =========================================================
   KITCHEN DISPLAY
========================================================= */

.ml-feature-kitchen {
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow:
        0 24px 55px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ml-feature-kitchen__top {
    min-height: 64px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f4;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 250, 252, 0.94)
        );
}

.ml-feature-kitchen__top > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-kitchen__top strong {
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.ml-feature-kitchen__top span {
    color: #98a2b3;
    font-size: 7px;
}

.ml-feature-kitchen__clock {
    min-width: 54px;
    min-height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    border: 1px solid rgba(108, 61, 244, 0.1);
    border-radius: 9px;
    background: rgba(108, 61, 244, 0.06);
}

.ml-feature-kitchen__columns {
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    background:
        linear-gradient(
            180deg,
            #f9fafb,
            #f7f8fb
        );
}

.ml-feature-kitchen__column {
    min-width: 0;
}

.ml-feature-kitchen__column-title {
    min-height: 31px;
    padding: 0 3px 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-kitchen__column-title span {
    color: #667085;
    font-size: 7px;
    font-weight: 750;
}

.ml-feature-kitchen__column-title strong {
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475467;
    font-size: 7px;
    font-weight: 800;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(16, 24, 40, 0.05);
}

/* Kitchen tickets */

.ml-kitchen-ticket {
    min-height: 185px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
    transition:
        transform 0.34s ease,
        border-color 0.34s ease,
        box-shadow 0.34s ease;
}

.ml-feature-card--kitchen:hover
.ml-kitchen-ticket:nth-child(1) {
    transform: translateY(-4px);
}

.ml-kitchen-ticket.is-new {
    border-top: 3px solid #2e90fa;
}

.ml-kitchen-ticket.is-preparing {
    border-top: 3px solid #f79009;
}

.ml-kitchen-ticket.is-ready {
    border-top: 3px solid #12b76a;
}

.ml-kitchen-ticket__head {
    padding-bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed #e4e7ec;
    font-family: Inter, Arial, sans-serif;
}

.ml-kitchen-ticket__head strong {
    color: #344054;
    font-size: 9px;
    font-weight: 850;
}

.ml-kitchen-ticket__head span {
    padding: 4px 6px;
    font-size: 6px;
    font-weight: 800;
    border-radius: 999px;
}

.ml-kitchen-ticket.is-new
.ml-kitchen-ticket__head span {
    color: #175cd3;
    background: #eff8ff;
}

.ml-kitchen-ticket.is-preparing
.ml-kitchen-ticket__head span {
    color: #b54708;
    background: #fffaeb;
}

.ml-kitchen-ticket.is-ready
.ml-kitchen-ticket__head span {
    color: #027a48;
    background: #ecfdf3;
}

.ml-kitchen-ticket ul {
    margin: 11px 0 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.ml-kitchen-ticket li {
    position: relative;
    padding-left: 10px;
    color: #475467;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 650;
    line-height: 1.4;
}

.ml-kitchen-ticket li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ml-primary);
}

.ml-kitchen-ticket button {
    width: 100%;
    min-height: 30px;
    margin-top: auto;
    padding: 0 8px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border: 0;
    border-radius: 8px;
}

.ml-kitchen-ticket.is-new button {
    background:
        linear-gradient(
            135deg,
            #2e90fa,
            #1570ef
        );
}

.ml-kitchen-ticket.is-preparing button {
    background:
        linear-gradient(
            135deg,
            #f79009,
            #dc6803
        );
}

.ml-kitchen-ticket.is-ready button {
    background:
        linear-gradient(
            135deg,
            #12b76a,
            #039855
        );
}

/* =========================================================
   STAFF MANAGEMENT
========================================================= */

.ml-feature-staff {
    margin-top: 27px;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 20px 48px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ml-feature-staff__header {
    min-height: 64px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f4;
}

.ml-feature-staff__header > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-staff__header strong {
    color: #344054;
    font-size: 10px;
    font-weight: 800;
}

.ml-feature-staff__header span {
    color: #98a2b3;
    font-size: 6px;
}

.ml-feature-staff__header button {
    min-height: 30px;
    padding: 0 10px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border: 0;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 8px 17px rgba(108, 61, 244, 0.18);
}

.ml-feature-staff__list {
    padding: 11px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fafbfc;
}

.ml-feature-staff__member {
    position: relative;
    min-height: 59px;
    padding: 9px;
    display: grid;
    grid-template-columns: 37px minmax(0, 1fr) auto 8px;
    align-items: center;
    gap: 8px;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 13px rgba(16, 24, 40, 0.025);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-feature-card--staff:hover
.ml-feature-staff__member:nth-child(odd) {
    transform: translateX(4px);
}

.ml-feature-card--staff:hover
.ml-feature-staff__member:nth-child(even) {
    transform: translateX(-3px);
}

.ml-feature-staff__avatar {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5940b8;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 850;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            #ede9fe,
            #ddd6fe
        );
}

.ml-feature-staff__member:nth-child(2)
.ml-feature-staff__avatar {
    color: #175cd3;
    background:
        linear-gradient(
            135deg,
            #eff8ff,
            #d1e9ff
        );
}

.ml-feature-staff__member:nth-child(3)
.ml-feature-staff__avatar {
    color: #b54708;
    background:
        linear-gradient(
            135deg,
            #fffaeb,
            #fef0c7
        );
}

.ml-feature-staff__member:nth-child(4)
.ml-feature-staff__avatar {
    color: #027a48;
    background:
        linear-gradient(
            135deg,
            #ecfdf3,
            #d1fadf
        );
}

.ml-feature-staff__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-staff__info strong {
    overflow: hidden;
    color: #344054;
    font-size: 8px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-feature-staff__info small {
    overflow: hidden;
    color: #98a2b3;
    font-size: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-feature-staff__role {
    padding: 5px 7px;
    font-family: Inter, Arial, sans-serif;
    font-size: 5px;
    font-weight: 850;
    border-radius: 999px;
    white-space: nowrap;
}

.ml-feature-staff__role.is-owner {
    color: #5925dc;
    background: #f4f3ff;
}

.ml-feature-staff__role.is-manager {
    color: #175cd3;
    background: #eff8ff;
}

.ml-feature-staff__role.is-cook {
    color: #b54708;
    background: #fffaeb;
}

.ml-feature-staff__role.is-cashier {
    color: #027a48;
    background: #ecfdf3;
}

.ml-feature-staff__online,
.ml-feature-staff__offline {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.ml-feature-staff__online {
    background: #12b76a;
    box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.1);
    animation: mlStaffOnlinePulse 2s ease-in-out infinite;
}

.ml-feature-staff__offline {
    background: #d0d5dd;
}

/* =========================================================
   PART 3 ANIMATIONS
========================================================= */

@keyframes mlStaffOnlinePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.58;
        transform: scale(0.82);
    }
}

/* =========================================================
   PART 3 RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .ml-feature-kitchen__columns {
        gap: 8px;
    }

    .ml-kitchen-ticket {
        padding: 10px;
    }

    .ml-feature-staff__member {
        grid-template-columns: 34px minmax(0, 1fr) auto 7px;
    }

    .ml-feature-staff__avatar {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 980px) {
    .ml-feature-kitchen__columns {
        grid-template-columns: 1fr;
    }

    .ml-feature-kitchen__column {
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: stretch;
        gap: 8px;
    }

    .ml-feature-kitchen__column-title {
        min-height: 100%;
        padding: 10px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 10px;
        background: #ffffff;
    }

    .ml-kitchen-ticket {
        min-height: 145px;
    }
}

@media (max-width: 720px) {
    .ml-feature-kitchen {
        margin-top: 30px;
    }

    .ml-feature-kitchen__top {
        min-height: 58px;
        padding: 0 13px;
    }

    .ml-feature-kitchen__columns {
        padding: 11px;
    }

    .ml-feature-kitchen__column {
        grid-template-columns: 74px 1fr;
    }

    .ml-feature-staff {
        margin-top: 30px;
    }

    .ml-feature-staff__header {
        min-height: 58px;
    }
}

@media (max-width: 480px) {
    .ml-feature-kitchen__clock {
        min-width: 48px;
        font-size: 8px;
    }

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

    .ml-feature-kitchen__column-title {
        min-height: 32px;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .ml-kitchen-ticket {
        min-height: 135px;
    }

    .ml-feature-staff__member {
        grid-template-columns: 34px minmax(0, 1fr) auto;
    }

    .ml-feature-staff__online,
    .ml-feature-staff__offline {
        position: absolute;
        top: 9px;
        left: 35px;
        border: 2px solid #ffffff;
    }

    .ml-feature-staff__role {
        font-size: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-kitchen-ticket,
    .ml-feature-staff__member {
        transition: none !important;
    }

    .ml-feature-staff__online {
        animation: none !important;
    }

    .ml-feature-card--kitchen:hover .ml-kitchen-ticket,
    .ml-feature-card--staff:hover .ml-feature-staff__member {
        transform: none;
    }
}








/* =========================================================
   FEATURES SECTION — PART 4
   Payments, analytics, trust strip and final responsive fixes
========================================================= */

/* =========================================================
   PAYMENTS
========================================================= */

.ml-feature-payments {
    margin-top: 29px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ml-feature-payment-option {
    min-height: 68px;
    padding: 11px 12px;
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow:
        0 7px 18px rgba(16, 24, 40, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.ml-feature-payment-option.is-active {
    border-color: rgba(108, 61, 244, 0.22);
    background:
        linear-gradient(
            135deg,
            rgba(108, 61, 244, 0.065),
            rgba(255, 255, 255, 0.94)
        );
    box-shadow:
        0 10px 24px rgba(108, 61, 244, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.ml-feature-card--payments:hover
.ml-feature-payment-option:nth-child(1) {
    transform: translateX(4px);
}

.ml-feature-card--payments:hover
.ml-feature-payment-option:nth-child(2) {
    transform: translateX(-3px);
}

.ml-feature-payment-option__icon {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 850;
    border-radius: 11px;
    background: rgba(108, 61, 244, 0.09);
}

.ml-feature-payment-option__icon svg {
    width: 19px;
    height: 19px;
}

.ml-feature-payment-option > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-payment-option strong {
    overflow: hidden;
    color: #344054;
    font-size: 9px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-feature-payment-option small {
    overflow: hidden;
    color: #98a2b3;
    font-size: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-feature-payment-option__check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            #12b76a,
            #039855
        );
    box-shadow: 0 7px 15px rgba(18, 183, 106, 0.17);
}

/* Order methods */

.ml-feature-order-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.ml-feature-order-methods span {
    min-height: 34px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border: 1px solid #eaecf0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.8);
}

.ml-feature-order-methods span:first-child {
    color: var(--ml-primary);
    border-color: rgba(108, 61, 244, 0.18);
    background: rgba(108, 61, 244, 0.07);
}

/* Payment summary */

.ml-feature-payment-summary {
    min-height: 71px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.95),
            rgba(248, 253, 251, 0.95)
        );
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.045);
}

.ml-feature-payment-summary > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-feature-payment-summary span {
    color: #98a2b3;
    font-size: 7px;
}

.ml-feature-payment-summary strong {
    color: #1d2939;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: -0.4px;
}

.ml-feature-payment-summary button {
    min-height: 38px;
    padding: 0 13px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 800;
    border: 0;
    border-radius: 10px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 10px 22px rgba(108, 61, 244, 0.2);
}

/* =========================================================
   ANALYTICS
========================================================= */

.ml-feature-analytics {
    margin-top: 28px;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow:
        0 22px 52px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ml-feature-analytics__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ml-feature-analytics__stats > div {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.03);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-feature-card--analytics:hover
.ml-feature-analytics__stats > div:first-child {
    transform: translateY(-4px);
}

.ml-feature-card--analytics:hover
.ml-feature-analytics__stats > div:last-child {
    transform: translateY(3px);
}

.ml-feature-analytics__stats span {
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 700;
}

.ml-feature-analytics__stats strong {
    color: #1d2939;
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    font-weight: 850;
    letter-spacing: -0.5px;
}

.ml-feature-analytics__stats small {
    color: #039855;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
    font-weight: 800;
}

.ml-feature-analytics__chart {
    position: relative;
    height: 220px;
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fcfcfd
        );
}

.ml-feature-analytics__chart-grid {
    position: absolute;
    inset: 16px 14px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ml-feature-analytics__chart-grid span {
    width: 100%;
    border-top: 1px dashed #edf0f4;
}

.ml-feature-analytics__chart svg {
    position: absolute;
    top: 15px;
    right: 13px;
    left: 13px;
    width: calc(100% - 26px);
    height: 170px;
    overflow: visible;
}

.ml-feature-analytics__days {
    position: absolute;
    right: 14px;
    bottom: 9px;
    left: 14px;
    display: flex;
    justify-content: space-between;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
}

.ml-feature-card--analytics:hover
.ml-feature-analytics__chart svg {
    animation: mlAnalyticsFloat 2.8s ease-in-out infinite;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.ml-features__trust {
    margin-top: 36px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.9),
            rgba(250, 249, 255, 0.84)
        );
    box-shadow:
        0 20px 48px rgba(16, 24, 40, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ml-features__trust-item {
    min-height: 62px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 1px solid rgba(16, 24, 40, 0.07);
}

.ml-features__trust-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.ml-features__trust-item:last-child {
    padding-right: 0;
}

.ml-features__trust-item > span {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border: 1px solid rgba(108, 61, 244, 0.1);
    border-radius: 13px;
    background: rgba(108, 61, 244, 0.075);
}

.ml-features__trust-item > span svg {
    width: 21px;
    height: 21px;
}

.ml-features__trust-item > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-features__trust-item strong {
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.ml-features__trust-item small {
    color: #98a2b3;
    font-size: 7px;
    line-height: 1.45;
}

/* =========================================================
   PART 4 ANIMATIONS
========================================================= */

@keyframes mlAnalyticsFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* =========================================================
   FINAL RESPONSIVE FIXES
========================================================= */

@media (max-width: 1180px) {
    .ml-feature-payment-summary {
        gap: 10px;
    }

    .ml-feature-payment-summary button {
        padding: 0 10px;
    }

    .ml-features__trust-item {
        padding: 0 18px;
    }
}

@media (max-width: 980px) {
    .ml-feature-payments {
        margin-top: 24px;
    }

    .ml-feature-analytics {
        margin-top: 24px;
    }

    .ml-feature-analytics__chart {
        height: 205px;
    }

    .ml-feature-analytics__chart svg {
        height: 155px;
    }

    .ml-features__trust {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ml-features__trust-item,
    .ml-features__trust-item:first-child,
    .ml-features__trust-item:last-child {
        padding: 16px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-features__trust-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 720px) {
    .ml-feature-payments {
        margin-top: 30px;
    }

    .ml-feature-payment-option {
        min-height: 63px;
    }

    .ml-feature-payment-summary {
        flex-direction: column;
        align-items: stretch;
    }

    .ml-feature-payment-summary button {
        width: 100%;
    }

    .ml-feature-analytics {
        margin-top: 30px;
        padding: 13px;
    }

    .ml-feature-analytics__chart {
        height: 195px;
    }

    .ml-feature-analytics__chart svg {
        height: 145px;
    }

    .ml-features__trust {
        margin-top: 24px;
        padding: 16px 18px;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .ml-feature-payment-option {
        grid-template-columns: 35px minmax(0, 1fr) 21px;
        padding: 9px;
    }

    .ml-feature-payment-option__icon {
        width: 35px;
        height: 35px;
    }

    .ml-feature-order-methods {
        grid-template-columns: 1fr;
    }

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

    .ml-feature-analytics__chart {
        height: 180px;
    }

    .ml-feature-analytics__chart svg {
        top: 19px;
        height: 130px;
    }

    .ml-feature-analytics__days {
        font-size: 5px;
    }

    .ml-features__trust-item > span {
        width: 38px;
        height: 38px;
    }

    .ml-features__trust-item strong {
        font-size: 10px;
    }
}

/* =========================================================
   GLOBAL FEATURE PREVIEW SAFETY FIXES
========================================================= */

.ml-feature-phone,
.ml-feature-orders,
.ml-feature-kitchen,
.ml-feature-staff,
.ml-feature-payments,
.ml-feature-analytics {
    max-width: 100%;
}

.ml-feature-card svg {
    display: block;
}

.ml-feature-card img {
    max-width: 100%;
    height: auto;
}

.ml-feature-card button {
    appearance: none;
    -webkit-appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .ml-feature-payment-option,
    .ml-feature-analytics__stats > div {
        transition: none !important;
    }

    .ml-feature-card--payments:hover
    .ml-feature-payment-option,
    .ml-feature-card--analytics:hover
    .ml-feature-analytics__stats > div {
        transform: none;
    }

    .ml-feature-card--analytics:hover
    .ml-feature-analytics__chart svg {
        animation: none !important;
    }
}










/* =========================================================
   SOLUTIONS SECTION — PART 2
   Restaurants and Cafés visuals
========================================================= */

/* =========================================================
   RESTAURANT DASHBOARD
========================================================= */

.ml-solution-restaurant {
    position: relative;
    overflow: hidden;
    width: min(100%, 500px);
    min-height: 390px;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 24px;
    background: #ffffff;
    box-shadow:
        0 36px 80px rgba(16, 24, 40, 0.15),
        0 12px 32px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transform: rotateY(-4deg) rotateX(1deg);
    transform-origin: center;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-restaurant {
    transform: rotateY(0) rotateX(0) translateY(-6px);
    box-shadow:
        0 48px 100px rgba(16, 24, 40, 0.19),
        0 16px 38px rgba(16, 24, 40, 0.09);
}

.ml-solution-restaurant__topbar {
    min-height: 66px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f4;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.99),
            rgba(252, 252, 253, 0.96)
        );
}

.ml-solution-restaurant__topbar > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ml-solution-restaurant__logo {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 850;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 9px 20px rgba(108, 61, 244, 0.22);
}

.ml-solution-restaurant__topbar > div > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-restaurant__topbar strong {
    color: #344054;
    font-size: 10px;
    font-weight: 800;
}

.ml-solution-restaurant__topbar small {
    color: #98a2b3;
    font-size: 6px;
}

.ml-solution-restaurant__status {
    min-height: 29px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #027a48;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border-radius: 999px;
    background: #ecfdf3;
}

.ml-solution-restaurant__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.11);
    animation: mlSolutionLivePulse 1.8s ease-in-out infinite;
}

.ml-solution-restaurant__body {
    padding: 17px;
    background:
        linear-gradient(
            180deg,
            #f9fafb,
            #f7f8fb
        );
}

.ml-solution-restaurant__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.ml-solution-restaurant__stats > div {
    min-width: 0;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(16, 24, 40, 0.03);
    font-family: Inter, Arial, sans-serif;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-restaurant__stats > div:nth-child(1) {
    transform: translateY(-3px);
}

.ml-solution-panel.is-active:hover
.ml-solution-restaurant__stats > div:nth-child(2) {
    transform: translateY(2px);
}

.ml-solution-panel.is-active:hover
.ml-solution-restaurant__stats > div:nth-child(3) {
    transform: translateY(-2px);
}

.ml-solution-restaurant__stats span {
    color: #667085;
    font-size: 7px;
    font-weight: 700;
}

.ml-solution-restaurant__stats strong {
    color: #1d2939;
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -0.45px;
}

.ml-solution-restaurant__stats small {
    color: #98a2b3;
    font-size: 6px;
}

.ml-solution-restaurant__stats > div:nth-child(2) small {
    color: #175cd3;
}

.ml-solution-restaurant__stats > div:nth-child(3) small {
    color: #039855;
    font-weight: 800;
}

/* Restaurant orders */

.ml-solution-restaurant__orders {
    margin-top: 11px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ml-solution-order {
    min-height: 68px;
    padding: 10px 11px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(16, 24, 40, 0.03);
    transition:
        transform 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-order:nth-child(1) {
    transform: translateX(5px);
}

.ml-solution-panel.is-active:hover
.ml-solution-order:nth-child(2) {
    transform: translateX(-4px);
}

.ml-solution-panel.is-active:hover
.ml-solution-order:nth-child(3) {
    transform: translateX(3px);
}

.ml-solution-order__table {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 850;
    border-radius: 11px;
    background: rgba(108, 61, 244, 0.09);
}

.ml-solution-order > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-order strong {
    color: #344054;
    font-size: 9px;
    font-weight: 800;
}

.ml-solution-order small {
    overflow: hidden;
    color: #98a2b3;
    font-size: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-solution-order__badge {
    flex-shrink: 0;
    padding: 5px 8px;
    font-family: Inter, Arial, sans-serif;
    font-size: 6px;
    font-weight: 800;
    border-radius: 999px;
}

.ml-solution-order__badge.is-new {
    color: #175cd3;
    background: #eff8ff;
}

.ml-solution-order__badge.is-preparing {
    color: #b54708;
    background: #fffaeb;
}

.ml-solution-order__badge.is-ready {
    color: #027a48;
    background: #ecfdf3;
}

/* =========================================================
   FLOATING ORDER NOTIFICATION
========================================================= */

.ml-solution-float {
    position: absolute;
    z-index: 8;
    min-width: 215px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 20px 48px rgba(16, 24, 40, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.ml-solution-float--order {
    right: -22px;
    bottom: 35px;
    animation: mlSolutionFloat 5.4s ease-in-out infinite;
}

.ml-solution-float__icon {
    flex-shrink: 0;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 11px;
    background: rgba(108, 61, 244, 0.09);
}

.ml-solution-float__icon svg {
    width: 20px;
    height: 20px;
}

.ml-solution-float > span:nth-child(2) {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-float small {
    color: #98a2b3;
    font-size: 7px;
}

.ml-solution-float strong {
    color: #344054;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.ml-solution-float > i {
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: #f04438;
    box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.11);
    animation: mlSolutionLivePulse 1.7s ease-in-out infinite;
}

/* =========================================================
   CAFÉ PREVIEW
========================================================= */

.ml-solution-cafe {
    position: relative;
    overflow: hidden;
    width: min(100%, 440px);
    min-height: 390px;
    padding: 18px;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(245, 158, 11, 0.08),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            #fffdf9,
            #ffffff
        );
    box-shadow:
        0 36px 80px rgba(16, 24, 40, 0.14),
        0 12px 32px rgba(16, 24, 40, 0.07);
    transform: rotateY(3deg) rotateX(1deg);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-cafe {
    transform: rotateY(0) rotateX(0) translateY(-6px);
    box-shadow:
        0 48px 100px rgba(16, 24, 40, 0.18),
        0 16px 38px rgba(16, 24, 40, 0.09);
}

.ml-solution-cafe__header {
    min-height: 58px;
    padding: 0 3px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee9e2;
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-cafe__header span {
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.ml-solution-cafe__header strong {
    padding: 6px 9px;
    color: #b54708;
    font-size: 7px;
    font-weight: 850;
    border-radius: 999px;
    background: #fffaeb;
}

/* Café products */

.ml-solution-cafe__products {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ml-solution-cafe__products > div {
    min-height: 72px;
    padding: 10px;
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee9e2;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 5px 15px rgba(16, 24, 40, 0.025);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-cafe__products > div:nth-child(1) {
    transform: translateX(5px);
}

.ml-solution-panel.is-active:hover
.ml-solution-cafe__products > div:nth-child(2) {
    transform: translateX(-4px);
}

.ml-solution-panel.is-active:hover
.ml-solution-cafe__products > div:nth-child(3) {
    transform: translateX(3px);
}

.ml-solution-cafe__products > div > span {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            #fff7ed,
            #ffedd5
        );
}

.ml-solution-cafe__products > div {
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-cafe__products strong {
    min-width: 0;
    color: #344054;
    font-size: 8px;
    font-weight: 800;
}

.ml-solution-cafe__products small {
    grid-column: 2;
    margin-top: -15px;
    color: #98a2b3;
    font-size: 6px;
}

.ml-solution-cafe__products b {
    grid-column: 3;
    grid-row: 1 / span 2;
    color: #b54708;
    font-size: 8px;
    font-weight: 850;
}

/* Café pickup card */

.ml-solution-cafe__pickup {
    min-height: 69px;
    margin-top: 13px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 250, 235, 0.94),
            rgba(255, 255, 255, 0.96)
        );
    box-shadow: 0 8px 21px rgba(245, 158, 11, 0.07);
}

.ml-solution-cafe__pickup > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-cafe__pickup small {
    color: #98a2b3;
    font-size: 7px;
}

.ml-solution-cafe__pickup strong {
    color: #344054;
    font-size: 9px;
    font-weight: 800;
}

.ml-solution-cafe__pickup button {
    min-height: 31px;
    padding: 0 10px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border: 0;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            #f79009,
            #dc6803
        );
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.18);
}

/* =========================================================
   PART 2 ANIMATIONS
========================================================= */

@keyframes mlSolutionLivePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

@keyframes mlSolutionFloat {
    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(-9px) rotate(-1deg);
    }
}

/* =========================================================
   PART 2 RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .ml-solution-restaurant {
        width: min(100%, 460px);
    }

    .ml-solution-cafe {
        width: min(100%, 410px);
    }

    .ml-solution-float--order {
        right: -10px;
    }
}

@media (max-width: 1020px) {
    .ml-solution-restaurant,
    .ml-solution-cafe {
        transform: none;
    }

    .ml-solution-panel.is-active:hover
    .ml-solution-restaurant,
    .ml-solution-panel.is-active:hover
    .ml-solution-cafe {
        transform: translateY(-5px);
    }
}

@media (max-width: 800px) {
    .ml-solution-restaurant {
        width: min(100%, 560px);
    }

    .ml-solution-cafe {
        width: min(100%, 500px);
    }
}

@media (max-width: 680px) {
    .ml-solution-restaurant__stats {
        grid-template-columns: 1fr;
    }

    .ml-solution-restaurant__stats > div {
        min-height: 73px;
    }

    .ml-solution-float--order {
        right: 5px;
        bottom: 22px;
    }

    .ml-solution-cafe {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .ml-solution-restaurant {
        min-height: 350px;
        border-radius: 20px;
    }

    .ml-solution-restaurant__body {
        padding: 12px;
    }

    .ml-solution-order {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .ml-solution-order__table {
        width: 34px;
        height: 34px;
    }

    .ml-solution-order__badge {
        grid-column: 2;
        width: fit-content;
    }

    .ml-solution-float--order {
        right: -6px;
        min-width: 185px;
        padding: 9px;
    }

    .ml-solution-cafe {
        min-height: 350px;
        border-radius: 20px;
    }

    .ml-solution-cafe__products > div {
        grid-template-columns: 38px minmax(0, 1fr) auto;
    }

    .ml-solution-cafe__products > div > span {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }

    .ml-solution-cafe__pickup {
        align-items: stretch;
        flex-direction: column;
    }

    .ml-solution-cafe__pickup button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-solution-restaurant,
    .ml-solution-cafe,
    .ml-solution-restaurant__stats > div,
    .ml-solution-order,
    .ml-solution-cafe__products > div {
        transition: none !important;
    }

    .ml-solution-float,
    .ml-solution-restaurant__status i,
    .ml-solution-float > i {
        animation: none !important;
    }

    .ml-solution-panel.is-active:hover
    .ml-solution-restaurant,
    .ml-solution-panel.is-active:hover
    .ml-solution-cafe,
    .ml-solution-panel.is-active:hover
    .ml-solution-restaurant__stats > div,
    .ml-solution-panel.is-active:hover
    .ml-solution-order,
    .ml-solution-panel.is-active:hover
    .ml-solution-cafe__products > div {
        transform: none;
    }
}








/* =========================================================
   SOLUTIONS SECTION — PART 3
   Fast food, hotels, multi-location and support strip
========================================================= */

/* =========================================================
   FAST FOOD PREVIEW
========================================================= */

.ml-solution-fast-food {
    position: relative;
    overflow: hidden;
    width: min(100%, 440px);
    min-height: 390px;
    padding: 18px;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(239, 68, 68, 0.07),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #fffafa,
            #ffffff
        );
    box-shadow:
        0 36px 80px rgba(16, 24, 40, 0.14),
        0 12px 32px rgba(16, 24, 40, 0.07);
    transform: rotateY(-3deg) rotateX(1deg);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-fast-food {
    transform: rotateY(0) rotateX(0) translateY(-6px);
    box-shadow:
        0 48px 100px rgba(16, 24, 40, 0.18),
        0 16px 38px rgba(16, 24, 40, 0.09);
}

.ml-solution-fast-food__header {
    min-height: 58px;
    padding: 0 3px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1e6e6;
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-fast-food__header > span {
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.ml-solution-fast-food__header > div {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b42318;
    font-size: 7px;
    font-weight: 800;
}

.ml-solution-fast-food__header i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f04438;
    box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.11);
    animation: mlSolutionLivePulse 1.8s ease-in-out infinite;
}

.ml-solution-fast-food__queue {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ml-solution-fast-food__queue > div {
    min-height: 82px;
    padding: 12px;
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    gap: 11px;
    border: 1px solid #f0e8e8;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.03);
    font-family: Inter, Arial, sans-serif;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-fast-food__queue > div:nth-child(1) {
    transform: translateX(5px);
}

.ml-solution-panel.is-active:hover
.ml-solution-fast-food__queue > div:nth-child(2) {
    transform: translateX(-4px);
}

.ml-solution-panel.is-active:hover
.ml-solution-fast-food__queue > div:nth-child(3) {
    transform: translateX(3px);
}

.ml-solution-fast-food__queue > div.is-urgent {
    border-color: rgba(240, 68, 56, 0.24);
    background:
        linear-gradient(
            135deg,
            rgba(254, 243, 242, 0.96),
            rgba(255, 255, 255, 0.98)
        );
}

.ml-solution-fast-food__queue span {
    width: 55px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b42318;
    font-size: 10px;
    font-weight: 850;
    border-radius: 11px;
    background: #fef3f2;
}

.ml-solution-fast-food__queue strong {
    color: #344054;
    font-size: 10px;
    font-weight: 800;
}

.ml-solution-fast-food__queue small {
    padding: 6px 8px;
    color: #667085;
    font-size: 7px;
    font-weight: 750;
    border-radius: 999px;
    background: #f2f4f7;
}

.ml-solution-fast-food__queue > div.is-urgent small {
    color: #b42318;
    background: #fee4e2;
}

/* =========================================================
   HOTEL ROOM SERVICE
========================================================= */

.ml-solution-hotel {
    position: relative;
    overflow: hidden;
    width: min(100%, 430px);
    min-height: 390px;
    padding: 19px;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(14, 165, 233, 0.075),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            #f8fcff,
            #ffffff
        );
    box-shadow:
        0 36px 80px rgba(16, 24, 40, 0.14),
        0 12px 32px rgba(16, 24, 40, 0.07);
    transform: rotateY(3deg) rotateX(1deg);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-hotel {
    transform: rotateY(0) rotateX(0) translateY(-6px);
    box-shadow:
        0 48px 100px rgba(16, 24, 40, 0.18),
        0 16px 38px rgba(16, 24, 40, 0.09);
}

.ml-solution-hotel__room {
    min-height: 120px;
    padding: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(14, 165, 233, 0.13);
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(240, 249, 255, 0.95),
            rgba(255, 255, 255, 0.95)
        );
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-hotel__room span {
    color: #026aa2;
    font-size: 7px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.ml-solution-hotel__room strong {
    color: #1d2939;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.7px;
}

.ml-solution-hotel__room small {
    color: #667085;
    font-size: 8px;
}

.ml-solution-hotel__items {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ml-solution-hotel__items > div {
    min-height: 70px;
    padding: 11px 12px;
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #e7eef3;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 5px 15px rgba(16, 24, 40, 0.03);
    font-family: Inter, Arial, sans-serif;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-hotel__items > div:nth-child(1) {
    transform: translateX(5px);
}

.ml-solution-panel.is-active:hover
.ml-solution-hotel__items > div:nth-child(2) {
    transform: translateX(-4px);
}

.ml-solution-hotel__items span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #026aa2;
    font-size: 8px;
    font-weight: 850;
    border-radius: 10px;
    background: #f0f9ff;
}

.ml-solution-hotel__items strong {
    color: #344054;
    font-size: 9px;
    font-weight: 800;
}

.ml-solution-hotel__items b {
    color: #026aa2;
    font-size: 9px;
    font-weight: 850;
}

.ml-solution-hotel__total {
    min-height: 64px;
    margin-top: 14px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(14, 165, 233, 0.13);
    border-radius: 14px;
    background: rgba(240, 249, 255, 0.74);
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-hotel__total span {
    color: #667085;
    font-size: 8px;
    font-weight: 700;
}

.ml-solution-hotel__total strong {
    color: #026aa2;
    font-size: 15px;
    font-weight: 850;
}

/* =========================================================
   MULTI-LOCATION DASHBOARD
========================================================= */

.ml-solution-locations {
    position: relative;
    overflow: hidden;
    width: min(100%, 470px);
    min-height: 390px;
    padding: 18px;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 86% 14%,
            rgba(124, 58, 237, 0.08),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            #fbf9ff,
            #ffffff
        );
    box-shadow:
        0 36px 80px rgba(16, 24, 40, 0.14),
        0 12px 32px rgba(16, 24, 40, 0.07);
    transform: rotateY(-3deg) rotateX(1deg);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-locations {
    transform: rotateY(0) rotateX(0) translateY(-6px);
    box-shadow:
        0 48px 100px rgba(16, 24, 40, 0.18),
        0 16px 38px rgba(16, 24, 40, 0.09);
}

.ml-solution-locations__header {
    min-height: 68px;
    padding: 0 3px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ece8f4;
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-locations__header > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ml-solution-locations__header > div span {
    color: #98a2b3;
    font-size: 6px;
    font-weight: 850;
    letter-spacing: 0.09em;
}

.ml-solution-locations__header strong {
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.ml-solution-locations__header > span {
    padding: 6px 9px;
    color: #5925dc;
    font-size: 7px;
    font-weight: 850;
    border-radius: 999px;
    background: #f4f3ff;
}

.ml-solution-locations__list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ml-solution-locations__list > div {
    min-height: 78px;
    padding: 11px;
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #ece8f4;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(16, 24, 40, 0.03);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.ml-solution-panel.is-active:hover
.ml-solution-locations__list > div:nth-child(1) {
    transform: translateX(5px);
}

.ml-solution-panel.is-active:hover
.ml-solution-locations__list > div:nth-child(2) {
    transform: translateX(-4px);
}

.ml-solution-panel.is-active:hover
.ml-solution-locations__list > div:nth-child(3) {
    transform: translateX(3px);
}

.ml-solution-locations__icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5925dc;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 850;
    border-radius: 12px;
    background: #f4f3ff;
}

.ml-solution-locations__list > div > span:nth-child(2) {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-solution-locations__list strong {
    color: #344054;
    font-size: 9px;
    font-weight: 800;
}

.ml-solution-locations__list small {
    color: #98a2b3;
    font-size: 6px;
}

.ml-solution-locations__list b {
    color: #5925dc;
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 850;
}

/* =========================================================
   SUPPORT STRIP
========================================================= */

.ml-solutions__support {
    margin-top: 36px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(108, 61, 244, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(108, 61, 244, 0.07),
            rgba(255, 255, 255, 0.9)
        );
    box-shadow:
        0 20px 48px rgba(108, 61, 244, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ml-solutions__support-content {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.ml-solutions__support-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(108, 61, 244, 0.11);
}

.ml-solutions__support-icon svg {
    width: 23px;
    height: 23px;
}

.ml-solutions__support-content > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: Inter, Arial, sans-serif;
}

.ml-solutions__support-content strong {
    color: #344054;
    font-size: 14px;
    font-weight: 800;
}

.ml-solutions__support-content small {
    color: #667085;
    font-size: 10px;
    line-height: 1.5;
}

.ml-solutions__support > a {
    flex-shrink: 0;
    min-height: 46px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(108, 61, 244, 0.16);
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 9px 22px rgba(108, 61, 244, 0.08);
    transition:
        transform 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-solutions__support > a:hover {
    color: var(--ml-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(108, 61, 244, 0.14);
}

.ml-solutions__support > a span {
    transition: transform 0.3s ease;
}

.ml-solutions__support > a:hover span {
    transform: translateX(4px);
}

/* =========================================================
   FINAL RESPONSIVE FIXES
========================================================= */

@media (max-width: 1180px) {
    .ml-solution-fast-food,
    .ml-solution-hotel,
    .ml-solution-locations {
        width: min(100%, 420px);
    }
}

@media (max-width: 1020px) {
    .ml-solution-fast-food,
    .ml-solution-hotel,
    .ml-solution-locations {
        transform: none;
    }

    .ml-solution-panel.is-active:hover
    .ml-solution-fast-food,
    .ml-solution-panel.is-active:hover
    .ml-solution-hotel,
    .ml-solution-panel.is-active:hover
    .ml-solution-locations {
        transform: translateY(-5px);
    }
}

@media (max-width: 800px) {
    .ml-solution-fast-food,
    .ml-solution-hotel,
    .ml-solution-locations {
        width: min(100%, 520px);
    }

    .ml-solutions__support {
        align-items: stretch;
        flex-direction: column;
    }

    .ml-solutions__support > a {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .ml-solution-fast-food,
    .ml-solution-hotel,
    .ml-solution-locations {
        padding: 14px;
    }

    .ml-solutions__support {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .ml-solution-fast-food,
    .ml-solution-hotel,
    .ml-solution-locations {
        min-height: 350px;
        border-radius: 20px;
    }

    .ml-solution-fast-food__queue > div {
        grid-template-columns: 45px minmax(0, 1fr);
    }

    .ml-solution-fast-food__queue span {
        width: 45px;
    }

    .ml-solution-fast-food__queue small {
        grid-column: 2;
        width: fit-content;
    }

    .ml-solution-hotel__items > div {
        grid-template-columns: 31px minmax(0, 1fr) auto;
    }

    .ml-solution-hotel__items span {
        width: 31px;
        height: 31px;
    }

    .ml-solution-locations__list > div {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .ml-solution-locations__icon {
        width: 38px;
        height: 38px;
    }

    .ml-solution-locations__list b {
        grid-column: 2;
    }

    .ml-solutions__support-content {
        align-items: flex-start;
    }

    .ml-solutions__support-icon {
        width: 42px;
        height: 42px;
    }

    .ml-solutions__support-content strong {
        font-size: 12px;
    }

    .ml-solutions__support-content small {
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-solution-fast-food,
    .ml-solution-hotel,
    .ml-solution-locations,
    .ml-solution-fast-food__queue > div,
    .ml-solution-hotel__items > div,
    .ml-solution-locations__list > div,
    .ml-solutions__support > a {
        transition: none !important;
    }

    .ml-solution-fast-food__header i {
        animation: none !important;
    }

    .ml-solution-panel.is-active:hover
    .ml-solution-fast-food,
    .ml-solution-panel.is-active:hover
    .ml-solution-hotel,
    .ml-solution-panel.is-active:hover
    .ml-solution-locations,
    .ml-solution-panel.is-active:hover
    .ml-solution-fast-food__queue > div,
    .ml-solution-panel.is-active:hover
    .ml-solution-hotel__items > div,
    .ml-solution-panel.is-active:hover
    .ml-solution-locations__list > div,
    .ml-solutions__support > a:hover {
        transform: none;
    }
}



/* =========================================================
   SOLUTIONS SECTION — MISSING CORE STYLES
========================================================= */

.ml-solutions {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 135px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #faf9ff 46%,
        #ffffff 100%
    );
}

.ml-solutions__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ml-solutions__container {
    position: relative;
    width: min(calc(100% - 40px), var(--ml-container));
    margin: 0 auto;
}

.ml-solutions__header {
    max-width: 860px;
    margin: 0 auto 76px;
    text-align: center;
}

.ml-solutions__title {
    margin: 23px 0 20px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(43px, 5vw, 64px);
    font-weight: 820;
    line-height: 1.05;
    letter-spacing: -3.5px;
}

.ml-solutions__title span {
    display: block;
    color: transparent;
    background: linear-gradient(
        120deg,
        var(--ml-primary) 0%,
        #8057ef 48%,
        #4f46e5 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
}

.ml-solutions__description {
    max-width: 720px;
    margin: 0 auto;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
}

.ml-solutions__layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    align-items: stretch;
    gap: 24px;
}

.ml-solutions__tabs {
    padding: 11px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 25px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.96),
        rgba(250, 249, 255, 0.92)
    );
    box-shadow:
        0 24px 60px rgba(28, 20, 73, 0.08),
        0 8px 24px rgba(16, 24, 40, 0.035);
}

.ml-solutions__tab {
    position: relative;
    width: 100%;
    min-height: 82px;
    padding: 12px;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 11px;
    color: #475467;
    text-align: left;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 17px;
    background: transparent;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.ml-solutions__tab:hover {
    color: var(--ml-primary);
    border-color: rgba(108, 61, 244, 0.08);
    background: rgba(108, 61, 244, 0.045);
    transform: translateX(3px);
}

.ml-solutions__tab.is-active {
    color: var(--ml-primary);
    border-color: rgba(108, 61, 244, 0.14);
    background: linear-gradient(
        135deg,
        rgba(108, 61, 244, 0.1),
        rgba(108, 61, 244, 0.045)
    );
    box-shadow: 0 12px 27px rgba(108, 61, 244, 0.09);
}

.ml-solutions__tab-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    border: 1px solid rgba(16, 24, 40, 0.075);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
}

.ml-solutions__tab:hover .ml-solutions__tab-icon,
.ml-solutions__tab.is-active .ml-solutions__tab-icon {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(
        135deg,
        var(--ml-primary),
        var(--ml-primary-dark)
    );
}

.ml-solutions__tab-icon svg {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
}

.ml-solutions__tab-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: Inter, Arial, sans-serif;
}

.ml-solutions__tab-content strong {
    color: inherit;
    font-size: 13px;
    font-weight: 800;
}

.ml-solutions__tab-content small {
    overflow: hidden;
    color: #98a2b3;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-solutions__tab-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    font-size: 16px;
}

.ml-solutions__panels {
    position: relative;
    min-width: 0;
    min-height: 650px;
}

.ml-solution-panel {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding: 46px;
    display: none;
    grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
    align-items: center;
    gap: 50px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 29px;
    background:
        radial-gradient(
            circle at 86% 55%,
            rgba(108, 61, 244, 0.075),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 249, 255, 0.95)
        );
    box-shadow:
        0 34px 85px rgba(31, 23, 75, 0.11),
        0 12px 34px rgba(16, 24, 40, 0.045);
}

.ml-solution-panel.is-active {
    display: grid;
}

.ml-solution-panel[hidden] {
    display: none !important;
}

.ml-solution-panel__content {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.ml-solution-panel__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ml-solution-panel__content h3 {
    margin: 0;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(33px, 3.4vw, 47px);
    font-weight: 820;
    line-height: 1.09;
    letter-spacing: -2.2px;
}

.ml-solution-panel__content > p {
    margin: 20px 0 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.ml-solution-panel__features {
    margin-top: 27px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.ml-solution-panel__features > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #475467;
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 650;
}

.ml-solution-panel__features > div span {
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #039855;
    border-radius: 50%;
    background: rgba(18, 183, 106, 0.1);
}

.ml-solution-panel__content > a {
    min-height: 49px;
    margin-top: 31px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        var(--ml-primary),
        var(--ml-primary-dark)
    );
    box-shadow: 0 13px 30px rgba(108, 61, 244, 0.24);
}

.ml-solution-panel__visual {
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1020px) {
    .ml-solutions__layout {
        grid-template-columns: 1fr;
    }

    .ml-solutions__tabs {
        display: grid;
        grid-template-columns: repeat(5, minmax(145px, 1fr));
        overflow-x: auto;
    }

    .ml-solutions__tab {
        min-width: 145px;
        grid-template-columns: 39px minmax(0, 1fr);
    }

    .ml-solutions__tab-arrow {
        display: none;
    }
}

@media (max-width: 800px) {
    .ml-solution-panel {
        min-height: auto;
        padding: 34px;
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 680px) {
    .ml-solutions__container {
        width: min(calc(100% - 28px), var(--ml-container));
    }

    .ml-solution-panel__features {
        grid-template-columns: 1fr;
    }
}














/* =========================================================
   SECURITY SECTION — PART 1
   Section, header, dashboard and floating cards
========================================================= */

.ml-security {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 135px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf9ff 48%,
            #ffffff 100%
        );
}

/* =========================================================
   BACKGROUND
========================================================= */

.ml-security__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ml-security__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
}

.ml-security__glow--one {
    top: 180px;
    right: -350px;
    width: 730px;
    height: 730px;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.11) 0%,
            rgba(108, 61, 244, 0.035) 44%,
            transparent 72%
        );
}

.ml-security__glow--two {
    bottom: 150px;
    left: -330px;
    width: 680px;
    height: 680px;
    background:
        radial-gradient(
            circle,
            rgba(18, 183, 106, 0.08) 0%,
            rgba(18, 183, 106, 0.025) 44%,
            transparent 72%
        );
}

.ml-security__grid {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(
            rgba(108, 61, 244, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(108, 61, 244, 0.03) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 15%,
            #000 84%,
            transparent 100%
        );
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 15%,
            #000 84%,
            transparent 100%
        );
}

/* =========================================================
   CONTAINER
========================================================= */

.ml-security__container {
    position: relative;
    width: min(calc(100% - 40px), var(--ml-container));
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.ml-security__header {
    max-width: 820px;
    margin: 0 auto 76px;
    text-align: center;
}

.ml-security__title {
    margin: 23px 0 20px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(43px, 5vw, 64px);
    font-weight: 820;
    line-height: 1.05;
    letter-spacing: -3.5px;
}

.ml-security__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(
            120deg,
            var(--ml-primary) 0%,
            #8057ef 48%,
            #12b76a 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.ml-security__description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.ml-security__layout {
    display: grid;
    grid-template-columns: minmax(520px, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 70px;
}

/* =========================================================
   VISUAL WRAPPER
========================================================= */

.ml-security__visual {
    position: relative;
    min-width: 0;
    perspective: 1400px;
}

/* =========================================================
   SECURITY DASHBOARD
========================================================= */

.ml-security-dashboard {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 580px;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 27px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(249, 250, 252, 0.97)
        );
    box-shadow:
        0 40px 95px rgba(31, 23, 75, 0.15),
        0 14px 38px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transform: rotateY(-3deg) rotateX(1deg);
    transform-origin: center;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease;
}

.ml-security__visual:hover .ml-security-dashboard {
    transform: rotateY(0) rotateX(0) translateY(-6px);
    box-shadow:
        0 52px 115px rgba(31, 23, 75, 0.19),
        0 18px 45px rgba(16, 24, 40, 0.09);
}

/* Dashboard top */

.ml-security-dashboard__top {
    min-height: 70px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f4;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.99),
            rgba(252, 252, 253, 0.96)
        );
}

.ml-security-dashboard__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ml-security-dashboard__logo {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 850;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 10px 22px rgba(108, 61, 244, 0.23);
}

.ml-security-dashboard__brand > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-security-dashboard__brand strong {
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.ml-security-dashboard__brand small {
    color: #98a2b3;
    font-size: 7px;
}

.ml-security-dashboard__status {
    min-height: 31px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #027a48;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border-radius: 999px;
    background: #ecfdf3;
}

.ml-security-dashboard__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.11);
    animation: mlSecurityPulse 1.8s ease-in-out infinite;
}

/* Dashboard body */

.ml-security-dashboard__body {
    padding: 20px;
    background:
        linear-gradient(
            180deg,
            #f9fafb,
            #f7f8fb
        );
}

/* =========================================================
   SECURITY SCORE
========================================================= */

.ml-security-dashboard__score {
    padding: 18px;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    border: 1px solid #eaecf0;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(248, 250, 252, 0.96)
        );
    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.04);
}

.ml-security-dashboard__score-ring {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.ml-security-dashboard__score-ring svg {
    width: 100%;
    height: 100%;
}

.ml-security-dashboard__score-ring > div {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    font-family: Inter, Arial, sans-serif;
    text-align: center;
}

.ml-security-dashboard__score-ring strong {
    color: #1d2939;
    font-size: 29px;
    font-weight: 850;
    letter-spacing: -1px;
}

.ml-security-dashboard__score-ring span {
    color: #98a2b3;
    font-size: 7px;
    font-weight: 700;
}

.ml-security-dashboard__score-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: Inter, Arial, sans-serif;
}

.ml-security-dashboard__score-info > span {
    color: var(--ml-primary);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.ml-security-dashboard__score-info strong {
    color: #344054;
    font-size: 17px;
    font-weight: 820;
    line-height: 1.3;
    letter-spacing: -0.45px;
}

.ml-security-dashboard__score-info p {
    margin: 0;
    color: #98a2b3;
    font-size: 9px;
    line-height: 1.55;
}

/* =========================================================
   SECURITY CHECKS
========================================================= */

.ml-security-dashboard__checks {
    margin-top: 13px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ml-security-check {
    min-height: 83px;
    padding: 11px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(16, 24, 40, 0.03);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-security__visual:hover
.ml-security-check:nth-child(odd) {
    transform: translateX(4px);
}

.ml-security__visual:hover
.ml-security-check:nth-child(even) {
    transform: translateX(-3px);
}

.ml-security-check__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 11px;
    background: rgba(108, 61, 244, 0.09);
}

.ml-security-check__icon svg {
    width: 20px;
    height: 20px;
}

.ml-security-check > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-security-check strong {
    overflow: hidden;
    color: #344054;
    font-size: 8px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-security-check small {
    overflow: hidden;
    color: #98a2b3;
    font-size: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-security-check__badge {
    flex-shrink: 0;
    padding: 5px 7px;
    color: #027a48;
    font-family: Inter, Arial, sans-serif;
    font-size: 5px;
    font-weight: 850;
    border-radius: 999px;
    background: #ecfdf3;
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.ml-security-float {
    position: absolute;
    z-index: 8;
    min-width: 220px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 20px 48px rgba(16, 24, 40, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.ml-security-float--access {
    top: 80px;
    right: -36px;
    animation: mlSecurityFloat 5.4s ease-in-out infinite;
}

.ml-security-float--shield {
    left: -38px;
    bottom: 42px;
    animation: mlSecurityFloatReverse 5.8s ease-in-out infinite;
}

.ml-security-float__icon {
    flex-shrink: 0;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 11px;
    background: rgba(108, 61, 244, 0.09);
}

.ml-security-float__icon svg {
    width: 20px;
    height: 20px;
}

.ml-security-float > span:nth-child(2) {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-security-float small {
    color: #98a2b3;
    font-size: 7px;
}

.ml-security-float strong {
    color: #344054;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.ml-security-float > i {
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.11);
    animation: mlSecurityPulse 1.8s ease-in-out infinite;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes mlSecurityPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

@keyframes mlSecurityFloat {
    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(-9px) rotate(-1deg);
    }
}

@keyframes mlSecurityFloatReverse {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(9px) rotate(1deg);
    }
}

/* =========================================================
   PART 1 RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .ml-security__layout {
        grid-template-columns: minmax(490px, 1.05fr) minmax(0, 0.95fr);
        gap: 50px;
    }

    .ml-security-float--access {
        right: -15px;
    }

    .ml-security-float--shield {
        left: -15px;
    }
}

@media (max-width: 1020px) {
    .ml-security {
        padding: 110px 0;
    }

    .ml-security__header {
        margin-bottom: 62px;
    }

    .ml-security__layout {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .ml-security__visual {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .ml-security-dashboard {
        transform: none;
    }

    .ml-security__visual:hover .ml-security-dashboard {
        transform: translateY(-5px);
    }
}

@media (max-width: 720px) {
    .ml-security {
        padding: 90px 0;
    }

    .ml-security__container {
        width: min(calc(100% - 28px), var(--ml-container));
    }

    .ml-security__title {
        font-size: 40px;
        letter-spacing: -2.35px;
    }

    .ml-security__description {
        font-size: 15px;
        line-height: 1.7;
    }

    .ml-security-dashboard {
        min-height: auto;
        border-radius: 22px;
    }

    .ml-security-dashboard__body {
        padding: 14px;
    }

    .ml-security-dashboard__score {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ml-security-dashboard__score-info {
        align-items: center;
    }

    .ml-security-dashboard__checks {
        grid-template-columns: 1fr;
    }

    .ml-security-float {
        min-width: 190px;
        padding: 10px;
    }

    .ml-security-float--access {
        top: 60px;
        right: 0;
    }

    .ml-security-float--shield {
        left: 0;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .ml-security {
        padding: 80px 0;
    }

    .ml-security__title {
        font-size: 35px;
        letter-spacing: -2px;
    }

    .ml-security-dashboard__top {
        min-height: 62px;
        padding: 0 13px;
    }

    .ml-security-dashboard__status {
        padding: 0 8px;
        font-size: 6px;
    }

    .ml-security-dashboard__score-ring {
        width: 135px;
        height: 135px;
    }

    .ml-security-dashboard__score-ring strong {
        font-size: 24px;
    }

    .ml-security-check {
        grid-template-columns: 35px minmax(0, 1fr);
    }

    .ml-security-check__icon {
        width: 35px;
        height: 35px;
    }

    .ml-security-check__badge {
        grid-column: 2;
        width: fit-content;
    }

    .ml-security-float {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-security-dashboard,
    .ml-security-check {
        transition: none !important;
    }

    .ml-security-dashboard__status i,
    .ml-security-float,
    .ml-security-float > i {
        animation: none !important;
    }

    .ml-security__visual:hover .ml-security-dashboard,
    .ml-security__visual:hover .ml-security-check {
        transform: none;
    }
}

/* =========================================================
   SECURITY SECTION — PART 2
   Security cards, trust strip and final CTA
========================================================= */

/* =========================================================
   RIGHT CONTENT
========================================================= */

.ml-security__content {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

/* =========================================================
   SECURITY CARD
========================================================= */

.ml-security-card {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    padding: 22px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: flex-start;
    gap: 17px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(250, 249, 255, 0.93)
        );
    box-shadow:
        0 18px 45px rgba(16, 24, 40, 0.055),
        0 6px 17px rgba(16, 24, 40, 0.025),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.ml-security-card::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -130px;
    width: 260px;
    height: 260px;
    opacity: 0;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.12),
            rgba(108, 61, 244, 0.03) 46%,
            transparent 72%
        );
    transform: scale(0.82);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.ml-security-card:hover {
    border-color: rgba(108, 61, 244, 0.16);
    box-shadow:
        0 28px 62px rgba(31, 23, 75, 0.1),
        0 9px 24px rgba(16, 24, 40, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transform: translateY(-5px);
}

.ml-security-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.ml-security-card:nth-child(2) {
    background:
        radial-gradient(
            circle at 88% 30%,
            rgba(59, 130, 246, 0.055),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(248, 251, 255, 0.94)
        );
}

.ml-security-card:nth-child(3) {
    background:
        radial-gradient(
            circle at 88% 30%,
            rgba(18, 183, 106, 0.055),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(248, 253, 251, 0.94)
        );
}

.ml-security-card:nth-child(4) {
    background:
        radial-gradient(
            circle at 88% 30%,
            rgba(245, 158, 11, 0.055),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(255, 252, 247, 0.94)
        );
}

/* Security card icon */

.ml-security-card__icon {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border: 1px solid rgba(108, 61, 244, 0.11);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(108, 61, 244, 0.12),
            rgba(108, 61, 244, 0.055)
        );
    box-shadow:
        0 10px 24px rgba(108, 61, 244, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.76);
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ml-security-card:hover .ml-security-card__icon {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow:
        0 15px 31px rgba(108, 61, 244, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) rotate(-3deg);
}

.ml-security-card__icon svg {
    width: 27px;
    height: 27px;
}

.ml-security-card__icon::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -90%;
    width: 45%;
    height: 230%;
    opacity: 0;
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(28deg);
}

.ml-security-card:hover .ml-security-card__icon::after {
    opacity: 1;
    animation: mlSecurityIconShine 0.8s ease forwards;
}

/* Security card text */

.ml-security-card > div {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.ml-security-card__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.ml-security-card h3 {
    margin: 0;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.85px;
}

.ml-security-card p {
    margin: 11px 0 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.ml-security__trust {
    margin-top: 60px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.91),
            rgba(250, 249, 255, 0.86)
        );
    box-shadow:
        0 20px 48px rgba(16, 24, 40, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ml-security__trust-item {
    min-height: 68px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 1px solid rgba(16, 24, 40, 0.07);
}

.ml-security__trust-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.ml-security__trust-item:last-child {
    padding-right: 0;
}

.ml-security__trust-item > span {
    flex-shrink: 0;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border: 1px solid rgba(108, 61, 244, 0.1);
    border-radius: 13px;
    background: rgba(108, 61, 244, 0.075);
}

.ml-security__trust-item > span svg {
    width: 22px;
    height: 22px;
}

.ml-security__trust-item > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-security__trust-item strong {
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.ml-security__trust-item small {
    color: #98a2b3;
    font-size: 8px;
    line-height: 1.5;
}

/* =========================================================
   BOTTOM NOTE / CTA
========================================================= */

.ml-security__note {
    margin-top: 24px;
    padding: 24px 27px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 17px;
    border: 1px solid rgba(108, 61, 244, 0.13);
    border-radius: 23px;
    background:
        linear-gradient(
            135deg,
            rgba(108, 61, 244, 0.07),
            rgba(18, 183, 106, 0.035),
            rgba(255, 255, 255, 0.91)
        );
    box-shadow:
        0 20px 50px rgba(108, 61, 244, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.ml-security__note-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 9px 24px rgba(108, 61, 244, 0.12);
}

.ml-security__note-icon svg {
    width: 24px;
    height: 24px;
}

.ml-security__note > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: Inter, Arial, sans-serif;
}

.ml-security__note strong {
    color: #344054;
    font-size: 15px;
    font-weight: 800;
}

.ml-security__note > div > span {
    color: #667085;
    font-size: 12px;
    line-height: 1.55;
}

.ml-security__note > a {
    min-height: 48px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(108, 61, 244, 0.16);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(108, 61, 244, 0.09);
    transition:
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-security__note > a:hover {
    color: var(--ml-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(108, 61, 244, 0.14);
}

.ml-security__note > a span {
    transition: transform 0.3s ease;
}

.ml-security__note > a:hover span {
    transform: translateX(4px);
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes mlSecurityIconShine {
    from {
        left: -90%;
    }

    to {
        left: 150%;
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .ml-security-card {
        padding: 20px;
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .ml-security-card__icon {
        width: 50px;
        height: 50px;
    }

    .ml-security__trust-item {
        padding: 0 18px;
    }
}

@media (max-width: 1020px) {
    .ml-security__content {
        width: min(100%, 760px);
        margin: 0 auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ml-security-card {
        min-height: 178px;
    }

    .ml-security__trust {
        margin-top: 48px;
    }
}

@media (max-width: 760px) {
    .ml-security__content {
        grid-template-columns: 1fr;
    }

    .ml-security-card {
        min-height: auto;
    }

    .ml-security__trust {
        grid-template-columns: 1fr;
        padding: 16px 18px;
    }

    .ml-security__trust-item,
    .ml-security__trust-item:first-child,
    .ml-security__trust-item:last-child {
        padding: 16px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-security__trust-item:last-child {
        border-bottom: 0;
    }

    .ml-security__note {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .ml-security__note > a {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ml-security-card {
        padding: 18px;
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 13px;
        border-radius: 18px;
    }

    .ml-security-card__icon {
        width: 45px;
        height: 45px;
    }

    .ml-security-card__icon svg {
        width: 23px;
        height: 23px;
    }

    .ml-security-card h3 {
        font-size: 18px;
    }

    .ml-security-card p {
        font-size: 11px;
    }

    .ml-security__trust {
        margin-top: 38px;
        border-radius: 18px;
    }

    .ml-security__trust-item > span {
        width: 39px;
        height: 39px;
    }

    .ml-security__note {
        padding: 20px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ml-security__note-icon {
        margin: 0 auto;
    }

    .ml-security__note > div {
        align-items: center;
    }

    .ml-security__note strong {
        font-size: 14px;
    }

    .ml-security__note > div > span {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-security-card,
    .ml-security-card::before,
    .ml-security-card__icon,
    .ml-security__note > a {
        transition: none !important;
    }

    .ml-security-card:hover,
    .ml-security-card:hover .ml-security-card__icon,
    .ml-security__note > a:hover {
        transform: none;
    }

    .ml-security-card:hover .ml-security-card__icon::after {
        animation: none !important;
    }
}
















/* =========================================================
   FAQ SECTION — PART 1
   Section, header, support card and accordion foundation
========================================================= */

.ml-faq {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 135px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf9ff 48%,
            #ffffff 100%
        );
}

/* =========================================================
   BACKGROUND
========================================================= */

.ml-faq__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ml-faq__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
}

.ml-faq__glow--one {
    top: 160px;
    right: -350px;
    width: 740px;
    height: 740px;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.11) 0%,
            rgba(108, 61, 244, 0.035) 45%,
            transparent 72%
        );
}

.ml-faq__glow--two {
    bottom: 120px;
    left: -330px;
    width: 680px;
    height: 680px;
    background:
        radial-gradient(
            circle,
            rgba(56, 189, 248, 0.075) 0%,
            rgba(56, 189, 248, 0.025) 44%,
            transparent 72%
        );
}

.ml-faq__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(
            rgba(108, 61, 244, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(108, 61, 244, 0.03) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 14%,
            #000 84%,
            transparent 100%
        );
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 14%,
            #000 84%,
            transparent 100%
        );
}

/* =========================================================
   CONTAINER
========================================================= */

.ml-faq__container {
    position: relative;
    width: min(calc(100% - 40px), var(--ml-container));
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.ml-faq__header {
    max-width: 850px;
    margin: 0 auto 76px;
    text-align: center;
}

.ml-faq__title {
    margin: 23px 0 20px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(43px, 5vw, 64px);
    font-weight: 820;
    line-height: 1.05;
    letter-spacing: -3.5px;
}

.ml-faq__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(
            120deg,
            var(--ml-primary) 0%,
            #8057ef 48%,
            #4f46e5 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.ml-faq__description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.ml-faq__layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    align-items: start;
    gap: 30px;
}

/* =========================================================
   SUPPORT CARD
========================================================= */

.ml-faq__support {
    position: sticky;
    top: calc(var(--ml-header-height) + 30px);
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(108, 61, 244, 0.11),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 249, 255, 0.95)
        );
    box-shadow:
        0 28px 70px rgba(31, 23, 75, 0.1),
        0 10px 28px rgba(16, 24, 40, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.ml-faq__support::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -130px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.13),
            rgba(108, 61, 244, 0.03) 48%,
            transparent 72%
        );
}

.ml-faq__support > * {
    position: relative;
    z-index: 2;
}

.ml-faq__support-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border: 1px solid rgba(108, 61, 244, 0.12);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(108, 61, 244, 0.12),
            rgba(108, 61, 244, 0.055)
        );
    box-shadow:
        0 14px 30px rgba(108, 61, 244, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ml-faq__support-icon svg {
    width: 28px;
    height: 28px;
}

.ml-faq__support-eyebrow {
    display: block;
    margin-top: 24px;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ml-faq__support h3 {
    margin: 10px 0 0;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: 28px;
    font-weight: 820;
    line-height: 1.16;
    letter-spacing: -1.25px;
}

.ml-faq__support > p {
    margin: 16px 0 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.7;
}

.ml-faq__support-features {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ml-faq__support-features > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #475467;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 650;
}

.ml-faq__support-features > div span {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #039855;
    font-size: 10px;
    font-weight: 900;
    border-radius: 50%;
    background: rgba(18, 183, 106, 0.1);
}

/* Support button */

.ml-faq__support-button {
    min-height: 50px;
    margin-top: 26px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow:
        0 13px 30px rgba(108, 61, 244, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-faq__support-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 38px rgba(108, 61, 244, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ml-faq__support-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.ml-faq__support-button:hover svg {
    transform: translateX(4px);
}

.ml-faq__support-note {
    margin-top: 22px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    border-top: 1px solid rgba(16, 24, 40, 0.07);
}

.ml-faq__support-note-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 5px rgba(18, 183, 106, 0.11);
    animation: mlFaqPulse 1.8s ease-in-out infinite;
}

/* =========================================================
   ACCORDION WRAPPER
========================================================= */

.ml-faq__accordion {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

/* =========================================================
   FAQ ITEM
========================================================= */

.ml-faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(250, 249, 255, 0.93)
        );
    box-shadow:
        0 16px 40px rgba(16, 24, 40, 0.045),
        0 5px 15px rgba(16, 24, 40, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.ml-faq-item:hover {
    border-color: rgba(108, 61, 244, 0.14);
    box-shadow:
        0 23px 52px rgba(31, 23, 75, 0.075),
        0 7px 20px rgba(16, 24, 40, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
    transform: translateY(-2px);
}

.ml-faq-item.is-open {
    border-color: rgba(108, 61, 244, 0.18);
    box-shadow:
        0 24px 58px rgba(108, 61, 244, 0.085),
        0 8px 22px rgba(16, 24, 40, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

/* =========================================================
   FAQ BUTTON
========================================================= */

.ml-faq-item__button {
    width: 100%;
    min-height: 88px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 15px;
    color: #344054;
    text-align: left;
    cursor: pointer;
    border: 0;
    background: transparent;
}

.ml-faq-item__number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 850;
    border-radius: 13px;
    background: rgba(108, 61, 244, 0.085);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.ml-faq-item.is-open .ml-faq-item__number {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 10px 22px rgba(108, 61, 244, 0.19);
    transform: rotate(-3deg);
}

.ml-faq-item__question {
    color: #344054;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 780;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.ml-faq-item__toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.ml-faq-item.is-open .ml-faq-item__toggle {
    color: #ffffff;
    border-color: transparent;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 10px 22px rgba(108, 61, 244, 0.18);
    transform: rotate(180deg);
}

.ml-faq-item__toggle svg {
    width: 20px;
    height: 20px;
}

.ml-faq-item__toggle-vertical {
    transform-origin: center;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.ml-faq-item.is-open
.ml-faq-item__toggle-vertical {
    opacity: 0;
    transform: scaleY(0);
}

/* =========================================================
   FAQ ANSWER
========================================================= */

.ml-faq-item__answer {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition:
        height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.3s ease;
}

.ml-faq-item.is-open
.ml-faq-item__answer {
    opacity: 1;
}

.ml-faq-item__answer[hidden] {
    display: block;
}

.ml-faq-item__answer-inner {
    padding: 0 20px 22px 77px;
}

.ml-faq-item__answer-inner p {
    max-width: 720px;
    margin: 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes mlFaqPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

/* =========================================================
   PART 1 RESPONSIVE
========================================================= */

@media (max-width: 1020px) {
    .ml-faq {
        padding: 110px 0;
    }

    .ml-faq__header {
        margin-bottom: 62px;
    }

    .ml-faq__layout {
        grid-template-columns: 1fr;
    }

    .ml-faq__support {
        position: relative;
        top: auto;
        width: min(100%, 760px);
        margin: 0 auto;
    }
}

@media (max-width: 720px) {
    .ml-faq {
        padding: 90px 0;
    }

    .ml-faq__container {
        width: min(calc(100% - 28px), var(--ml-container));
    }

    .ml-faq__title {
        font-size: 40px;
        letter-spacing: -2.35px;
    }

    .ml-faq__description {
        font-size: 15px;
        line-height: 1.7;
    }

    .ml-faq__support {
        padding: 24px;
        border-radius: 22px;
    }

    .ml-faq-item__button {
        min-height: 82px;
        padding: 16px;
        grid-template-columns: 38px minmax(0, 1fr) 36px;
        gap: 12px;
    }

    .ml-faq-item__number {
        width: 38px;
        height: 38px;
    }

    .ml-faq-item__question {
        font-size: 15px;
    }

    .ml-faq-item__toggle {
        width: 36px;
        height: 36px;
    }

    .ml-faq-item__answer-inner {
        padding: 0 16px 20px 66px;
    }
}

@media (max-width: 480px) {
    .ml-faq {
        padding: 80px 0;
    }

    .ml-faq__title {
        font-size: 35px;
        letter-spacing: -2px;
    }

    .ml-faq__support h3 {
        font-size: 25px;
    }

    .ml-faq__support-button {
        width: 100%;
    }

    .ml-faq-item {
        border-radius: 17px;
    }

    .ml-faq-item__button {
        min-height: 76px;
        padding: 14px;
        grid-template-columns: 34px minmax(0, 1fr) 33px;
        gap: 10px;
    }

    .ml-faq-item__number {
        width: 34px;
        height: 34px;
        font-size: 9px;
    }

    .ml-faq-item__question {
        font-size: 14px;
    }

    .ml-faq-item__toggle {
        width: 33px;
        height: 33px;
    }

    .ml-faq-item__answer-inner {
        padding: 0 14px 18px;
    }

    .ml-faq-item__answer-inner p {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-faq-item,
    .ml-faq-item__number,
    .ml-faq-item__toggle,
    .ml-faq-item__toggle-vertical,
    .ml-faq-item__answer,
    .ml-faq__support-button {
        transition: none !important;
    }

    .ml-faq__support-note-dot {
        animation: none !important;
    }

    .ml-faq-item:hover,
    .ml-faq-item.is-open .ml-faq-item__number,
    .ml-faq-item.is-open .ml-faq-item__toggle,
    .ml-faq__support-button:hover {
        transform: none;
    }
}



/* =========================================================
   FAQ SECTION — PART 2
   Bottom CTA, focus states and final polish
========================================================= */

/* =========================================================
   BOTTOM CTA
========================================================= */

.ml-faq__bottom {
    margin-top: 34px;
    padding: 24px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(108, 61, 244, 0.13);
    border-radius: 23px;
    background:
        linear-gradient(
            135deg,
            rgba(108, 61, 244, 0.07),
            rgba(79, 70, 229, 0.035),
            rgba(255, 255, 255, 0.92)
        );
    box-shadow:
        0 20px 50px rgba(108, 61, 244, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ml-faq__bottom-content {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ml-faq__bottom-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 9px 24px rgba(108, 61, 244, 0.12);
}

.ml-faq__bottom-icon svg {
    width: 24px;
    height: 24px;
}

.ml-faq__bottom-content > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: Inter, Arial, sans-serif;
}

.ml-faq__bottom-content strong {
    color: #344054;
    font-size: 15px;
    font-weight: 800;
}

.ml-faq__bottom-content span {
    color: #667085;
    font-size: 12px;
    line-height: 1.55;
}

.ml-faq__bottom > a {
    flex-shrink: 0;
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow:
        0 12px 28px rgba(108, 61, 244, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-faq__bottom > a:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 36px rgba(108, 61, 244, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ml-faq__bottom > a svg {
    width: 17px;
    height: 17px;
    transition: transform 0.3s ease;
}

.ml-faq__bottom > a:hover svg {
    transform: translateX(4px);
}

/* =========================================================
   ACCORDION FINAL POLISH
========================================================= */

.ml-faq-item__button:hover .ml-faq-item__question {
    color: var(--ml-primary);
}

.ml-faq-item.is-open .ml-faq-item__question {
    color: var(--ml-dark);
}

.ml-faq-item__button,
.ml-faq-item__question {
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.ml-faq-item.is-open .ml-faq-item__button {
    background:
        linear-gradient(
            135deg,
            rgba(108, 61, 244, 0.035),
            rgba(255, 255, 255, 0)
        );
}

.ml-faq-item__answer-inner {
    position: relative;
}

.ml-faq-item__answer-inner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 22px;
    left: 41px;
    width: 2px;
    border-radius: 999px;
    background:
        linear-gradient(
            180deg,
            rgba(108, 61, 244, 0.25),
            rgba(108, 61, 244, 0.03)
        );
}

.ml-faq-item__answer-inner p {
    position: relative;
    z-index: 1;
}

/* =========================================================
   FOCUS / ACCESSIBILITY
========================================================= */

.ml-faq button:focus-visible,
.ml-faq a:focus-visible {
    outline: 3px solid rgba(108, 61, 244, 0.24);
    outline-offset: 3px;
}

.ml-faq-item__button:focus-visible {
    border-radius: 18px;
}

/* =========================================================
   FINAL RESPONSIVE
========================================================= */

@media (max-width: 1020px) {
    .ml-faq__bottom {
        margin-top: 30px;
    }
}

@media (max-width: 720px) {
    .ml-faq__bottom {
        padding: 22px;
        align-items: stretch;
        flex-direction: column;
    }

    .ml-faq__bottom > a {
        width: 100%;
    }

    .ml-faq-item__answer-inner::before {
        left: 31px;
    }
}

@media (max-width: 480px) {
    .ml-faq__bottom {
        padding: 20px;
        border-radius: 19px;
    }

    .ml-faq__bottom-content {
        align-items: flex-start;
    }

    .ml-faq__bottom-icon {
        width: 42px;
        height: 42px;
    }

    .ml-faq__bottom-content strong {
        font-size: 13px;
    }

    .ml-faq__bottom-content span {
        font-size: 10px;
    }

    .ml-faq-item__answer-inner::before {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-faq__bottom > a,
    .ml-faq__bottom > a svg,
    .ml-faq-item__question {
        transition: none !important;
    }

    .ml-faq__bottom > a:hover,
    .ml-faq__bottom > a:hover svg {
        transform: none;
    }
}














/* =========================================================
   CONTACT SECTION — PART 1
   Section, content, benefits, methods and form foundation
========================================================= */

.ml-contact {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 135px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf9ff 48%,
            #ffffff 100%
        );
}

/* =========================================================
   BACKGROUND
========================================================= */

.ml-contact__background {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ml-contact__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
}

.ml-contact__glow--one {
    top: 110px;
    right: -360px;
    width: 760px;
    height: 760px;
    background:
        radial-gradient(
            circle,
            rgba(108, 61, 244, 0.12) 0%,
            rgba(108, 61, 244, 0.038) 45%,
            transparent 72%
        );
}

.ml-contact__glow--two {
    bottom: 90px;
    left: -340px;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(
            circle,
            rgba(56, 189, 248, 0.08) 0%,
            rgba(56, 189, 248, 0.025) 44%,
            transparent 72%
        );
}

.ml-contact__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.31;
    background-image:
        linear-gradient(
            rgba(108, 61, 244, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(108, 61, 244, 0.03) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 13%,
            #000 86%,
            transparent 100%
        );
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 13%,
            #000 86%,
            transparent 100%
        );
}

/* =========================================================
   CONTAINER
========================================================= */

.ml-contact__container {
    position: relative;
    width: min(calc(100% - 40px), var(--ml-container));
    margin: 0 auto;
}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.ml-contact__layout {
    padding: 58px;
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(560px, 1.12fr);
    align-items: center;
    gap: 72px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(108, 61, 244, 0.09),
            transparent 33%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 249, 255, 0.95)
        );
    box-shadow:
        0 38px 95px rgba(31, 23, 75, 0.11),
        0 14px 38px rgba(16, 24, 40, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.ml-contact__content {
    position: relative;
    z-index: 3;
    max-width: 520px;
}

.ml-contact__badge {
    margin: 0;
}

.ml-contact__title {
    margin: 25px 0 20px;
    color: var(--ml-dark);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(44px, 4.8vw, 63px);
    font-weight: 820;
    line-height: 1.04;
    letter-spacing: -3.4px;
}

.ml-contact__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(
            120deg,
            var(--ml-primary) 0%,
            #8057ef 48%,
            #4f46e5 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.ml-contact__description {
    margin: 0;
    color: var(--ml-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

/* =========================================================
   BENEFITS
========================================================= */

.ml-contact__benefits {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ml-contact-benefit {
    min-height: 74px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(16, 24, 40, 0.075);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow:
        0 9px 24px rgba(16, 24, 40, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-contact-benefit:hover {
    border-color: rgba(108, 61, 244, 0.14);
    box-shadow:
        0 15px 32px rgba(31, 23, 75, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
    transform: translateX(5px);
}

.ml-contact-benefit__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 13px;
    background: rgba(108, 61, 244, 0.085);
}

.ml-contact-benefit__icon svg {
    width: 22px;
    height: 22px;
}

.ml-contact-benefit > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-contact-benefit strong {
    color: #344054;
    font-size: 12px;
    font-weight: 800;
}

.ml-contact-benefit small {
    color: #98a2b3;
    font-size: 9px;
    line-height: 1.45;
}

/* =========================================================
   CONTACT METHODS
========================================================= */

.ml-contact__methods {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
}

.ml-contact-method {
    min-height: 72px;
    padding: 11px 13px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.93),
            rgba(251, 251, 253, 0.9)
        );
    box-shadow:
        0 10px 25px rgba(16, 24, 40, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-contact-method:hover {
    border-color: rgba(108, 61, 244, 0.17);
    box-shadow:
        0 16px 34px rgba(31, 23, 75, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transform: translateY(-3px);
}

.ml-contact-method__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 13px;
    background: rgba(108, 61, 244, 0.085);
}

.ml-contact-method__icon svg {
    width: 22px;
    height: 22px;
}

.ml-contact-method > span:nth-child(2) {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-contact-method small {
    color: #98a2b3;
    font-size: 8px;
}

.ml-contact-method strong {
    overflow: hidden;
    color: #344054;
    font-size: 11px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ml-contact-method__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.ml-contact-method:hover .ml-contact-method__arrow {
    color: var(--ml-primary);
    transform: translateX(4px);
}

/* =========================================================
   FORM WRAPPER
========================================================= */

.ml-contact__form-wrapper {
    position: relative;
    min-width: 0;
    perspective: 1400px;
}

/* =========================================================
   FORM CARD
========================================================= */

.ml-contact-form {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(16, 24, 40, 0.09);
    border-radius: 27px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(249, 250, 252, 0.97)
        );
    box-shadow:
        0 40px 95px rgba(31, 23, 75, 0.16),
        0 14px 38px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transform: rotateY(2deg) rotateX(1deg);
    transform-origin: center;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease;
}

.ml-contact__form-wrapper:hover .ml-contact-form {
    transform: rotateY(0) rotateX(0) translateY(-6px);
    box-shadow:
        0 52px 115px rgba(31, 23, 75, 0.2),
        0 18px 45px rgba(16, 24, 40, 0.09);
}

/* =========================================================
   FORM HEADER
========================================================= */

.ml-contact-form__header {
    min-height: 112px;
    padding: 24px 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #edf0f4;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.99),
            rgba(252, 252, 253, 0.96)
        );
}

.ml-contact-form__header > div {
    min-width: 0;
    font-family: Inter, Arial, sans-serif;
}

.ml-contact-form__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--ml-primary);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.ml-contact-form__header h3 {
    margin: 0;
    color: #1d2939;
    font-size: 24px;
    font-weight: 820;
    line-height: 1.2;
    letter-spacing: -1px;
}

.ml-contact-form__header p {
    margin: 8px 0 0;
    color: #98a2b3;
    font-size: 10px;
    line-height: 1.55;
}

.ml-contact-form__status {
    flex-shrink: 0;
    min-height: 31px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #027a48;
    font-family: Inter, Arial, sans-serif;
    font-size: 7px;
    font-weight: 800;
    border-radius: 999px;
    background: #ecfdf3;
}

.ml-contact-form__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.11);
    animation: mlContactPulse 1.8s ease-in-out infinite;
}

/* =========================================================
   FORM BODY FOUNDATION
========================================================= */

.ml-contact-form__body {
    padding: 25px;
    background:
        linear-gradient(
            180deg,
            #f9fafb,
            #f7f8fb
        );
}

.ml-contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.ml-contact-form__row + .ml-contact-form__row {
    margin-top: 14px;
}

.ml-contact-form__group {
    min-width: 0;
}

.ml-contact-form__group + .ml-contact-form__group {
    margin-top: 0;
}

.ml-contact-form__body > .ml-contact-form__group {
    margin-top: 14px;
}

.ml-contact-form__group label {
    display: block;
    margin-bottom: 7px;
    color: #475467;
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 750;
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes mlContactPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

/* =========================================================
   PART 1 RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .ml-contact__layout {
        padding: 48px;
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(510px, 1.1fr);
        gap: 50px;
    }
}

@media (max-width: 1020px) {
    .ml-contact {
        padding: 110px 0;
    }

    .ml-contact__layout {
        padding: 42px;
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .ml-contact__content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .ml-contact__badge {
        margin: 0 auto;
    }

    .ml-contact__description {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
    }

    .ml-contact__benefits,
    .ml-contact__methods {
        width: min(100%, 680px);
        margin-right: auto;
        margin-left: auto;
    }

    .ml-contact-benefit,
    .ml-contact-method {
        text-align: left;
    }

    .ml-contact__form-wrapper {
        width: min(100%, 780px);
        margin: 0 auto;
    }

    .ml-contact-form {
        transform: none;
    }

    .ml-contact__form-wrapper:hover .ml-contact-form {
        transform: translateY(-5px);
    }
}

@media (max-width: 720px) {
    .ml-contact {
        padding: 90px 0;
    }

    .ml-contact__container {
        width: min(calc(100% - 28px), var(--ml-container));
    }

    .ml-contact__layout {
        padding: 28px;
        border-radius: 27px;
    }

    .ml-contact__title {
        font-size: 40px;
        letter-spacing: -2.35px;
    }

    .ml-contact__description {
        font-size: 15px;
    }

    .ml-contact-form__row {
        grid-template-columns: 1fr;
    }

    .ml-contact-form__row
    .ml-contact-form__group
    + .ml-contact-form__group {
        margin-top: 14px;
    }

    .ml-contact-form__header {
        padding: 22px;
    }

    .ml-contact-form__body {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .ml-contact {
        padding: 80px 0;
    }

    .ml-contact__layout {
        padding: 20px;
        border-radius: 22px;
    }

    .ml-contact__title {
        font-size: 35px;
        letter-spacing: -2px;
    }

    .ml-contact-benefit,
    .ml-contact-method {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .ml-contact-benefit__icon,
    .ml-contact-method__icon {
        width: 38px;
        height: 38px;
    }

    .ml-contact-method__arrow {
        display: none;
    }

    .ml-contact-form {
        border-radius: 21px;
    }

    .ml-contact-form__header {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
    }

    .ml-contact-form__header h3 {
        font-size: 21px;
    }

    .ml-contact-form__body {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-contact-benefit,
    .ml-contact-method,
    .ml-contact-form {
        transition: none !important;
    }

    .ml-contact-form__status i {
        animation: none !important;
    }

    .ml-contact-benefit:hover,
    .ml-contact-method:hover,
    .ml-contact__form-wrapper:hover .ml-contact-form {
        transform: none;
    }
}

/* =========================================================
   CONTACT SECTION — PART 2
   Fields, checkbox, submit, footer, floating card and trust
========================================================= */

/* =========================================================
   FORM FIELDS
========================================================= */

.ml-contact-form__field {
    position: relative;
    min-height: 52px;
    display: flex;
    align-items: center;
    border: 1px solid #dfe3ea;
    border-radius: 14px;
    background: #ffffff;
    box-shadow:
        0 5px 14px rgba(16, 24, 40, 0.025),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.ml-contact-form__field:focus-within {
    border-color: rgba(108, 61, 244, 0.45);
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(108, 61, 244, 0.09),
        0 10px 24px rgba(108, 61, 244, 0.07);
}

.ml-contact-form__field-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 2;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color 0.25s ease;
}

.ml-contact-form__field:focus-within
.ml-contact-form__field-icon {
    color: var(--ml-primary);
}

.ml-contact-form__field-icon svg {
    width: 19px;
    height: 19px;
}

.ml-contact-form__field input,
.ml-contact-form__field select,
.ml-contact-form__field textarea {
    width: 100%;
    color: #344054;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    border: 0;
    outline: 0;
    background: transparent;
}

.ml-contact-form__field input,
.ml-contact-form__field select {
    min-height: 52px;
    padding: 0 42px 0 47px;
}

.ml-contact-form__field textarea {
    min-height: 125px;
    padding: 16px 16px 16px 47px;
    line-height: 1.65;
    resize: vertical;
}

.ml-contact-form__field input::placeholder,
.ml-contact-form__field textarea::placeholder {
    color: #b0b7c3;
}

.ml-contact-form__field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.ml-contact-form__field select:invalid {
    color: #b0b7c3;
}

.ml-contact-form__select-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    pointer-events: none;
    transform: translateY(-50%);
}

.ml-contact-form__select-arrow svg {
    width: 18px;
    height: 18px;
}

.ml-contact-form__field--textarea {
    align-items: flex-start;
}

.ml-contact-form__field--textarea
.ml-contact-form__field-icon {
    top: 18px;
    transform: none;
}

/* =========================================================
   VALIDATION STATES
========================================================= */

.ml-contact-form__field.is-invalid {
    border-color: rgba(240, 68, 56, 0.5);
    box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.08);
}

.ml-contact-form__field.is-valid {
    border-color: rgba(18, 183, 106, 0.42);
}

.ml-contact-form__error {
    display: block;
    margin-top: 6px;
    color: #d92d20;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    line-height: 1.45;
}

/* =========================================================
   CONSENT CHECKBOX
========================================================= */

.ml-contact-form__consent {
    position: relative;
    margin-top: 18px;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: flex-start;
    gap: 10px;
    color: #667085;
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    line-height: 1.55;
    cursor: pointer;
}

.ml-contact-form__consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.ml-contact-form__consent-box {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: #ffffff;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.ml-contact-form__consent-box svg {
    width: 14px;
    height: 14px;
}

.ml-contact-form__consent input:checked
+ .ml-contact-form__consent-box {
    color: #ffffff;
    border-color: var(--ml-primary);
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow: 0 7px 15px rgba(108, 61, 244, 0.2);
}

.ml-contact-form__consent input:focus-visible
+ .ml-contact-form__consent-box {
    outline: 3px solid rgba(108, 61, 244, 0.2);
    outline-offset: 3px;
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.ml-contact-form__submit {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    min-height: 54px;
    margin-top: 21px;
    padding: 0 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    border: 0;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            var(--ml-primary),
            var(--ml-primary-dark)
        );
    box-shadow:
        0 14px 32px rgba(108, 61, 244, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
}

.ml-contact-form__submit::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -80%;
    left: -70%;
    width: 42%;
    height: 260%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(26deg);
    transition: left 0.65s ease;
}

.ml-contact-form__submit:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 42px rgba(108, 61, 244, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ml-contact-form__submit:hover::before {
    left: 140%;
}

.ml-contact-form__submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}

.ml-contact-form__submit > svg {
    width: 19px;
    height: 19px;
    transition: transform 0.3s ease;
}

.ml-contact-form__submit:hover > svg {
    transform: translateX(4px);
}

/* Loader */

.ml-contact-form__submit-loader {
    display: none;
    width: 20px;
    height: 20px;
}

.ml-contact-form__submit-loader i {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: mlContactSpin 0.8s linear infinite;
}

.ml-contact-form__submit.is-loading
.ml-contact-form__submit-loader {
    display: block;
}

.ml-contact-form__submit.is-loading
.ml-contact-form__submit-text,
.ml-contact-form__submit.is-loading > svg {
    display: none;
}

/* =========================================================
   FORM MESSAGE
========================================================= */

.ml-contact-form__message {
    display: none;
    margin-top: 15px;
    padding: 12px 14px;
    color: #344054;
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    line-height: 1.55;
    border-radius: 11px;
}

.ml-contact-form__message.is-visible {
    display: block;
}

.ml-contact-form__message.is-success {
    color: #027a48;
    border: 1px solid rgba(18, 183, 106, 0.2);
    background: #ecfdf3;
}

.ml-contact-form__message.is-error {
    color: #b42318;
    border: 1px solid rgba(240, 68, 56, 0.2);
    background: #fef3f2;
}

/* =========================================================
   FORM FOOTER
========================================================= */

.ml-contact-form__footer {
    min-height: 62px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #98a2b3;
    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    border-top: 1px solid #edf0f4;
    background: #ffffff;
}

.ml-contact-form__footer > span:first-child {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ml-contact-form__footer svg {
    width: 17px;
    height: 17px;
    color: #039855;
}

/* =========================================================
   FLOATING RESPONSE CARD
========================================================= */

.ml-contact-float {
    position: absolute;
    right: -28px;
    bottom: 44px;
    z-index: 8;
    min-width: 235px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 20px 48px rgba(16, 24, 40, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: mlContactFloat 5.5s ease-in-out infinite;
}

.ml-contact-float__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 11px;
    background: rgba(108, 61, 244, 0.09);
}

.ml-contact-float__icon svg {
    width: 20px;
    height: 20px;
}

.ml-contact-float > span:nth-child(2) {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: Inter, Arial, sans-serif;
}

.ml-contact-float small {
    color: #98a2b3;
    font-size: 7px;
}

.ml-contact-float strong {
    color: #344054;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.ml-contact-float > i {
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.11);
    animation: mlContactPulse 1.8s ease-in-out infinite;
}

/* =========================================================
   BOTTOM TRUST ROW
========================================================= */

.ml-contact__trust {
    margin-top: 30px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.91),
            rgba(250, 249, 255, 0.86)
        );
    box-shadow:
        0 20px 48px rgba(16, 24, 40, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ml-contact__trust-item {
    min-height: 65px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 1px solid rgba(16, 24, 40, 0.07);
}

.ml-contact__trust-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.ml-contact__trust-item:last-child {
    padding-right: 0;
}

.ml-contact__trust-item > span {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-primary);
    border-radius: 13px;
    background: rgba(108, 61, 244, 0.075);
}

.ml-contact__trust-item > span svg {
    width: 21px;
    height: 21px;
}

.ml-contact__trust-item > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Inter, Arial, sans-serif;
}

.ml-contact__trust-item strong {
    color: #344054;
    font-size: 11px;
    font-weight: 800;
}

.ml-contact__trust-item small {
    color: #98a2b3;
    font-size: 8px;
    line-height: 1.5;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.ml-contact input:focus-visible,
.ml-contact select:focus-visible,
.ml-contact textarea:focus-visible,
.ml-contact button:focus-visible,
.ml-contact a:focus-visible {
    outline: 3px solid rgba(108, 61, 244, 0.22);
    outline-offset: 3px;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes mlContactSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes mlContactFloat {
    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(-9px) rotate(-1deg);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .ml-contact-float {
        right: -12px;
    }

    .ml-contact__trust-item {
        padding: 0 18px;
    }
}

@media (max-width: 1020px) {
    .ml-contact-float {
        right: 4px;
    }
}

@media (max-width: 760px) {
    .ml-contact__trust {
        grid-template-columns: 1fr;
        padding: 16px 18px;
    }

    .ml-contact__trust-item,
    .ml-contact__trust-item:first-child,
    .ml-contact__trust-item:last-child {
        padding: 16px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(16, 24, 40, 0.07);
    }

    .ml-contact__trust-item:last-child {
        border-bottom: 0;
    }

    .ml-contact-form__footer {
        padding: 15px 20px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .ml-contact-float {
        right: 0;
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .ml-contact-form__field input,
    .ml-contact-form__field select {
        padding-right: 38px;
        padding-left: 43px;
        font-size: 11px;
    }

    .ml-contact-form__field textarea {
        padding-left: 43px;
        font-size: 11px;
    }

    .ml-contact-form__consent {
        font-size: 9px;
    }

    .ml-contact-form__footer {
        font-size: 7px;
    }

    .ml-contact-float {
        display: none;
    }

    .ml-contact__trust {
        border-radius: 18px;
    }

    .ml-contact__trust-item > span {
        width: 39px;
        height: 39px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-contact-form__field,
    .ml-contact-form__consent-box,
    .ml-contact-form__submit,
    .ml-contact-form__submit > svg {
        transition: none !important;
    }

    .ml-contact-float,
    .ml-contact-float > i,
    .ml-contact-form__submit-loader i {
        animation: none !important;
    }

    .ml-contact-form__submit:hover,
    .ml-contact-form__submit:hover > svg {
        transform: none;
    }
}