/* ResvBAR landing — cinematic hero + unique section motions v9 */
:root {
    --ml-navy: #01305F;
    --ml-blue: #0089BF;
    --ml-cyan: #00A8E8;
    --ml-gold: #FEA31A;
    --ml-ink: #142433;
    --ml-muted: #667788;
    --ml-line: rgba(1, 48, 95, 0.1);
    --ml-bg: #f3f7fb;
    --ml-white: #ffffff;
    --ml-radius: 18px;
    --ml-header-h: 68px;
    --ml-sticky-h: 70px;
    --ml-font: "Tajawal", system-ui, sans-serif;
    --ml-shadow: 0 18px 50px rgba(1, 48, 95, 0.1);
    --ml-shadow-sm: 0 8px 24px rgba(1, 48, 95, 0.07);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-padding-top: calc(var(--ml-header-h) + 10px);
    overflow-x: clip;
}

.ml-body {
    margin: 0;
    font-family: var(--ml-font);
    color: var(--ml-ink);
    background: var(--ml-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

.ml-skip-link {
    position: absolute;
    inset-inline-start: 12px;
    top: -48px;
    z-index: 10000;
    background: var(--ml-navy);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}
.ml-skip-link:focus { top: 12px; }

.ml-body a:focus-visible,
.ml-body button:focus-visible,
.ml-body input:focus-visible,
.ml-body select:focus-visible {
    outline: 2px solid var(--ml-cyan);
    outline-offset: 3px;
}

[id] { scroll-margin-top: calc(var(--ml-header-h) + 12px); }

/* Progress + chapters */
.ml-scroll-progress {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 1300;
    height: 2px;
    pointer-events: none;
}
.ml-scroll-progress__bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--ml-gold), var(--ml-cyan));
}

