.ml-native-page {
    --ml-ink: #111318;
    --ml-soft: #667085;
    --ml-red: #820100;
    background: #f5f6f8;
    color: var(--ml-ink);
}

.ml-native-page *,
.ml-native-page *::before,
.ml-native-page *::after {
    box-sizing: border-box;
}

.ml-home-hero,
.ml-native-hero {
    padding: clamp(64px, 9vw, 124px) 0;
    border-bottom: 1px solid rgba(130,1,0,.12);
    background:
        radial-gradient(circle at 80% 18%, rgba(130,1,0,.09), transparent 28%),
        #fff;
    color: #111318;
}

.ml-home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 56px;
    align-items: center;
}

.ml-home-hero h1,
.ml-native-hero h1 {
    max-width: 980px;
    margin: 14px 0 22px;
    font-size: clamp(42px, 6.5vw, 86px);
    line-height: .98;
    letter-spacing: -.06em;
}

.ml-home-hero p,
.ml-native-hero p {
    max-width: 760px;
    margin: 0;
    color: #667085;
    font-size: clamp(18px, 2vw, 23px);
}

.ml-native-eyebrow {
    display: inline-block;
    color: #b42318;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ml-home-hero .ml-native-eyebrow,
.ml-native-hero .ml-native-eyebrow,
.ml-native-cta .ml-native-eyebrow {
    color: #820100;
}

.ml-home-hero__visual {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
    box-shadow: 0 38px 100px rgba(0,0,0,.28);
}

.ml-home-hero__visual span {
    font-size: clamp(62px, 8vw, 108px);
    font-weight: 950;
    line-height: .9;
    letter-spacing: -.08em;
}

.ml-home-hero__visual strong {
    max-width: 220px;
    margin-top: 16px;
    font-size: 18px;
}

.ml-native-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.ml-native-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 14px;
    background: #fff;
    color: var(--ml-ink);
    font-weight: 850;
}

.ml-native-btn--primary {
    border-color: var(--ml-red);
    background: var(--ml-red);
    color: #fff;
}

.ml-native-section {
    padding-top: clamp(48px, 7vw, 88px);
}

.ml-native-section:last-child {
    padding-bottom: clamp(48px, 7vw, 88px);
}

.ml-native-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: 32px;
    align-items: end;
    margin-bottom: 28px;
}

.ml-native-section h2,
.ml-native-cta h2 {
    margin: 8px 0 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -.05em;
}

.ml-native-section__head > p,
.ml-native-copy {
    color: var(--ml-soft);
    font-size: 17px;
    line-height: 1.7;
}

.ml-feature-grid,
.ml-native-stats,
.ml-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ml-feature-grid article,
.ml-contact-card,
.ml-native-stats > div {
    padding: 24px;
    border: 1px solid #e2e5ea;
    border-radius: 22px;
    background: #fff;
}

.ml-feature-grid article > b {
    color: var(--ml-red);
    font-size: 13px;
}

.ml-feature-grid h3 {
    margin: 30px 0 8px;
    font-size: 21px;
}

.ml-feature-grid p,
.ml-contact-card p {
    margin: 0;
    color: var(--ml-soft);
    line-height: 1.6;
}

.ml-native-link {
    color: var(--ml-red);
    font-weight: 850;
}

.ml-native-cta {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    align-items: center;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(130,1,0,.16);
    border-radius: 24px;
    background: #fff7f7;
    color: #111318;
}

.ml-native-cta .ml-native-actions {
    flex: 0 0 auto;
    margin: 0;
}

.ml-native-stats > div {
    display: flex;
    flex-direction: column;
}

.ml-native-stats b {
    color: var(--ml-red);
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -.05em;
}

.ml-native-stats span,
.ml-contact-card > span {
    color: var(--ml-soft);
    font-weight: 700;
}

.ml-about-grid {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: clamp(32px, 7vw, 96px);
}

.ml-native-copy p {
    margin: 0 0 20px;
}

.ml-native-copy blockquote {
    margin: 32px 0 0;
    padding: 24px;
    border-left: 4px solid var(--ml-red);
    border-radius: 0 16px 16px 0;
    background: #fff;
    color: var(--ml-ink);
    font-size: 20px;
    font-weight: 800;
}

.ml-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ml-contact-card {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ml-contact-card a,
.ml-contact-card strong {
    color: var(--ml-ink);
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 850;
}

.ml-home-banner {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    margin-top: 28px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #dfe2e7;
    border-radius: 30px;
    background: #e9eaed;
    box-shadow: 0 22px 70px rgba(15, 23, 42, .12);
}

.ml-home-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.ml-home-banner__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.ml-home-banner__slide img,
.ml-home-banner__slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.ml-home-banner__slide img {
    object-fit: cover;
}

.ml-home-banner__arrows {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ml-home-banner__arrows button {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(24, 20, 18, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .88);
    color: #111318;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .16);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.ml-home-banner__arrows button:hover {
    background: #fff;
    color: #820100;
}

.ml-home-banner__dots {
    position: absolute;
    left: 28px;
    bottom: 38px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ml-home-banner__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 0 0 1px rgba(24, 20, 18, .14);
    cursor: pointer;
    transition: width .22s ease, background-color .22s ease;
}

.ml-home-banner__dots button.is-active {
    width: 34px;
    background: #820100;
}

.ml-home-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
    padding: 0;
    border-block: 1px solid #dfe2e7;
}

.ml-home-benefits > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 22px 24px;
    border-right: 1px solid #dfe2e7;
}

