:root {
    --mlq-ink: #172033;
    --mlq-muted: #5e6b7f;
    --mlq-soft: #f5f8fb;
    --mlq-line: #dce5ee;
    --mlq-primary: #16a34a;
    --mlq-primary-dark: #15803d;
    --mlq-accent: #f59e0b;
    --mlq-danger: #b42318;
    --mlq-white: #ffffff;
    --mlq-shadow: 0 18px 45px rgba(23, 32, 51, .09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--mlq-ink);
    background: var(--mlq-white);
    font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.mlq-container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.mlq-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid var(--mlq-line);
    backdrop-filter: blur(14px);
}

.mlq-header__inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.mlq-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.mlq-brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--mlq-white);
    background: var(--mlq-primary);
    font-weight: 800;
}

.mlq-brand__logo {
    height: 42px;
    object-fit: contain;
    display: block;
}

.mlq-brand__logo--footer {
    height: 70px;
}

.mlq-brand strong,
.mlq-brand small {
    display: block;
}

.mlq-brand strong {
    font-size: 18px;
    line-height: 1.1;
}

.mlq-brand small {
    color: var(--mlq-muted);
    font-size: 12px;
}

.mlq-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    min-width: 0;
}

.mlq-nav__links,
.mlq-nav__actions {
    display: flex;
    align-items: center;
}

.mlq-nav__links {
    justify-content: center;
    flex: 1 1 auto;
    gap: 4px;
}

.mlq-nav__actions {
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 6px;
}

.mlq-nav a {
    position: relative;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--mlq-muted);
    font-size: 14px;
    font-weight: 700;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.mlq-nav a.active {
    color: var(--mlq-primary);
}

.mlq-nav a:hover {
    color: var(--mlq-primary);
}

.mlq-nav .mlq-nav__login {
    gap: 8px;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
    color: var(--mlq-primary-dark);
    border-color: rgba(22, 163, 74, .28);
    background: rgba(22, 163, 74, .08);
}

.mlq-nav .mlq-nav__cta {
    gap: 8px;
    color: var(--mlq-white);
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
    box-shadow: 0 10px 22px rgba(22, 163, 74, .22);
}

.mlq-nav .mlq-nav__login:hover {
    color: var(--mlq-primary-dark);
    border-color: rgba(22, 163, 74, .42);
    background: rgba(22, 163, 74, .12);
}

.mlq-nav .mlq-nav__cta:hover {
    color: var(--mlq-white);
    background: var(--mlq-primary-dark);
    box-shadow: 0 14px 28px rgba(22, 163, 74, .28);
}

.mlq-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--mlq-line);
    border-radius: 8px;
    background: var(--mlq-white);
    padding: 10px;
}

.mlq-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--mlq-ink);
}

.mlq-section {
    padding: 84px 0;
}

.mlq-section--soft {
    background: var(--mlq-soft);
}

.mlq-section--tight {
    padding: 56px 0;
}

.mlq-section--compact-top {
    padding-top: 34px;
}

.mlq-eyebrow {
    margin: 0 0 12px;
    color: var(--mlq-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mlq-title {
    margin: 0;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.02;
    letter-spacing: 0;
}

.mlq-section-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
}

.mlq-lead {
    max-width: 740px;
    margin: 18px 0 0;
    color: var(--mlq-muted);
    font-size: 18px;
}

.mlq-center {
    text-align: center;
}

.mlq-center .mlq-lead {
    margin-left: auto;
    margin-right: auto;
}

.mlq-compact-copy .mlq-section-title {
    font-size: 30px;
    line-height: 1.18;
}

.mlq-compact-copy .mlq-lead {
    margin-top: 12px;
    font-size: 16px;
}

.mlq-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.mlq-center .mlq-actions {
    justify-content: center;
}

.mlq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.2;
}

.mlq-btn--primary {
    color: var(--mlq-white);
    background: var(--mlq-primary);
}

.mlq-btn--primary:hover {
    background: var(--mlq-primary-dark);
}

.mlq-btn--secondary {
    color: var(--mlq-primary);
    border-color: var(--mlq-line);
    background: var(--mlq-white);
}

.mlq-btn--secondary:hover {
    border-color: var(--mlq-primary);
}

.mlq-hero {
    padding: 84px 0 70px;
    background:
        linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
}

.mlq-hero--compact {
    padding-bottom: 34px;
}