.ml-chapters {
    position: fixed;
    inset-inline-end: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 850;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    direction: ltr;
}
.ml-chapters[hidden] { display: none !important; }
.ml-chapters a {
    --ml-ch: var(--ml-navy);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 18px;
    padding: 0;
    text-decoration: none;
    color: var(--ml-ch);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    opacity: 0.36;
    transition: opacity 0.25s ease, color 0.25s ease;
}
.ml-chapters a[data-ml-ch="hero"] { --ml-ch: #fea31a; }
.ml-chapters a[data-ml-ch="why"] { --ml-ch: #00a8e8; }
.ml-chapters a[data-ml-ch="proof"] { --ml-ch: #0089bf; }
.ml-chapters a[data-ml-ch="how"] { --ml-ch: #01305f; }
.ml-chapters a[data-ml-ch="trust"] { --ml-ch: #00a8e8; }
.ml-chapters a[data-ml-ch="providers"] { --ml-ch: #9ad8f0; }
.ml-chapters a[data-ml-ch="final"] { --ml-ch: #fea31a; }
.ml-chapters a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ml-ch);
    flex-shrink: 0;
    transition: width 0.25s ease, height 0.25s ease, box-shadow 0.25s ease;
}
.ml-chapters a.is-active {
    opacity: 1;
}
.ml-chapters a.is-active::before {
    width: 8px;
    height: 8px;
}
.ml-chapters a:hover { opacity: 0.92; }
.ml-chapters a span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    color: var(--ml-ch);
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.95),
        0 1px 0 rgba(255, 255, 255, 0.7);
    transition: max-width 0.3s ease, opacity 0.22s ease, color 0.25s ease;
}
.ml-chapters a.is-active span,
.ml-chapters a:hover span,
.ml-chapters a:focus-visible span {
    max-width: 6.5rem;
    opacity: 1;
}
.ml-chapters a:focus-visible {
    outline: none;
    opacity: 1;
}
.ml-chapters a:focus-visible::before {
    outline: 2px solid var(--ml-ch);
    outline-offset: 3px;
}
.ml-chapters.is-on-dark a:not(.is-active) {
    opacity: 0.42;
}
.ml-chapters.is-on-dark a:not(.is-active)::before {
    background: rgba(255, 255, 255, 0.55);
}
.ml-chapters.is-on-dark a span {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

@media (min-width: 1200px) {
    .ml-chapters:not([hidden]) { display: flex; }
}

/* Header — ثابت فوق الهيرو بدون فجوة بيضاء */
.ml-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 900;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    min-height: var(--ml-header-h);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.ml-header.is-scrolled {
    border-bottom-color: var(--ml-line);
    box-shadow: 0 8px 24px rgba(1, 48, 95, 0.06);
}
.ml-header.is-over-hero {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}
.ml-header.is-over-hero .ml-header__brand { color: #fff; }
.ml-header.is-over-hero .ml-header__brand img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,0.4));
}
.ml-header.is-over-hero .ml-btn--ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.ml-header.is-over-hero .ml-btn--primary {
    background: #fff;
    color: var(--ml-navy);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.ml-header__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 20px;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ml-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ml-navy);
}
.ml-header__brand img { height: 42px; width: auto; display: block; }
.ml-header__actions { display: flex; align-items: center; gap: 8px; }

/* Buttons */
.ml-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.94rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ml-btn:hover { text-decoration: none; transform: translateY(-1px); }
.ml-btn--primary {
    background: var(--ml-navy);
    color: #fff;
    box-shadow: 0 10px 28px rgba(1, 48, 95, 0.25);
}
.ml-btn--primary:hover { background: var(--ml-blue); color: #fff; }
.ml-btn--ghost {
    background: transparent;
    color: var(--ml-navy);
    border-color: var(--ml-line);
}
.ml-btn--ghost:hover { border-color: var(--ml-blue); color: var(--ml-blue); }
.ml-btn--ghost-light {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-color: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
}
.ml-btn--ghost-light:hover { background: rgba(255,255,255,0.24); color: #fff; }
.ml-btn--light { background: #fff; color: var(--ml-navy); }
.ml-btn--light:hover { color: var(--ml-blue); }
.ml-btn--secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

.ml-link { color: var(--ml-blue); font-weight: 700; text-decoration: none; }
.ml-link:hover { text-decoration: underline; }
.ml-link--on-dark { color: rgba(255,255,255,0.9); }

/* Sections */
.ml-section { padding: 88px 20px; position: relative; }
.ml-section--muted { background: var(--ml-bg); }
.ml-wrap { max-width: 1120px; margin: 0 auto; }
.ml-section__eyebrow {
    display: block;
    color: var(--ml-blue);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-transform: none;
}
.ml-section__title {
    margin: 0 0 12px;
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    font-weight: 800;
    color: var(--ml-navy);
    line-height: 1.3;
}
.ml-section__lead {
    margin: 0 0 28px;
    color: var(--ml-muted);
    font-size: 1.02rem;
    max-width: 560px;
}

.ml-reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.ml-reveal.is-in { opacity: 1; transform: none; }
.ml-reveal-delay-1 { transition-delay: 0.08s; }
.ml-reveal-delay-2 { transition-delay: 0.16s; }
.ml-reveal-delay-3 { transition-delay: 0.24s; }
.ml-reveal-delay-4 { transition-delay: 0.32s; }

/* ========== HERO ========== */
.ml-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    color: #fff;
    overflow: clip;
}
.ml-hero__stage {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
}
.ml-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
}
.ml-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transform: scale(1.06);
    animation: mlKenBurns 22s ease-out forwards;
}
.ml-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(1,48,95,0.55) 0%, rgba(1,48,95,0.58) 34%, rgba(1,48,95,0.86) 72%, rgba(1,48,95,0.96) 100%),
        linear-gradient(90deg, rgba(1,48,95,0.45), transparent 58%);
}
.ml-hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}
.ml-hero__inner {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 40px));
    text-align: center;
    padding: 120px 0 130px;
    margin-top: 4vh;
}
.ml-hero__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 22px;
    font-size: clamp(1.55rem, 3.4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 28px rgba(0,0,0,0.35);
    animation: mlRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ml-hero__brand img {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
}
.ml-hero__title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.35);
    animation: mlRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.ml-hero__title span {
    display: block;
    color: #FEA31A;
    text-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.ml-hero__desc {
    margin: 0 auto 26px;
    max-width: 30em;
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.94);
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
    animation: mlRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}