.ml-home-benefits > div:last-child {
    border-right: 0;
}

.ml-home-benefits strong {
    font-size: 16px;
}

.ml-home-benefits span {
    color: #667085;
    font-size: 13px;
}

.ml-home-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ml-home-categories a {
    min-width: 0;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 116px;
    padding: 14px;
    border: 1px solid #e2e5ea;
    border-radius: 20px;
    background: #fff;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.ml-home-categories a:hover {
    border-color: rgba(130,1,0,.28);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15,23,42,.07);
}

.ml-home-category__image {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 16px;
    background: #f3f5f7;
}

.ml-home-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-home-category__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ml-home-category__body strong {
    font-size: 17px;
    line-height: 1.25;
}

.ml-home-category__body small {
    color: #667085;
}

.ml-home-categories a > b {
    color: #820100;
    font-size: 18px;
}

.ml-home-project {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: clamp(38px, 6vw, 86px);
    align-items: center;
    padding: clamp(34px, 6vw, 72px);
    overflow: hidden;
    border: 1px solid rgba(130,1,0,.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 12%, rgba(130,1,0,.09), transparent 30%),
        #fff;
    color: #111318;
}

.ml-home-project h2 {
    margin: 10px 0 18px;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1;
    letter-spacing: -.055em;
}

.ml-home-project__copy > p {
    max-width: 700px;
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.65;
}

.ml-home-project__steps {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #e2e5ea;
}

.ml-home-project__steps li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #e2e5ea;
}

.ml-home-project__steps li > b {
    color: #820100;
    font-size: 12px;
}

.ml-home-project__steps span,
.ml-home-project__steps strong,
.ml-home-project__steps small {
    display: block;
}

.ml-home-project__steps strong {
    margin-bottom: 4px;
    font-size: 16px;
}

.ml-home-project__steps small {
    color: #667085;
}

.ml-home-project .ml-native-btn:not(.ml-native-btn--primary),
.ml-native-cta .ml-native-btn:not(.ml-native-btn--primary) {
    border-color: #d5d9e0;
}

.ml-home-company {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ml-home-company__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 34px;
    border: 1px solid #e2e5ea;
    border-radius: 24px;
    background: #fff;
    color: #111318;
}

.ml-home-company__stats > span {
    grid-column: 1 / -1;
    margin-bottom: 28px;
    color: #667085;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ml-home-company__stats > div {
    padding: 20px 0;
    border-top: 1px solid #e2e5ea;
}

.ml-home-company__stats b,
.ml-home-company__stats small {
    display: block;
}

.ml-home-company__stats b {
    color: #820100;
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -.05em;
}

.ml-home-company__stats small {
    color: #667085;
}

.ml-home-company__partner {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    border: 1px solid rgba(130,1,0,.16);
    border-radius: 24px;
    background: #fff7f7;
    color: #111318;
}

.ml-home-company__partner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    right: -12%;
    left: auto;
    width: 72%;
    opacity: .18;
}

.ml-home-company__partner > div {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
}

.ml-home-company__partner small {
    color: #820100;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ml-home-company__partner h2 {
    max-width: 440px;
    margin: 8px 0 26px;
}

.ml-home-company__partner div img {
    width: 190px;
    max-height: 70px;
    object-fit: contain;
    object-position: left;
    filter: none;
}

.ml-home-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ml-home-trust {
    padding-bottom: 80px;
}

.ml-home-trust > header {
    margin-bottom: 28px;
}

.ml-home-trust > div {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 14px;
}

.ml-home-trust img {
    width: 100%;
    height: 112px;
    padding: 20px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #e2e5ea;
    border-radius: 18px;
    filter: none;
}

.ml-home-social {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(480px, 1.2fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: center;
    padding-bottom: 90px;
}

.ml-home-social__copy p,
.ml-partner-form-copy p {
    max-width: 660px;
    color: var(--ml-soft);
    font-size: 17px;
    line-height: 1.7;
}

.ml-home-social__links {
    display: grid;
    gap: 14px;
}

.ml-social-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 94px;
    padding: 18px 22px;
    border: 1px solid #e2e5ea;
    border-radius: 22px;
    background: #fff;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.ml-social-card:hover {
    transform: translateY(-2px);
    border-color: #cfd3da;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.ml-social-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
}