.mlq-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
    gap: 48px;
    align-items: center;
}

.mlq-hero__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
}

.mlq-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid var(--mlq-line);
    border-radius: 999px;
    color: var(--mlq-muted);
    background: var(--mlq-white);
    font-size: 13px;
    font-weight: 700;
}

.mlq-pill .bi {
    color: var(--mlq-primary);
    font-size: 16px;
    line-height: 1;
    flex: 0 0 auto;
}

.mlq-visual {
    border: 1px solid var(--mlq-line);
    border-radius: 8px;
    background: var(--mlq-white);
    box-shadow: var(--mlq-shadow);
    overflow: hidden;
}

.mlq-visual__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--mlq-line);
    background: #f9fbfd;
}

.mlq-dots {
    display: flex;
    gap: 6px;
}

.mlq-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mlq-visual__body {
    display: grid;
    grid-template-columns: 130px 1fr;
    min-height: 360px;
}

.mlq-sidebar {
    padding: 16px;
    background: #102a2a;
}

.mlq-sidebar span {
    display: block;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .14);
}

.mlq-dashboard {
    padding: 18px;
}

.mlq-stat-row,
.mlq-card-grid {
    display: grid;
    gap: 12px;
}

.mlq-stat-row {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 14px;
}

.mlq-stat,
.mlq-mini-card {
    border: 1px solid var(--mlq-line);
    border-radius: 8px;
    padding: 14px;
    background: var(--mlq-white);
}

.mlq-stat strong {
    display: block;
    font-size: 20px;
}

.mlq-stat span,
.mlq-mini-card span {
    color: var(--mlq-muted);
    font-size: 12px;
}

.mlq-card-grid {
    grid-template-columns: repeat(2, 1fr);
}

.mlq-mini-card {
    min-height: 92px;
}

.mlq-line {
    height: 8px;
    margin-top: 10px;
    border-radius: 999px;
    background: #dce5ee;
}

.mlq-line--accent {
    width: 70%;
    background: var(--mlq-accent);
}

.mlq-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.mlq-card {
    border: 1px solid var(--mlq-line);
    border-radius: 8px;
    padding: 24px;
    background: var(--mlq-white);
}

.mlq-card--highlight {
    border-color: rgba(15, 118, 110, .35);
    box-shadow: var(--mlq-shadow);
}

.mlq-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mlq-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--mlq-primary);
    background: #e7f5f3;
    font-weight: 900;
}

.mlq-icon .bi {
    font-size: 20px;
    line-height: 1;
}

.mlq-card h2,
.mlq-card h3 {
    margin: 16px 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.mlq-card__head h2,
.mlq-card__head h3 {
    margin: 0;
}

.mlq-card p,
.mlq-card li {
    color: var(--mlq-muted);
}

.mlq-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.mlq-list li {
    position: relative;
    padding-left: 24px;
    margin-top: 10px;
}

.mlq-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mlq-primary);
}

.mlq-feature-panel {
    position: relative;
    overflow: hidden;
}

.mlq-feature-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--mlq-primary), var(--mlq-accent));
}

.mlq-feature-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.mlq-feature-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: var(--mlq-muted);
    font-weight: 600;
}

.mlq-feature-list .bi {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--mlq-primary);
    background: #e7f5f3;
    line-height: 1;
}

.mlq-kot-overview {
    align-self: center;
}

.mlq-demo-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mlq-demo-credentials {
    display: grid;
    gap: 12px;
}

.mlq-demo-credentials div {
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid var(--mlq-line);
    border-radius: 8px;
    background: #f9fbfd;
}

.mlq-demo-credentials span {
    color: var(--mlq-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.mlq-demo-credentials strong {
    color: var(--mlq-ink);
    font-size: 16px;
    line-height: 1.35;
    word-break: break-word;
}

.mlq-demo-card__btn {
    width: 100%;
}

.mlq-demo-explore-list {
    margin-top: 24px;
}

.mlq-demo-explore-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--mlq-ink);
    font-size: 15px;
}

.mlq-card h3 .bi {
    margin-right: 8px;
    color: var(--mlq-primary);
}

.mlq-workflow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    counter-reset: step;
}

.mlq-workflow::before {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    top: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(22, 163, 74, .3), rgba(245, 158, 11, .35));
}