.ml-hero__intent {
    width: min(740px, 100%);
    margin: 0 auto 18px;
    text-align: start;
    animation: mlRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}
.ml-hero__intent .ml-intent {
    background: #fff;
    color: var(--ml-ink);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 22px;
    padding: 20px;
    box-shadow:
        0 28px 60px rgba(0,0,0,0.32),
        0 0 0 1px rgba(1,48,95,0.04);
}
.ml-hero__intent .ml-intent__submit .ml-btn--primary {
    background: var(--ml-gold);
    color: #142433;
    min-height: 50px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(254,163,26,0.35);
}
.ml-hero__intent .ml-intent__submit .ml-btn--primary:hover {
    background: var(--ml-navy);
    color: #fff;
    box-shadow: 0 12px 28px rgba(1,48,95,0.35);
}
.ml-hero__provider {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.96);
    color: var(--ml-ink);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}
.ml-hero__provider p { margin: 0; color: var(--ml-muted); flex: 1; min-width: 12rem; }
.ml-hero__how {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    font-size: 0.94rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.45);
    animation: mlRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
.ml-hero__how:hover { color: #fff; border-bottom-color: #fff; }
.ml-hero__meta {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255,255,255,0.78);
    animation: mlRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

/* Intent form (shared) */
.ml-intent {
    background: #fff;
    color: var(--ml-ink);
    border: 1px solid var(--ml-line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--ml-shadow);
}
.ml-intent__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr auto;
    gap: 12px;
    align-items: end;
}
.ml-field label {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--ml-muted);
    margin-bottom: 5px;
}
.ml-field input,
.ml-field select {
    width: 100%;
    min-height: 50px;
    border: 1px solid #d5e0ea;
    border-radius: 12px;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    color: var(--ml-ink);
}
.ml-field input:focus,
.ml-field select:focus {
    border-color: var(--ml-blue);
    box-shadow: 0 0 0 3px rgba(0,137,191,0.12);
    outline: none;
}
.ml-intent .ml-btn { width: 100%; }
.ml-field-error {
    margin: 10px 0 0;
    color: #c0392b;
    font-size: 0.86rem;
}

/* How it works — section 2 timeline */
.ml-steps {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    counter-reset: none;
}
.ml-steps__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 22px 18px 20px;
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: var(--ml-radius);
    box-shadow: var(--ml-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ml-steps__item:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-inline-start: calc(100% + 2px);
    top: 2.35rem;
    width: 10px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,137,191,0.35), rgba(0,137,191,0.05));
    pointer-events: none;
}
.ml-steps__item.is-in:hover,
.ml-reveal.is-in.ml-steps__item:hover {
    transform: translateY(-3px);
    border-color: rgba(0,137,191,0.22);
    box-shadow: var(--ml-shadow);
}
.ml-steps__num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(0,137,191,0.12), rgba(1,48,95,0.08));
    color: var(--ml-navy);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
}
.ml-steps__item h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: var(--ml-navy);
    line-height: 1.35;
}
.ml-steps__item p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ml-muted);
    line-height: 1.65;
}

/* Trust strip */
.ml-trust-strip {
    background: var(--ml-bg);
    border-block: 1px solid var(--ml-line);
    padding: 18px 20px;
}
.ml-trust-strip__list {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
}
.ml-trust-strip__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ml-navy);
}
.ml-trust-strip__list i { color: var(--ml-blue); font-size: 1.1rem; }

/* Pills / problem */
.ml-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}
.ml-pill {
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: var(--ml-radius);
    padding: 22px 18px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ml-pill.is-in:hover,
.ml-reveal.is-in.ml-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--ml-shadow-sm);
}
.ml-pill__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: rgba(0,137,191,0.1);
    color: var(--ml-blue);
}
.ml-pill h3 { margin: 0 0 6px; font-size: 1rem; color: var(--ml-navy); }
.ml-pill p { margin: 0; font-size: 0.9rem; color: var(--ml-muted); }

/* ========== UNIQUE SECTION MOTIONS v9 ========== */