.ml-social-card--instagram .ml-social-card__icon {
    background: linear-gradient(135deg, #6a35c7, #d62976 55%, #f7a13b);
}

.ml-social-card--whatsapp .ml-social-card__icon {
    background: #1fa855;
}

.ml-social-card svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ml-social-card small,
.ml-social-card strong {
    display: block;
}

.ml-social-card small {
    margin-bottom: 5px;
    color: var(--ml-soft);
    font-weight: 700;
}

.ml-social-card strong {
    color: var(--ml-ink);
    font-size: 19px;
}

.ml-social-card > b {
    color: var(--ml-red);
    font-size: 22px;
}

.ml-partner-form-layout {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: clamp(34px, 7vw, 100px);
    align-items: start;
    padding: clamp(30px, 5vw, 72px);
    border: 1px solid #e2e5ea;
    border-radius: 28px;
    background: #fff;
}

.ml-partner-form-copy {
    position: sticky;
    top: 110px;
}

.ml-partner-form-copy h2 {
    margin: 10px 0 18px;
}

.ml-partner-form-copy ul {
    display: grid;
    gap: 13px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.ml-partner-form-copy li {
    position: relative;
    padding-left: 25px;
    color: var(--ml-ink);
    line-height: 1.5;
}

.ml-partner-form-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ml-red);
    font-weight: 900;
}

.ml-partner-form,
.ml-partner-form__grid {
    display: grid;
    gap: 16px;
}

.ml-partner-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ml-partner-form label > span {
    display: block;
    margin-bottom: 7px;
    color: var(--ml-ink);
    font-size: 13px;
    font-weight: 800;
}

.ml-partner-form input,
.ml-partner-form textarea {
    width: 100%;
    border: 1px solid #d8dce3;
    border-radius: 14px;
    background: #fff;
    color: var(--ml-ink);
    font: inherit;
    outline: none;
}

.ml-partner-form input {
    height: 50px;
    padding: 0 15px;
}

.ml-partner-form textarea {
    min-height: 126px;
    padding: 14px 15px;
    resize: vertical;
}

.ml-partner-form input:focus,
.ml-partner-form textarea:focus {
    border-color: rgba(130, 1, 0, .6);
    box-shadow: 0 0 0 3px rgba(130, 1, 0, .08);
}

.ml-partner-form__wide {
    grid-column: 1 / -1;
}

.ml-partner-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ml-soft);
    font-size: 13px;
    line-height: 1.45;
}

.ml-partner-form__consent input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex: 0 0 auto;
}

.ml-partner-form__consent span {
    margin: 0 !important;
    color: inherit !important;
    font-weight: 600 !important;
}

.ml-form-honeypot {
    position: absolute !important;
    left: -10000px !important;
}

.ml-form-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 750;
}

.ml-form-notice--success {
    background: #edf9f1;
    color: #14733a;
}

.ml-form-notice--error {
    background: #fff1f1;
    color: #9c2020;
}

@media (max-width: 900px) {
    .ml-home-hero__grid,
    .ml-native-section__head,
    .ml-about-grid,
    .ml-home-social,
    .ml-partner-form-layout {
        grid-template-columns: 1fr;
    }

    .ml-home-social {
        gap: 28px;
    }

    .ml-partner-form-copy {
        position: static;
    }

    .ml-home-hero__visual {
        max-width: 430px;
    }

    .ml-feature-grid,
    .ml-home-products,
    .ml-native-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ml-native-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .ml-home-benefits,
    .ml-home-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ml-home-benefits > div:nth-child(2) {
        border-right: 0;
    }

    .ml-home-categories,
    .ml-home-company,
    .ml-home-project {
        grid-template-columns: 1fr;
    }

    .ml-home-trust > div {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ml-home-hero,
    .ml-native-hero {
        padding: 56px 0;
    }

    .ml-home-hero h1,
    .ml-native-hero h1 {
        font-size: 43px;
    }

    .ml-feature-grid,
    .ml-home-products,
    .ml-native-stats,
    .ml-contact-grid {
        grid-template-columns: 1fr;
    }

    .ml-home-banner {
        height: auto;
        aspect-ratio: 2 / 3;
        margin-top: 14px;
        border-radius: 20px;
    }

    .ml-home-banner__dots {
        left: 18px;
        bottom: 27px;
    }

    .ml-home-banner__arrows {
        right: 16px;
        bottom: 14px;
    }

    .ml-home-benefits,
    .ml-home-products,
    .ml-home-categories {
        grid-template-columns: 1fr;
    }

    .ml-home-benefits > div {
        border-right: 0;
        border-bottom: 1px solid #dfe2e7;
    }

    .ml-home-benefits > div:last-child {
        border-bottom: 0;
    }

    .ml-home-company__stats {
        padding: 24px;
    }

    .ml-home-company__partner {
        min-height: 380px;
    }

    .ml-home-project {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .ml-home-project h2 {
        font-size: 36px;
    }

    .ml-home-trust > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ml-partner-form-layout {
        padding: 26px 20px;
        border-radius: 20px;
    }

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

    .ml-partner-form__wide {
        grid-column: auto;
    }

    .ml-social-card {
        grid-template-columns: 50px minmax(0, 1fr) auto;
        padding: 15px;
    }

    .ml-social-card__icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }

    .ml-native-cta .ml-native-actions,
    .ml-native-cta .ml-native-btn {
        width: 100%;
    }
}
.ml-recaptcha {
    margin: 18px 0;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 380px) {
    .ml-recaptcha {
        transform: scale(.88);
        transform-origin: left top;
        margin-bottom: -8px;
    }
}