.mlq-step {
    position: relative;
    border: 1px solid var(--mlq-line);
    border-radius: 8px;
    padding: 20px;
    background: var(--mlq-white);
    box-shadow: 0 14px 34px rgba(23, 32, 51, .06);
    counter-increment: step;
}

.mlq-step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.mlq-step__number {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--mlq-white);
    background: var(--mlq-primary);
    font-weight: 900;
}

.mlq-step__number::before {
    content: counter(step);
}

.mlq-step__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--mlq-primary);
    background: #e7f5f3;
    font-size: 20px;
}

.mlq-step h3 {
    margin: 0 0 8px;
}

.mlq-step p {
    margin: 0;
    color: var(--mlq-muted);
}

.mlq-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 18px 0;
}

.mlq-price strong {
    font-size: 34px;
}

.mlq-membership-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.mlq-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mlq-plan-card--featured {
    border-color: rgba(22, 163, 74, .38);
    box-shadow: var(--mlq-shadow);
}

.mlq-plan-card--featured::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--mlq-primary), var(--mlq-accent));
}

.mlq-plan-card--trial {
    border-color: rgba(22, 163, 74, .45);
    background: linear-gradient(180deg, #f0fdf4 0%, var(--mlq-white) 42%);
    box-shadow: 0 18px 45px rgba(22, 163, 74, .12);
}

.mlq-plan-card--trial::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--mlq-primary);
}

.mlq-plan-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--mlq-white);
    background: var(--mlq-primary);
    font-size: 12px;
    font-weight: 800;
}

.mlq-plan-ribbon--trial {
    background: var(--mlq-accent);
}

.mlq-plan-card__top span {
    color: var(--mlq-muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mlq-plan-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-top: 12px;
    color: var(--mlq-ink);
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

.mlq-plan-price small {
    margin-top: 5px;
    font-size: 18px;
}

.mlq-plan-price--trial {
    font-size: 34px;
}

.mlq-plan-card__top p {
    margin: 8px 0 0;
    color: var(--mlq-muted);
    font-weight: 700;
}

.mlq-plan-card__top .mlq-plan-note {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--mlq-primary);
    background: #e7f5f3;
    font-size: 13px;
    font-weight: 800;
}

.mlq-plan-included {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--mlq-line);
    color: var(--mlq-ink);
    font-weight: 800;
}

.mlq-plan-features {
    display: grid;
    gap: 8px;
    margin: 14px 0 24px;
    padding: 0;
    list-style: none;
}

.mlq-plan-features li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    color: var(--mlq-muted);
    font-size: 14px;
    font-weight: 400;
}

.mlq-plan-features .bi {
    color: var(--mlq-primary);
    font-size: 15px;
    line-height: 1.3;
}

.mlq-plan-card__btn {
    width: 100%;
    margin-top: auto;
}

.mlq-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--mlq-line);
    border-radius: 8px;
    background: var(--mlq-white);
}

.mlq-table th,
.mlq-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--mlq-line);
    text-align: left;
}

.mlq-table th {
    background: #f9fbfd;
}

.mlq-form {
    display: grid;
    gap: 16px;
}

.mlq-field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 800;
}

.mlq-field input,
.mlq-field select,
.mlq-field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--mlq-line);
    border-radius: 8px;
    padding: 11px 12px;
    color: var(--mlq-ink);
    background: var(--mlq-white);
}

.mlq-field textarea {
    min-height: 130px;
    resize: vertical;
}

.mlq-error {
    display: none;
    margin-top: 6px;
    color: var(--mlq-danger);
    font-size: 13px;
}

.mlq-field.has-error .mlq-error {
    display: block;
}

.mlq-field.has-error input,
.mlq-field.has-error textarea {
    border-color: var(--mlq-danger);
}

.mlq-alert {
    display: none;
    padding: 13px 14px;
    border-radius: 8px;
    background: #ecfdf3;
    color: #05603a;
    font-weight: 800;
}

.mlq-faq details {
    border: 1px solid var(--mlq-line);
    border-radius: 8px;
    padding: 0;
    background: var(--mlq-white);
    overflow: hidden;
}

.mlq-faq .mlq-section-title {
    margin-bottom: 22px;
}

.mlq-faq details + details {
    margin-top: 12px;
}

.mlq-faq summary {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 900;
    list-style: none;
}

.mlq-faq summary::-webkit-details-marker {
    display: none;
}