/* --- Compact proof strip --- */
.ml-proof {
    padding: 72px 20px 64px;
    background:
        radial-gradient(90% 70% at 80% 0%, rgba(0, 137, 191, 0.08), transparent 55%),
        radial-gradient(70% 50% at 10% 100%, rgba(254, 163, 26, 0.08), transparent 50%),
        #f7fafc;
}
.ml-proof__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.ml-proof__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: 100%;
    padding: 26px 22px 24px;
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: 22px;
    box-shadow: var(--ml-shadow-sm);
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    transition-delay: calc(var(--ml-proof-i, 0) * 40ms);
}
.ml-proof__card.is-in {
    opacity: 1;
    transform: none;
}
.ml-proof__card:hover {
    border-color: rgba(0, 137, 191, 0.28);
    box-shadow: var(--ml-shadow);
}
.ml-proof__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 137, 191, 0.1);
    color: var(--ml-blue);
    font-size: 1.25rem;
    margin-bottom: 6px;
}
.ml-proof__card:nth-child(2) .ml-proof__icon {
    background: rgba(254, 163, 26, 0.14);
    color: #c98312;
}
.ml-proof__card:nth-child(3) .ml-proof__icon {
    background: rgba(1, 48, 95, 0.1);
    color: var(--ml-navy);
}
.ml-proof__kicker {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--ml-blue);
    letter-spacing: 0.02em;
}
.ml-proof__value {
    margin: 0;
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ml-navy);
    font-variant-numeric: tabular-nums;
}
.ml-proof__caption {
    margin: 2px 0 0;
    color: var(--ml-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Why: problem / solution --- */
.ml-why {
    padding: 88px 20px;
    background:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(0, 137, 191, 0.16), transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(254, 163, 26, 0.08), transparent 50%),
        #0d1a28;
}
.ml-why__head {
    max-width: 40rem;
    margin: 0 auto 2rem;
    text-align: center;
}
.ml-why__heading {
    color: #fff;
    margin: 0 0 0.65rem;
}
.ml-why__lead {
    color: rgba(214, 227, 239, 0.82);
    margin: 0 auto;
    max-width: 34rem;
}
.ml-why .ml-section__eyebrow {
    color: #9ad8f0;
}
.ml-why__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
}
.ml-why__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 22px;
    padding: 1.7rem 1.45rem;
    color: #fff;
    min-width: 0;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.ml-why__card--problem {
    background:
        radial-gradient(80% 60% at 20% 20%, rgba(254, 163, 26, 0.12), transparent 50%),
        linear-gradient(160deg, #122536 0%, #1a2b3d 100%);
    border: 1px solid rgba(255,255,255,0.1);
}
.ml-why__card--solution {
    background:
        radial-gradient(70% 50% at 80% 30%, rgba(0, 168, 232, 0.28), transparent 55%),
        linear-gradient(145deg, #01305F 0%, #0089BF 100%);
    border: 1px solid rgba(255,255,255,0.16);
}
.ml-why__icon {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-grid;
    place-items: center;
    margin-bottom: 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #cfefff;
    font-size: 1.15rem;
}
.ml-why__icon--accent {
    background: rgba(254, 163, 26, 0.18);
    border-color: rgba(254, 163, 26, 0.28);
    color: #ffd48a;
}
.ml-why__title {
    color: #fff;
    margin: 0 0 12px;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.4;
}
.ml-why__card p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.75;
    opacity: 0.92;
}
.ml-why__tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}
.ml-why__tag--gold { background: rgba(254, 163, 26, 0.22); color: #ffe2a8; }
.ml-why__bullets {
    list-style: none;
    margin: auto 0 0;
    padding: 1.1rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ml-why__bullets li {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    font-weight: 700;
    font-size: 0.9rem;
}
.ml-why__bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.25rem;
}
.ml-why__bridge-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #9ad8f0;
    font-size: 1.1rem;
}

/* --- Compact proof signal --- */
.ml-signal {
    padding: 18px 20px;
    background: #f3f7fb;
    border-block: 1px solid var(--ml-line);
}
.ml-signal__line {
    margin: 0;
    text-align: center;
    color: var(--ml-navy);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Journey path --- */
.ml-journey {
    padding: 96px 20px;
    background: var(--ml-bg);
}
.ml-journey__stations {
    --ml-journey-p: 0;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
}
.ml-journey__stations::before {
    content: "";
    position: absolute;
    inset-inline-start: 27px;
    top: 28px;
    bottom: 28px;
    width: 3px;
    border-radius: 999px;
    background: rgba(1, 48, 95, 0.12);
}
.ml-journey__stations::after {
    content: "";
    position: absolute;
    inset-inline-start: 27px;
    top: 28px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--ml-blue), var(--ml-gold));
    height: calc((100% - 56px) * var(--ml-journey-p));
    max-height: calc(100% - 56px);
    transition: height 0.25s ease;
}
.ml-journey__station {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    position: relative;
    z-index: 1;
    opacity: 0.88;
    transform: none;
    transition: opacity 0.35s ease;
}
.ml-journey__station.is-on {
    opacity: 1;
    transform: none;
}
.ml-journey__node {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--ml-line);
    box-shadow: var(--ml-shadow-sm);
    font-weight: 900;
    color: var(--ml-navy);
}
.ml-journey__station.is-on .ml-journey__node {
    background: linear-gradient(135deg, var(--ml-navy), var(--ml-blue));
    color: #fff;
    border-color: transparent;
}
.ml-journey__card {
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: var(--ml-radius);
    padding: 20px 18px;
    box-shadow: var(--ml-shadow-sm);
    min-width: 0;
}
.ml-journey__card h3 {
    margin: 0 0 6px;
    color: var(--ml-navy);
    font-size: 1.12rem;
}
.ml-journey__card p {
    margin: 0;
    color: var(--ml-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* --- Official credentials (section 2) --- */
.ml-cred {
    padding: 36px 20px;
    background: #f3f7fb;
}
.ml-cred__panel {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 22px 36px;
    padding: 22px 28px;
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: 18px;
    box-shadow: var(--ml-shadow-sm);
}
.ml-cred__copy {
    text-align: center;
    flex: 1 1 240px;
    max-width: 360px;
}
.ml-cred .ml-section__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
}
.ml-cred .ml-section__title {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    line-height: 1.35;
}
.ml-cred__license {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 6px 10px;
    color: var(--ml-muted);
    font-size: 0.9rem;
}
.ml-cred__license strong {
    color: var(--ml-navy);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}
.ml-cred__badges {
    list-style: none;
    margin: 0;
    padding: 10px 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 22px;
    background: #f7fafc;
    border: 1px solid var(--ml-line);
    border-radius: 14px;
}
.ml-cred__badges img {
    display: block;
    height: 34px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
}

/* --- Chat FAQ --- */
.ml-chat {
    padding: 96px 20px;
    background: linear-gradient(180deg, #f3f7fb 0%, #e8f1f8 100%);
}
.ml-chat__layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: start;
}
.ml-chat__intro { position: sticky; top: calc(var(--ml-header-h) + 24px); }
.ml-chat__thread {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--ml-line);
    box-shadow: var(--ml-shadow);
    min-height: 420px;
}
.ml-chat__row {
    display: flex;
    opacity: 0.55;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ml-chat__row.is-in {
    opacity: 1;
    transform: none;
}
.ml-chat__row--q { justify-content: flex-start; }
.ml-chat__row--a { justify-content: flex-end; }
.ml-chat__bubble {
    max-width: min(92%, 420px);
    padding: 14px 16px;
    border-radius: 18px;
}
.ml-chat__bubble--q {
    background: #fff;
    border: 1px solid var(--ml-line);
    border-end-start-radius: 6px;
}
.ml-chat__bubble--a {
    background: linear-gradient(135deg, var(--ml-navy), var(--ml-blue));
    color: #fff;
    border-end-end-radius: 6px;
}
.ml-chat__who {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 4px;
    opacity: 0.7;
}
.ml-chat__bubble p { margin: 0; font-size: 0.95rem; line-height: 1.6; }
.ml-chat__typing {
    display: none;
    gap: 5px;
    align-self: flex-end;
    padding: 12px 14px;
    background: rgba(1, 48, 95, 0.08);
    border-radius: 14px;
}
.ml-chat__typing.is-on { display: inline-flex; }
.ml-chat__typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ml-blue);
    animation: mlDot 1s ease-in-out infinite;
}
.ml-chat__typing span:nth-child(2) { animation-delay: 0.15s; }
.ml-chat__typing span:nth-child(3) { animation-delay: 0.3s; }