.mlq-faq summary::before {
    content: "\F285";
    font-family: "bootstrap-icons";
    color: var(--mlq-primary);
    font-size: 13px;
    line-height: 1;
    transition: transform .18s ease;
}

.mlq-faq details[open] summary::before {
    transform: rotate(90deg);
}

.mlq-faq p {
    margin: 0;
    padding: 0 20px 18px 43px;
    color: var(--mlq-muted);
}

.mlq-legal {
    max-width: 860px;
}

.mlq-legal section {
    padding: 24px 0;
    border-bottom: 1px solid var(--mlq-line);
}

.mlq-legal h2 {
    margin: 0 0 8px;
}

.mlq-legal p,
.mlq-legal li {
    color: var(--mlq-muted);
}

.mlq-note {
    border-left: 4px solid var(--mlq-accent);
    padding: 14px 16px;
    border-radius: 8px;
    background: #fffbeb;
}

.mlq-cta {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(22, 163, 74, .22);
    border-radius: 8px;
    padding: 34px;
    color: var(--mlq-white);
    background: linear-gradient(135deg, #0b2f25 0%, #102a2a 100%);
    box-shadow: 0 22px 55px rgba(16, 42, 42, .16);
}

.mlq-cta::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--mlq-primary), var(--mlq-accent));
}

.mlq-cta__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 8px;
    color: var(--mlq-white);
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.mlq-cta .mlq-eyebrow {
    color: #86efac;
}

.mlq-cta .mlq-section-title {
    font-size: 30px;
    line-height: 1.18;
}

.mlq-cta .mlq-lead {
    margin-top: 12px;
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
}

.mlq-cta .mlq-actions {
    margin-top: 24px;
}

.mlq-cta .mlq-btn--primary {
    color: var(--mlq-primary);
    background: var(--mlq-white);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

.mlq-cta .mlq-btn--primary:hover {
    color: var(--mlq-primary-dark);
    background: #f0fdf4;
}

.mlq-footer {
    color: rgba(255, 255, 255, .72);
    background: #102a2a;
}

.mlq-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(4, minmax(120px, 1fr));
    gap: 28px;
    padding: 54px 0;
}

.mlq-brand--footer strong,
.mlq-footer h2 {
    color: var(--mlq-white);
}

.mlq-footer h2 {
    margin: 0 0 12px;
    font-size: 15px;
}

.mlq-footer a {
    display: block;
    margin: 8px 0;
}

.mlq-footer a:hover {
    color: var(--mlq-white);
}

.mlq-footer__text {
    max-width: 320px;
}

.mlq-footer__bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 980px) {
    .mlq-header__inner {
        display: flex;
        justify-content: space-between;
    }

    .mlq-menu-btn {
        display: block;
    }

    .mlq-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        border-bottom: 1px solid var(--mlq-line);
        background: var(--mlq-white);
    }

    .mlq-nav.is-open {
        display: flex;
    }

    .mlq-nav__links,
    .mlq-nav__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .mlq-nav .mlq-nav__cta {
        margin-left: 0;
        margin-top: 6px;
    }

    .mlq-nav .mlq-nav__login {
        margin-left: 0;
        margin-top: 6px;
    }

    .mlq-hero__grid,
    .mlq-grid--2,
    .mlq-grid--3,
    .mlq-grid--4,
    .mlq-workflow,
    .mlq-membership-grid,
    .mlq-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .mlq-hero__grid {
        grid-template-columns: 1fr;
    }

    .mlq-workflow::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .mlq-container {
        width: min(100% - 24px, 1160px);
    }

    .mlq-section,
    .mlq-hero {
        padding: 54px 0;
    }

    .mlq-hero--compact {
        padding-bottom: 26px;
    }

    .mlq-section--compact-top {
        padding-top: 28px;
    }

    .mlq-hero__points,
    .mlq-grid--2,
    .mlq-grid--3,
    .mlq-grid--4,
    .mlq-workflow,
    .mlq-membership-grid,
    .mlq-footer__grid,
    .mlq-stat-row,
    .mlq-card-grid {
        grid-template-columns: 1fr;
    }

    .mlq-visual__body {
        grid-template-columns: 1fr;
    }

    .mlq-sidebar {
        display: none;
    }

    .mlq-actions .mlq-btn {
        width: 100%;
    }

    .mlq-cta {
        padding: 28px 22px;
    }
}