/* --- Depth providers --- */
.ml-depth {
    position: relative;
    padding: 110px 20px 88px;
    background: radial-gradient(90% 70% at 50% -10%, #1a4f7a 0%, #09141f 55%);
    color: #fff;
    overflow: hidden;
}
.ml-depth .ml-section__eyebrow { color: #9ad8f0; }
.ml-depth .ml-section__title,
.ml-depth .ml-section__lead { color: #fff; }
.ml-depth .ml-section__lead { opacity: 0.88; }
.ml-depth__glow {
    position: absolute;
    width: min(480px, 90vw);
    height: min(480px, 90vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,168,232,0.35), transparent 70%);
    top: 10%;
    inset-inline-start: 10%;
    filter: blur(10px);
    pointer-events: none;
}
.ml-depth__fan {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 36px 0 28px;
    perspective: 1200px;
}
.ml-depth__card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 26px 22px;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    opacity: 1;
    transform: translateY(18px);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.ml-depth__card.is-in {
    transform: translateZ(0);
}
.ml-depth__card:hover {
    background: rgba(255,255,255,0.12);
}
.ml-depth__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 163, 26, 0.18);
    color: var(--ml-gold);
    margin-bottom: 14px;
    font-size: 1.2rem;
}
.ml-depth__card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.ml-depth__card p { margin: 0; opacity: 0.86; font-size: 0.95rem; }

/* --- Cinema finale --- */
.ml-cinema {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--ml-header-h) + 48px) 20px 88px;
    background: #060d14;
    color: #fff;
    overflow: hidden;
}
.ml-cinema .ml-section__eyebrow { color: #9ad8f0; }
.ml-cinema .ml-section__title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    max-width: 14ch;
    margin-inline: auto;
}
.ml-cinema__aura {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(40% 35% at 50% 40%, rgba(0,137,191,0.35), transparent 70%),
        radial-gradient(30% 25% at 30% 70%, rgba(254,163,26,0.18), transparent 70%);
    animation: mlPulseAura 8s ease-in-out infinite;
    pointer-events: none;
    transform-origin: center;
    will-change: opacity;
}
.ml-cinema__burst {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(254,163,26,0.45);
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0;
    pointer-events: none;
}
.ml-cinema.is-in .ml-cinema__burst {
    animation: mlBurst 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ml-cinema__content {
    position: relative;
    z-index: 1;
    opacity: 0.55;
    transform: translateY(18px);
    filter: blur(3px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}
.ml-cinema.is-in .ml-cinema__content {
    opacity: 1;
    transform: none;
    filter: none;
}
.ml-cinema__proof {
    margin: 0 0 28px;
    opacity: 0.82;
}
.ml-final__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.ml-cinema .ml-btn--primary {
    background: #fff;
    color: var(--ml-navy);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.ml-cinema .ml-btn--primary:hover {
    background: var(--ml-gold);
    color: #142433;
}

.ml-mid-cta {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

@keyframes mlSpin {
    to { transform: rotate(360deg); }
}
@keyframes mlDot {
    0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-3px); }
}
@keyframes mlPulseAura {
    0%, 100% { opacity: 0.72; }
    50% { opacity: 1; }
}
@keyframes mlBurst {
    0% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.3); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(6); }
}

/* Trust cards */
.ml-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.ml-trust-card {
    background: #fff;
    border-radius: var(--ml-radius);
    border: 1px solid var(--ml-line);
    padding: 18px;
    text-align: center;
}
.ml-trust-card img {
    max-width: 130px;
    height: 52px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}
.ml-trust-card p { margin: 0; font-size: 0.86rem; color: var(--ml-muted); }
.ml-disclaimer {
    background: #fbf6ea;
    border: 1px solid #ead7a8;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.9rem;
    color: #6a4b12;
}

/* Providers */
.ml-providers { background: var(--ml-navy); color: #fff; }
.ml-providers .ml-section__eyebrow { color: #9ad8f0; }
.ml-providers .ml-section__title,
.ml-providers .ml-section__lead { color: #fff; }
.ml-providers .ml-section__lead { opacity: 0.88; }
.ml-providers__benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0 28px;
    list-style: none;
    padding: 0;
}
.ml-providers__benefits li {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 18px;
}
.ml-providers__benefits strong { display: block; margin-bottom: 6px; }
.ml-providers__benefits span { font-size: 0.9rem; opacity: 0.88; }

/* FAQ / Blog / Final / Footer */
.ml-faq {
    padding: 88px 20px;
    background: linear-gradient(180deg, #f3f7fb 0%, #eef4f8 100%);
}
.ml-faq__layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
}
.ml-faq__intro { position: sticky; top: calc(var(--ml-header-h) + 24px); }
.ml-faq details {
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 10px;
    box-shadow: var(--ml-shadow-sm);
}
.ml-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--ml-navy);
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}
.ml-faq summary::-webkit-details-marker { display: none; }
.ml-faq summary::after {
    content: "+";
    color: var(--ml-blue);
    font-size: 1.2rem;
    font-weight: 800;
    flex: 0 0 auto;
}
.ml-faq details[open] summary::after { content: "−"; }
.ml-faq details p {
    margin: 12px 0 2px;
    color: var(--ml-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.ml-faq__more { margin-top: 16px; }

.ml-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ml-blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--ml-line);
    border-radius: var(--ml-radius);
    padding: 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.25s ease;
}
.ml-blog-card:hover {
    border-color: rgba(0,137,191,0.35);
    box-shadow: var(--ml-shadow-sm);
    transform: translateY(-3px);
    color: inherit;
    text-decoration: none;
}
.ml-blog-card h3 { margin: 0 0 8px; font-size: 1rem; color: var(--ml-navy); line-height: 1.45; }
.ml-blog-card p { margin: 0; font-size: 0.88rem; color: var(--ml-muted); }

.ml-final { background: #09141f; color: #fff; text-align: center; }
.ml-final .ml-section__title { color: #fff; max-width: 16ch; margin-inline: auto; }
.ml-final__proof { margin: 0 0 22px; opacity: 0.85; }
.ml-final__actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ml-final .ml-btn--primary {
    background: #fff;
    color: var(--ml-navy);
    box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.ml-final .ml-btn--primary:hover {
    background: var(--ml-gold);
    color: #142433;
}

.ml-footer {
    background: #09141f;
    color: rgba(255,255,255,0.86);
    padding: 40px 20px 28px;
}
.ml-footer__inner { max-width: 1120px; margin: 0 auto; }
.ml-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.ml-footer__brand img { height: 34px; width: auto; margin-bottom: 10px; }
.ml-footer__brand p { margin: 0; font-size: 0.9rem; opacity: 0.78; max-width: 36em; }
.ml-footer__links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.ml-footer__links a {
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}
.ml-footer__links a:hover { color: #fff; }
.ml-footer__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.ml-footer__badges img {
    height: 42px;
    width: auto;
    max-width: min(130px, 42vw);
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 6px 8px;
}
.ml-footer__disclaimer { font-size: 0.82rem; opacity: 0.7; margin: 0 0 14px; }
.ml-footer__copy {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.55;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 14px;
}

.ml-sticky {
    display: none;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 950;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--ml-line);
}
.ml-sticky .ml-btn { width: 100%; }

@keyframes mlRise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}
@keyframes mlBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}
@keyframes mlKenBurns {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to { transform: scale(1.14) translate3d(0, -1.5%, 0); }
}

@media (max-width: 991.98px) {
    .ml-intent__grid { grid-template-columns: 1fr 1fr; }
    .ml-intent__grid .ml-field--destination,
    .ml-intent__grid .ml-intent__submit { grid-column: 1 / -1; }
    .ml-pills,
    .ml-providers__benefits,
    .ml-trust-grid,
    .ml-blog-grid,
    .ml-steps { grid-template-columns: 1fr 1fr; }
    .ml-steps__item:not(:last-child)::after { display: none; }
    .ml-footer__top { grid-template-columns: 1fr; }
    .ml-depth__fan { grid-template-columns: 1fr 1fr; }
    .ml-proof__grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
    .ml-header__actions .ml-btn--ghost { display: none; }
    .ml-header__inner {
        padding-inline: 16px;
    }
    .ml-hero__inner {
        padding: 108px 0 100px;
        text-align: center;
        width: min(calc(100% - 48px), 760px);
        margin-top: 2vh;
    }
    .ml-hero__title { font-size: clamp(1.85rem, 8.2vw, 2.5rem); }
    .ml-hero__intent { width: 100%; }
    .ml-hero__intent .ml-intent { padding: 18px 16px; }
    .ml-hero__provider { flex-direction: column; align-items: stretch; text-align: start; }
    .ml-section { padding: 64px 20px; }
    .ml-trust-strip__list,
    .ml-pills,
    .ml-providers__benefits,
    .ml-trust-grid,
    .ml-blog-grid,
    .ml-steps,
    .ml-intent__grid { grid-template-columns: 1fr; }
    .ml-sticky { display: block; }
    .ml-body { padding-bottom: calc(var(--ml-sticky-h) + env(safe-area-inset-bottom)); }
    .ml-footer { padding-bottom: calc(28px + var(--ml-sticky-h) + env(safe-area-inset-bottom)); }
    .ml-hero__media img { transform: scale(1.04); animation: none; }

    .ml-proof { padding: 56px 20px 48px; }
    .ml-proof__grid { grid-template-columns: 1fr; gap: 10px; }
    .ml-proof__card {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        grid-template-areas:
            "icon kicker"
            "icon value"
            "icon caption";
        column-gap: 14px;
        row-gap: 2px;
        align-items: center;
        padding: 16px 16px;
    }
    .ml-proof__icon {
        grid-area: icon;
        margin: 0;
        width: 44px;
        height: 44px;
    }
    .ml-proof__kicker { grid-area: kicker; }
    .ml-proof__value {
        grid-area: value;
        font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    }
    .ml-proof__caption { grid-area: caption; font-size: 0.9rem; }
    .ml-why { padding: 56px 16px; }
    .ml-why__head { margin-bottom: 1.35rem; text-align: start; }
    .ml-why__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .ml-why__bridge {
        padding: 0;
        justify-content: center;
    }
    .ml-why__bridge-icon {
        transform: rotate(-90deg);
    }
    .ml-why__card { padding: 22px 18px; }
    .ml-why__bullets {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 1rem;
    }
    .ml-why__bullets li {
        text-align: center;
        border-radius: 14px;
    }
    .ml-signal { padding: 16px; }
    .ml-signal__line { font-size: 0.88rem; }
    .ml-faq { padding: 64px 16px; }
    .ml-faq__layout { grid-template-columns: 1fr; gap: 20px; }
    .ml-faq__intro { position: relative; top: auto; }
    .ml-cred { padding: 28px 16px; }
    .ml-cred__panel {
        gap: 16px;
        padding: 18px 16px;
        flex-direction: column;
    }
    .ml-cred__badges {
        width: 100%;
        gap: 12px 16px;
        padding: 12px 10px;
    }
    .ml-cred__badges img { height: 30px; }
    .ml-journey { padding: 72px 20px; }
    .ml-journey__stations { gap: 16px; }
    .ml-depth { padding: 80px 20px 72px; }
    .ml-depth__fan { grid-template-columns: 1fr; }
    .ml-cinema {
        min-height: auto;
        padding: calc(var(--ml-header-h) + 36px) 20px calc(72px + var(--ml-sticky-h));
    }
    .ml-cinema .ml-section__title {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
        max-width: 16ch;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .ml-reveal { opacity: 1; transform: none; }
    .ml-scroll-progress { display: none; }
    .ml-journey__station,
    .ml-depth__card,
    .ml-proof__card { opacity: 1 !important; transform: none !important; }
    .ml-cinema__content { opacity: 1 !important; transform: none !important; filter: none !important; }
}
